From 3d0b2f02cc7ebe0578b0391d5bf0b2e5d4b1d216 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Fri, 29 Mar 2024 14:18:42 +0530 Subject: [PATCH 001/114] implement components for dynamically generating fields in the application form --- .../application-form-dynamic-field.tsx | 120 ++++++++++++++ .../use-get-application-template-metadata.ts | 60 +++++++ .../api/use-get-application-template.ts | 57 +++++++ .../api/use-get-application-templates.ts | 74 +++++++++ .../configs/endpoints.ts | 3 + .../constants/application-templates.ts | 19 +++ .../models/application-templates.ts | 155 ++++++++++++++++++ .../models/dynamic-fields.ts | 118 +++++++++++++ .../admin.applications.v1/models/endpoints.ts | 14 +- .../utils/dynamic-field-validation.ts | 62 +++++++ .../admin.core.v1/store/reducers/config.ts | 3 + 11 files changed, 684 insertions(+), 1 deletion(-) create mode 100644 features/admin-applications-v1/components/dynamic-forms/application-form-dynamic-field.tsx create mode 100644 features/admin.applications.v1/api/use-get-application-template-metadata.ts create mode 100644 features/admin.applications.v1/api/use-get-application-template.ts create mode 100644 features/admin.applications.v1/api/use-get-application-templates.ts create mode 100644 features/admin.applications.v1/constants/application-templates.ts create mode 100644 features/admin.applications.v1/models/application-templates.ts create mode 100644 features/admin.applications.v1/models/dynamic-fields.ts create mode 100644 features/admin.applications.v1/utils/dynamic-field-validation.ts diff --git a/features/admin-applications-v1/components/dynamic-forms/application-form-dynamic-field.tsx b/features/admin-applications-v1/components/dynamic-forms/application-form-dynamic-field.tsx new file mode 100644 index 00000000000..0889f634099 --- /dev/null +++ b/features/admin-applications-v1/components/dynamic-forms/application-form-dynamic-field.tsx @@ -0,0 +1,120 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { IdentifiableComponentInterface } from "@wso2is/core/models"; +import { CheckboxFieldAdapter, FinalFormField, TextFieldAdapter } from "@wso2is/form"; +import React, { FunctionComponent, PropsWithChildren, ReactElement } from "react"; +import { DynamicFieldInterface, DynamicInputFieldTypes } from "../../models/dynamic-fields"; +import validateField from "../../utils/dynamic-field-validation"; + +/** + * Prop types for the dynamic input fields of the application form. + */ +export interface ApplicationFormDynamicFieldPropsInterface extends IdentifiableComponentInterface { + /** + * Field configs. + */ + field: DynamicFieldInterface; +} + +/** + * Component responsible for generating the field based on the provided field configs. + * + * @param props - Props injected to the `ApplicationFormDynamicField` component. + */ +export const ApplicationFormDynamicField: FunctionComponent> = (props: PropsWithChildren): ReactElement => { + const { ["data-componentid"]: componentId, field, ...rest } = props; + + const getDynamicFieldAdapter = (type: DynamicInputFieldTypes): ReactElement => { + switch (type) { + case DynamicInputFieldTypes.CHECKBOX: + return ( + validateField(value, field?.validations) } + /> + ); + case DynamicInputFieldTypes.TEXT: + return ( + validateField(value, field?.validations) } + /> + ); + default: + return ( + validateField(value, field?.validations) } + /> + ); + } + }; + + return ( +
+ { getDynamicFieldAdapter(field.type) } +
+ ); +}; + +/** + * Default props injected to the `ApplicationFormDynamicField` component. + */ +ApplicationFormDynamicField.defaultProps = { + "data-componentid": "application-form-dynamic-field" +}; diff --git a/features/admin.applications.v1/api/use-get-application-template-metadata.ts b/features/admin.applications.v1/api/use-get-application-template-metadata.ts new file mode 100644 index 00000000000..c21f4219574 --- /dev/null +++ b/features/admin.applications.v1/api/use-get-application-template-metadata.ts @@ -0,0 +1,60 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { HttpMethods } from "@wso2is/core/models"; +import useRequest, { + RequestConfigInterface, + RequestErrorInterface, + RequestResultInterface +} from "../../admin-core-v1/hooks/use-request"; +import { store } from "../../admin-core-v1/store"; +import { + ApplicationTemplateMetadataInterface +} from "../models/application-templates"; + +/** + * Hook to fetches the application template metadata from the API. + * + * @param id - The id of the application template. + * @returns A promise containing the response. + */ +const useGetApplicationTemplateMetadata = ( + id: string +): RequestResultInterface => { + + const requestConfig: RequestConfigInterface = { + headers: { + Accept: "application/json", + "Content-Type": "application/json" + }, + method: HttpMethods.GET, + url: store?.getState()?.config?.endpoints?.applicationTemplateMetadata?.replace("{{id}}", id) + }; + + const { data, error, isValidating, mutate } = useRequest(requestConfig); + + return { + data, + error, + isLoading: !error && !data, + isValidating, + mutate + }; +}; + +export default useGetApplicationTemplateMetadata; diff --git a/features/admin.applications.v1/api/use-get-application-template.ts b/features/admin.applications.v1/api/use-get-application-template.ts new file mode 100644 index 00000000000..8f0b729ae7a --- /dev/null +++ b/features/admin.applications.v1/api/use-get-application-template.ts @@ -0,0 +1,57 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { HttpMethods } from "@wso2is/core/models"; +import useRequest, { + RequestConfigInterface, + RequestErrorInterface, + RequestResultInterface +} from "../../admin-core-v1/hooks/use-request"; +import { store } from "../../admin-core-v1/store"; +import { ApplicationTemplateInterface } from "../models/application-templates"; + +/** + * Hook to fetch the application template details from the API. + * + * @param id - The id of the application template. + * @returns A promise containing the response. + */ +const useGetApplicationTemplate = ( + id: string +): RequestResultInterface => { + const requestConfig: RequestConfigInterface = { + headers: { + Accept: "application/json", + "Content-Type": "application/json" + }, + method: HttpMethods.GET, + url: store?.getState()?.config?.endpoints?.applicationTemplate?.replace("{{id}}", id) + }; + + const { data, error, isValidating, mutate } = useRequest(requestConfig); + + return { + data, + error, + isLoading: !error && !data, + isValidating, + mutate + }; +}; + +export default useGetApplicationTemplate; diff --git a/features/admin.applications.v1/api/use-get-application-templates.ts b/features/admin.applications.v1/api/use-get-application-templates.ts new file mode 100644 index 00000000000..6af49ca9b32 --- /dev/null +++ b/features/admin.applications.v1/api/use-get-application-templates.ts @@ -0,0 +1,74 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { HttpMethods } from "@wso2is/core/models"; +import { useSelector } from "react-redux"; +import useRequest, { + RequestConfigInterface, + RequestErrorInterface, + RequestResultInterface +} from "../../admin-core-v1/hooks/use-request"; +import { AppState, store } from "../../admin-core-v1/store"; +import { CONSOLE_BASE_URL_PLACEHOLDER } from "../constants/application-templates"; +import { ApplicationTemplateListInterface } from "../models/application-templates"; + +/** + * Hook to fetches the application templates from the API. + * + * @returns A promise containing the response. + */ +const useGetApplicationTemplates = < + Data = ApplicationTemplateListInterface[], + Error = RequestErrorInterface +>(): RequestResultInterface => { + const requestConfig: RequestConfigInterface = { + headers: { + Accept: "application/json", + "Content-Type": "application/json" + }, + method: HttpMethods.GET, + url: store?.getState()?.config?.endpoints?.applicationTemplates + }; + + const { data, error, isValidating, mutate } = useRequest(requestConfig); + const clientOrigin: string = useSelector((state: AppState) => state?.config?.deployment?.clientOrigin); + const appBaseNameWithoutTenant: string = useSelector( + (state: AppState) => state?.config?.deployment?.appBaseNameWithoutTenant + ); + + if (Array.isArray(data)) { + for (const template of data) { + if (template?.image?.includes(CONSOLE_BASE_URL_PLACEHOLDER)) { + template.image = template.image.replace( + CONSOLE_BASE_URL_PLACEHOLDER, + `${clientOrigin}/${appBaseNameWithoutTenant}` + ); + } + } + } + + return { + data, + error, + isLoading: !error && !data, + isValidating, + mutate + }; +}; + +export default useGetApplicationTemplates; diff --git a/features/admin.applications.v1/configs/endpoints.ts b/features/admin.applications.v1/configs/endpoints.ts index 3f9f3b8ce5b..ba157aecbaf 100644 --- a/features/admin.applications.v1/configs/endpoints.ts +++ b/features/admin.applications.v1/configs/endpoints.ts @@ -28,6 +28,9 @@ export const getApplicationsResourceEndpoints = (serverHost: string): Applicatio const serverHostWithoutOPath: string = serverHost.replace("/o/", "/"); return { + applicationTemplate: `${serverHost}/api/server/v1/extensions/applications/{{id}}`, + applicationTemplateMetadata: `${serverHost}/api/server/v1/extensions/applications/{{id}}/metadata`, + applicationTemplates: `${serverHost}/api/server/v1/extensions/applications`, applications: `${ serverHost }/api/server/v1/applications`, myAccountConfigMgt: `${ serverHostWithoutOPath }/api/identity/config-mgt/v1.0/resource/myaccount`, requestPathAuthenticators: `${ serverHost }/api/server/v1/configs/authenticators?type=REQUEST_PATH` diff --git a/features/admin.applications.v1/constants/application-templates.ts b/features/admin.applications.v1/constants/application-templates.ts new file mode 100644 index 00000000000..54a5f0338c4 --- /dev/null +++ b/features/admin.applications.v1/constants/application-templates.ts @@ -0,0 +1,19 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export const CONSOLE_BASE_URL_PLACEHOLDER: string = "{{CONSOLE_BASE_URL}}"; diff --git a/features/admin.applications.v1/models/application-templates.ts b/features/admin.applications.v1/models/application-templates.ts new file mode 100644 index 00000000000..4b33834e37f --- /dev/null +++ b/features/admin.applications.v1/models/application-templates.ts @@ -0,0 +1,155 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { MainApplicationInterface } from "./application"; +import { DynamicFieldInterface } from "./dynamic-fields"; + +export interface ApplicationTemplateCommonInterface { + /** + * Unique identifier for the template. + */ + id: string; + /** + * Name of the template. + */ + name: string; + /** + * Description of the template. + */ + description: string; + /** + * Image of the template. + */ + image: string; + /** + * Order in which the template is displayed. + */ + displayOrder: number; + /** + * Category of the template. + */ + category: ApplicationTemplateCategories; + /** + * Tags associated with the template. + */ + tags: string[]; + /** + * Type of the template. + */ + type: string; +} + +/** + * Interface for the application template list specific attributes. + */ +export interface ApplicationTemplateListInterface extends ApplicationTemplateCommonInterface { + /** + * URL to the template data. + */ + self?: string; + /** + * Additional properties of the template. + */ + additionalProperties?: AdditionalPropertyInterface[]; +} + +/** + * Interface for the application template. + */ +export interface ApplicationTemplateInterface extends ApplicationTemplateCommonInterface { + /** + * Create form payload parameters. + */ + payload: MainApplicationInterface; +} + +/** + * Interface for the application template metadata. + */ +export interface ApplicationTemplateMetadataInterface { + /** + * Application creation related metadata. + */ + create: { + /** + * Dynamic input fields should be rendered in the application create wizard. + */ + form: { + fields: DynamicFieldInterface[]; + }; + /** + * Application creation guide metadata. + */ + guide: { + /** + * Application creation guide content. + */ + content: string; + /** + * Application creation guide content type. + */ + contentType: "md" | "html" | string; + }[]; + } +} + +/** + * Interface for the additional properties of the template. + */ +export interface AdditionalPropertyInterface { + /** + * Key of the property. + */ + key: string, + /** + * Value of the property. + */ + value: any +} + +/** + * Enum for application template categories. + * + * @readonly + */ +export enum ApplicationTemplateCategories { + /** + * Templates supported by default. + * ex: Web Application, SPA etc. + */ + DEFAULT = "DEFAULT", + /** + * Vendor templates. + * ex: Zoom, Salesforce etc. + */ + VENDOR = "VENDOR", +} + +/** + * Supported technology metadata interface. + */ +export interface SupportedTechnologyMetadataInterface { + /** + * Display name of the technology. + */ + displayName: string; + /** + * URL of the technology logo. + */ + logo?: string; +} diff --git a/features/admin.applications.v1/models/dynamic-fields.ts b/features/admin.applications.v1/models/dynamic-fields.ts new file mode 100644 index 00000000000..2482b5242c1 --- /dev/null +++ b/features/admin.applications.v1/models/dynamic-fields.ts @@ -0,0 +1,118 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Data types required to render the dynamic input fields. + */ +export interface DynamicFieldInterface { + /** + * The index of the field. + */ + index: number; + /** + * Unique identifier for the input field. + */ + id: string; + /** + * Aria label of the input field. + */ + ariaLabel: string; + /** + * Name of the input field. + */ + name: string; + /** + * Label of the input field. + */ + label: string; + /** + * Input field type. + */ + type: DynamicInputFieldTypes; + /** + * Whether the field is optional or not. + */ + required: boolean; + /** + * Placeholder for the input field. + */ + placeholder: string; + /** + * Initial value of the input field. + */ + initialValue: string; + /** + * The data component id for the input field. + */ + dataComponentId: string; + /** + * The maximum length of the field's input. + */ + maxLength: string; + /** + * The minimu length of the field's input. + */ + minLength: string; + /** + * The width of the input field. + */ + width: string; + /** + * Array of validation rules for the field's input. + */ + validations?: ValidationRule[]; + /** + * Additional custom attributes need to decorate the dynamic input field. + */ + additionalAttributes?: any; +} + +/** + * Supported dynamic input field types. + */ +export enum DynamicInputFieldTypes { + /** + * Text input field. + */ + TEXT = "text", + /** + * Checkbox field. + */ + CHECKBOX = "checkbox" +} + +/** + * Representation of the validation rules for dyanmic input field. + */ +export interface ValidationRule { + /** + * The validation rule type. + */ + type: ValidationRuleTypes; + /** + * Error message to be displayed when validation fails. + */ + errorMessage: string; +} + +/** + * Supported validation rule types for dynamic input fields. + */ +export enum ValidationRuleTypes { + DOMAIN_NAME = "domainName" +} diff --git a/features/admin.applications.v1/models/endpoints.ts b/features/admin.applications.v1/models/endpoints.ts index f3e1631cd5d..e93be8492a3 100644 --- a/features/admin.applications.v1/models/endpoints.ts +++ b/features/admin.applications.v1/models/endpoints.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). All Rights Reserved. + * Copyright (c) 2020-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except @@ -22,6 +22,18 @@ import { ClaimConfigurationInterface } from "./application"; * Interface for the Application Management feature resource endpoints. */ export interface ApplicationsResourceEndpointsInterface { + /** + * Endpoint to get the application templates list. + */ + applicationTemplates: string; + /** + * Endpoint to get the application template. + */ + applicationTemplate: string; + /** + * Endpoint to get the application template metadata. + */ + applicationTemplateMetadata: string; applications: string; myAccountConfigMgt: string; requestPathAuthenticators: string; diff --git a/features/admin.applications.v1/utils/dynamic-field-validation.ts b/features/admin.applications.v1/utils/dynamic-field-validation.ts new file mode 100644 index 00000000000..01fe80e913e --- /dev/null +++ b/features/admin.applications.v1/utils/dynamic-field-validation.ts @@ -0,0 +1,62 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ValidationRule, ValidationRuleTypes } from "../models/dynamic-fields"; + +/** + * Validate the provided value against the provided validation rules. + * + * value - The value needs validation. + * validations - Validation rules. + * @returns If the validation fails, return the corresponding error message; otherwise, return null. + */ +const validateField = (value: string, validations: ValidationRule[]): string => { + if (!validations) { + return null; + } + + for (const validation of validations) { + const { type, errorMessage } = validation; + + switch (type) { + case ValidationRuleTypes.DOMAIN_NAME: + if (!validateDomainName(value)) { + return errorMessage; + } + } + } + + // If all validation rules are successful, return null for the errorMessage. + return null; +}; + +/** + * Verify if the provided value is a domain name. + * + * value - The value needs validation. + * @returns Whether the provided value is a valid domain name or not. + */ +const validateDomainName = (value: string): boolean => { + // Regular expression to validate domain name. + const domainRegex: RegExp = /^((?!-)[A-Za-z0-9-]{1, 63}(? Date: Wed, 3 Apr 2024 17:49:50 +0530 Subject: [PATCH 002/114] complete the template grid implementation --- .../resources/deployment.config.json.j2 | 7 + .../console/src/public/deployment.config.json | 1 + .../images/illustrations/custom-template.svg | 42 ++ .../images/illustrations/m2m-template.svg | 53 ++ .../images/illustrations/mobile-template.svg | 41 ++ .../images/illustrations/spa-template.svg | 36 ++ .../illustrations/standard-based-template.svg | 43 ++ .../illustrations/traditional-template.svg | 37 ++ .../application-creation-adapter.tsx | 137 +++++ .../application-templates-grid.tsx | 375 +++++++++++++ .../context/application-templates-context.tsx | 54 ++ .../hooks/use-application-templates.ts | 43 ++ .../application-templates-provider.tsx | 127 +++++ .../api/use-get-application-templates.ts | 11 +- .../constants/application-templates.ts | 11 +- .../models/application-templates.ts | 14 +- .../pages/application-template.tsx | 497 ++---------------- .../application-template-management-utils.ts | 44 +- features/admin.core.v1/configs/app.ts | 57 +- features/admin.core.v1/models/config.ts | 5 + .../src/models/namespaces/applications-ns.ts | 7 + .../en-US/portals/applications.ts | 7 + 22 files changed, 1150 insertions(+), 499 deletions(-) create mode 100644 apps/console/src/public/resources/applications/assets/images/illustrations/custom-template.svg create mode 100644 apps/console/src/public/resources/applications/assets/images/illustrations/m2m-template.svg create mode 100644 apps/console/src/public/resources/applications/assets/images/illustrations/mobile-template.svg create mode 100644 apps/console/src/public/resources/applications/assets/images/illustrations/spa-template.svg create mode 100644 apps/console/src/public/resources/applications/assets/images/illustrations/standard-based-template.svg create mode 100644 apps/console/src/public/resources/applications/assets/images/illustrations/traditional-template.svg create mode 100644 features/admin-applications-v1/components/application-templates/application-creation-adapter.tsx create mode 100644 features/admin-applications-v1/components/application-templates/application-templates-grid.tsx create mode 100644 features/admin-applications-v1/context/application-templates-context.tsx create mode 100644 features/admin-applications-v1/hooks/use-application-templates.ts create mode 100644 features/admin-applications-v1/provider/application-templates-provider.tsx diff --git a/apps/console/java/org.wso2.identity.apps.console.server.feature/resources/deployment.config.json.j2 b/apps/console/java/org.wso2.identity.apps.console.server.feature/resources/deployment.config.json.j2 index 31ba47f5fad..d4f6bc52d24 100644 --- a/apps/console/java/org.wso2.identity.apps.console.server.feature/resources/deployment.config.json.j2 +++ b/apps/console/java/org.wso2.identity.apps.console.server.feature/resources/deployment.config.json.j2 @@ -1650,6 +1650,13 @@ {% endfor %} {% endif %} ], + "hiddenApplicationTemplates": [ + {% if console.ui.hiddenApplicationTemplates is defined %} + {% for value in console.ui.hiddenApplicationTemplates %} + "{{ value }}"{{ "," if not loop.last }} + {% endfor %} + {% endif %} + ], "hiddenUserStores": [ {% if console.ui.hidden_user_stores is defined %} {% for value in console.ui.hidden_user_stores %} diff --git a/apps/console/src/public/deployment.config.json b/apps/console/src/public/deployment.config.json index b0705f02eca..967d504df19 100644 --- a/apps/console/src/public/deployment.config.json +++ b/apps/console/src/public/deployment.config.json @@ -1124,6 +1124,7 @@ "hypr-idp", "swe-idp" ], + "hiddenApplicationTemplates": [], "hiddenUserStores": [], "i18nConfigs": { "showLanguageSwitcher": false, diff --git a/apps/console/src/public/resources/applications/assets/images/illustrations/custom-template.svg b/apps/console/src/public/resources/applications/assets/images/illustrations/custom-template.svg new file mode 100644 index 00000000000..6fb3685edc5 --- /dev/null +++ b/apps/console/src/public/resources/applications/assets/images/illustrations/custom-template.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + diff --git a/apps/console/src/public/resources/applications/assets/images/illustrations/m2m-template.svg b/apps/console/src/public/resources/applications/assets/images/illustrations/m2m-template.svg new file mode 100644 index 00000000000..f9fad4cd807 --- /dev/null +++ b/apps/console/src/public/resources/applications/assets/images/illustrations/m2m-template.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/console/src/public/resources/applications/assets/images/illustrations/mobile-template.svg b/apps/console/src/public/resources/applications/assets/images/illustrations/mobile-template.svg new file mode 100644 index 00000000000..5301dc28728 --- /dev/null +++ b/apps/console/src/public/resources/applications/assets/images/illustrations/mobile-template.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/console/src/public/resources/applications/assets/images/illustrations/spa-template.svg b/apps/console/src/public/resources/applications/assets/images/illustrations/spa-template.svg new file mode 100644 index 00000000000..892fd08d3de --- /dev/null +++ b/apps/console/src/public/resources/applications/assets/images/illustrations/spa-template.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/apps/console/src/public/resources/applications/assets/images/illustrations/standard-based-template.svg b/apps/console/src/public/resources/applications/assets/images/illustrations/standard-based-template.svg new file mode 100644 index 00000000000..aabad3425d5 --- /dev/null +++ b/apps/console/src/public/resources/applications/assets/images/illustrations/standard-based-template.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/console/src/public/resources/applications/assets/images/illustrations/traditional-template.svg b/apps/console/src/public/resources/applications/assets/images/illustrations/traditional-template.svg new file mode 100644 index 00000000000..8628211fb98 --- /dev/null +++ b/apps/console/src/public/resources/applications/assets/images/illustrations/traditional-template.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/features/admin-applications-v1/components/application-templates/application-creation-adapter.tsx b/features/admin-applications-v1/components/application-templates/application-creation-adapter.tsx new file mode 100644 index 00000000000..248a43567a1 --- /dev/null +++ b/features/admin-applications-v1/components/application-templates/application-creation-adapter.tsx @@ -0,0 +1,137 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { IdentifiableComponentInterface } from "@wso2is/core/models"; +import { ContentLoader } from "@wso2is/react-components"; +import React, { FunctionComponent, ReactElement, useEffect, useState } from "react"; +import { useSelector } from "react-redux"; +import { AppState } from "../../../admin-core-v1"; +import { ApplicationTemplateManagementUtils } from "../..//utils/application-template-management-utils"; +import { ApplicationManagementConstants } from "../../constants"; +import { ApplicationTemplateListItemInterface } from "../../models"; +import { ApplicationTemplateCategories, ApplicationTemplateListInterface } from "../../models/application-templates"; +import { MinimalAppCreateWizard } from "../wizard/minimal-application-create-wizard"; + +/** + * Props for the Application templates grid page. + */ +export interface ApplicationCreationAdapterPropsInterface extends IdentifiableComponentInterface { + /** + * Template for rendering the application creation wizard. + */ + template: ApplicationTemplateListInterface; + /** + * Indicator of whether the application creation wizard should be displayed or not. + */ + showWizard: boolean; + /** + * Callback triggered when closing the application creation wizard. + */ + onClose: () => void; +} + +/** + * Adapter for rendering the application creation wizard. + * + * @param props - Props injected to the component. + * + * @returns Application creation adapter component. + */ +const ApplicationCreationAdapter: FunctionComponent = ( + props: ApplicationCreationAdapterPropsInterface +): ReactElement => { + const { + template, + showWizard, + onClose + } = props; + + const legacyApplicationTemplates: ApplicationTemplateListItemInterface[] = useSelector( + (state: AppState) => state?.application?.groupedTemplates); + + const [ + isLegacyApplicationTemplateRequestLoading, + setLegacyApplicationTemplateRequestLoadingStatus + ] = useState(false); + + /** + * Get legacy Application templates. + */ + useEffect(() => { + if (legacyApplicationTemplates !== undefined) { + return; + } + + setLegacyApplicationTemplateRequestLoadingStatus(true); + + ApplicationTemplateManagementUtils.getApplicationTemplates() + .finally(() => { + setLegacyApplicationTemplateRequestLoadingStatus(false); + }); + }, [ legacyApplicationTemplates ]); + + /** + * Render the appropriate Application Creation Wizard based on the template category. + * + * @returns - Application Create Wizard Component. + */ + const renderApplicationCreationWizard = (): ReactElement => { + if (!template) { + return null; + } + + const legacyApplicationTemplate: ApplicationTemplateListItemInterface = legacyApplicationTemplates.find( + (legacyTemplate: ApplicationTemplateListItemInterface) => legacyTemplate?.templateId === template?.id); + + switch(template?.category) { + case ApplicationTemplateCategories.SSO_INTEGRATION: + return ; + default: + return ( + onClose() } + template={ legacyApplicationTemplate } + showHelpPanel={ true } + subTemplates={ legacyApplicationTemplate?.subTemplates } + subTemplatesSectionTitle={ legacyApplicationTemplate?.subTemplatesSectionTitle } + addProtocol={ false } + templateLoadingStrategy={ ApplicationManagementConstants.DEFAULT_APP_TEMPLATE_LOADING_STRATEGY } + /> + ); + } + }; + + return ( + showWizard + ? isLegacyApplicationTemplateRequestLoading + ? + : renderApplicationCreationWizard() + : null + ); +}; + +/** + * Default props for the component. + */ +ApplicationCreationAdapter.defaultProps = { + "data-componentid": "application-creation-adapter" +}; + +export default ApplicationCreationAdapter; diff --git a/features/admin-applications-v1/components/application-templates/application-templates-grid.tsx b/features/admin-applications-v1/components/application-templates/application-templates-grid.tsx new file mode 100644 index 00000000000..91e3092cc30 --- /dev/null +++ b/features/admin-applications-v1/components/application-templates/application-templates-grid.tsx @@ -0,0 +1,375 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + getEmptyPlaceholderIllustrations +} from "@wso2is/common/src/configs/ui"; +import { IdentifiableComponentInterface, LoadableComponentInterface } from "@wso2is/core/models"; +import { + ContentLoader, + EmptyPlaceholder, + GridLayout, + ResourceGrid, + SearchWithFilterLabels +} from "@wso2is/react-components"; +import union from "lodash-es/union"; +import React, { FunctionComponent, ReactElement, SyntheticEvent, useEffect, useMemo, useState } from "react"; +import { useTranslation } from "react-i18next"; +import { useSelector } from "react-redux"; +import { AppState, EventPublisher } from "../../../admin-core-v1"; +import { ApplicationTemplateConstants } from "../../constants/application-templates"; +import useApplicationTemplates from "../../hooks/use-application-templates"; +import { AuthProtocolMetaListItemInterface } from "../../models"; +import { + AdditionalPropertyInterface, + ApplicationTemplateListInterface +} from "../../models/application-templates"; +import { ApplicationManagementUtils } from "../../utils/application-management-utils"; +import { ApplicationTemplateManagementUtils } from "../../utils/application-template-management-utils"; +import { InboundProtocolsMeta } from "../meta"; + +/** + * Props for the Application templates grid page. + */ +export interface ApplicationTemplateGridPropsInterface extends + IdentifiableComponentInterface, LoadableComponentInterface { + /** + * Callback to be fired when a template is selected. + */ + onTemplateSelect: (template: ApplicationTemplateListInterface) => void; +} + +/** + * Application templates grid page. + * + * @param props - Props injected to the component. + * + * @returns Application template select page. + */ +const ApplicationTemplateGrid: FunctionComponent = ( + props: ApplicationTemplateGridPropsInterface +): ReactElement => { + const { onTemplateSelect, ["data-componentid"]: componentId } = props; + + const { t } = useTranslation(); + + const customInboundProtocols: AuthProtocolMetaListItemInterface[] = useSelector((state: AppState) => + state?.application?.meta?.customInboundProtocols); + const hiddenApplicationTemplates: string[] = useSelector((state: AppState) => + state?.config?.ui?.hiddenApplicationTemplates); + + const { templates, isApplicationTemplatesRequestLoading } = useApplicationTemplates(); + + const [ searchQuery, setSearchQuery ] = useState(""); + const [ selectedFilters, setSelectedFilters ] = useState([]); + const [ showCustomProtocolApplicationTemplate, setShowCustomProtocolApplicationTemplate ] = + useState(false); + + const eventPublisher: EventPublisher = EventPublisher.getInstance(); + + /** + * Fetch the custom inbound protocols. + */ + useEffect(() => { + ApplicationManagementUtils.getCustomInboundProtocols(InboundProtocolsMeta, true); + }, []); + + /** + * Show/hide custom application templated based on the availability of custom inbound authenticators. + */ + useEffect(() => { + setShowCustomProtocolApplicationTemplate(customInboundProtocols.length > 0); + }, [ customInboundProtocols ]); + + /** + * Retrieve the filter tags from the `tags` attribute of the application templates. + */ + const filterTags: string[] = useMemo(() => { + if (!templates || !Array.isArray(templates) || templates?.length <= 0) { + return []; + } + + let tags: string[] = []; + + templates.forEach((template: ApplicationTemplateListInterface) => { + tags = union(tags, template?.tags); + }); + + return tags; + }, [ templates ]); + + /** + * Get search results based on the selected tags and the search query. + * + * @param query - Search query. + * @param filterLabels - Array of filter labels. + * + * @returns List of filtered application templates for the provided filter tags and search query. + */ + const getSearchResults = (query: string, filterLabels: string[]): ApplicationTemplateListInterface[] => { + + /** + * Checks if any of the filters are matching. + * + * @param template - Application template object. + * @returns Boolean value indicating whether the filters are matched or not. + */ + const isFiltersMatched = (template: ApplicationTemplateListInterface): boolean => { + + if (!filterLabels || !Array.isArray(filterLabels) || filterLabels?.length <= 0) { + return true; + } + + return template?.tags + .some((tagLabel: string) => filterLabels.includes(tagLabel)); + }; + + return templates.filter((template: ApplicationTemplateListInterface) => { + if (!query) { + return isFiltersMatched(template); + } + + const name: string = template?.name?.toLocaleLowerCase(); + + if (name.includes(query) + || template?.tags?.some((tag: string) => tag?.toLocaleLowerCase()?.includes(query))) { + + return isFiltersMatched(template); + } + }); + }; + + /** + * Exclude the application templates that should not be displayed on the application grid page. + * + * templates - Application templates list. + * @returns Filtered application templates list. + */ + const removeIrrelevantTemplates = (templates: ApplicationTemplateListInterface[]) => { + let removingApplicationTemplateIds: string[] = []; + + // Remove custom protocol application templates if there are no custom inbound protocols. + if (!showCustomProtocolApplicationTemplate) { + removingApplicationTemplateIds.push(ApplicationTemplateConstants.CUSTOM_PROTOCOL_APPLICATION_TEMPLATE_ID); + } + + // Remove hidden application templates based on the UI config. + removingApplicationTemplateIds = union(removingApplicationTemplateIds, hiddenApplicationTemplates); + + return templates.filter( + (template: ApplicationTemplateListInterface) => !removingApplicationTemplateIds.includes(template?.id)); + }; + + /** + * Filter out the application templates based on the selected tags and the search query. + */ + const filteredTemplates: ApplicationTemplateListInterface[] = useMemo(() => { + if (!templates || !Array.isArray(templates) || templates?.length <= 0) { + return []; + } + + if (!searchQuery && (!selectedFilters || !Array.isArray(selectedFilters) || selectedFilters?.length <= 0)) { + return removeIrrelevantTemplates(templates); + } + + return removeIrrelevantTemplates(getSearchResults(searchQuery, selectedFilters)); + }, [ templates, selectedFilters, searchQuery ]); + + /** + * Handles application template selection. + * + * @param e - Click event. + * @param id - Selected template details. + */ + const handleTemplateSelection = (e: SyntheticEvent, template: ApplicationTemplateListInterface): void => { + if (!template) { + return; + } + + eventPublisher.publish("application-click-create-new", { + source: "application-listing-page", + type: template?.id + }); + + onTemplateSelect(template); + }; + + /** + * Handles the Application Template Search input onchange. + * + * @param query - Search query. + * @param selectedFilters - Array of selected filters. + */ + const handleApplicationTemplateSearch = (query: string, selectedFilters: string[]): void => { + + // Update the internal state to manage placeholders etc. + setSearchQuery(query); + setSelectedFilters(selectedFilters); + // Filter out the templates. + //setFilteredCategorizedTemplates(getSearchResults(query.toLocaleLowerCase(), selectedFilters)); + }; + + /** + * Handles Application Template Type filter. + * + * @param query - Search query. + * @param selectedFilters - Array of the selected filters. + */ + const handleApplicationTemplateTypeFilter = (query: string, selectedFilters: string[]): void => { + + // Update the internal state to manage placeholders etc. + setSearchQuery(query); + setSelectedFilters(selectedFilters); + }; + + /** + * Resolve the relevant placeholder. + * + * list - Application templates list. + * @returns Corresponding placeholder component. + */ + const showPlaceholders = (list: any[]): ReactElement => { + + // When the search returns empty. + if (searchQuery) { + return ( + + ); + } + + // Edge case, templates will never be empty. + if (list.length === 0) { + return ( + + ); + } + + return null; + }; + + return ( + + ) } + isLoading={ isApplicationTemplatesRequestLoading } + > + { + (filteredTemplates && !isApplicationTemplatesRequestLoading) + ? ( + + { + filteredTemplates + .map((template: ApplicationTemplateListInterface) => { + let isTemplateComingSoon: boolean = false; + + if (template?.additionalProperties + && Array.isArray(template?.additionalProperties) + && template?.additionalProperties.length > 0) { + + const comingSoonPropertyIndex: number = + template?.additionalProperties + .findIndex( + (property: AdditionalPropertyInterface) => + property?.key === + ApplicationTemplateConstants + .COMING_SOON_ATTRIBUTE_KEY + ); + + if (comingSoonPropertyIndex >= 0) { + isTemplateComingSoon = + template?.additionalProperties[ + comingSoonPropertyIndex + ]?.value === "true"; + } + } + + return ( + { + handleTemplateSelection(e, template); + } } + showTooltips={ + { + description: true, + header: false + } + } + data-testid={ `${ componentId }-${ template.name }` } + /> + ); + }) + } + + ) + : + } + + ); +}; + +/** + * Default props for the component. + */ +ApplicationTemplateGrid.defaultProps = { + "data-componentid": "application-template-grid" +}; + +export default ApplicationTemplateGrid; diff --git a/features/admin-applications-v1/context/application-templates-context.tsx b/features/admin-applications-v1/context/application-templates-context.tsx new file mode 100644 index 00000000000..5f91622c4de --- /dev/null +++ b/features/admin-applications-v1/context/application-templates-context.tsx @@ -0,0 +1,54 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Context, createContext } from "react"; +import { + ApplicationTemplateListInterface, + CategorizedApplicationTemplatesInterface +} from "../models/application-templates"; + +/** + * Props interface for ApplicationTemplatesContext. + */ +export interface ApplicationTemplatesContextProps { + /** + * Templates categorized by their `category`. + */ + categorizedTemplates: CategorizedApplicationTemplatesInterface; + /** + * Application Templates. + */ + templates: ApplicationTemplateListInterface[]; + /** + * Flag to determine if the application templates are being loaded. + */ + isApplicationTemplatesRequestLoading: boolean; +} + +/** + * Context object for managing application templates. + */ +const ApplicationTemplatesContext: Context = + createContext(null); + +/** + * Display name for the ApplicationTemplatesContext. + */ +ApplicationTemplatesContext.displayName = "ApplicationTemplatesContext"; + +export default ApplicationTemplatesContext; diff --git a/features/admin-applications-v1/hooks/use-application-templates.ts b/features/admin-applications-v1/hooks/use-application-templates.ts new file mode 100644 index 00000000000..69cc8dff14f --- /dev/null +++ b/features/admin-applications-v1/hooks/use-application-templates.ts @@ -0,0 +1,43 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { useContext } from "react"; +import ApplicationTemplatesContext, { + ApplicationTemplatesContextProps +} from "../context/application-templates-context"; + +/** + * Interface for the return type of the `useApplicationTemplates` hook. + */ +export type UseApplicationTemplatesInterface = ApplicationTemplatesContextProps; + +/** + * Hook that provides access to the application templates context. + * @returns An object containing the set of application templates. + */ +const useApplicationTemplates = (): UseApplicationTemplatesInterface => { + const context: ApplicationTemplatesContextProps = useContext(ApplicationTemplatesContext); + + if (context === undefined) { + throw new Error("useApplicationTemplates hook must be used within a ApplicationTemplatesProvider"); + } + + return context; +}; + +export default useApplicationTemplates; diff --git a/features/admin-applications-v1/provider/application-templates-provider.tsx b/features/admin-applications-v1/provider/application-templates-provider.tsx new file mode 100644 index 00000000000..502f62c7a15 --- /dev/null +++ b/features/admin-applications-v1/provider/application-templates-provider.tsx @@ -0,0 +1,127 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { AlertLevels } from "@wso2is/core/models"; +import { addAlert } from "@wso2is/core/store"; +import React, { PropsWithChildren, ReactElement, useEffect, useMemo } from "react"; +import { useTranslation } from "react-i18next"; +import { useDispatch } from "react-redux"; +import { Dispatch } from "redux"; +import useGetApplicationTemplates from "../api/use-get-application-templates"; +import ApplicationTemplatesContext from "../context/application-templates-context"; +import { + ApplicationTemplateListInterface, + CategorizedApplicationTemplatesInterface +} from "../models/application-templates"; + +/** + * Props interface for the Application templates provider. + */ +export type ApplicationTemplatesProviderProps = PropsWithChildren; + +/** + * Application templates provider. + * + * @param props - Props for the provider. + * @returns Application templates provider. + */ +const ApplicationTemplatesProvider = (props: ApplicationTemplatesProviderProps): ReactElement => { + const { children } = props; + + const { t } = useTranslation(); + + const dispatch: Dispatch = useDispatch(); + + const { + data: applicationTemplates, + isLoading: isApplicationTemplatesFetchRequestLoading, + error: applicationTemplatesFetchRequestError + } = useGetApplicationTemplates(); + + /** + * Categorize application templates based on the `category` attribute. + */ + const categorizedTemplates: CategorizedApplicationTemplatesInterface = useMemo(() => { + const categoryMap: CategorizedApplicationTemplatesInterface = {}; + + if (applicationTemplates) { + // Create a category called "ALL" and push all items into it + categoryMap["ALL"] = [ ...applicationTemplates ]; + + // Categorize the templates based on their actual categories + applicationTemplates.forEach((template: ApplicationTemplateListInterface) => { + const category: string = template?.category; + + if (category) { + if (!categoryMap[category]) { + categoryMap[category] = []; + } + + categoryMap[category].push(template); + } + }); + } + + return categoryMap; + }, [ applicationTemplates ]); + + /** + * Handles the application templates fetch request error. + */ + useEffect(() => { + + if (!applicationTemplatesFetchRequestError) { + return; + } + + if (applicationTemplatesFetchRequestError?.response?.data?.description) { + dispatch(addAlert({ + description: applicationTemplatesFetchRequestError.response.data.description, + level: AlertLevels.ERROR, + message: t("applications:notifications." + + "fetchTemplates.error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.fetchTemplates" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications." + + "fetchTemplates.genericError.message") + })); + }, [ applicationTemplatesFetchRequestError ]); + + return ( + + { children } + + ); +}; + +export default ApplicationTemplatesProvider; diff --git a/features/admin.applications.v1/api/use-get-application-templates.ts b/features/admin.applications.v1/api/use-get-application-templates.ts index 6af49ca9b32..44d314e9e2b 100644 --- a/features/admin.applications.v1/api/use-get-application-templates.ts +++ b/features/admin.applications.v1/api/use-get-application-templates.ts @@ -24,7 +24,7 @@ import useRequest, { RequestResultInterface } from "../../admin-core-v1/hooks/use-request"; import { AppState, store } from "../../admin-core-v1/store"; -import { CONSOLE_BASE_URL_PLACEHOLDER } from "../constants/application-templates"; +import { ApplicationTemplateConstants } from "../constants/application-templates"; import { ApplicationTemplateListInterface } from "../models/application-templates"; /** @@ -52,10 +52,15 @@ const useGetApplicationTemplates = < ); if (Array.isArray(data)) { + data.sort( + (template1: ApplicationTemplateListInterface, template2: ApplicationTemplateListInterface) => + template1?.displayOrder - template2?.displayOrder + ); + for (const template of data) { - if (template?.image?.includes(CONSOLE_BASE_URL_PLACEHOLDER)) { + if (template?.image?.includes(ApplicationTemplateConstants.CONSOLE_BASE_URL_PLACEHOLDER)) { template.image = template.image.replace( - CONSOLE_BASE_URL_PLACEHOLDER, + ApplicationTemplateConstants.CONSOLE_BASE_URL_PLACEHOLDER, `${clientOrigin}/${appBaseNameWithoutTenant}` ); } diff --git a/features/admin.applications.v1/constants/application-templates.ts b/features/admin.applications.v1/constants/application-templates.ts index 54a5f0338c4..781b2807247 100644 --- a/features/admin.applications.v1/constants/application-templates.ts +++ b/features/admin.applications.v1/constants/application-templates.ts @@ -16,4 +16,13 @@ * under the License. */ -export const CONSOLE_BASE_URL_PLACEHOLDER: string = "{{CONSOLE_BASE_URL}}"; +/** + * Class containing application templates management constants. + */ +export class ApplicationTemplateConstants { + public static readonly CONSOLE_BASE_URL_PLACEHOLDER: string = "{{CONSOLE_BASE_URL}}"; + + public static readonly COMING_SOON_ATTRIBUTE_KEY: string = "comingSoon"; + + public static readonly CUSTOM_PROTOCOL_APPLICATION_TEMPLATE_ID: string = "custom-protocol-application"; +} diff --git a/features/admin.applications.v1/models/application-templates.ts b/features/admin.applications.v1/models/application-templates.ts index 4b33834e37f..5bbcb473d50 100644 --- a/features/admin.applications.v1/models/application-templates.ts +++ b/features/admin.applications.v1/models/application-templates.ts @@ -134,10 +134,10 @@ export enum ApplicationTemplateCategories { */ DEFAULT = "DEFAULT", /** - * Vendor templates. + * SSO Integration templates. * ex: Zoom, Salesforce etc. */ - VENDOR = "VENDOR", + SSO_INTEGRATION = "SSO-INTEGRATION", } /** @@ -153,3 +153,13 @@ export interface SupportedTechnologyMetadataInterface { */ logo?: string; } + +/** + * Interface for the categorized application templates. + */ +export interface CategorizedApplicationTemplatesInterface { + /** + * Category name - Template list mapping. + */ + [ key: string ]: ApplicationTemplateListInterface[] +} diff --git a/features/admin.applications.v1/pages/application-template.tsx b/features/admin.applications.v1/pages/application-template.tsx index 5b8e3c4548e..ec8a54dc67f 100755 --- a/features/admin.applications.v1/pages/application-template.tsx +++ b/features/admin.applications.v1/pages/application-template.tsx @@ -17,64 +17,17 @@ */ import { TestableComponentInterface } from "@wso2is/core/models"; -import { ContentLoader, EmptyPlaceholder, PageLayout, TemplateGrid } from "@wso2is/react-components"; -import cloneDeep from "lodash-es/cloneDeep"; -import isEmpty from "lodash-es/isEmpty"; -import isEqual from "lodash-es/isEqual"; -import orderBy from "lodash-es/orderBy"; -import React, { FunctionComponent, ReactElement, SyntheticEvent, useEffect, useState } from "react"; +import { PageLayout } from "@wso2is/react-components"; +import React, { FunctionComponent, ReactElement, useState } from "react"; import { useTranslation } from "react-i18next"; -import { useSelector } from "react-redux"; -import { - Divider, - Dropdown, - DropdownItemProps, - DropdownProps, - Grid, - Icon, - Input -} from "semantic-ui-react"; import { AppConstants, - AppState, - ConfigReducerStateInterface, - EventPublisher, - getEmptyPlaceholderIllustrations, - getTechnologyLogos, history -} from "../../admin.core.v1"; -import { InboundProtocolsMeta } from "../components/meta"; -import { MinimalAppCreateWizard } from "../components/wizard/minimal-application-create-wizard"; -import { getApplicationTemplateIllustrations } from "../configs/ui"; -import { ApplicationManagementConstants } from "../constants"; -import CustomApplicationTemplate - from "../data/application-templates/templates/custom-application/custom-application.json"; -import CustomProtocolApplicationTemplate - from "../data/application-templates/templates/custom-protocol-application/custom-protocol-application.json"; -import { - ApplicationTemplateCategories, ApplicationTemplateCategoryInterface, - ApplicationTemplateInterface, - ApplicationTemplateListItemInterface, - AuthProtocolMetaListItemInterface -} from "../models"; -import { ApplicationManagementUtils } from "../utils/application-management-utils"; -import { ApplicationTemplateManagementUtils } from "../utils/application-template-management-utils"; - -/** - * Template filter types. - */ -const TEMPLATE_FILTER_TYPES: DropdownItemProps[] = [ - { - key: "all", - text: "All Types", - value: "all" - } -]; - -// Temporary component level constants to show search/hide template filter options. -// TODO: Remove once more than one template category is available. (https://github.com/wso2/product-is/issues/10891) -const SHOW_TEMPLATE_SEARCH: boolean = false; -const SHOW_TEMPLATE_FILTER: boolean = false; +} from "../../admin-core-v1"; +import ApplicationCreationAdapter from "../components/application-templates/application-creation-adapter"; +import ApplicationTemplateGrid from "../components/application-templates/application-templates-grid"; +import { ApplicationTemplateListInterface } from "../models/application-templates"; +import ApplicationTemplatesProvider from "../provider/application-templates-provider"; /** * Props for the Applications templates page. @@ -98,123 +51,8 @@ const ApplicationTemplateSelectPage: FunctionComponent state?.application?.groupedTemplates); - const config: ConfigReducerStateInterface = useSelector((state: AppState) => state.config); - const customInboundProtocols: AuthProtocolMetaListItemInterface[] = useSelector((state: AppState) => - state.application.meta.customInboundProtocols); - - const [ categorizedTemplates, setCategorizedTemplates ] = useState([]); const [ showWizard, setShowWizard ] = useState(false); - const [ selectedTemplate, setSelectedTemplate ] = useState(null); - const [ - isApplicationTemplateRequestLoading, - setApplicationTemplateRequestLoadingStatus - ] = useState(false); - const [ - filteredTemplateList, - setFilteredTemplateList - ] = useState(undefined); - const [ searchTriggered, setSearchTriggered ] = useState(false); - const [ showCustomProtocolApplicationTemplate, setShowCustomProtocolApplicationTemplate ] = - useState(false); - - const [ templateFilterTypes, setTemplateFilterTypes ] = useState(TEMPLATE_FILTER_TYPES); - - const eventPublisher: EventPublisher = EventPublisher.getInstance(); - - /** - * Fetch the custom inbound protocols. - */ - useEffect(() => { - ApplicationManagementUtils.getCustomInboundProtocols(InboundProtocolsMeta, true); - }, []); - - /** - * Show/hide custom application templated based on the availability of custom inbound authenticators. - */ - useEffect(() => { - setShowCustomProtocolApplicationTemplate(customInboundProtocols.length > 0); - }, [ customInboundProtocols ]); - - /** - * Get Application templates. - */ - useEffect(() => { - if (applicationTemplates !== undefined) { - return; - } - - setApplicationTemplateRequestLoadingStatus(true); - - ApplicationTemplateManagementUtils.getApplicationTemplates() - .finally(() => { - setApplicationTemplateRequestLoadingStatus(false); - }); - }, [ applicationTemplates ]); - - useEffect(() => { - if (filteredTemplateList == undefined) { - return; - } - - if (isEqual(filteredTemplateList, applicationTemplates)) { - setSearchTriggered(false); - } else { - setSearchTriggered(true); - } - }, [ filteredTemplateList ]); - - /** - * Populate the filter types based on VENDOR template types. - */ - useEffect(() => { - if (!(applicationTemplates && applicationTemplates instanceof Array && applicationTemplates.length > 0)) { - return; - } - - const filterTypes: DropdownItemProps[] = TEMPLATE_FILTER_TYPES; - - [ ...applicationTemplates ].forEach((template: ApplicationTemplateListItemInterface) => { - if (ApplicationManagementConstants.FILTERABLE_TEMPLATE_CATEGORIES - .includes(template.category as ApplicationTemplateCategories)) { - - template.types.forEach((type: string) => { - const isAvailable: boolean = filterTypes.some( - (filterType: DropdownItemProps) => filterType.value === type); - - if (isAvailable) { - return; - } - - filterTypes.push({ - key: type, - text: type, - value: type - }); - }); - } - }); - - setTemplateFilterTypes(filterTypes); - }, [ applicationTemplates ]); - - /** - * Categorize the application templates. - */ - useEffect(() => { - if (!applicationTemplates || !Array.isArray(applicationTemplates) || !(applicationTemplates.length > 0)) { - return; - } - - ApplicationTemplateManagementUtils.categorizeTemplates(applicationTemplates) - .then((response: ApplicationTemplateCategoryInterface[]) => { - setCategorizedTemplates(response); - }) - .catch(() => { - setCategorizedTemplates([]); - }); - }, [ applicationTemplates ]); + const [ selectedTemplate, setSelectedTemplate ] = useState(null); /** * Handles back button click. @@ -223,299 +61,38 @@ const ApplicationTemplateSelectPage: FunctionComponent { - - if (!applicationTemplates) { - return; - } - - let selected: ApplicationTemplateListItemInterface = applicationTemplates - .find((template: ApplicationTemplateListItemInterface) => template.id === id); - - if (!selected) { - return; - } - - if (id === CustomApplicationTemplate.id) { - selected = cloneDeep(CustomApplicationTemplate); - } - - eventPublisher.publish("application-click-create-new", { - source: "application-listing-page", - type: selected.templateId - }); - setSelectedTemplate(selected); - setShowWizard(true); - }; - - /** - * Handles the template search. - * - * @param e - Click event. - * @param value - Search value. - */ - const handleTemplateSearch = (e: SyntheticEvent, { value }: { value: string }): void => { - if (value.length > 0) { - setFilteredTemplateList(applicationTemplates.filter((item: ApplicationTemplateListItemInterface) => - item.name.toLowerCase().indexOf(value.toLowerCase()) !== -1)); - } else { - setFilteredTemplateList(applicationTemplates); - } - }; - - /** - * Handles the template type change. - * - * @param event - Click event. - * @param data - Dropdown data. - */ - const handleTemplateTypeChange = (event: React.MouseEvent, data: DropdownProps): void => { - if (data.value === "all") { - setFilteredTemplateList(applicationTemplates); - } else { - const filtered: ApplicationTemplateListItemInterface[] = applicationTemplates.filter( - (template: ApplicationTemplateListItemInterface) => - template.types?.includes(data.value)); - - setFilteredTemplateList(filtered); - } - }; - - /** - * Generic function to render the template grid. - * - * @param templates - Set of templates to be displayed. - * @param additionalProps - Additional props for the `TemplateGrid` component. - * @param placeholder - Empty placeholder for the grid. - * @param templatesOverrides - Template array which will get precedence. - * @param isSearchView - Is the requested view search ro not. - * @returns Template grid. - */ - const renderTemplateGrid = (templates: ApplicationTemplateInterface[], - additionalProps: Record, - placeholder?: ReactElement, - templatesOverrides?: ApplicationTemplateInterface[], - isSearchView?: boolean): ReactElement => { - - // Don't show the grid if there are no templates unless the view requested is search. - if (!isSearchView && isEmpty(templatesOverrides) && isEmpty(templates)) { - - return null; - } - - let templateToShow: ApplicationTemplateInterface[] = templatesOverrides - ? templatesOverrides - : templates; - - if (!showCustomProtocolApplicationTemplate) { - templateToShow = templateToShow.filter((template: ApplicationTemplateInterface) => - template.id !== CustomProtocolApplicationTemplate.id); - } - - // Order the templates by pushing coming soon items to the end. - templateToShow = orderBy(templateToShow, [ "comingSoon" ], [ "desc" ]); - - return ( - - type="application" - templates={ - templateToShow - } - templateIcons={ { ...getApplicationTemplateIllustrations(), ...getTechnologyLogos() } as any } - templateIconOptions={ { - fill: "primary" - } } - templateIconSize="tiny" - onTemplateSelect={ handleTemplateSelection } - paginate={ true } - paginationLimit={ 6 } - paginationOptions={ { - showLessButtonLabel: t("common:showLess"), - showMoreButtonLabel: t("common:showMore") - } } - comingSoonRibbonLabel={ t("common:comingSoon") } - renderDisabledItemsAsGrayscale={ true } - emptyPlaceholder={ placeholder } - { ...additionalProps } - /> - ); - }; - - /** - * Renders the template grid based on the passed in view. - * - * @param view - Render view. - * @returns Template grids. - */ - const renderTemplateGrids = (view: "CATEGORIZED" | "SEARCH_RESULTS"): ReactElement => { - - if (view === "CATEGORIZED") { - return ( - <> - { - categorizedTemplates.map((category: ApplicationTemplateCategoryInterface, index: number) => ( -
- { - renderTemplateGrid( - category.templates, - { - "data-testid": `${ category.id }-template-grid`, - heading: category.displayName, - showTagIcon: category.viewConfigs?.tags?.showTagIcon, - showTags: category.viewConfigs?.tags?.showTags, - subHeading: category.description, - tagSize: category.viewConfigs?.tags?.tagSize, - tagsAs: category.viewConfigs?.tags?.as, - tagsKey: category.viewConfigs?.tags?.tagsKey, - tagsSectionTitle: category.viewConfigs?.tags?.sectionTitle - }, - - ) - } -
- )) - } - - ); - } - - if (view === "SEARCH_RESULTS") { - return ( -
- { - renderTemplateGrid( - [], - { - "data-testid": `${ testId }-search-template-grid` - }, - - - - - - - , - filteredTemplateList, - true - ) - } -
- ); - } - - return null; - }; - return ( - - { - (SHOW_TEMPLATE_SEARCH || SHOW_TEMPLATE_FILTER) && ( - <> - - - - { - SHOW_TEMPLATE_SEARCH && ( - } - onChange={ handleTemplateSearch } - placeholder="Search application type" - floated="left" - width={ 6 } - style={ { width: "270px" } } - /> - ) - } - { - SHOW_TEMPLATE_FILTER && ( - - ) - } - - - - + ); }; diff --git a/features/admin.applications.v1/utils/application-template-management-utils.ts b/features/admin.applications.v1/utils/application-template-management-utils.ts index 20563150cd5..3b92cd79862 100644 --- a/features/admin.applications.v1/utils/application-template-management-utils.ts +++ b/features/admin.applications.v1/utils/application-template-management-utils.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). All Rights Reserved. + * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except @@ -18,14 +18,16 @@ import { AlertLevels } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; +import { ImageUtils, URLUtils } from "@wso2is/core/utils"; import { I18n } from "@wso2is/i18n"; import { TemplateCardTagInterface } from "@wso2is/react-components"; import { AxiosError } from "axios"; import groupBy from "lodash-es/groupBy"; import isObject from "lodash-es/isObject"; import startCase from "lodash-es/startCase"; -import { getTechnologyLogos } from "../../admin.core.v1/configs"; -import { store } from "../../admin.core.v1/store"; +import { AppConstants } from "../../admin-core-v1"; +import { getTechnologyLogos } from "../../admin-core-v1/configs"; +import { store } from "../../admin-core-v1/store"; import { getApplicationTemplateList } from "../api"; @@ -198,7 +200,7 @@ export class ApplicationTemplateManagementUtils { && Object.prototype.hasOwnProperty.call(technology, "displayName") && Object.prototype.hasOwnProperty.call(technology, "logo") && Object.prototype.hasOwnProperty.call(technology, "name")) { - + return technology; } @@ -425,7 +427,7 @@ export class ApplicationTemplateManagementUtils { private static resolveHelpContent(templates: ApplicationTemplateInterface[]): ApplicationTemplateInterface[] { templates.map((template: ApplicationTemplateInterface) => { - const config: TemplateConfigInterface = + const config: TemplateConfigInterface = getApplicationTemplatesConfig().templates .find((config: TemplateConfigInterface) => { return config.id === template.id; @@ -440,4 +442,36 @@ export class ApplicationTemplateManagementUtils { return templates; } + + /** + * Util to resolve application resource path. + * + * @param path - Resource path. + * @returns The absolute path to the resource location. + */ + public static resolveApplicationResourcePath(path: string): string { + if (typeof path !== "string") { + return path; + } + + if (URLUtils.isHttpsOrHttpUrl(path) && ImageUtils.isValidImageExtension(path)) { + return path; + } + + if (URLUtils.isDataUrl(path)) { + return path; + } + + if (AppConstants.getClientOrigin()) { + + const basename: string = AppConstants.getAppBasename() ? `/${AppConstants.getAppBasename()}` : ""; + + if (path?.includes(AppConstants.getClientOrigin())) { + + return path; + } + + return AppConstants.getClientOrigin() + basename + "/resources/applications/" + path; + } + } } diff --git a/features/admin.core.v1/configs/app.ts b/features/admin.core.v1/configs/app.ts index ec47ed759cd..37b178021dd 100644 --- a/features/admin.core.v1/configs/app.ts +++ b/features/admin.core.v1/configs/app.ts @@ -19,34 +19,34 @@ import { DocumentationConstants } from "@wso2is/core/constants"; import { DocumentationProviders, DocumentationStructureFileTypes } from "@wso2is/core/models"; import { I18nModuleInitOptions, I18nModuleOptionsInterface, MetaI18N, generateBackendPaths } from "@wso2is/i18n"; -import { getFeatureGateResourceEndpoints } from "../../admin.extensions.v1/components/feature-gate/configs"; -import { getExtendedFeatureResourceEndpoints } from "../../admin.extensions.v1/configs/endpoints"; -import { getAPIResourceEndpoints } from "../../admin.api-resources.v1/configs/endpoint"; -import { getApplicationsResourceEndpoints } from "../../admin.applications.v1/configs/endpoints"; -import isLegacyAuthzRuntime from "../../admin.authorization.v1/utils/get-legacy-authz-runtime"; -import { getBrandingResourceEndpoints } from "../../admin.branding.v1/configs/endpoints"; -import { getCertificatesResourceEndpoints } from "../../admin.certificates.v1"; -import { getClaimResourceEndpoints } from "../../admin.claims.v1/configs/endpoints"; -import { getConnectionResourceEndpoints } from "../../admin.connections.v1"; -import { getConsoleSettingsResourceEndpoints } from "../../admin.console-settings.v1/configs/endpoints"; -import { getEmailTemplatesResourceEndpoints } from "../../admin.email-templates.v1"; -import { getGroupsResourceEndpoints } from "../../admin.groups.v1"; -import { getIDPResourceEndpoints } from "../../admin.identity-providers.v1/configs/endpoints"; -import { getIDVPResourceEndpoints } from "../../admin.identity-verification-providers.v1"; -import { getScopesResourceEndpoints } from "../../admin.oidc-scopes.v1"; -import { getInsightsResourceEndpoints } from "../../admin.org-insights.v1/config/org-insights"; -import { getOrganizationsResourceEndpoints } from "../../admin.organizations.v1/configs"; -import { OrganizationUtils } from "../../admin.organizations.v1/utils"; -import { getJWTAuthenticationServiceEndpoints } from "../../admin.private-key-jwt.v1/configs"; -import { getRemoteFetchConfigResourceEndpoints } from "../../admin.remote-repository-configuration.v1"; -import { getRolesResourceEndpoints } from "../../admin.roles.v2/configs/endpoints"; -import { getSecretsManagementEndpoints } from "../../admin.secrets.v1/configs/endpoints"; -import { getServerConfigurationsResourceEndpoints } from "../../admin.server-configurations.v1"; -import { getTenantResourceEndpoints } from "../../admin.tenants.v1/configs/endpoints"; -import { getUsersResourceEndpoints } from "../../admin.users.v1/configs/endpoints"; -import { getUserstoreResourceEndpoints } from "../../admin.userstores.v1/configs/endpoints"; -import { getValidationServiceEndpoints } from "../../admin.validation.v1/configs"; -import { getApprovalsResourceEndpoints } from "../../admin.workflow-approvals.v1"; +import { getAPIResourceEndpoints } from "../../admin-api-resources-v1/configs/endpoint"; +import { getApplicationsResourceEndpoints } from "../../admin-applications-v1/configs/endpoints"; +import isLegacyAuthzRuntime from "../../admin-authorization-v1/utils/get-legacy-authz-runtime"; +import { getBrandingResourceEndpoints } from "../../admin-branding-v1/configs/endpoints"; +import { getCertificatesResourceEndpoints } from "../../admin-certificates-v1"; +import { getClaimResourceEndpoints } from "../../admin-claims-v1/configs/endpoints"; +import { getConnectionResourceEndpoints } from "../../admin-connections-v1"; +import { getConsoleSettingsResourceEndpoints } from "../../admin-console-settings-v1/configs/endpoints"; +import { getEmailTemplatesResourceEndpoints } from "../../admin-email-templates-v1"; +import { getFeatureGateResourceEndpoints } from "../../admin-extensions-v1/components/feature-gate/configs"; +import { getExtendedFeatureResourceEndpoints } from "../../admin-extensions-v1/configs/endpoints"; +import { getGroupsResourceEndpoints } from "../../admin-groups-v1"; +import { getIDPResourceEndpoints } from "../../admin-identity-providers-v1/configs/endpoints"; +import { getIDVPResourceEndpoints } from "../../admin-identity-verification-providers-v1"; +import { getScopesResourceEndpoints } from "../../admin-oidc-scopes-v1"; +import { getInsightsResourceEndpoints } from "../../admin-org-insights-v1/config/org-insights"; +import { getOrganizationsResourceEndpoints } from "../../admin-organizations-v1/configs"; +import { OrganizationUtils } from "../../admin-organizations-v1/utils"; +import { getJWTAuthenticationServiceEndpoints } from "../../admin-private-key-jwt-v1/configs"; +import { getRemoteFetchConfigResourceEndpoints } from "../../admin-remote-repository-configuration-v1"; +import { getRolesResourceEndpoints } from "../../admin-roles-v2/configs/endpoints"; +import { getSecretsManagementEndpoints } from "../../admin-secrets-v1/configs/endpoints"; +import { getServerConfigurationsResourceEndpoints } from "../../admin-server-configurations-v1"; +import { getTenantResourceEndpoints } from "../../admin-tenants-v1/configs/endpoints"; +import { getUsersResourceEndpoints } from "../../admin-users-v1/configs/endpoints"; +import { getUserstoreResourceEndpoints } from "../../admin-userstores-v1/configs/endpoints"; +import { getValidationServiceEndpoints } from "../../admin-validation-v1/configs"; +import { getApprovalsResourceEndpoints } from "../../admin-workflow-approvals-v1"; import { I18nConstants, UIConstants } from "../constants"; import { DeploymentConfigInterface, ServiceResourceEndpointsInterface, UIConfigInterface } from "../models"; import { store } from "../store"; @@ -330,6 +330,7 @@ export class Config { googleOneTapEnabledTenants: window["AppUtils"]?.getConfig()?.ui?.googleOneTapEnabledTenants, governanceConnectors: window["AppUtils"]?.getConfig()?.ui?.governanceConnectors, gravatarConfig: window[ "AppUtils" ]?.getConfig()?.ui?.gravatarConfig, + hiddenApplicationTemplates: window[ "AppUtils" ]?.getConfig()?.ui?.hiddenApplicationTemplates ?? [], hiddenAuthenticators: window[ "AppUtils" ]?.getConfig()?.ui?.hiddenAuthenticators, hiddenConnectionTemplates: window[ "AppUtils" ]?.getConfig()?.ui?.hiddenConnectionTemplates, hiddenUserStores: window[ "AppUtils" ]?.getConfig()?.ui?.hiddenUserStores, diff --git a/features/admin.core.v1/models/config.ts b/features/admin.core.v1/models/config.ts index 87d2a72c1d6..6cbcb174826 100644 --- a/features/admin.core.v1/models/config.ts +++ b/features/admin.core.v1/models/config.ts @@ -329,6 +329,11 @@ export interface UIConfigInterface extends CommonUIConfigInterface Date: Thu, 4 Apr 2024 14:16:41 +0530 Subject: [PATCH 003/114] resolve merge conflicts and changes --- .../use-get-application-template-metadata.ts | 4 +- .../api/use-get-application-template.ts | 4 +- .../api/use-get-application-templates.ts | 4 +- .../application-creation-adapter.tsx | 2 +- .../application-templates-grid.tsx | 5 +- .../application-form-dynamic-field.tsx | 0 .../context/application-templates-context.tsx | 0 .../hooks/use-application-templates.ts | 0 .../pages/application-template.tsx | 2 +- .../application-templates-provider.tsx | 0 .../application-template-management-utils.ts | 6 +- features/admin.core.v1/configs/app.ts | 56 +++++++++---------- 12 files changed, 40 insertions(+), 43 deletions(-) rename features/{admin-applications-v1 => admin.applications.v1}/components/application-templates/application-creation-adapter.tsx (98%) rename features/{admin-applications-v1 => admin.applications.v1}/components/application-templates/application-templates-grid.tsx (99%) rename features/{admin-applications-v1 => admin.applications.v1}/components/dynamic-forms/application-form-dynamic-field.tsx (100%) rename features/{admin-applications-v1 => admin.applications.v1}/context/application-templates-context.tsx (100%) rename features/{admin-applications-v1 => admin.applications.v1}/hooks/use-application-templates.ts (100%) rename features/{admin-applications-v1 => admin.applications.v1}/provider/application-templates-provider.tsx (100%) diff --git a/features/admin.applications.v1/api/use-get-application-template-metadata.ts b/features/admin.applications.v1/api/use-get-application-template-metadata.ts index c21f4219574..93559b62d48 100644 --- a/features/admin.applications.v1/api/use-get-application-template-metadata.ts +++ b/features/admin.applications.v1/api/use-get-application-template-metadata.ts @@ -21,8 +21,8 @@ import useRequest, { RequestConfigInterface, RequestErrorInterface, RequestResultInterface -} from "../../admin-core-v1/hooks/use-request"; -import { store } from "../../admin-core-v1/store"; +} from "../../admin.core.v1/hooks/use-request"; +import { store } from "../../admin.core.v1/store"; import { ApplicationTemplateMetadataInterface } from "../models/application-templates"; diff --git a/features/admin.applications.v1/api/use-get-application-template.ts b/features/admin.applications.v1/api/use-get-application-template.ts index 8f0b729ae7a..9ab0b195a81 100644 --- a/features/admin.applications.v1/api/use-get-application-template.ts +++ b/features/admin.applications.v1/api/use-get-application-template.ts @@ -21,8 +21,8 @@ import useRequest, { RequestConfigInterface, RequestErrorInterface, RequestResultInterface -} from "../../admin-core-v1/hooks/use-request"; -import { store } from "../../admin-core-v1/store"; +} from "../../admin.core.v1/hooks/use-request"; +import { store } from "../../admin.core.v1/store"; import { ApplicationTemplateInterface } from "../models/application-templates"; /** diff --git a/features/admin.applications.v1/api/use-get-application-templates.ts b/features/admin.applications.v1/api/use-get-application-templates.ts index 44d314e9e2b..de4fe1656f3 100644 --- a/features/admin.applications.v1/api/use-get-application-templates.ts +++ b/features/admin.applications.v1/api/use-get-application-templates.ts @@ -22,8 +22,8 @@ import useRequest, { RequestConfigInterface, RequestErrorInterface, RequestResultInterface -} from "../../admin-core-v1/hooks/use-request"; -import { AppState, store } from "../../admin-core-v1/store"; +} from "../../admin.core.v1/hooks/use-request"; +import { AppState, store } from "../../admin.core.v1/store"; import { ApplicationTemplateConstants } from "../constants/application-templates"; import { ApplicationTemplateListInterface } from "../models/application-templates"; diff --git a/features/admin-applications-v1/components/application-templates/application-creation-adapter.tsx b/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx similarity index 98% rename from features/admin-applications-v1/components/application-templates/application-creation-adapter.tsx rename to features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx index 248a43567a1..57b6d386c1e 100644 --- a/features/admin-applications-v1/components/application-templates/application-creation-adapter.tsx +++ b/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx @@ -20,7 +20,7 @@ import { IdentifiableComponentInterface } from "@wso2is/core/models"; import { ContentLoader } from "@wso2is/react-components"; import React, { FunctionComponent, ReactElement, useEffect, useState } from "react"; import { useSelector } from "react-redux"; -import { AppState } from "../../../admin-core-v1"; +import { AppState } from "../../../admin.core.v1"; import { ApplicationTemplateManagementUtils } from "../..//utils/application-template-management-utils"; import { ApplicationManagementConstants } from "../../constants"; import { ApplicationTemplateListItemInterface } from "../../models"; diff --git a/features/admin-applications-v1/components/application-templates/application-templates-grid.tsx b/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx similarity index 99% rename from features/admin-applications-v1/components/application-templates/application-templates-grid.tsx rename to features/admin.applications.v1/components/application-templates/application-templates-grid.tsx index 91e3092cc30..95000f00ef5 100644 --- a/features/admin-applications-v1/components/application-templates/application-templates-grid.tsx +++ b/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx @@ -16,9 +16,6 @@ * under the License. */ -import { - getEmptyPlaceholderIllustrations -} from "@wso2is/common/src/configs/ui"; import { IdentifiableComponentInterface, LoadableComponentInterface } from "@wso2is/core/models"; import { ContentLoader, @@ -31,7 +28,7 @@ import union from "lodash-es/union"; import React, { FunctionComponent, ReactElement, SyntheticEvent, useEffect, useMemo, useState } from "react"; import { useTranslation } from "react-i18next"; import { useSelector } from "react-redux"; -import { AppState, EventPublisher } from "../../../admin-core-v1"; +import { AppState, EventPublisher, getEmptyPlaceholderIllustrations } from "../../../admin.core.v1"; import { ApplicationTemplateConstants } from "../../constants/application-templates"; import useApplicationTemplates from "../../hooks/use-application-templates"; import { AuthProtocolMetaListItemInterface } from "../../models"; diff --git a/features/admin-applications-v1/components/dynamic-forms/application-form-dynamic-field.tsx b/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx similarity index 100% rename from features/admin-applications-v1/components/dynamic-forms/application-form-dynamic-field.tsx rename to features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx diff --git a/features/admin-applications-v1/context/application-templates-context.tsx b/features/admin.applications.v1/context/application-templates-context.tsx similarity index 100% rename from features/admin-applications-v1/context/application-templates-context.tsx rename to features/admin.applications.v1/context/application-templates-context.tsx diff --git a/features/admin-applications-v1/hooks/use-application-templates.ts b/features/admin.applications.v1/hooks/use-application-templates.ts similarity index 100% rename from features/admin-applications-v1/hooks/use-application-templates.ts rename to features/admin.applications.v1/hooks/use-application-templates.ts diff --git a/features/admin.applications.v1/pages/application-template.tsx b/features/admin.applications.v1/pages/application-template.tsx index ec8a54dc67f..088bc2e4f1d 100755 --- a/features/admin.applications.v1/pages/application-template.tsx +++ b/features/admin.applications.v1/pages/application-template.tsx @@ -23,7 +23,7 @@ import { useTranslation } from "react-i18next"; import { AppConstants, history -} from "../../admin-core-v1"; +} from "../../admin.core.v1"; import ApplicationCreationAdapter from "../components/application-templates/application-creation-adapter"; import ApplicationTemplateGrid from "../components/application-templates/application-templates-grid"; import { ApplicationTemplateListInterface } from "../models/application-templates"; diff --git a/features/admin-applications-v1/provider/application-templates-provider.tsx b/features/admin.applications.v1/provider/application-templates-provider.tsx similarity index 100% rename from features/admin-applications-v1/provider/application-templates-provider.tsx rename to features/admin.applications.v1/provider/application-templates-provider.tsx diff --git a/features/admin.applications.v1/utils/application-template-management-utils.ts b/features/admin.applications.v1/utils/application-template-management-utils.ts index 3b92cd79862..1602e1b5046 100644 --- a/features/admin.applications.v1/utils/application-template-management-utils.ts +++ b/features/admin.applications.v1/utils/application-template-management-utils.ts @@ -25,9 +25,9 @@ import { AxiosError } from "axios"; import groupBy from "lodash-es/groupBy"; import isObject from "lodash-es/isObject"; import startCase from "lodash-es/startCase"; -import { AppConstants } from "../../admin-core-v1"; -import { getTechnologyLogos } from "../../admin-core-v1/configs"; -import { store } from "../../admin-core-v1/store"; +import { AppConstants } from "../../admin.core.v1"; +import { getTechnologyLogos } from "../../admin.core.v1/configs"; +import { store } from "../../admin.core.v1/store"; import { getApplicationTemplateList } from "../api"; diff --git a/features/admin.core.v1/configs/app.ts b/features/admin.core.v1/configs/app.ts index 37b178021dd..a8918e29de6 100644 --- a/features/admin.core.v1/configs/app.ts +++ b/features/admin.core.v1/configs/app.ts @@ -19,34 +19,34 @@ import { DocumentationConstants } from "@wso2is/core/constants"; import { DocumentationProviders, DocumentationStructureFileTypes } from "@wso2is/core/models"; import { I18nModuleInitOptions, I18nModuleOptionsInterface, MetaI18N, generateBackendPaths } from "@wso2is/i18n"; -import { getAPIResourceEndpoints } from "../../admin-api-resources-v1/configs/endpoint"; -import { getApplicationsResourceEndpoints } from "../../admin-applications-v1/configs/endpoints"; -import isLegacyAuthzRuntime from "../../admin-authorization-v1/utils/get-legacy-authz-runtime"; -import { getBrandingResourceEndpoints } from "../../admin-branding-v1/configs/endpoints"; -import { getCertificatesResourceEndpoints } from "../../admin-certificates-v1"; -import { getClaimResourceEndpoints } from "../../admin-claims-v1/configs/endpoints"; -import { getConnectionResourceEndpoints } from "../../admin-connections-v1"; -import { getConsoleSettingsResourceEndpoints } from "../../admin-console-settings-v1/configs/endpoints"; -import { getEmailTemplatesResourceEndpoints } from "../../admin-email-templates-v1"; -import { getFeatureGateResourceEndpoints } from "../../admin-extensions-v1/components/feature-gate/configs"; -import { getExtendedFeatureResourceEndpoints } from "../../admin-extensions-v1/configs/endpoints"; -import { getGroupsResourceEndpoints } from "../../admin-groups-v1"; -import { getIDPResourceEndpoints } from "../../admin-identity-providers-v1/configs/endpoints"; -import { getIDVPResourceEndpoints } from "../../admin-identity-verification-providers-v1"; -import { getScopesResourceEndpoints } from "../../admin-oidc-scopes-v1"; -import { getInsightsResourceEndpoints } from "../../admin-org-insights-v1/config/org-insights"; -import { getOrganizationsResourceEndpoints } from "../../admin-organizations-v1/configs"; -import { OrganizationUtils } from "../../admin-organizations-v1/utils"; -import { getJWTAuthenticationServiceEndpoints } from "../../admin-private-key-jwt-v1/configs"; -import { getRemoteFetchConfigResourceEndpoints } from "../../admin-remote-repository-configuration-v1"; -import { getRolesResourceEndpoints } from "../../admin-roles-v2/configs/endpoints"; -import { getSecretsManagementEndpoints } from "../../admin-secrets-v1/configs/endpoints"; -import { getServerConfigurationsResourceEndpoints } from "../../admin-server-configurations-v1"; -import { getTenantResourceEndpoints } from "../../admin-tenants-v1/configs/endpoints"; -import { getUsersResourceEndpoints } from "../../admin-users-v1/configs/endpoints"; -import { getUserstoreResourceEndpoints } from "../../admin-userstores-v1/configs/endpoints"; -import { getValidationServiceEndpoints } from "../../admin-validation-v1/configs"; -import { getApprovalsResourceEndpoints } from "../../admin-workflow-approvals-v1"; +import { getAPIResourceEndpoints } from "../../admin.api-resources.v1/configs/endpoint"; +import { getApplicationsResourceEndpoints } from "../../admin.applications.v1/configs/endpoints"; +import isLegacyAuthzRuntime from "../../admin.authorization.v1/utils/get-legacy-authz-runtime"; +import { getBrandingResourceEndpoints } from "../../admin.branding.v1/configs/endpoints"; +import { getCertificatesResourceEndpoints } from "../../admin.certificates.v1"; +import { getClaimResourceEndpoints } from "../../admin.claims.v1/configs/endpoints"; +import { getConnectionResourceEndpoints } from "../../admin.connections.v1"; +import { getConsoleSettingsResourceEndpoints } from "../../admin.console-settings.v1/configs/endpoints"; +import { getEmailTemplatesResourceEndpoints } from "../../admin.email-templates.v1"; +import { getFeatureGateResourceEndpoints } from "../../admin.extensions.v1/components/feature-gate/configs"; +import { getExtendedFeatureResourceEndpoints } from "../../admin.extensions.v1/configs/endpoints"; +import { getGroupsResourceEndpoints } from "../../admin.groups.v1"; +import { getIDPResourceEndpoints } from "../../admin.identity-providers.v1/configs/endpoints"; +import { getIDVPResourceEndpoints } from "../../admin.identity-verification-providers.v1"; +import { getScopesResourceEndpoints } from "../../admin.oidc-scopes.v1"; +import { getInsightsResourceEndpoints } from "../../admin.org-insights.v1/config/org-insights"; +import { getOrganizationsResourceEndpoints } from "../../admin.organizations.v1/configs"; +import { OrganizationUtils } from "../../admin.organizations.v1/utils"; +import { getJWTAuthenticationServiceEndpoints } from "../../admin.private-key-jwt.v1/configs"; +import { getRemoteFetchConfigResourceEndpoints } from "../../admin.remote-repository-configuration.v1"; +import { getRolesResourceEndpoints } from "../../admin.roles.v2/configs/endpoints"; +import { getSecretsManagementEndpoints } from "../../admin.secrets.v1/configs/endpoints"; +import { getServerConfigurationsResourceEndpoints } from "../../admin.server-configurations.v1"; +import { getTenantResourceEndpoints } from "../../admin.tenants.v1/configs/endpoints"; +import { getUsersResourceEndpoints } from "../../admin.users.v1/configs/endpoints"; +import { getUserstoreResourceEndpoints } from "../../admin.userstores.v1/configs/endpoints"; +import { getValidationServiceEndpoints } from "../../admin.validation.v1/configs"; +import { getApprovalsResourceEndpoints } from "../../admin.workflow-approvals.v1"; import { I18nConstants, UIConstants } from "../constants"; import { DeploymentConfigInterface, ServiceResourceEndpointsInterface, UIConfigInterface } from "../models"; import { store } from "../store"; From 3666024b75cfc550b5d12e0b5f234c871072e26d Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Fri, 5 Apr 2024 16:06:49 +0530 Subject: [PATCH 004/114] implement categorization for application templates view --- .../assets/images/illustrations/google.svg | 29 +++ .../images/illustrations/salesforce.svg | 31 +++ .../images/technologies/android-logo.svg | 29 +++ .../images/technologies/angular-logo.svg | 28 +++ .../images/technologies/dotnet-logo.svg | 31 +++ .../images/technologies/flutter-logo.svg | 36 ++++ .../assets/images/technologies/ios-logo.svg | 21 ++ .../assets/images/technologies/java-logo.svg | 32 +++ .../images/technologies/javascript-logo.svg | 24 +++ .../images/technologies/nodejs-logo.svg | 27 +++ .../assets/images/technologies/oauth2.png | Bin 0 -> 36522 bytes .../images/technologies/openid-connect.png | Bin 0 -> 19925 bytes .../assets/images/technologies/php-logo.svg | 25 +++ .../assets/images/technologies/react-logo.svg | 27 +++ .../assets/images/technologies/saml.png | Bin 0 -> 8519 bytes .../assets/images/technologies/vue-logo.svg | 30 +++ .../assets/images/technologies/ws-fed.png | Bin 0 -> 6190 bytes ...use-get-application-template-categories.ts | 64 ++++++ .../api/use-get-application-templates.ts | 17 +- .../application-template-card.scss | 118 +++++++++++ .../application-template-card.tsx | 184 ++++++++++++++++++ .../application-templates-grid.scss | 26 +++ .../application-templates-grid.tsx | 147 +++++++------- .../configs/endpoints.ts | 1 + .../constants/application-templates.ts | 2 + .../context/application-templates-context.tsx | 2 +- .../models/application-templates.ts | 46 ++++- .../admin.applications.v1/models/endpoints.ts | 4 + .../application-templates-provider.tsx | 50 +++-- .../application-template-management-utils.ts | 15 +- .../admin.core.v1/store/reducers/config.ts | 1 + 31 files changed, 937 insertions(+), 110 deletions(-) create mode 100644 apps/console/src/public/resources/applications/assets/images/illustrations/google.svg create mode 100644 apps/console/src/public/resources/applications/assets/images/illustrations/salesforce.svg create mode 100644 apps/console/src/public/resources/applications/assets/images/technologies/android-logo.svg create mode 100644 apps/console/src/public/resources/applications/assets/images/technologies/angular-logo.svg create mode 100644 apps/console/src/public/resources/applications/assets/images/technologies/dotnet-logo.svg create mode 100644 apps/console/src/public/resources/applications/assets/images/technologies/flutter-logo.svg create mode 100644 apps/console/src/public/resources/applications/assets/images/technologies/ios-logo.svg create mode 100644 apps/console/src/public/resources/applications/assets/images/technologies/java-logo.svg create mode 100644 apps/console/src/public/resources/applications/assets/images/technologies/javascript-logo.svg create mode 100644 apps/console/src/public/resources/applications/assets/images/technologies/nodejs-logo.svg create mode 100644 apps/console/src/public/resources/applications/assets/images/technologies/oauth2.png create mode 100644 apps/console/src/public/resources/applications/assets/images/technologies/openid-connect.png create mode 100644 apps/console/src/public/resources/applications/assets/images/technologies/php-logo.svg create mode 100644 apps/console/src/public/resources/applications/assets/images/technologies/react-logo.svg create mode 100644 apps/console/src/public/resources/applications/assets/images/technologies/saml.png create mode 100644 apps/console/src/public/resources/applications/assets/images/technologies/vue-logo.svg create mode 100644 apps/console/src/public/resources/applications/assets/images/technologies/ws-fed.png create mode 100644 features/admin.applications.v1/api/use-get-application-template-categories.ts create mode 100644 features/admin.applications.v1/components/application-templates/application-template-card.scss create mode 100644 features/admin.applications.v1/components/application-templates/application-template-card.tsx create mode 100644 features/admin.applications.v1/components/application-templates/application-templates-grid.scss diff --git a/apps/console/src/public/resources/applications/assets/images/illustrations/google.svg b/apps/console/src/public/resources/applications/assets/images/illustrations/google.svg new file mode 100644 index 00000000000..5c809f8c68b --- /dev/null +++ b/apps/console/src/public/resources/applications/assets/images/illustrations/google.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + diff --git a/apps/console/src/public/resources/applications/assets/images/illustrations/salesforce.svg b/apps/console/src/public/resources/applications/assets/images/illustrations/salesforce.svg new file mode 100644 index 00000000000..b2f3856b546 --- /dev/null +++ b/apps/console/src/public/resources/applications/assets/images/illustrations/salesforce.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/console/src/public/resources/applications/assets/images/technologies/android-logo.svg b/apps/console/src/public/resources/applications/assets/images/technologies/android-logo.svg new file mode 100644 index 00000000000..01a13e30835 --- /dev/null +++ b/apps/console/src/public/resources/applications/assets/images/technologies/android-logo.svg @@ -0,0 +1,29 @@ + + + + + diff --git a/apps/console/src/public/resources/applications/assets/images/technologies/angular-logo.svg b/apps/console/src/public/resources/applications/assets/images/technologies/angular-logo.svg new file mode 100644 index 00000000000..4f21a5121f2 --- /dev/null +++ b/apps/console/src/public/resources/applications/assets/images/technologies/angular-logo.svg @@ -0,0 +1,28 @@ + + + + + diff --git a/apps/console/src/public/resources/applications/assets/images/technologies/dotnet-logo.svg b/apps/console/src/public/resources/applications/assets/images/technologies/dotnet-logo.svg new file mode 100644 index 00000000000..29ef0fb6715 --- /dev/null +++ b/apps/console/src/public/resources/applications/assets/images/technologies/dotnet-logo.svg @@ -0,0 +1,31 @@ + + + + + diff --git a/apps/console/src/public/resources/applications/assets/images/technologies/flutter-logo.svg b/apps/console/src/public/resources/applications/assets/images/technologies/flutter-logo.svg new file mode 100644 index 00000000000..e44f6851e12 --- /dev/null +++ b/apps/console/src/public/resources/applications/assets/images/technologies/flutter-logo.svg @@ -0,0 +1,36 @@ + + + + + diff --git a/apps/console/src/public/resources/applications/assets/images/technologies/ios-logo.svg b/apps/console/src/public/resources/applications/assets/images/technologies/ios-logo.svg new file mode 100644 index 00000000000..e28f166c215 --- /dev/null +++ b/apps/console/src/public/resources/applications/assets/images/technologies/ios-logo.svg @@ -0,0 +1,21 @@ + + + diff --git a/apps/console/src/public/resources/applications/assets/images/technologies/java-logo.svg b/apps/console/src/public/resources/applications/assets/images/technologies/java-logo.svg new file mode 100644 index 00000000000..2af73e87854 --- /dev/null +++ b/apps/console/src/public/resources/applications/assets/images/technologies/java-logo.svg @@ -0,0 +1,32 @@ + + + + + diff --git a/apps/console/src/public/resources/applications/assets/images/technologies/javascript-logo.svg b/apps/console/src/public/resources/applications/assets/images/technologies/javascript-logo.svg new file mode 100644 index 00000000000..fcd63f9b2cd --- /dev/null +++ b/apps/console/src/public/resources/applications/assets/images/technologies/javascript-logo.svg @@ -0,0 +1,24 @@ + + + + + diff --git a/apps/console/src/public/resources/applications/assets/images/technologies/nodejs-logo.svg b/apps/console/src/public/resources/applications/assets/images/technologies/nodejs-logo.svg new file mode 100644 index 00000000000..552f2b278a1 --- /dev/null +++ b/apps/console/src/public/resources/applications/assets/images/technologies/nodejs-logo.svg @@ -0,0 +1,27 @@ + + + + + diff --git a/apps/console/src/public/resources/applications/assets/images/technologies/oauth2.png b/apps/console/src/public/resources/applications/assets/images/technologies/oauth2.png new file mode 100644 index 0000000000000000000000000000000000000000..86b72e63a1b7a085c3c5624ba6e55f7545340a7d GIT binary patch literal 36522 zcmV)BK*PU@P)%9k$ZKREM(xgd~C5=NC2M-Sb6I)(!k|e2QIA8zv+kM|}{`mhW`M)$RU7BOu zN7~=rNfv8lt}=^@kAshghl?+SS4+SL`NYG(2W(PXVpxF%CVPMv^-r+Ea85{q4>)ZXD zZ`}BgC;#6oj5)h$Wyr0q$<9#@IXpZZAmnFFUO)KDmEV03a=XFbZt#BiTevu!bZ2u7 zHO!*rJMPAk)wg!M-81ld#(y;V9~;*8zqK{V_qLM45h6N5wvh11--?(nF32XJw*$3M z3_N@ckq=s4s3Uv~Io`)7i-Sp=3OeqqZXEgF|EPPrXW~f5e zp@n*ObC5>5P((NJ$YF{UL5^^MVesPo zJ=1@D{pz=Sj`~0TW5~a4cJs8ZPiB{PlLLHm!sjkId|Yz47$hmDiXjZ4iZU#~!U%ZR zz>riOCLg{uuQ;PM~QLJ``Ozt!eo z%6AMQrrQ6l;5()q2Pqn8VI5mo%YM>v!b?XlB@qAPAOFkqLR4qup*b{W;1dwUzUU+L zgYTMvNjvqdVHNAxN1Gh)%UvSd!HB)7?_O}|SO0vwXR-J3Z%qD%QK>uA@$8~3UO;p= zQ0;6gDW`%G*~fi6%*X>7k)PrJCg5SCi0z7;01pdO>;&=_jX`vh!i~aIW*|-M;YF6S zm3Gk|d~qo$9br)Gs5PCJzBB!!gKzhI790Pz*qg*iP(nvXJ06EGS zw0-e?u^Vsww^{=KR^;y*nZ7(d!T5yQgWW*jJ9t>ci3LiU510Wj>ODI8NIe&T$s^o? zjfscPST14?Hehl$f5#z?i@`WP%5>trOp?BeDO(M=*kU1AxR@9;u!cu?ihWqxQz%X& zn9(ujCo^yQ-l4a9ruDF1|0&*>;U_+NT>4L$kGjVzk!l5ond13`*z7=r%k_wg=-zgJ zlP$c0B|I5p7*j=!Tg@hX92^{AJY$I!++BDUz4zDBLWwAgpcaJk8`M?q6Jm^!Yx&r4EZBBtZNFMsW5RgPF@a zm`RR0y5)SzP1RJrb4g~@thR%D-tJjPw4S$hY#iCWpyf8dGKPgAu2jg$-l<982ft}` zPlszl&m9naw{YaY7m_jme~KIzT?W38`4G?1&K>-fDV)a1Or$KhcT^R({2P5;%C6Sah+T zCwYQB)DWWtQzD1jWfW%^@8I1)Egd2ud^|d6J!9;3W7l2O_Hx(TLxH!E`(OBd%jxEL zlNg@xx`&O0g;ti-qKFFrPWH2ry)@#ojdwFD*j3fgJX_qL@q@F4e@FSc_%R0gybm2X zSmZ=M(SE|6Z08Y<$``3kjkHxye3mW;y%m#=xh62F6k*-;a9ypqSxju!S{B@S?e2 zy}yRdqC}dMFr5hnTv2FBR`X6~V$n`YOiIP=7M<+mK^|l$qp6Hcu99zY#&AAMXyE`E zOz|3|X*hb+w`N+`w?0z)R@32aApc`!7hcwRb8d1p@Dihf3hW+&TU*)cR(G=su!HDb z8!5&Um(L4{Ur01xgg<~s8Izcb55!o_HrZCR@VE2MSh$J!#F)fMEWlu0u<*1kV$sD$ zVoajE$D#y-v7E*@cF`2Lj-Z2>p#W7#$V^Q?`Zz5lQaa5;o(!x za4JOD>(Ns!Q&Idd8t3D&hQ~=mfZ&UM-!J&-2RgY9+xS=*IO3@2OZ0<`N#_%ZxxNf(FpZ^OIhFV!`E~sD3M{@s^VRujT)^ zwd3BF;gBUKuG~07sUcQG|1O+3mo8jU+*~1($68(zZ<{Y>VBwK|K>T>*y%5%ElR>$e zKyhzq73g#Md5Z~hSXdn5MdGN)0hEytq%e$QG=uYw)_RAwS%z~xcXAeqh_=%*eCv%X zfA^tL7rtdO`7I>>4dq>T?ztp0fru+~D5IzpkD1xS&^kn$dtQGNhF)AKZMvy7aB0$y>C}zGZ&qiuT`ho@@qYkIP`jF*tCq_H^5Z z5DX=-T{dt43+)+Hc7a8X1}YdXoMq9Q-fz;zOCW(Bhi=AFNs7mLA&?ISqd11qJv@o| zf2ljlaSK}{RAf-i87$>=PGb_ona;6-Kqx#~2ac3hkYFZ@>0l?0yyMeA-Kk?*u0Qz1 zTYw>ci^%_hk2T(s8WEEz&Jkxcqp9fCvhJz688~dDRwPA?I4R*7gKiobLp8oQf%F!U ze@34q%juSl!=#;8S;eEQlBrkFuxT7iO`h>sEQACmyZEi>?hE&5WWPuK=%;f2Jh$Y{wR&SY&7-g^NM}__z$?7-j{0 z+uH(AO5^=JC4$_fgas^Qgdlxv62X?xmrKeQbU~ciEM`CZaZ%fg&F&!`7Yw?usrAjJ z&6`gCTW8e&qi&iJS3=vtW)#yH95{HRPLDAxBnwHiTYy_&P*0ALB*Zj~9;<%0@Tp=r2WS=^R_2-xBvmk#1=RW;f`ahEV zU!CGTkeQ?m8xxl*j$wQ-;o2rP(eO*7DA#KBFU>3BWm9|qE_Ts{(xugIUx&?jfCzu< zvuIKbV-i`KNTZQL>YBqihDFSzs>q`3`P1We)}b-Mm7KynDhb2XM&46Uune^EXGzFP zgGp_sF`M1&4T$3!yJp44?7ja#j{G-PEjY8~USpCiDN-Ken8z^LEwu$~Vg|82ONeL` zaIM}!+jxbn{GOqagLDKzpg1lzE(b_3Dx&@8|5UD-A~lQJPz3?GL$F~GzUubV5x3@!KkKujud_GtLE ziADkBP?md&=O|}RMEFL}WRN35%eMr*dU^NJR?aK zIH`K#4)oD#v6>jX#uqt@&r=F$z?jca{+khemoC63MTxQNLzOAs6koub!u>z2IQ7m0 zA6BZJi$#oC%n1OR8Yj1tb-c!U4w4nzuAa8=|B&}A>R2D3YC_b0f~0I4o;*woHB{z( z4_OK}zStTD5Tk@7rIb+;AOL$t5AyFq{h#74wqc0gF^bcePf5}57mHz-!V)XEnoTU{ z08<$(i&=dm!O2Wv15JT8k(wQ!lbV6v6%%%xhcYsgGZ z;W(b96;P@s(~aTYqrAb`AmjC)qJa3N9k+G7zl5A5PSh}u2@(iVCfio-=T#iZz6&$$ zj^RU05iT_HI8MPNm+^>TXAMdi$yi1*f+|YrU=@d`W*jxtV9P=a`9FF-#k1jGUZ8Kd z_<=(<%*0~0gB3i(CQjuXCgz2v!k^(n3UiOZqk*sRu*e((n8kOQEs+l+ zxb9lM&LgM|(!hdyyFbnwnl|SfCvtW5ZYbJKQv8x9MF~{* zHi&)95(_C@M6>uMSMnr2E-^f;_s83_SHF=9;0-1Jx8hB=<=*c|B8AUr7BWJ1HMKYI z;$~`zVaZOdQl-_3kF%RQsbDf1Ijbj73B_zcT9wONipB(b_*A2zp_)JjE-AWcr5?FXZ> z48P)bG9<`~5gzUc|`LC~N|5^L{?LeIv z#v*FSiLz(mk>Oq%1!=F$JS|q$!`kfODQXxLOlTNlamk25mn6wBO3^SYC216&YT?{L z8x7RaKo{L)Bw<9Cbn-B$ygou<#hc_prE^jNCWxPqbBB)A$C3gWf>$ zJAY_=Urd~!7Q;A|LHP2B%C=p>y1>uvGJ>Jh(9Kqw1H0E}Ei+jZ?7<<>D?^47Dye21 z!x=#Z4mx=v#M-23qlr3N=pr5AZwrkQ@B(i1g)DAR1V#m39b))+#Bgb)i9I}vK@}r8 zj$@g@SZvv_OhAXR^m%*oewbHi0FUy2bdV7KHW|f*oXP}oU3K#cbEpbf!o*`VKcb9V zamkXz!@jJen)kmkG<$bFn2S^ccxfsw43(#Q|;H zPg?#iV;&1Q3LBH*jNlbAK}K99lc}bs@l?)mYA6l3SD)FTokkAPKsULFywJM0T6|eL zXrq;S4snnJ?B@UnI7lsZ)YCvC?R3&jE~waH2Cxo87LN&Zu#aUt%qr@rWU$CJS0++x zD*Db1;bTKgysxoI5DPjbteZ0#D+cNPe4kb}vzy7(5N>7$Wz3)-xO z$p4)mZob?$vM8U{7*3-`^kl@+2ZJ3vha>L{<#>*lz2BsYy&McY|J6**i?|mL0)fh) zPt!shS)AZ(TH3gzY2_e0*vMsO;pAqPGnlD3Ji>p|Obmma zEN3!fB7jqaGUn6Bx}d~V_c0TWp7r$Z*BK0Y1IT~Dl-h3^LmlE6c+_wvH3foCU1%4t zpaZ0p9LpqJ`OBw{4FR7GWg0^Zj@O@QJgy>smNZ#WiIjS%(m+!jVgoO+l9yS-4r*x= zz7C7CMbByk#MK2Ib7bhEoi^I(BqhsMYZ;2z2Ayo@8J?ku5!8rLO5U9-so?=_{D4OT zAA%0{*m$(CnxSO)8hgbh4GnB(Dq{&{oKFP{*}yhgJcf~)HSBc4lclC_ge|e*P z;$(<1gfkh2FR+XJx>*U)3&5b0CNdKL_poRu%;Jj|ByJLXriLkaUmueg1|A7=#EIc> zkd16(3ytK8ILM-ASv0{T{In2Ws;Y){0TwoK;v|US5ffF}?r!NjkBJi=I}QUm#mb8*2SK53?oJ- z8+e+vjALYh?Qi0cU>V<%EPoZAp2|mvvl~PF9~se#l*hzoDeqyfIKlM{dKgqOhbL$e z!QfmbvkB2j8W_o;Ds!#BHf>IqJ1{v9UPB?!cP0 z*v$s^vziCl5tLSeSxje=?5+6X9rKQn+XiTC5A~33$U3_DKF#WGMw`{oyjDbMJa2^pz%gAOnhc@ z0gD-yXE}wl>N0}yJVLk3qgPRJ`k9ZeZGOwiKjDhHADTiak9nLLnXLSOo`|lItff1c zOoJ}Au!k;*oEyLxj%N<>05PYC{@w=pYl_dQ78T~9jei14~@2-FO|;W z5@RBRX%inLk)(WpBN4XQ&=hj zujc|FFor6y#dJ~ra~~U>$7|wI#c|AGG^(DyFCwvvE`fTerDT)lNq)}Ftff1!>$Pw+ z0&;0WnMD_XS{$SK4iniyYXR}|ziAdZI%;4l(1;aT7AaP-oN^`+kHjISGL;c5;CM>$ z@QLvtx6&yH027Z%T*!$`3?hN~5>T^}&vdf9h(;_QD4*20bj`-Y?_F;c`7bQr_U+uU znsCE;H`Q{3g(54Tlg5%@hrpS2mb5^g;T38K8s3uH3OY)*?qOkFt$P3=I$kFqsn= zONqFNUg8=WF@mjU1Rr84GsHJg9A~H&bd0%dXNx42`3d{nS^HNXK`r4UBL5GnT5jri zpUz(|<7~zR#4iqz4h8;ERC18cymukNSmrX1DZ(vkk8h`zcHu0gL$BsW?qnyP_~5it zNheb(UEd<)U!QV(97&|qc7Tt?B)-7iJV%;3PNJD^;VcuEn4Bd^94B(G`kY}DFBHnE zytEEF8GyrPp2K3AWEYxZ*eZ2z9baWv5SxT*-oqKpB9^Da6muY}gtZyG!U6Gwq}Vrn z>OF@B>;^s}@{jv?!&g<9*2ZHg$M)DQ^M6Kv^O?*{lB7uCVPjCiXy$Mt^8{h9^!6+b z>?S1>YhbaBKXV)F@x@)Fhc6mIDCP_G{y`XI(Rl@`#M)H8%`=O38T|Hblrj`o?$;zs0lt-o8f-0Weo2vMwK z4HI}m7|F*QJ@}X`fG|&-{|I;&f|G_EO6>yJd3GsrUM^E5WD7IV-Dwxg!rZbIc z%wjPMnawyV(ABjqI@rRYz~y1n!lT^EYBK0Nz9=zFu_cg&QXUD2tJKgjxMa{}mu#l; zdG2CaAjG?AV?M2Ph#CnnfvYEiRhA;$7iG zcoNvLh%=H&OkyG<85~sgQ2e=<&9sS9XyUPn+j)YHh{*RNd$J!uMtn?48A(&b3Q%WA zb2J&!a`Ys=%w0T96ffLC8}n(TQ@~)O86G5F`UM(*iU)cH+5(Z^v;qI{0*fVI}vONQ;5Heu$mwtB7`PxxY z!8welFo~fz(rfNlAS#v6tn2NE6>w5)VGCUWhqdu9{vrV(J1FXwzq|Wbl##`xilf*| zCPEl>!>XiwJ?PLQ}&PxnOe8xC`NkR=rQ$bC$@d6hj( zna@+=!inz0N{e@JIl#xbiW^xb)9(@WQhGoqwS1iS@*A2Y-XGqx$^^FY@R-4cyeyiC zPF0DjWzlUSgsXZS_BVz6 z6{j_Q74f?zIft=CvuF;#TSfmxqixE3+Q({I0xs|58J5vae$9{G9>Qk`$KcXHlSl}H zb8B0|UDwL_`+0y(#W^y$@W;y4vkB$HXTo^gb=YFj_ICymP z6d8`Elr#w(Oxc|B=PsYfg@1)xiv7W7WU&f zhgifl*>^FN-h{uNDv#~FLYf%Lh}*_fG@;CyzPxVQ1v89Od71`X4lth_O%VsM3PziZ z;;Y=tv*dV%3mCyVJmNu4pE}b_uHr^sBgG-kWIL%mPrqv7Hj7X5WA@Ta9cQqgE`h8R zCx2)Wm{NaKEy%UxSV$6AWNE&X>3abbE&(5((d=c7MgrM2XPy7VtNn@s_M7}iom~G5 zrOR5xc`xJ8(5B*ft$hi9ee1d$;zpKBnG~NK8+nFy5JXILsA#`-`e?o$&PhB=GZr3c z4zdVOy6c2Nqhq;_-}3?{1{s#~K1Q=q@`W`4=I|wc$}2#OMs{!kjkFeM^|SdDKVdIE zCT%ovB6W0QMxM|of!^B8yeHQvXw{QwB`wS𝔣Q6(fIdPM`3+>SZ&Pm#CFx-(KC` z)b#WlNd8||uD!8sg7$MQVo?F6CDeF(Td_U4U%N$KWwp3L4IEx$wHR(h&K(k=8k02I z;4>M*LRL^0c-mYJGM5bPfiDooay@@zS#Y)-D>;u5YzUN3pX0ckn}g^ZQ{5=xZ4iTND)} zd0fD34$idWZaUBp7jQqxfAn`Zd{{R^7{o^?4a~P4ID(ux#6qA=Ja*Ih8aMMSx@#vuhS#`&VXQ|9?&J78H?msf znc8sLXyA0(XhGE|SimRvB|C^ko~oS==F=p({w_yjQH$n$zXu8RcBSlqwRErmn`l$1 zV#F@aI?+!&Y^Jb^9ilH~%ZD%i#3RcNTPV6;nX7DaDpPU8L41ll46ZOzCv(F@u7Hk4<~U2kFy?K<}vKhr@-FbG;=zi zZIYP8>7s#4IFIkMT`c#|RivTaous&oIot+> zGNxy>kMK906yjm>8YL_&u$_9!)4n8t4tU3y!UJ^5b9Pp~qjk%QzG>T!qOP5nd*d~C zO=o%#2FWj?98Jj1S9qc|ZB5C@wW#AMn&jv-8`v3eaN*HW0jlHvgR$7lXte#HgDk49 zo+lB43Z7;iCD;<=)oPw@il^o?=S6M9?K_5%1o!?YcINRD1DB@a{v1# zb^IxpP>)&8dl_7G1r~SkgcB9&z9uF%4Lr&L>1>l_3tJ0BUD!~iXHX@}P)=kyPcws| zsE+A2p$pjn5|oi-8?U14g{d=o!Q#{%_8d&<8>As-`o4AhW|ws=BZ((<#oWjeRhz-P zIhXJA3h!cmX2NI+x5{Vu`1vHHKuS>o(G^W?Wr#%a11X{D-{Mi$L3ya-2A%8 zf6P}JmKvfC&1P}lj^C5`hr3NReGZSaRZ=AkcCiB;nhkl~Awf)h<5AVmp@!3Vo_ajC zF%Ogd#K=X^JaNiMVB(MsHWFRLEr*9m34{*9rU7%@_$C4t0_kjx-QBUzFW zPS*KK2B-4@e!u~msO3!dOQ^`mo0*cls%7eUOD5mJpqcHQNjb$tf3bbO_ZhCj<55{~ zF4mNeK0%-ceU57;z3^E4Xa^62I9G}Y>`S%l&FYUjDxVQe+#tptHiLvvqqrI$pK6dw zw|Y1XVJXkjgif(Ii$koI1%RZ0sPK%c+@VCgMKxm>$1KJ$gla0OpaiuIDS@A%oeWL1 zvY)MNq=8yeWKqeNDoI=wb;(MoT1k#Gc^BWMNeau2W)Y9mjxC(5WXcd63KQ}TdB&_{ z5?h?ZFBnv0{(3W=i!TnJPTs{DnQPOXe$9$s^-kZzBzbK)KY6qxNmVl#p11SlJAMk^ zjf(x~Pn-3;Ebxptwd@csvn3rWJdZ^iBZ$)wyyr56(|MX^bU@YRDV8#YtyuV!V@gVu zDdflyV+8X!jmeCsO!zk%SJzieP=UcDRQb0qTG`5a9%nNx;;&PSGY7=UO2LTJc^^NZ z2}3gW4zQf1JP`zo4IIXkrKv#43g;sxRZCnRNwDe19(($F=Gk<3B?3bUk(Z%IK*fMYd3=Kbi>cYY7v@99M9IpZcS zwS1CiiJ{cs(=UAR-rk(ucZB;9dxpg17v}@7;J@J+*o>sGzX{I%c%@Tw~Q#9W24CZ6)pr1 zgAzJ|d`bsrc=I2Rfc!t3zWTp&Llic)ly@++fcU*RCW}b~WiHt~!wW&y`Y!78l%bwO zb-g^qRECh_6rQIZ)o|S<1Z~HN2bI2+IX9k5_#fWEaDk0md3Q6=;Zw@doXM#;?4uJy z%(@h-XhPTHi7w+#+L=cqOBu{Ej6fU?Xs8B!8pQ?cnU$>MV&JvDeC-p(}-VI>c zQQKa%ib-)5P}u1J8)>vb7~#UC%O(Hd5VbMX`|2osOpJU~jI z70m$>U*D|C+EsW?DFdJpn+a*m8=JR4s&Vc5n_AMMdY8`Hw!|`=U<8IELxLCHE>Kc<)<{E z`vkSn#OWNQOI+9<#n6l49V_A9NCiuJT{3+sf#LrNvOJA4yR-3;RR`|uH~CL~uBk-f zaY{HzYV`Gn=*?es#kjwj`)HJlwb4=}7^=>np_(e%Q9l16oXHE+V}Zm6;^bJzQJl+4 zVu8EX;8L!jBH;NWwekBu48Ub5$Fq(DvXo6M(tMl+{0~heP^}|84BBbsBn}E}%t z!cdTb$sUepTp#4^&jP67Y3k*QxhZYm?s?6k>hL3%9UP?l+zerOBn$Hs(2vl&Np=Q$kzhyUyP_wC$8r-VN{BzsR2 zJzw-0*fcYS;W&JpC)i7&pi_u}Ei{vpsaeQ(8QCKa`PK}B2~_Z+KvR7xc_1&eqd^}g zU9_---GPt8191lRgoNv|7u#4M-NB-{M)@;c%oiAS09!mI+0GuNRaZXpQ~~<0DEF_C z__;v|6AL~IQx^&TFNAy`7gRj4ibkn@lcTejglYY9fmayHZ+MPv#6$@UUlty5lBlvU z7DM7*_;_;XZUISkX$p@+yu|w`#TD1I*NZ366ssqW#~FyCijpK?)KZ^yNO{FZ01jXH5h_2&f@)XY$fxh_^Lje_E0E0L~=GtZ-5BKi*XSnthai3#TJ6DxM8q{HrXAsdDVD|`Mx|ns#wYj?xv2VQusZ}`zA3g3}P5$ zn8&-Y1A+N=aKDGaBrcI^2W}7IE2or8mJc(7ud$k?RFcIkkP^|C3NOd8=-?hw;@gPM zbpBGHh(u7lZ(y^4YH6HfG4|SikbmDCU$ogIqs3ua?DWO{&%ZU3R$jrA?j5O!5Yr>N zhk3vdmhwC;#Ce!*mZI~BwC16qmIgkCTM@zo;HGF!PT;37M4-=ml@8b+7FzgQ8$Ru)pB_or0hGVqzjG*t7M zIJ@T*ez%9}cVpH1FPU*QrNfz7)S=MRyz9**T+14HCqoOm`o7X}U37V4jq|By0k6^^ z-`LL>YS=F!Tn`tQ80A4^{X8xVL}>47UwBPqp?IWdV;4Kw&wloCkakRve&7RDAU#YH zxI7!w;8k(fHho~=aE4}_@vy0V8 z=}G&YT^pB2ztIEj)A%E|+!oS|BOa7Z$(H~|!OudJk9wz*wfF*(YLn^FpXP{TlfuT4 zc20vhnH3z8?Z(IBc}`$Ht7V<4rcJu>+HgKjc|S;{vAmkYce0#k*v&yY@I;Si++y88(hq8s)jcW(z%(rY9CE7i&AtVCPg^D?-gmY zmDRF>vjW))k2LWprHT#=Y|_-Ql$F#8$WqtMs$~o{Gyn!!21(O*@HwCNh!WK|sdN!p z@Yv6<`3VoQnMTn^Vpu?$T3+K{yn@Ym%mI`+*FxLI=0W+}=2Y5g#l*qoVy5wbq$EnA zl4aWIWFZG}q*ZG#WISJ*J11)!wS zP)-XBUo4+2E;ie! z;(KgiTd-Qyw{($Y@Ogm|{EEj}BSJjM*@2J0f4l!({E#kui6?5YA16kf66^?G51!*& z>_;_y>(5aBOp{Zo68?9o=YFo{B>s=~fTKf~tl9$hvzpJdgcXvd;6)hC6t&GDj>{8t z%aa?u&U+z!)D=~8?8yuUG5)H)+Xwka++YdOOM(()`KznApI?6?OmIlE3ttvei!2GV z;KFK)8N@?Or5qofH?Mh0q39fjaVE=XMZ-gmp@#+2$H?$6en2}uFm+1^4BO6Rk^aq;+ zWvH%PIV|qvrMWjq!5#4u>(cm1#`qQjz!WATUs4h?*lH2e4#@8fJTd0egZn$J_k z|6x(bE1W_ZZX{_w>NHYZ|1_Tp7YI^a5 z^{sHI%b8?o5Va#q8%FT>AqV8B<}_a9keGR|(8@x>?%h6Fd(6LHX9M1ve1Oky!Z0wZxHTL%md9ga;71A|qvTQ~A6-ot$SJl@Z6 zDMR_K*8`oWcI@wW2^xH zp+w|XiZIafUtG*P$cWEEV)p=m=I%5W^xyJI@Jg^z2XG*F9+! za5zVc>Sr+POP2?#Q-u6`BzMlhpp?X6l7D+si$gBkX0oHN~71C+Y#1$!` zlUY1oC7q{l6}SAOiy|r&Dg`-UV9?Ckf>{D!2d#nPQBAzyVtwuXe&jFkaX5rd#A+rg z@&R%T;Ubn(hi-wa0h1=L(9LO>ev0cin8KQ9QA7Gz!gUY~kwIopO6C=q^{)dn84syU37|f3Z^K1uq zW3r$1oWW2rkZoZODywT?RcDg27ZQ;`mr(n09&*@;8X_VE|PT8{F^X zqJ^5jG#I5_a^bqAPgS_@`HbO{JVzsj*x`m)2nyuAo-SrFnCp3xm(UH@60&dkOq1Ua zM+y_j@S-dRi?FY++MawImNAJMW^o?Br5;1Xv38fV^+?L@dzi$ewX`bmpcG#R6N^s% zkFz<0PgBM%sM1m43@e$mk2QRRsZy!H4dz#c-dorlsX0(g`R-i_^f8zw&{G2+_pe9wrTBg+%Q@*dEo#XDm0cnXQsH;{-^3SFB!_=NZQB+{1%1 zg?_LTLV|_;()yL@v{8yh#pL`tn&y$kB}X%la1mGWgFr^8C8(nD8Bzl>{(RAPqF^gk zw>OT#F22bRnZplB1wOcNcv#qMI{e1Sj(( z7728eE++T`pGrnW9y5v`=s77qJLp7X>%z`}Y60ZPl3_YySjkXKaZl?ck+3P#K*%5U zxM>iIC)R+;1w2U?CkA%C?nitM;vrDGQr8KBB>lgW{^U?Cd6QR#8OE)nbOuEPx z*s9%l*gVS|&gN0kHEc0xJUj+*Jx}r^<-Eu|PGThvCLW$RJlpv*_ff?#W-*z`jG&y7 zAg4c!gBw7K9il$v0*+MNrs5hWaxOn+59K_;8JN^jCfc=nzOcnie@8Y*s?r(ydMRE( zIlsbWA3x&?Or96Q=nAGeVtkq|{z6y}R97rh26&tl+n60#1bRa(hP>!WAytOkma}&U zwts~D+O1$v66_c~iB9A~(VB`x3IEAIy;^v}N7{Q<*N?u(%ep|`A_ zVr?4z;8a=mun9-R=sr3MAegF09+>Q>f@$nW1F&3%aSf01ypYi+&OSymjzi)W%CDAb zV$el1+j)^Ed6381L^mBscY6%Ba2K9{%4SkZeXzk~najKQodi;1#4y><3@i@d3tkVd zV%h-qeh-s1+$n0KEj;XDaVdlNwbU9i@abe7AHiV<%B}8Ta1B{*p)k6tXE-U=Q5`R{ z9*e;w=)I3Z&%cyB>*hJ}GkRp7Iq+;A`RAVHE>({aXEbGbVpN|-i%&BWoYd>xCd&?< z<|zz;XnX7my6}XCpAK5sG>~8hdjN|xReXb|crH+j)L9QOmJ#d|1Ik1jn%?;w8En%QgIi=Of`!Q^eZ~%x4KNkYX$sb0dx**fciI#34=^ zU1Gh3H9UaHNO8dWSh(bPnT1ScBUzU6UVgzLVp2;?hgmbM6y?<;&Z&$Tklt?qhj55t z;c^Zs{zj6|P{PlGxS~c)S{&qiT*n|DB*r&r=D=-7PE{h8st3jxy{wo^?-UBK^(rYa2SL}pmvV97{usi8!xew94017lEUSwB6%#) z-N+%yMvh?)Yq^#uq}E@^ODY#8#;eR_9y_^;ze~a=0@m<_Tn@27`ST>{;~*+{Yl`OV zu!0lmVh|tX=j^45RG{R!IM~EUNrf$w63(Zu;?l)N2U{eAH_nrM8JAIv;>U8%a3)+5 zI5ctt*OOvCZQLHPN$~}z%R}e|Z{hM9TRDLbFdL1H2$x87w!<9Zm{epn@#vxn2!#KA zQ_R0^8 zy5b4&*vavHhoABiF-&sU zi7=yX{@}8k$JtCZ!?DrIccDfQjUKLNQ{Yj^{(56m!2OL9qf$^Ro5Iq+48;QZidzx(oKA{GoVL)d^mPODr&HG&!u`fkty04^t+jNeFCIZ98d9+DI{% z$vi=|L=tq)t!@t=!@*@HNAUVV_61qJ|%g|Re#1#ad){`q&bgO zRI-#OFbd|=kx94sF!!@v+Bt=Sz9)`ayQy{i8XrgM3OGE+dd}c{CSnK8rh6Ld05Jxm zYX+t`D6Jr80QvgSW)` zxRyBI<4Mk?T8c_X&DQYwOqmH&;wXNe1U6~q9zMq{>?INS9P=f%I^L3)zrq@wyEJl@ z47vw}4pZhopzfTb7Q%Y&;y!i@m+R%>;Xwe)@Z^!SuZ`e_EwN;~spLyM#&Y7UqlFWt zuZ!nnus8E$1W9;+x}G8uAsc%*=C@x~p?2ly?G zc)Y+MP7}K!F5%>a1fzXmHXlU8EDk?3QQKK2uyKR;P{WP*wDCihaAvTO%m7Yi@L9U~ z0|u?EV39b%l||&CGaaz(2i-FFp+iX96Fweg!WtGZ_><8^ zhJh|DU_@4QC;@bRydB)l9jq$|S?FO>f+=};>A+6c7#?3lmxW7)@qCkqcvzgDuhPaM z!j5+)Il39kbv(c;a(~OQnNJoEn*_=Lb(q4Z_ygN8iD9suGUlQ|+*x9Hq*=`6{7ga} z8J?tqkIKE+SR^IzL)@xU*|Fw{H5b_&-0kpofRcHoncZtR#m@mC^ZGVFqLwv4A?wc``;q zlq&dGNPfKp>iGwM=2fz&hJ=2PmnqzD;E*GPGZ+z~s&iFv70>W8F;qm(Vm&RKgszh5 zVlaU#xtmvIJsZSWfyY8=qzVRIOyvr0V=F2T-oj@!NoJ9fzg@bS$%XuedRZ*yR5leU{UBbN%2A{#8un`V}C zGL;aphZ6ut^dhiC^b;VaqVsM@n0ht;&5ziND?uz|UeqR6DlBdi6D2i|`)y1)EPnzF z3|e`HTUbU40`b%HWfMmQ6>||YQLSE!K|qWg4ukkQPx2UHLZgMjI+|G|ap^2Ie36HE z4TZgl%O>&yF=k_61KrHz3T|g}B>rXN@Cv2OlkKdVMO?{G*o!Sw=3wA(J1ty>iqh*? zrN;;Ps6-n3r}AlKbv?^a0c_|Nxu<*zN!s}p3ptxKs)OIAH(5Ko@Gk(XIQB|6z; z2&LldH_=cStH3sj&bvl17_@LdpX1L`NW;Yqv?-rbSrP`8l);trjhYZj05k6b03EF0 zk33Er$Zhw=8Mef*tRSINrz=1jpQA8OJngIaFjI-Zka6QK+*4a#Ag0%Q||^zyr#Mrp7{B~<~;)5K>xkMOeW z6@HP6M{Ub8ChAVI932FM+CGb%VZZ>i4s^i%;mqCNC?>I&rtWi zfgjQpIGDm-fPV0Mj@S4ARlEz2KZ?O=Mdr;A^L0M^nM@@+1Q4RX5f9w(xd_}l)b6zg z5-yiRyht5m1hK8m-!xB12p*D$Hry0&zlTLkQXiA(K6Wm9xrf`?8tmBlA}2rL%LihV z5XY9)A8sE?rdS*#!#7#Z6QXe=7DE_Iv{*?gw{jCN6D!cZeerX{%Z%ZFxs?rAk>%)# z0;hU;Jjd}|$xms-mYjP>Q2i>5QU=tM5aKW5+f0=u-~VCY(aw!Di^dcuza@>1PgvCR zeJ*Ddza=BGEZ-;UVzY~NT+d`Sh#-$Xxk-psh{~Rxl+dG#2e_JBrI4O#pAieBNJi)) z7gu|WC8~mrPdm%FomHYlg@UIz7icoautfvTj}5ATMJ1!Si>x?i9SlLeh2fhtHJru$ z3?kGE@=GO|WSGbz9-=bPZKD&Su9smZvw4~-GUUWe)Jp_Rl4y62MV9G&iZKCOZ9OSUQHkLZ$EJf#JWC@AtL_DaC_XV!-i<}Rsofa9Si4nB=VjWNz)8GF zj(9)}ZJB16$kqIr*O<*xoq$sN0^!l5=p+i4ypV4)h0vWckWkNdek%L4#}F3sI2uxFpra63vU~-HpHs${DdV3~ zry#tJflG|9u$z0SU;(euO<`*rpWa>Q#fHWMyvQov&3l<9Eba+42q=X1DJj)uH-F(D zL6H@WIrRXK-bBBKdc}qR^~p6?dn6goCfYFAK`kd?NYb+(oIghupXZ;fC(b(RIi-LY z77l5qa5cYY3npuEnH_i)%s@hSF3Q(HAMl=F&(dAvEG|8UiF=~S#N>st<%?TQ|Qmm2v(`L6QTv|P{ zD5H_An3Z+FJoW`f3;3j%$XB_8)v{>nsA8&=P1eZ{X(sU{Zeoj6%Gk|V#WnAxeWqd(3gW}p2-A5;8UDa;g++XlxIDx8j1pT! zoy8%;^~CrkswrIuEBF`*3BIWCa*jA(<^XpR!^fhFE(Vc~EP#YW>kP7V6QV5o9-1jt zNd5^{OJ*Y&xQBLys$UFU<08f$(&)N=10S}$bo@C)rgaKbLum-R*~6(43=NkYA_&>Y9@7fJ9*Qc5G}B|M}rdyKL7KLy%zp!u=doCfK^Bj0=5ZOn zWG6{!6ss#jeoH>EP^FVK zo~C~2{33Bi;E3^P0T=UWMxeEmffR-HfNgw-y;8GV zgHVw$)o+=``D8G-3YR}Zpn0gLO47y8S;AR#li@n*`3GTJS#2%lcmE2VzWK4({=D4C zGitX_Oqf;v3!Nt_6niAAO#2UjpvjS506O>(elv!{b{tM(H&<~FD@e#LYNFFZT`bl! zgLyRZY3^VvF?k$*#7Yv*R2GFKbC~4)>vxxb#pB+Zs-`SWjxk)r z-}oDKED_MNCax`B?=+M7G=Jt^x>y{TY<8p?7j$qO@8|bC3=->C8jK5p!&g82LVm=F zBnHSoda6ub;d(Y;NJ}{d6wv}(`3$o7Ttz82a05s4ZVJ)+9*_dQKqG(T1x})dFv%vr zc$4P-c%YVtscZuwy`rZM8ks<4l>EECp$$Ka(%|c1WI1~C`qgtGAY~kFEJ_KJB#nZX z;=~MImva{zDdAOGnMau9p@bo{vye-J7W&xgO_%%~GHz?T(ki+6i>iHWUK5<%D#zIDr2{fAMRgDOJlqy>o=jiY9^#bd` z!j#rB0r}P2HU_0dF3`8|4`G}c$;pjTDSmA;Si?!eT3I=&xSD^lhNSRLjLp=uM0PhH zNHLzvxg${cJYW+oED&C^@#*4NF5yq?lsk5bvz`od@JXPNZYqWBdOksQ-eR`;oWy9& z5|1u!=X>lSjuPK-Oj6uR4Ht;UqhP3)VR4&mJCLB8-!g}DC3nyuhtE}XaSu5R5~3)s zV=jXN15IId!fXqb=VOW~TRgM(aKtyz>D_7*>$)XEe(kNZu&D}^w1E$o7A#_zlu;hh zU@cr6hEjryM~ZQLo4a_HWJGDQSkG>j5W^Gca1DQAbC9T|EY@|Tm`fIy3@H}z5pHA~ zNqIbF9Ie7VXB}%E*JD`E@FpN)0-av}W zNN|%RuKJ=Cr1%-rIUgIBE-bF2nY%@ab>+SfvYbT>!NJGDqMS0>vXrMV4nfw#k+0i)(1&uR&tBx`siV zHeO>c<#^;6%MjXvW$F`?z26dzNZ;i^+;To1v7l70o>MXWD(EJSiocZ+lc?3ehexAS z25}fBNF1%|nKWXsfLgBPPF@ptuO)i3_C#+c#{v%Vd49w8NHrTx77vfrOygMK9DYQb zJVFc?SCXi8)esMZVO-5QBpH}vN5}q5Qar$~*e}?-7(Q`?oUd<*Crv|BL>dga0*!+;2 z*+D!n5*KC`n!Ls!KF8hE3n?_Fpi~gDp78#3zRr1pYjz;yR});z4g4Pslm;GnE6}}l zAlt&^W)?7od(a>*BluK1Te|rP? z7fx9Ym&v??KQNp)p5Tu3MCb|2vXHa5n@OltE=`U&G2vO0EG3-I&pA8Lnfr71p<3nP zvX-m4g$@idnCSX~x|^|q#tXT8oHgv?eNrjZKvyEPMNXuMaXAl@JbAWT3;OlUCXNhX;@^ zt=yF|oLAV(CKggArPXz2i!z-Y#&Z>a=27ZdgpUqV_$UOghfj(bT+AK(i-Rl@6)Ojn z2zp47u7*qbI-`JMK#AhS2Zha1Nnv+$tu&)in+#CPRu++@o3Of#k3ovj ze1^N(ip>UgbD|Jb$L$nq-~_JX*KEaN6P+x?B13`%x@Cfm%Q5^nmr^sJNzxuQ8=q}_ zpKr4l9b!>1@GGgpA}eu5Fv#I>IaU0g9NqkeDO@C2Tx|+kEa0vOL2c`z^aWq$PCz~)ZNU)bf%tvF6VtBZ;GnJ2W zGYwe8h_RJU=2Jynls%QZa#J2Mr zj^jO~vB}`k4Sa?DJcy1~Sm=VT22e$%!0=lKp&5tLJZkMFnoVXHEOtObfoFshP%|t%S-E1TwkF6HTZnko=L?ODF%0=8v ztz@&P_VOkj!D2NzhVSrUaa^fFG>04EF6xuwS+39B|4(ua>v=ecP--Nhc5M%$R9tfH zy^`NJ%*)51EXW&-iQb<_{$vpGucoYrL03GGQ24nIG*XL$hsRi|@q>v}#)r<^v4BJD zW(huNCh%GQ!j>R}3c3~IR(7)(lP-?oGyI-i5tl`YkWKl*P2SIUStxdkDf)MDl1Jla zz7V*PoA?T=#8UV1rMSD=z#ORnb_ZR28Xt#GQO50LBjIEvjuJhw(9B+r5|_((ntItpRMXR4bhCguKEb_g%!7ltqU^=khR1ADe2`n%EAE{H zM6v`tY{qdB@1&Ie)Z+;YCLz4r&9nTG4frHv!c39@5LFQ(CrkK`e3CEV(9Q4iTvmFR zc>J2n`7}vdxEH1NdU;nj$?^*>=L)8>oPYIl&n7N|7$L@QiuQgzT`{T{7!1ZBhKr4} zBl%N(g<$B4z9tn65sQ4_FB6~5&(q4U;2R}8+D)0oIz=<1$PL9A;1wDJo+NgYq*J$HV;BUQRmA+Xz}80?WKem*fO z(e0s2o%eL~Ab-bYYHDpvj^@aK-U_a;g-$#id}b6#kbLN(OBWNkh}#)Xxqv+i*Q`r7 z$8ricGEqV(C6uA@Zdp8ra1B4?7*PQG>kidoy`6{n1b?7Iba0g^JD%fE*w`qcwW@Yuy{)J89grHN%nG4phD(9xraj;U*T8mqMF`O)h0(#LW~444vIN`B*SA6 z3EA4sNHd%WbQBka{3eX=xHljUx1V-)9-El@yxJRCB7k)8aL7nn^&FAAFlOpsu&OZ^dT z$C@gG1GrSo2t1-o6Wio;C!(OU4QR9+k0}kMj6(USuFmS zb^HyB9Lt#!^zq3zRb56ghB$Fz)YA$D?zq0G5?$sN!wBJguYOp6644~S-rX_PnT}}R zD`-9fLE}qcBF0=|c-W*^pQrXHlg%N^I6lXp*(5mu?fA^#peR$yrP{@GF5yq?C5}r8 z-Q>hq7QH*X z!f}+z9h7B9-~7*7^?roK2e+9!m4n4&FyjvEV(87gl*3{hhsdFF@`gl?QTDM4 zdsr_}NfV15>|_ZE(f3_Cn9V1-fgQx~C?SEa`=j#se!_(US?cf7RCnmImtS!`kLM|+ zW}sH-q;r=HMr2=B88~ftBFt?ZsWco$EPZ_1SuSu93k!#zGl7pvfm@d}7GGm0ccBwE zV`SJ%wFG3Mntch!V3NSbW1GYV`p^AQOkg=R0>d$A`_<*I=}+<`y!~6Z$rtD3WDW-) z>}?nrw6hH#2cK%DMLtuxdfiOo)7-&EDI%e(_tdhTd6IeG#Zg?$?KI$ve@_=&%~8%} zT*p))X8(r?wDJhoa~ti%3Da1k(`ASa1iH_+A&bM2(lts`&^5U7>l5ipe7WFgo7<@1 zd|V7VNN^RqctV_Cu4ph0O_YgN6K<6wnJ7W{Rt^@y`SeYd&>P@NJ8qR!S`(#s^mLPV ztjy?k!n3dr%m2mKoZOdg^y0O-pxVAy7wDF!`6ehOv zH#C&}yjSvbA6F^Gr<`f*7UccF;$}(|wy}yasHBg%JQi@0&nT9O*bm`bAt`;To#V}+Ci^pC_UjORz~uqlvB#Yq>Y<+fJeBOlE4*Y z=3UdsTTTX37)u7547)f81>f%9P^IRo8ICCoHYoS5{l%XiaPIZc?N*PK((D7XHuY}k zvW^a1T++;D5Jteq`#2;mi!BkQAsWXc#W9@7k2s1LkPXrj)y;Zh93F`P)Mv5sUWFO- zg}%w2pB8^9l4YnBf23~Wq`)j$5`2-{*ve?UNWsP8*1k%@IzxPPF6IdD zGl5b}$==LeoBy4>Q4!>lIUGfmBro>=6=Kj}7rRkeDK$)&eNw4KDaKJsHnMa3qHuLF zh0kysFS3^t1MwIZZPc}Xj+9UBK6K{jGC5p?v$qNNXb4n3oww(cBF%Nwa~~@>mZ7B3 z;LBn|xrN3v4~ry8+F6NicysvhPWW=seu7CDlEND!cCZifPg|b5!^gqHWfT*{1Kxk_ zIz-BOWLZu(4mnKbNzhj1|2iCGD%C-6Jw&v3Go6e1BX!v9VG}1)7U&|1ECZEA`9$?a z?B?I`8}kCiDD8yR4;A;Pso=|Oxr5;5OrJ~ zQO$$^;$6*zf(4s@;cUEHVbmNF%%Fc|%?qbf4V#S|5QAwfV*;-AFlb{BGbzUrwa&t$ zlc{{1d)a|P$2YQv*+fe}g*CulkMPe|7!MaI@BhohAWdtKN28`TONy&$;1SvFv#ekm z!*S4sTJ!S?)R~5`2%9(wI#?zPtpBw}^^+-DjAAG{hs#_xcxxZzhw8P4qXWOkl03r6 zR>7JUmXndn`HKZ;sEZ49uz?dKWy-=K#SA{ipV>-D;7HlSE>4k39ezX&J<_^E0|S2@ z$@v|!!lMou47#!TI_tR~T|vMi$Ft02ELl`VFKz#5^4eIOB}fT)l`TiC>Z&ZrS(KsB zQ z^GWVuw}hGunTT3;vk=vKJ$Hmee=A2uu)PW`lqJn)ILOnGCna27;24Gq*>luTLYV&Q zQOzP;(tyQdbdis{>>u#P6SrF#GlC2*Gj;wA`S)97BaOePLCSIF7hJlposWW>bbv#= zAhoM376q6*bzz$(*06v$?Hte5+{88kHt5_S2a8>7?Il< z7H}L1G=M$+TexnHak6mj%?uZ{gDMeF{bUMIe1#O}fjc01$ zA=m0m6={CXI6?5(0!5c(IwuFY)oae2!50J%6G0U{JiLPddihZVMmv_)G&|= zf6?7vfwT7UG!8Bf7K^Ax*RR*w>_PUinG;B&U>Mpd>tmB6#RO*Ia>m(<5 z!HxW#Ra9^?hO~+a3tfApvH3C^xru)W8IX{%uaA1XX>^ zVDLjd@46RlDk-1`ml|gFTk%uVpkJC-6Rcnd3JEZT1px=B1)$ms9AYzzNr)dnd&?a< zIhK>yi0bqA@2vW%XYWAA@l>zu*C^q9{NS0?!tSD+Ygoy{*n$u8Mb(|gR9rkVQu)V= z#0Ccb8p9m%^;wiK|IhsX*bL0zfd{oTd==B_wd8+i%c>TNco0-u;0X!g(h1EAf?oZjK={sJP7d*XZMjo##+RHS+ zqMQW*$f&p$5FOEXwX4#kn`h{dNWesnlZw}2;U^{L8raTU;7RBkazpB*Pe{>!O7jN&VS=byknd zvCI&FmxZxx@uLGEKloRA0(5j)$S@)0k%7Nm;%w!`AO^LFF}RZOlwa?%j;$;J+E~oT z_zedJoTvNt4VAtbI&XEMXOk>{BFUw+QOWge;Nif5tyl~^s+dQdG%h}`@dV}(KDEAj zg7X9c9mk-0WAShIO8!BI%sUY6e+ct}qGP>Xw6CD3TIVkc{L`hBMU+QKA0BPf#71T@ zp9{G?ucrNf!tf=zm4N?MGD|5j{*2ET`5Nn4CYk?6P~O4-CNokp{X2P_?g3soU;A<~ zIhHvf6-Hus-|3Aqy^MJ|b6F1E40Vy@qU6IPqWgT|Z~32FKpPLyj!KL^nz>lGQn4z0 z2oE@b&1d*6dje?3e**b^pj*PznjpF`n}<(3cd&phJR*95B}if=-p6wkDLm3-d7Lc) zob<>dj}`{!QX@G%K4ojmdP#Ne!k~L#7`61KA%Xg$g@U0#OkS5x7P}?`EAY6h^b02jK#g{^`v7qf$Ia7(@k^{E$ zvZR4o^w-Mj+1qn8OQfp0O`OCHV^hWN+V1^<7H@x{zJ7X6G}w2sRf3s)kG|_mrN>kRe5WPF>WS-t&sZ-lLay!()tscZ#1q z|45T^Y8y$E7kJ?Mo9{- zkN@nbn|eD#ALNI`{~4#~Mj&H2hE+!#Y1bpg(~P7Fk1W-kNF6!+$YhrQdvUR;#bh?C z$clJWWg!~)B?(;YqDrXW$6xxL!gr&Vgx|~g3g35&d`m$&9CSAnU2MiBO@gaM((!A`yL_bw|~{N17HX@nW-)pY<^F`Wn4) z#$;CEpvxm7uH;lgV}&olWH zE)BiMYbjPv30Z6$y0Q2wYk7=PvgB70ws08BG;z&XtYz5|hS&0C*X4X1l{f?TOGDma zwDopepG)niwz5B3IbGLwI#VQ0*IyN+=YFMt+$%81VvuGga|sJNhBY!&8-@n9Glvp# zXbgZ_8g?H45c$0~l{9)sMz4FRKElj9y6}kJ`k96`f)$QGhDVwt*RY0XgElQuQso%V z7!=OYXCJHa=>Pl{pKFs5oFP6|2QTN});sYzoTNG7rm8hLsZ#@I1{I->bSQE76k9-& zBj-zIzBZS%FF@f18rZ=sD#+qVE7oW$v;H|kqCt?u9nl;2=U*?sleS(WDpkeAW(?DC zaOuY83vA~}kzHXs74@oO0tpFnHS=PmYxnD!;dfC(4p+I5)(!n#U*A6LMic*fOr|c! z6lRI*^2q&e2GGfq927*6#fcmhm^snh6!lIMJ2(!LMy7F0FCky0LRpy7oGHq=x@HLh z=a=L?dQ>v0xVVQ&S;Wf`A`~_6$7DMUkJ9+V5=tqdopQ#~O_I;EmZ#~ z1r|95xCGMJG}B+lQ3 z$k`x_6kc%@CCuRv%TTS?qsi%NU(awfRV3KQ9+6Wz56}{fzsG7OFoch@T~fWZRuEbu zrHqlH?H(R$*&Y~+10Q}MdpzFFa8e|c!TwCi%D#_0EcY*Hs=h0pR?c6Su`CSYP)9bD z^EkmC9;bsW4jvUOWfHm{W>}X?y%MyspA)&4dYNARJp%*X;`tCUmhhw;Y31>>D(UP} z%Q4L7am=9ZW;Ev~hCz<4EM+{)3G4hAk!z_MAKO_(4YlYRL<&n6m%4o_jdd?q(#*eP z@fGgVNybX$^Bg`~*evHdvIG_rUnJ6G7E2XGA1`g+HKwWWBl`iLyJgkIX67_C@jgS@ zOebEiDN2WX=~~++hsZKT61S6#ppni3fg7re9qeEV^`u4Z%l{NwIEAtNi;3*P$}72| z6UjU}Ifp?!%{ca81~s!G#3kiO@d;AA#8B!nh?bMrg1eh;uI2z+siY;?4s_^7%~2YY z&$5L>KxbZ~c0-ifky7y1A|OupoBwCxvq@*}m* z`PnKZWGXS(%#kJ!ko z^kckxYvQlkgXS`y(ZQ-2=sMN;ES^l;3%r1dPmUZFoXA)y->d^7+TZ76N%05Wz}1(~ zMvi9A;zaJG6N?7+F<%m;)m2pG%x2DGB!44^!7iGaizNVbZEEJ|;$kYf2h~<4%Pc%} zGX|xPq-p1qbn-8JlB^}c3>**_ttXssaRnQA2@8(~lqVzHw2}-C#J{;WoOogt+SH;Fie%?SvD7X>*_aGi4#YqQo4O7U7W~na-w9#=%$-@FpuAhL)xGbmt&;?y^TYhZc==h$^2G=%qESLFrEf{ zu?$oTs!J&0E)=HF6g25!Qq$tb*w$X(~J%(a@;KKyo#loNvrJ1hz(c~B2F!KM|{Y1R`bS)}sXl8d1 zt~~O{l!1lA0pg6qkxCz9aX2KdQzOt5^bu`za}qmcmAf=?21~e|ZbG1R7ber$i`s{? zbn$K`b4Q*E*F*&q*^ep*o1vSFspM{S@o5`_MyeUfAql{^bn;m;{5_(>7#w60r8EFB zayaC;hD|&}sptw(wa=%FDyeep6QiDOlEGsh;S7c|=`xXXgT~b!)%DXa?hjr2ojLK9 zCg<$-!8(LFn(ed^Dm+Ir6!%-W?8IdZ2q1Y9r5wN&n>6YOF|cVT%@Q_~!=#P(GMAer zFa)|9PZL?@a0m~N7Cymbeg}cqO>s*jagOGoAZafl!QCRn9pVBiZ(=B;Ie9@gdIQhEvx-q3HSYYj6*ke7)cEWNCg&i^eB@y z3>LDDX3k&{f2JFsIJ#oEn%+))j$$vJyod4J9^?qLuMLGxz9jOaV zA7^nqi$(f*7%B6tlQ#743ncD@3y)cxNwrwx zHjTW@cFX|c>B~0YVAIWFM$*Xf+$Ojf-IX&TdGHP}iXn{TC~m?P>%tALt>PFC6DZ>t zZ2lIwPSkyw!F}eK3M{0FhtZY!v`1f&z$VLd9Nxh?o<t*h~pE(BKh~T&+qT?1CrhLW!969Bp=!=Wq6)W+rQh@MMv~+%GHs> zV;v822yn>ZP{U~)C$K2xaJ7TQlVBNDyqA0F#t?U}hF7b*iDR+{heh0lmuJ2i!XwHL zxSFL*;XbnHZU!2Ds?AG>HN2ZD9>bQpc&11OZOP>D*~kgJ$}-|XM8FH2%&JzXa>h7# z>}L;IH0(Q^mm?bnr7WaG=Fr1TmEF+)qX(2V`KQ$9-PZT&wOT|+EK!tEuDr-mj{P{1h`7G2abLZatUr;<8%jx0kN&vQ(qmYg({)x58( zYi9Wb8J=YfO_89Ja!e&~@JW;9O7`+9LukOjl3;Vb%f)9b4Xi^~@{HnrYyn)E;%44Y zBYuDfetj>c8O`SeKy~YJNL+H}0|Qw+0~}8r+&@wkTQKl=gk^!4>)+*cevijUCX!}1 zZDPf%DXQTlW@Ct7E=e6L*@+|Slos8pecEu!I1nkAtVO7c!w@F2g)GAv&3ZCD#9W$o zE~SFI$#E2wQjSdvbY+aCNb^a$c?5?^`0T{O&MVMth(xNSO@0d%L%kHk4mug?>59PC zUmtWvNuHxPhq9n}OXZ>SM-Aj01J0Sg;<4Nr-9vPpy%FrEX+S%OhHVVyC}LO)Ax#=X zIMSqx?YN927E}S8OeHOJ$~Ix51+zhl45a~J(g*~yM+IZqP7afHY^Jd{&&lhNqmz$O z!CwJrqm&8Ml9L<*MZ7Fse33RD#K5GL3d-pSt{r+WR1HrRg9*4v`{^ z9qLbxbQpM4aT-H{?aJ61Kld;7Zz}n3t-oeU+X5fepuB|PY?9`J`S`fvXgpImYY>y9 zr=-bX47y~GSJGiGb&R4M4WSsuBz#&UJ~~5qH5+u-3M@tggbZK}e2#c%gMh!GaEF~jS z!$i+ePd%XT#o?1+K9kTr7kx(GdERXUqvjD*OgQ_=vgxTAda?&$vn!a!!?`fjw~`!1 zS>Pj&VbP3(-j@Ly*hPY2az39jCNh{59e7e5)DS&9UxcdIR|RdshGb&UOoGYm6GxRI zeg*f6=Ta@D1_m>ZIw5w3R<0!{`T2UerGng?D1o%((Z%Upa%2PC4j5!;p(BWt>NBc# zxe2Kg9BzR9(VdjcnaXTJuR;7?K7G#s^Kg!U{P(yYc_=f|n{7(6!U$aUL`c{7Fo`jV zK^Q?FoE+O}jbI4WLw2#1b_P>|7NEnJ%wW1`7k@xZ^y{edr{L46JWv`WXu)G92k=SJ z#V4rd?!e5`3%8zXM$w2v7N5`3%s&by-XJ5UTX^o!S*xy}rd!%O`LYRg(;ji~s1c)# z3d$%UL4qVnX+L}TIn>cbgR#sfftD8Ktz*9Ro=pR#K)H8e5n&`0y{V;zBH52|7BosfPIuQC@|bCMlp#PU33+VjVS^YwpLNCRNF{0 zneDXmaYpi2@#BY)O9P7rhA^7lbZ{j$e<^@o`C=>m#4nqf!8#$~wd`Ks~Zc#fiqZrM?znuVT9{ZhnNa;1|h z&gTxAB$(_4MwwPJP3k$CGX5@_d3g2^g`5vI3G3$TV76M^8B(GiMpj zp)(WjFtg}j;c`6V12r{A&92GcIJ#dx{x^vH0AHx}&+Z-Dkty+vXsfBA=Ut`>h$=sdhu@9bdbp)pBsi1nDc9?4~Hax<``s4Qh~R zSky5m5+kbBgq}znn94CAPHdm}dh4{0?mjXaz7F!=)_M7p-S2bgh5{y)_@pBfqOiK{>}DU8(u>j)j;&z|M^izLG&xZTbvw3V zsaYmnWI573FA4{bHgO4wXw?%}!6ZsW3DQw6mpGNg z=)`3tV`bO3sUksZaE6@h-7a;kWjke*O0iibTn96irEX_v*&BFdNzqL<0Ie3n$Ya9$s(W_>ZTL8J;SmqiOcO{0`D(OcAQKqHF%mme zvSae^KKPX*r{L?Xlz4yJ`~KyA#4pw9ilazL+GcckB$-5o07Sh&Y^ldBBSu1^)fzbE zQinFFVmN4Uh)WAw*iW1UWoUf8he-`bGm|M)U`rjbp0$51$t?(b^z_%au8vkkmgCZU zOcP)G2s`N_BRpBW^mGY{U|F=2ri28xIL#AiWHDrl+`Cfxh6wSM(dxOwes5p*k1R(# z-hk}szu(mSDOZptCK(=NecGiN`|zbMo)yG4eX$Wd`Arc%7o4}a z0&d__MM4&gOCv7vKn09bCgrV7vI2O`w+akAs+mPOIt9(A?B@Tu{Pof94XBfP(KFd< zZ*I;|w-jeI?bPS-PMpD%i1Wq(_Op|2%1Gh`ijNr(D$5qS1BEbDAw#dAfk7)f*}ws8 zk^uroIZiAp7{d%^F@vKROSzzkLiI@pWc1YL7m-j}iA{_o{84E0`4v-Sxv^5Ywp+0!FUq|IWYeh1bFP`q|%r z@uxqeKcP@CK1o`6K*}>~d)HzjHK=~Jd)Y<;lLTWKF6o=f{i=dIn`n~B=xgZgo)Shg zi|LG|0<9w1qD-lt78$a1&`KMfbkapP8M0DJJyg+DLYOIJwgYM81>Eij-84*cWay%e zZgEye#k>wX#>QtZTFu#iBzdv?&=58{LFXz8$r zy*$ZSj%E%+8HD!pnb?vQ5Tk-phU1VWhl4|wEROUUb^~2OckJ{er^!bbmIkf<<;c-Q ziY}?usU1~*WEp64E`L$zMs!GCgCmuDRR=TOs7V*DR}O4nTwxU)#ULE%VCGQMJmE8M z1l``CBH0gT|MAFqligXMa`7t}O*^##5X{G*9dOxBPIf>OpE4?g^hbdG>>=5&HEE!` zy5^NG!crvYua4w;ckG6@|{=fXJ{b=M~Z9iE$Xr_*OTBRFL=y=vT zfkA?5ViJUoX7j7-#?Tdv6hcYWOG;8IO0kJY2O&gMae5^a7=k0d(HxabyztTo-UzzA zLBb#4uO)3i;B$J9HA(Rp>x1dhyQLdw0Wh4g5kYBifL$2G=uf{M#d$hT79x3kVw5n7 z@l0YYBS{j&BP+pSN1$YG@R$0{B})!pfNY`2cgT^Ziw?TzB1^P|dZ>@6Ev|$Ls;Hop z9UMeEprb=sIYz+Uu8?2jhZK&ni3Hju<>OJsM5;uw1}JYD`RQwqz`y?{lOJx3xwpnX zs>H5Oj7}bBwN&s_AgN4Hmfd9}qlt^ouZlWuLqoOuPPVLynwm3a> z3@K7%M2~kO&YS$H3SlFlc47;QX$(gD@>d7=<9y>y^#Cskwm$OCXyDOCCy5|9>@t{9 zlm*TzpQ@%Imwode{o;C-KsIkR4G*tIbMx8t;xGK z7?ejgfN&A{cy!P~5{-I8p4+jfY*3B>(YvO_UaGQi6#^nte1< zI(3~_OcQ{&#uX4`$zHOBvI~?VWe)|)2FnHoDrKq25TwWw%C2PzBC;%C86vCfA<7=g z-m*7Rmh9O}a+90f{PTY~CppP4-^+P84=3N}puy}S^so>?lgse{I$Rc2BsQ*hl_EM zO}eZQUO?7P8yHwx`KpD*-hUp08{w3^IIP`+1Zr`pAaz%)9 z#f!%0k;m8+vs<)-U;bV@3By*cu`E&1Lhx=sndYE*ya##8Y~`vIn=)JJUL3@5rUoBN z>0=rnA-tt;Sns($pOCDzVGqzBu&Z}u=hv)ob@Asp5pQPp5n2BB_7_iNG9qS)LIZHm zzc-?l-!Lg@UJUmG??d>VkYEv8ANJM{IfpfsCu}>u7i1ud4NRi>!r0`>tvr4bv|SG@ z9d7z_Zt&f0DK!1ADvL!6I&sO#j!%HC+Vd7O16}PGqL{nF4(#N}!lG)Qw69_Ldkox2*8{exS;A|g=2h4VPb-;NTgW`E{4rrpG>JF4dg zvzfd`yy^6G_3b{9yIh>8iy&}?08j9`ib6N?fx4@J?=o9D_>D?^ESQ}ZrhG5lqBE^U znkUzY#H1b9(~9HB=1B6!oit=xh_yRn)p_BS%_l+O+}~TzVGao}z9=!V71O?OwaaC@|NYLRbH^_$T_l@0buVo9N- z)2;2Z=8EowQ4dMq*|6^g$9{H~R^$A~K8Bj9>`UxWFz{oJPw49+)^tg}3UwM~99V9? zL{ zoj(NQgpoDjvO#7!A;PvX!)n0SLQA9(5*@*Ec)EBEWTIB}`_`1NyBmU%K~QrERsIAf z(tBdd3z0&>uPq4oakQ;;%Xu#J>ZVNz{HG#;hsnwB`JJ~c;I3nk< znFr=-S*#98z#4i}=X5C(iQ}`A9bM)rUKf5lzoz{s$G;QMPaJA`hgiv;-ng76X;@xryEdIiv`EVl6JWvbGU%s@WQ=@WBJ| zGijNVY3Hj^`x&oxUf92;mI0$LJt`)z$91o+jx*L2`u($r0++`U#c0VZJplzk02`ft zMe=aG%~rgccBV=GB%MP9^O0&<<35I#g$ejIY4Kq(g06I4cLE{#;DOA+g5zMz=wm=@ z5lN45VS?N_5&csxtXIwi)G02iX9fUi`p@sDTA&OgKqa89(cCigJU$loDYyiK7?e94Z8{I8_>I zjvuk!^^#Y^aWI+FiN6jSeEuw+uV`bK1h!YCu2aja^TM!emYO?*rT|EaPuyMHrzWyiWC z27u;GK6*rb3ZqT^vwU0ObC;kgj>L7F+zc%T)m_kIcCHH8YNDGvAMZZfH(6^}YoVxC zIey{UbllLx2>i|Ju&@iC?Z0U!=&>3ZVH^SKaC1oro?4l=I;Jol(x=NMWLrKJQ#>n= zKAKxo%di$9`G;7?sb}FEBcRv!Z@#@K&;1|EN}}n;R{{-|mj_o(7&tcAuET$?zlzEJ z(`kLwOTVOK1e)XMRrGtAuRd?bavy}LlCS5c6!iV>cnWcp-*2?#^cxc6(Ts4B2QpND znU*{y=jS&zdAxfaY02D!%=0YMYy(K!z55V2u8NVGQ-Kw${C#n88rp#gX?1RHp`d%g zyM5w&cn;pY-`*p+dLjbxicV!`TT%ZO$Ke@EDRTg7gK;q;!RqkuyL|bLs+_4<_%%Q*wiBUk3d}=VG{smYXkr#{p4l{sna8VGD1;V-A{}rh!i8Rulm zjph#|^@#!6MuoYe0z%&V6ZXor5w3+x*OO-r>iGxe7rNnO@`I$ z^;x8tbPxIHdZ5!;T3@*PIR4e#$Xe}e>XONfkM5;hH$!CFXNPC5i=m&;{lRF~m;9Kb zEb(&QrlZ&1)C#$(W%_Y1Bw6Hi3&(4s|ArqBY6^L{ChVrClt&&i4bklehU`_hePFDQ zshfJAZ!%>E=-^nm-I)epo-?=ny?J|TI=+C{(s1l%(#dk$7n(8=l%Q1u!tfIFX3I63 zClxVNlBZbfm8UFF#A-H3q-R4rnSEC*+f2k+?XJZcnm+Zg-K;U1G1F7Z9?@18c2=tR zl?_i8;7Z-LQx%=O)fN+*T?~!jvO$@mWj1OXSTn|Ke~3I$LcBDBi7+TfNyMGnyRZ3b z6dHe+-W}MPo4#;uooU?1x@}k@`O}-lPg@=6tuL68c=Pby52@aPdqkjVT96oO16lP4 z;zIWYc#Z};WlhpQaQA@#dub)Srdp17;zrmvOGvYH_h@!?UXhOBuGB)D@&=cX{IUv{ zR3XG)Bids^Qk|Ew^Yn7?g*_0%O7`chTmdfSekKpL{5rt?zF1Kd_@h4YwO zSZ|)lfHRzu-Wzy-!ZT|kfDB+t`unkCIaJR?`nD#&9c}9kh+Ze)fh27fpth$2^u~3g zoIPuhCXarU3#W?nzT@CP>Fy#X#c&k6+^KS)8!AUxT{z(jn0fO-<`$JfqOfryV@W}P zYvPC6c~r%}>W`^{qJvXLJ?8~S(Ox;epIrGAx!n{$PEH+mtuAQC54Dtcty8dX1aI2x zFdd~nS=Ylcy2f;cQ&zshlm)1UyGl%nMXDWGqRvpO9QOr0i zpCw3kw8zg9Dl68@R}UCjif{)qT^^`5O}LI*jU12?`oD}#j8D>;Q|c5~YcANB5<1t9 z5l;q^DONeMlzG}{9@66p><_Uz#tY4ZHiZ7>%9vJLeGE^iUznD02v=#)cVB`Vusm+Lv-xbim^_PL_1+(FO^h%kW{Sni%*fKHaySORKhP&W0 z_78?gc9835OG=}tk(EKM%{gKvpPzfv=Hi}g}oZDOp0BGE7Aq#pc$G*eqafj2dC?d&o=L2gr&iUt!8#e$xT2?*?xQ~;f zqqoy_yCEYj0|tVmfgm|EX$3`)yrQ(UxU}?j9Yl7<|3ARp1L5ZE|KEYnfDrICAo70- kK5p(#uYBO{p8v_n%KfhheUX#IHFHB(%Sf~2fkW8;04e!3y#N3J literal 0 HcmV?d00001 diff --git a/apps/console/src/public/resources/applications/assets/images/technologies/openid-connect.png b/apps/console/src/public/resources/applications/assets/images/technologies/openid-connect.png new file mode 100644 index 0000000000000000000000000000000000000000..154fb9bbba201f93e759e44f828210c4768e1140 GIT binary patch literal 19925 zcmeFZXH=8R*Ef7YfFLD+fYbnrVh0qZgcd|WMF9&SQUW4P=?T3hAfSRE#{xo!7bP*FQT%@szj}HZrQgfti0)V6%s>IUg?yKlq6~jHkpYmYvsJ z@n#MSuenE;st1u>-(2yRxs2xAjEQo=>kE%Vp}d{D_Q9C*?18>rf1&mW{cg(n&cy;m z`2X#H_#Yb!yPI)#8BmP@f`1Ca zEdq~*L;RDF44DNgi~F51-EsjnEG7W4p&+~>98H8loLGn-tU{e6L_k2sxJ2oww&j)x zHHZ}n*$@>m?^NN;4>GMR|5E*@=X2zwqix~RK-I(;l=ny8rV_5uKP8(e`*_&Pf7{|so82=G;e|I3mI*gq`6$}roQ_#SPg{@0lQ4+0_S zN$C#?BL7b5N@6HalJN4YAJD(h0~!D21O#TbUC`gS*6XtU1%M4^4P@1jVu}i+1EMme z17a~h%rnuPR{&FD{vy-`y&98bg77alu&VzN#n>k?E%V5KNX?Ph3>N0>{~3fi?SJ`4 zpcL7lMVa={+^U?f|6uY5S%^6@#GEkn2dMwPkvZbOluSkZhw^_K|3LTu9T2ci(4X!9 zXB+%kR_Kr6_@73mUHE?mh#M!MXWE7TJB9uq%K!UqFQ$5i4f-{U+1>0h-)u^vFHm;R z99WzVoP59OCB9o4K(dq&VA_I##)eC)6INW0*S%ABvNkd>;=AtoEVSS*fIhQZ3q6bH zD|)i$#*m=psriE*`j=E?*6nZKG>sojx*m=juN0eGH4D7J+%~rnOXEUA%X)ay6CU#7 zuhRWrx5@+-LwB&k^S+Txj*CGLdybEtlXU9beze?nW7O>{lk1h!jifq;{nYB{j)x7+ zBXQ*s`=w% z*rE3%SLze&aGXP4mXoi$IAzs>p-I{bIP2+ZEE1sx$BM2+H@e<+hvTy01vrw=_Jh)b-O(RODm-D+a-lbkK| z2sIB1mM*t}v!T%3I$C_D%`Cm7@vYt&n`$okN1(MPS|>zE>eEwhFQ|-XZD2%-3D36h zgmhhf%1;)eLgC_~)LN2$?M^2@0S!N*)@*b=rswzs^fbDuyrCyQWMan~hkr_ZJAMl+^n42_qo|x|On(ns`C) zCUaXxrRNZ#6T?hi!TSEe3L6J*9fI5ROD!NmJ0E(}KZT>=w1eMgkUisUcOA|{BbQdE zHw%`I6pPMKczD4u!QmBExXP-aq0AX5FUkBO{gYW*_R?+@mwW`AfXK6dE*%v`e+Gl* z{DY2eANyKnHL62|X*~RW!9!aOS~(OlY2BESe|-CU@Qe(ZFa>1h@&e>&seJ1Nu22c( zgxY8z8vY0z;tUG1O(~6irCuf&b|IV^y~>v z9C77HTzMYmt)eeR4SJfixp!ULtSj7LM1Y321tQl;)ejz;g=$34C=iOdHA>rZL!)!s zrdQWh2nd(JG1W`g+(djJo7UImHBGsmBJ20->!9Tszi6jz+aEbI+6F{jvBSJzRP?uf zqoa*p$Frwb6q~dz6&@(Hr_Ge_>J*gh8)=zb@=h-@7L@5 zm6Q%ZkopD|zP@6)y7`-~UVqN6Dmd9%f~v--WJCS(exvFPE_slnyiOFW5&xfWX)Tm2 zm4%(BRXwh4rR*pnTv(ojI#jdxI-xo@Y=~lz?3<|<> zw^L=9zSH(JCSce~;o-@~HD3`LnXzZgj%)b_xHdlh?62`*W5AV1gZ_7%+prbooOqls za@V}cYEXPXIlcT@{ecuo2R$~(=H}S;NB^_{OOsvaTLr11p;su`zM55fY^WHS*1(Ow z!G$sZl;MLn(W3;JOR_l9)cOUhR7tzRRyne?>aIdHDll3@_p^!={-N!F!Sjfzb#3FYX!3wpnOweD@vi^3552c8^;pd$)hcKF-Zs?(yH zwpz_(Q=*z$1}%mvF~so)Hp?nZ?v&-laiPh{QC6g_Ja7=2<+>C;81E{_`}w&kZ?5fM0`;Z=|@M&9wrq z*rwCDp#!hbQ4Wci2LD2p{SDPdz8!vkJP zhMd4H!T;5uHt*W+bdp}WezQo5W=cM~zjeIwWVTJ`9tirrPbB?i_qMOVY5&NwQor&X zqSB4`9|aa}HNiVdLTA+D@m zg)zY>Z1!H1A94(FmLKLNv?taLa(F<{V)nA%&E*Nv_7-{Nzm!BmO|$Jr_xd*OrFwQg zO0t2eLXe+f47DVF(0y{OQq6T)r7+BJ-Ztc=Asf?4f^r|T1e>>I*ySh;SBHkW%4i*= zbyOQ;%6Cd@*(7nXu$9t$XkJK|D(?t~@F8vW4#o7OFEBwuyK4QQ(KH0v+#0J$`Jy&# zFQ`Q@G*lSQ5SnC?LYEb@V@+9yQp&|iZ9Lp)#~k9btI19JStr9yup@Ii zOCx@}I}D?G)^dY|6!)q1WUbt|4z>a&6D`dy8x$3A$KN7NP- zZEh=Kp+Ta>S-7>=){(|s-aSIXbIbap2y_b@YM`+c*-vQt`9ua&?kFiIFt=JktjY== z=Jds~*?f1XcmYQG_ zeV*n@=!7_4#GAcgEFIhO^ed^GFYtp1?NYWTQ7FCEuG z+!dc~GZ?cgD*uWQefA2S^-)pV@R?7-YaR2S-p>cRctv&cR1_ZVcJ<;uS=++-X+qLe z<*;zC!N{oWUs8b_F>1XtSE*HJCQo?hkz)9b4-mA56yxZ@R;EpLPBrhlbwVZzyorl8 zxe8Ic`emC76#}!6+L@o*(7RfZ!zA7Yk-^6JBgVk_+Oa1`fl%}HWuB$ zWs`5L!2zB-7QH#iuyId8<>M2_>3_jA#Ae&tCJnFWG}Z5*@aV%Wig5`=xnV6eHYe^p zEyp2k=(lngtab-`#dZcIIcYlE=_4wH_WPdmfBA?;W$Qf$BqMYAJ3Z}-&iQW;tD`37cq2Ia{|N5Uh~UNa|gdBy>v0D<*PBcSLLY?wAvN5FWXirij$)UR#MBo_NYUo zhRw93mQ4Tt10`%y@9tS6dsu^Sdsg|>MOo+6O;-KBugg;NGF@uH%-xzbR6wJEm!Ec_ zapTfs>|sAztW__I)A66L2jKnQ63XzB*a9mNXWUst+!~>LXwzKW5Sr^ zaI5_+6r=W2+WlCu;xR?>rDL?pNg}IewJJtzPwzmS(4;{^KFs*y`<|rlCvUuMx>fuX z7O|JM(Xb(1Youq3DYjj%|7cJSNSxj`NozD2P{v=p^n{Iy&ML{m%pWgYJx-J5T`mzD z%v6o4tPh&n@q*-prrU-nLs^Ioj!kQ}%|*{DgwMSwtFQE{mM3=|jzEbXIV#efUxcO= zL*S7%d8*p`sCj0Ir0hN4C?Ke|Ej-<`RCucGxS1XshYE#`DGJlNk{lQ#J}YOaEZ?c8 z2Gw+?4-Xp4OL1qgjvpX@Rr@71>2nv3A3Db{d|yv=*xHGf_gqkEAJ>yo8I%0NwQPR2 zcKu*Gi_NZaTw3PQePfO@d>O3%@G{|*knte%kvp)g-yMYNtRti7>Q7`p%{Ix>;*wm%kpGA8G`U zy^~ygo;_Ux91caN_XAfDr@3**X=9R`MTjJ7;%=5I93OP9GXG78{duBr*4DOxDUg3f zc+zvZ80aFj5gD*Lp`BeiYYs#qJ>gn0AVy$i`j)HJBMq!xpBb~t0>sJ@G4qUP6*DoI8{?@)A2?j-3B(i09&u%h*k$_txX`l>+!CvmWXt{PEV zs!%c1zV&j?N{`X?U0m3mbEd!;wIiU;*UOE(Bl2Net+vLjj0wT+CYyxI??#nfF&9=ibR&5oHB*tkZbORWYi#OUt3TdP*Z55B>NK;4o6x|9%D&o;dtj(XYI(g;7PZh z2k}WR#4N$S4g-AH_WRiAW37LHZ3t2xcC6x3#)l`*t%Mg|;wW=Wxj`%u81xsW`T{+E zoYo?hRXRK9gkJOMpKO<;3>m@5?& z4L1&Y8yND`v!z0z39t_zwCQ=~YMm}kL>pJjNA@gTUYO|#xptIJ%nb_+5T)EV1*S!ed9AS&KHN^A zx^!n}V04T~>b?}UjK_bt3fM}4&Jk^unNTMJM^bluFy`Qa;e|ml0f^faYc&<|nwMX0 z-;{DCW^DzTR*@cJA!5^pBM;D1s7!HEnAzpTm|fST&pkM>avK*=t=fd(=jCCk%43OJ zQnKwV_*iPn(zU9V5iRV9>-P%ykZiYT{J@A9Fi$@fwGFU_NdmA+v2nYfrd6&n=%B`p zzX5PRA~rm|w-=_Rd&VT4HnzRi`g7GJ`$EYJhR{+J$f?ZM8b;!J7Azn+n3Jc;sF6 zfyX;%^s;9PD{14=mrKkt7_f4Cz~o{Q>=WwTsx~g1HGf*2bd$NoWC6- zcV3zrERJa1ewb?jq`*ne#hLZR)#b+d7d~YlS9Y%=6(UwfUQvIEQI`|u1z8~4k>2sK znqnImDlx`|Ra0|0Xwu@GLp!)GJiS(=-HVrR%OHgT(M~w@!2|jaj@Qv2x1Q+8bO1iR z{?-i%vgYtv5azV7;Lx6uRS@Zp8ZrahHb${GiR6%*!T5Cz-1CKgIWD4&5`LWsI^Nv; zVbf;ojwpl=dsA6;rYbdDC9Tams+?VkHmos&&b8c>ijU8phRr^+g&;1zwaLOhX?Ju_ zg@zRE2N4(?Hm!j1XYolR_du+y?8nX^2d>Q~P3)*27A~zx=cLx}-@R^&T~PZ~Q`pV| zg*;gcc)>7uUEd=?KC2K1_rZ#%`tRF(dYtCjv-WC%_f=vRuLX&eRFXtMD=?O zn;N(5vn;dB*#b6?_SMnDd3y7akW8*k9JbJXw1=1WI(t@`nBf$hOH|-h6U#d)3Du~+ zVU#)+k|ajm+>bXpDEkprhA%3sQj*?MP*|V=+DbK4#IUq><$4);7F15`tVeJ0>r@||l z`HtvN>wY&;2BS;1C;eY4|h1}eS+G=uS0$gOe>{Sa1%l;fXMCLX_) zO-QvCwdUce{WK@jNI2Ji^$pS|mbp5}2#oads#vmuRzn86Uhs6_3quiW+*u_?wp|wIEKq2n)6in(F)Lm@3=I!aqm;M~SM_45iq& zS}%HMy+G$yIZKDP?59!c_+>!ag{pD9*LKD!SK&!6#h}fxuxIoWJ6&nvAUR?$?ACxN z;uHd%M7{F^VZk1_+&2q0!F_8flGLyyZAvSmH2tk3w=P}=PHb8JY{QiDGcQdeiLtTV zer?(FhieXTKr*(fkIAG)hKd7B^tZ5oHnyXZRF5l1nSS<N7i63D&%{sFCaJo8EmDY;0_5P#98A0swyBpM7XrE%hvX8^b;PefXglZAb;{KSR01Wc%onWcP&)-9ik;O7H_k+xeOfTVZn5MP;)=8#r zVqXLcNs#A+X;X)VSW~KQY3e_PDVCB>_qT3+0829!=|gh-&-o&*izqfyxxAuieWA^*}rD zYg%UP>bQM#?tS?A+(e2uyH#>$!trb>U_hH!GRx7;s@>`0z#WbY3tn5N2-1GtbLKn` zYC(Rc6aP`E@YTXTI%1{NHWNOxB6#?pZ(TOIX>C=3#H^%YikM!&$T0RA0($73m~3TA zwi-5+cFX1qbC1*ksVtC_+FYKDjF!sbA%HX&$Z)MtDKV@2mdIxlilelIlAPR+aPCw{=9QxVA|T zAPVtwY5Xn6+2z>;*5G-I^G!b^nPomjnwY)QG2WkC*;8t79&UHn1HL%K>D~GnNbTic z4p5`H8Xo#7Rv)yr_^R4vP{wU?KriZ_zAKufz0=lkwLmxKW?~(B#0sI`+qIu0A06b2 zGXsD^rLA8Z%KVGbj^BS8@`H?svbNy# z>9PLw&QMd4+_?I~J48FmZPb}ZTcitW5ZWAz%6Hotipnx2J62WVXpN6Rygt8u`9ax+ zFNNS1u3A>)a|c9+-`nj}S`n+4=icdF_(0RXUz*04%(ysQEYRpbLo69HdD)deCvn~IzH zc?m@8(__`vI}sH;{4_ozE<+v=zjl1Qynm-X&Wud87ROC6w&*>EU`CwRj!#dH4zQze z6H$U77|-dwyf_CN(xl-IWg`bu04n_8dnvrkk=Xgd;xI@uB)Yv%ie8YS8Q&$Ui-FRn zuC}jDKofM&T_Vii1u=1Bkx4sV+>rz16fi3Pbe$!!zB8cj>(Dn4Tu+y8ZJH*YN<17H z{^{o7zZRGh7*8hmSXLn0gmLO6;|D?BP4?C9WZr8x`C%)ft{KXoqwE=&&$-}4V-=BV z=_utU46!px+7KM|iaVfb!BmNC#0$4mT>|_W%)E&c6E%2Y|u zgmDF$mzclWs>knvF|2clzzusPkWpLUmHKQee!&y9=!hJYqSUi5f8Qr zuiU8DNoWAcvl<^lh@C1wxYJ#3hHl6)&m&a(1jj)iZ%saFM{!8iP5xq;7ET*&YA{k{yE4+nx+y7 z117m*ZD-#sGz3TCzH*@+dJ-40cqb4Cj|mSX>pX=CsvB|ofIdu0k0<#*D%P1Dn1U zk!MBRRXm7m0GT*1ylK1V9c1%04V6l7EjjX3^l>F{%;3D{1!vJmQ_C6{gL!1atNlPo z@@na|9M~a{%)|i$a|bCCj;=m+5J$^Fed1;E%||Q-5X<2y@*uzP&i@uh|dHz0vZmJS=jdz!Kwu zeh1TVVl@5krA}iI78h;tw|o!NH%5C|}b`h*tgI%3yDf5a@6O!hC2l*YlSeLZxxTt|E^A=Z*vk0#| zd~{3_N()CHMPN24J>B_=S8zwHCwIOo=FL1{gZ$P@oh~51^WhRoJ3mMK%l3X{gkKy)uFodN<|~jVat`jB^pNoNUk7!wvwV zeh~I}IOAS>q&$DDA*8)yY@BC=)oy?qlV&ek{YM#ONJqC*Cbej_g4nV&U%GbyfBfURYsFYRY7!u`8@WOV8Yo?2Dy65!yj zSHJ@}R~qc+ftXE^weYjh(*>&bVnOgHRkgvTo+dQCgFl~BNHpAA~EIZBRT(&`Yk z-Gy`BbjF$IJqAocxhyNgTppWcWI$l%b+FVsM@9*~Hr^JfO-&1! zvuzNbi2xGM(c4kGdl$9$90lnp)G=3ajyu)Dv1@Wam zGOQjuw%MTwLQ?2t-Af3I&0r0|l&X^*_vibK!FJ@I#G|W4q>J~dLgdK1D;2f7q}^Tro;YC~0zf zNN1&pn{s#@1<>xTvrG<0i(HNwa`xW-XGLPVZQ<3_V=nW1)|$_5ez}rctq#;U22j8G zX+|EG?Wvm#u@SAi3{bV(gY`t5LHew0$%i|>QHt^R-Zn*Iz-*oZkTf!*1IaV`pFZ*^ zz|2jX@<9N~iyP2a{K~7RsJrbeR&3yrnGfZ6FI-Oo6ZPW6;$0GiSxkR?t9gUc`m;VTHTBskk~yFRdCBe-<~%vE zGWzh~?frlZ&7hqHd$K~U6@={~>ZNvbGA}yXc(OCnx|f&%v01@M$O=W9;VXD-C?{Ws zre^?YMcoslvBdXiqnDA%JUJi6&jXkS8r0D71UKQ7D;3j4!XV@aUr`En^s7s^mSzM|8%e4akCf4q_lKKV@*V)9@Y*aHeK z>admG%Ix{|87#ifE53(5HW;|t_Mr~Do|jd~yK?ihAqT*sS!E1y;6Su-i)GkWFSKXf za^*svt>nhTIE+P9+nfk9)0gL-w}83?e|Izq9T#V1pk9XA`0~{JZSM8AyFye5+(;ht zt^Bem!Q?-%Ojfo|(B_3hWc?y;AAXwJt(#3Ct73W1G~PPcxP81^3S4Vw>b)1#Iah|y z7%F?#m-uOKb`(cR%2uLwK=ugwfe;d-871G;GHdeZI?#NqBfDotx;tw8Fvz<75}gY} zvIU5YMS9++95`L{P&()U5)#$Tiv~kk1diVIL@FngVb+!Rcd$VH(LS{Z)?n$Dywa}V zNsEY!z}b)k1OFNg<=KdG_us3^E$@BU{dhcLVx9TYg%bYc@>JvR(4E{}dY_`A+#6)s zQWxL1H}wJ)eOA+k^Eq!}(6fh}wTK~<h`F6rtYlfTs0)h$ATU`NHS(BNip|?&*|L385HzP>Zlh16?zcWI>5Ic` zD4+i8V%+hm=xN=FY!K@EgNvOHxk$YZXRR16vO!7lX;yzzim%oHJB)JFIamM<)?)jk6tP9AIw2bg(^!fu23JP_|*n- zcmZ?_UlO#4n;|PN+!bVtatvup1-?m5r@kdZo57)b{P^dt$dHx%mcF(;pxR=;smENc z^dI#1_NrEreCT2Gkp9ju$}MBaQMQsjKyFOwolz%?ogk)IrTdZkr?;U@8gzwjU+sM1 zb3<0mLJ<>SLFgGudQ0AcCY4z)=MD59z{Zg8MCP=7TeK6jc2cGH?NEY5=2f1A=X+sL z=OjfL8@eU+1K~rCxDCYNMT#F%nf@j>s9Y>xJD1}UJu}c65b@8;^arPMulz7vaS_+w z<1o5Yg(Dg0$H2a(CY@KWIN2XO$-Qza&sj3_A;}=k45MKAJC+~*4kslzpNGjylD?uy z*8j~LcTG^`Nz%qoC9mjd)vMW4^8PB1*b`^fjEcgYL}=r}W)d@3$7g5Td%NTAL?55R z@I;BiJ=}!m7GFB4^zhSkA7(#^o-X-4m&Knj^_OpXMYJb$UcG4F?BqdN-W7q6&MJ2G z@*6Mx?3-QtCm8)6oL-Q%7KzKJSE0YnT#uh7YwzfLS|WpW0hq;!83Zc9l5{LVwFaCwp~@=$^yQv6S@v8(8*W zq(;b-f`%S!u0|U<|0a6a^6wI_Ua(e<<#I> z#1?zG|4lf-nv4(F7C)2})i&On^A415v#H;en42^=B_~y7Jr$UG{@(g(T&`!Fo!~Es z)2CUhH%nDyK%LBuJVLsdg7p{FX}sI*+0*MLDo!JoK%XovghDV-n~G?fR6hery0 zuOT1?y!=+wPFV1OS}q#2XPe3gicEmmo9*`>J6%Dyh|#!Sv*5lh6RuTtKz#?3mXC}tCI#bj^qzpEYA12?Ce)1Gq0aRe0k_21`Lz1Flrm~DiV@1!< z;WTUH?x$EjVE?{9UfqPsJWJ-1;y=m;BXi!?10S?w%hnv(6UoN>`uc@8O^qxtm6x^2 zSfuKCb$dEqWDa43eH7>$Uv*k&F#%Lix_WP4LpCw_J@HPct>4KZ`ie}Yb!aQ_z_;z= zV@*KK$L^Vfkg;1%Pfkv~55mXaF2B&I_A*LCWV*O}DbQO|3;`X{{^`wL(asg19d8Za zlz$ir(5Y@0^)~H<3paYvhh!YIekTK*U5P@HumPcsaH-9k+9rE zK+mGR6Kd*@AEyl;{J8bH>Jtxph4{2-7mH0;x^>})b|G^eX}OMZrH)WhuHIu^?%CsM zwc~w|jaR;#eTpRJ8Ed5mrGCHzW!_v$Wbm?2y2Ik87_moU-r?IJ??^N8TZ4_<~P z$_c*&6H)m4-voJZVZ!(SYTJh*9L3c9;(h<2O_GP!T3BlwpVBsB;wy17kxeIWmrlLW zeTby}X!$(EmD4^U5SE z*HfNcPCeNAre61oUFC8)FDRyeubW$CcEWQZ)z{zhZQHn%1ftgpo9OdE4*-x=Irg;ddlUg)@IVY+)#{C^MkU5aQVW9 z%JRo{y|asm?nJ${`{pvvf_!$vCgl;>Sl;@*jg1*(7100Rl> zN#1wpjwnS_wK@Ti#L!$OjfT2|)H_i>acjgaj@2&jd>-JL9Qw8~wz`K615$?}Xx!bX1 zT)1e7I^!xn^JL-#0ge~oc$2x%Xhp<68!KH=(q;L0F}M1{UGNTrl@AJwf87{BJK-rE zyJERnoIR5p-!{!M=O;WPD?s`^Q)$bB_iV_>TmX^B8*6d}$l)78e)7ov8zI)3UpEg_ zYl(`3uq5ZQI&7#TruJgFfzh&YsDmm|Fh4|c#%`d!0rf{LITDf2?Dp>+4ZwgfpE#MG zs_e5Jc(>`0*4Yz~;$ZI?fqOY@s0f^p#gfJe^3bha>hvZB)J#GTN%669xqV7ByLjdI zmkowUb$|KNKD0Uh?3`KE*j>#SWx?AJHbR;+ZUD2XWR+u{V!arzpaML$?CO(}7 z9}+b~9ydv*wDD~EWjfxjHn-Xp_6dlp>bK-__d!A&d-HW)UlW;RO&LnjQ+`&(DbcJ$ z(TrZ@3G~k>#rXq@2W5&Pv=#Jg=cEahRbaa~M&I?VE_c{F`u!8d?YuVSz&QA`a7y`U zxb0Dgo@nX17j}%g#Xk|>Id#QEmy3??jASjuxp{g{6qqO-CGUPN3wb;%+Ni4w>^z@0 zrbqFW4pq)snK96;{M0~Y(V^2;vR3OjV`jO-TkK^63{AaL!d*B8)~z$Sh+z5p62@h) z1UAmS*7C%rcuEqAQSFM@2$1|B8AW>{Q_$N61$?^Li<`&IadQ{|(Lqh&%fp$%Kp4!R|F|Am0x> zDV)pnz%*`hmdteXKFs_Lc^JfGflxbZitX|CtD&!=%KC7`ZywcC9B(D(_7Ag+bQyumd3I@B*9}6JUYv2<9Y|~;J}%mBm&47$dH{c zX{;C(U$wJBv1e`f+$V0v%|( zqg<^ej>rd-)Oimh=h*M4dC9ewi_C=mLoaFsswssSdwlW{xUaRY?l)_s(|5Y3QCv-h zEFR^{&9T3?FDKKLej-OXa0D@2uVz=8Wnt9nK+bp4;vOcw33ZdPbDpg3tdZzfgHuQeSWR zD?LQCFK07;KZ~fOe&*7p95ZiO=9*L)8}(>ZKR}^(Ps%2p5}ADHO%!-pqWihStEp(# z^K}$>)WkxwPn5p!h1x9P+5RctZI6brKQYjb@ckU)s?>B7IJNOwB_|?EGdlc?-+DE`+Gb zJ?Yo295MH{kx-(MD{!*wu6J7~osGJwH{ecMt(}33_dN|I^4(04B~Qd~PDTNSzz&vI zNmEr~pqmS*pXvqb)yakr0%~(m#){#Hx#QYdsV^(jB=+Jj*9S@U@u7_x)U2L(7fz#3 zm(FP~KGSgOezqNXntjWzo~3PLjGi_=gE8Vg&qUxP=6qD_rLFBP%ywIzAbpJNzO_Sc z<3ZtWY-p@zcwCXF39i$qbbn`ZDQlDm8xVwbH$^t;6LpI-C0cwpo=l!7cqIev%xV;v z=(j8CzlX6R-&^%Nmn52`MVWi!541XF&m?uP4tszcg;rs-`ijx*ogKMqYrQYeJ6}!L z^qx2n*ti{@ZsU?}y_k&RA=Sz&gb)imT&{V(+tg_N02}9AUP-0jPL}=I_MzU16-j$> z$Fx%Q!(8iA2zFia#hNM~RzH(q44!|kobxwjsDdsGzU7sWmm!?a`ab;A;Gw7WWu+@q z57U1m7JDMuX$1SbTla(Zx9YqPM=Mm85Oj_#Kxu9P3cP#BItlq&^@G=(WxBva&v4V^ z>>Z7`)gsvMjy&k3dYnrp32Tcu2eR3Udd_>cFXgDbw0Ll65nb4RCpdB=ViZb8=;kk+ zddP~r*wN@UacI$p0G}>urnpxLPlCw@vXzM_#9Yp2tE%9xpmr0Ey%k2e+XY7gEkeJC z(Rpz;MUSmUI+fB%b<5K=JGNS+`t9?H;l>~@v#2P2hfxtAFq3Kq|6;E9h3ha=_dqXz z^{Jno8x6_{FgLE{jOGxc?=dhjm@vFdEQZC?d5x<8j(mt>KzhaZmVp8V?jOj%bN;i5k6K2>haym-H=or^Whd zjg|DEZ$;EYZ`49GB{ViSRP!wV0MIrcJ4y?cvU`VLl+6n29+c+B5m!}Gw;8|kgl2BY zK0+@Pje$B#aMBZbiB*C227`pgagAMybxz2oo^R8z9p}4A25kq_8+mD_iCHafvmhq_ z8f>T^iq#YJ1ZgOy9oyZN`f=9S4$jH<=nb*`y&fJfQ+lwTKExrrL(s9svRJIq>Y2S{KyPb3MeZ z@)p;hoBzUz0xI~kE;6m@FgfcybWeRy6#cD!rm<1AA%nLdH~xet=0QfsZQDocb&`WO z{_yusrefT0bM0zXAD{?_>~rWzKQY%FBG<}dix@gYCJaYzyxf&`He1J~OsXIi3~J{^ zRT@PnV=u!R)K+R5xWz=TCoe1xuf7$UnR>lBkmZ6l7)JJCwdo1z^gi0$w)-s11sJTK2dp4hCM4GhyfrA3-PH*y8Q8J=&l4 zXf5DOMT1phT+E^Q5()=>niW|wBBoztRR4Ruif!|N%c;-L;h%uIe~Qxe@x>mE_LP zXOJ&HxF9|GkNkwdylJ6VdexmeB@IA!#juyU2^ruwZRu^}R5?c|PV9FDy7!I;* z^fl&k+ag>;s@>Zw+=pBD6)tpIe0pcu6rk^8ivVeeea}##Sa&^{_Vh{8EB$=yV_-|2 zbfD00>s6l$2aA5po&)4C=2w|Z3f`-1mtFc{*;<8hDb>+x-Srfoc||`!bLZM%Zf_D( zeF*QaOz*%d)Cj6kQbWet%mXV6vm0=4T;-lE2T0`2Z~VjQR<%@a$ksqY>i?P{dyD0T zF6NJnz{v!G=MKMtK@6HRwYgLnKw3#1{cF7Vkp#m{zopr0BM-3wg3PC literal 0 HcmV?d00001 diff --git a/apps/console/src/public/resources/applications/assets/images/technologies/php-logo.svg b/apps/console/src/public/resources/applications/assets/images/technologies/php-logo.svg new file mode 100644 index 00000000000..132178f3ed8 --- /dev/null +++ b/apps/console/src/public/resources/applications/assets/images/technologies/php-logo.svg @@ -0,0 +1,25 @@ + + + + + + + + + diff --git a/apps/console/src/public/resources/applications/assets/images/technologies/react-logo.svg b/apps/console/src/public/resources/applications/assets/images/technologies/react-logo.svg new file mode 100644 index 00000000000..38911590fca --- /dev/null +++ b/apps/console/src/public/resources/applications/assets/images/technologies/react-logo.svg @@ -0,0 +1,27 @@ + + + + + diff --git a/apps/console/src/public/resources/applications/assets/images/technologies/saml.png b/apps/console/src/public/resources/applications/assets/images/technologies/saml.png new file mode 100644 index 0000000000000000000000000000000000000000..f61e5124c2d1ec688b0ebb3330a3c0931753592d GIT binary patch literal 8519 zcmd6N)mIzN^L8K*C>mUf1b0h=H+XQj;#Sa z-oAgqd$Btg&yMVwbM`zlv(f6Ra=2KOSO5S3S3zDz^F6{f&O^oXC^c31p&O0QR+gW>|NS8a0bs_G+uw(kmG=fHn#7~aDj?%J=rXJT`$e)K&u=ZjL1J^cKh*i#X`URLe zeer_?!6c|szVX<-0DImN4xN%O-tdN}((7J;OVK?3^}H8v7=QMZ4E`4e_5Tw_{O^zh zWAEr&X*_}g^|KN*k!5EXc&ZS0wPa}3pVGsF{-QQL`i@8~YEfW0D%zovU*)>-FLv=#12$u@k@l?w-bY{73@8HS9#4Z#DX1Jb z@7~8pAC;TTx#{ivKFrgqwKv;CNfN(M*64}N5IdJCcQz6o&vlbsvvbQxUGg&2cpCS< zQ;OejLgwyIh_Z!>;s^PQ86wG`ISn;JScQX`dTMT13|b+`G^%wzrc-*Gf)Z5kTo> zr0b&A^R77JF5om76nC)d-GYVp%V#4+OJ?Kfr?K6~uktpyI9B+Yk5^TQw0r7r-#Gm6 z6?)2#oLiy~oEknjhl`y+s^xf^OX69s7}{*jZv4QGoo)k}Q1^q<=^dI>(0HsP-eg3A zYn*d|%3jnD*-z?Mkb3dQ(t1Le``!L@r^fB=L~1aSNB7UXA;LP{ScW0%>cXFNu@+Yc zKPluCaoo^Bk~pVJG!rk*ef&=F=c-ph1e0Ydq5thjUoTG}T|s$e8FYDammda~KYx?U z*V#o%9U_^>ne27(u{b1uPx2tcVbr-UapU*!W88kwvmvF# zj>)s1M$;eCYlD)3l!Die5ayt(a*~L2xLCQ1X~q9^+~ugI{ywHH`OiMxy;JMz+WFD5 z4!zG@Am4ctn`M~0uLI1-z#Myk z(J*@;8cD+b)Ux4BjiYx6N^)KIH`++cYSLHy5`TGzY~McC<C)$_Po z`2N+LyGjxYmXg9wxMPTq+O!d0)>NfDsjC%0|DsSMXH%lv#TdjV(H%f|{B<$?yEJyf z?YDU6$AXa)`0(0Yn(fJC^8!tv-so|2ImGU3+6h0nJs?3-Vbr;`W?c~v@oP-yI6qPb)Uqg-us@Ne<+ES;SKAOL@zYYX1%aFJ6!o@y!Gz1NzU^6KPA{Y@AsmgAgMVd z?CDyZPZ|UUcT$8ht?E2o(Artz;BLPGwp2n0)dx1pq31~2D0z|9TP})C(HDhnyZmJ| z49XANVMK)?$W!Gn_cSO>KIPq;K7r4VkvDUvl?VCzlJ*_XZG(<&_2AF_F_}oybkdf( zl~ks}?b6@=RTbN*g;_pZulsth+lv{iAl8JLG+}Y-T&{Uc(*sltBvkbs4@_t4>)3|3 zPuB>%=4p$n5OqMI-|kl~e~xdN=Qmi%UiTs`?!PYQs+yDHXbIVj1DjZLymM${Hd~-! z7Ey>p9cUDc>8jE@x@LsifkyFG{O3;Qw0H3k36*}p2ZF97&i&{{%&9@k!r92^IEDnZ zzw5}NBHG?CAU@b#HPOF}DKSb9^-Xe#jMy^5_ZRf^S;=Aoj{Z2ZPeH!ysYPJyZG7Kb z{nqgQA~&3`SGpn*YX^S?%~OfFri;?FdG^OPYOd-!N|K}}v)>Fq)9rV`==0Yuj{l3} zIjte;@6`f+wiizC2fKoLhV4LuNe zXYFAJ{a6Uy)V2RHnd$SAKHnQST>Wp&m;e#ONLn=Gp3ExgU)QNiD=_yOW<>n#`^#`1 z&laB$C7#J-PeQdUruG?C&91K2;RR!x@!E#dp+a)uYa_mJ8a0rRUWU-okN&AFP82%t z1Ndo|yUFS6kV}UNiwvEC_^xUtGZfACe+C)@n&tZPXe@?`0jP`-jbU2&Zy~aSmo%wW z|Mp@{82i`1K_Bvb<6u}}y-TuQFeu;U z)LgV7XHa4F16LJ3HFUg+$SCh@EhJM2ZgZoWpCaH4#Q8S(%$A%t_jm3c4*=t*e9#$^ z(A^-za$?I5U~!bSM*KeA$N61|x(*)Yx!n(m9Q-7x2lcKJ_-`aP1IcnGvp{&9dQs zpa*!ES)M~CmVesQQArOG5bQU(RYd-Vh5G6)GV#JO(^-D3M?;ToNkVnIC)bB|_+N-oJkD+QHa-#!1o6$V)(gMKW-t8vjaJy2NdG-9AKlW^NDYA7 zWLw<s~=)=1_&6&*aAR()bIl67D&K>`BI81~{h9ZbTZYDF|2o zc8g>X(u=DOLB@RQGVbJk_}IrmbtMvyND}F`jnw&wpCBTQwf=6HojuL#3yZPlvI3el z%Qw>-sg{utaWxw**&i{&!G(Np7;;=QB4Wo!gfzUW zjVU`0%5p{pEK}6HGBs{WC+Q)-j(<7*ED%@CN$a5_HU)--jW8`5>oWx$)y!*Y#_iWH zjH5)Ws+!aIXOSq{R4Slh|M}}I%J#yBFq3lwf9AA<^X}Gq{d`|D@!FPo7ME%HKz86sgpQ&niHA=3uQR;VhexY>CzFt8qpVyw5m{DdL=DC z5HYzN*TXd+{3>vCr|TyPvmD17YT;#SRaC?n)cN4prNQ5(DEr%ena*B>y%1cV2WO~; zk0r$9zuSr#O`!qWnuI796brn-nOXkN2iknj+Ppizk~JDf|84c#r|YUu@Xa$&Y<}bM zjdmg-|I-j`e9IffgQAHbe=k}-#W?nw*!R~`xV!afA~_*ZtSV1K4ceza-glde3Mk(% zy+rC-7AAH-zDl59)pC-V+kyOamhI;!d%w*jsr~ z?yN^mMwGHL=KGC2WL3nhyAb2}2G7`^<3gOx7^qJWlC>Qb^9!MHZ!K1Un0D=h{Yp_n8tU$TgGq*czk$&wQZ&}o1()@9V#i{D{wy+8?&HX#K?5l?W zu{5)w#H3l8CvC68&aUx29=;gf71kM3gGhW++CcEDDKW0Ngc)5rj>lGdY)6ORNUD1f zgwaeudBn*+x!XR9y;RROASvVCHS~mq;_+b@vGH($Xu?*L;~7?|>fK|`;vD{O9rydK zdT_5GfbEwC6`QDz{z>g>g^|Yob;nxzm~fne+wGw#*^0|qRzij|p|yyo{ZB<2v>-2k zqxt&>_appZ$WHjzIquYyw`USX&1EYe-f@W6_THy1E1GSJ;iaV?xCAonkbjyXZmrWn z!S9e+FjP|xuANm4-JUqX4kk~&5K!J!5ZWpsoL`~k}%zm_X&JjC?CGyGv43}&f0TrRteW#nk67pE;;RBgpOa5I|W;EJsRX1Ucp72-% zCmf`t6i`g!Uk$H27yAoNd}h!_k2JzYyBCHb?96U5V zin8t;gr2SJJX5|D2<~yb z5lND6;pWBWnx+3?%$;Qa;*{YW1i82<=%!v5AoMmnceogoD0bjr*@KnGoAb~)O7;I^ zMz9av)RN0W!$KCIc!tn&4F;zX`@F2HSRd2`Li!(Aqmutc+us-S;#E~NGo`z|F%j8M zf$}PtnhBc)NOZZOT@VTC+VcC%TiaJ1Sh`8S*+`Q$B))8yI$FPO{w+gb@K~lDdSd48d2=0 zAKDZZKvWfBXju!Jz#dwc3dNc$z=N#13v~r(r}Bc#Gd>YvOf3tg>A%l%Zf1Rj*MMb{ z+qTylL(~tVuSm>FLh=XOYoI3ddrZ9g*%7YA#K4Y%nw8r-E-Ff5<5Ou)1GQe7a@K9H zcKpKn@o(~&wAHg+o&B%7qDQ?~@My&s&A;9q%k!rnHLOUcw`W-6IP?s3ZG&YCN(DBu zv1#uTSOQO|p89GYmQ&ttN(&IX2bZE?28cHkJCm~!jf($=kk`}&!sfbBbqi$R|+lo5L2J|;AS7x(MB!^gzny+;M6tXbQYKJL| zZK(O|QPEX4brQD~FytxRj%1oRmArvP4g=Jp>Y;SL8DYNXMM}%_%<=Ff=XXrY%+p)w znTHLWiRX?qVV>+VA`&dZCSkD;vnC}aAtNuwxW)F3MNA%Hd)2=uqI9YI?>-HtG9frS3l(L% zejo_36!TS#WEzI)$spM;oc{x@oX2qudw%2BEjTLUaGCeMH!Z~{4k-4fSKYP zd&V)ifb4WC(=TwuBkkJ97*t#Hm z|5+Xw#h>Ed5L4RqU=-T{lOS}2!n_ERv}QOF;pEom9B{Bgl|gdvFe^SJ0H>;Cv1|gh zv&7c1W4CLpCy_{XuPg)R$f&N3X=kCu;s2wR5vgcbuJ=YS+J0c=q~tBEpIz)T@I>z< z!L+bzUm4#q9S66#d!hpcl&yage`cK3Ys8AztRsj}#P4SP9uR`$?|G6D_aGBYEtoN= z2pKFZ|JVCkAaYNGymE3US{S;a`&>c(? zZgSVETDG}ss*2N@!NFwRjQZzrvvi#tHTLG@8Ump&U-8OP(Ou1@*AZWsufI_PwvBVV zP#<7&i(_=RPFAadbCqoq9yl`{lkBK829`FnDT>SJBqid_ZnkM7+aUh9-_c55ZK8hwXRx3APrxl==&xu-~ZS|_7o7`5_6 zj(_um*Q~RC({>XX-Pz!Hhmb>{;fbEOn(kzN1n*ERf_tnY{ZjwIp|81=?FPWy1*Z95 z`~r*e%{%NoFQ^_DMG1<$ljB+dk}Dn!MX1Rne(`qa@gR`Zx{Zt>rQk4evsSU%Teo#i zBXoK6jR-5uS3U9sWqq`iQBJMro#^=^&eY>>&_3LL%4-0sY49+$w|ps&%I;796E<>c zh1hG#sP=VqAXzAi`wqUSL$LE;2%^x6ohYC6wMyM-Y zS;HE4jKKLchU#J;nh{VQJvEi9{-woAal?@ORv8-xC`Z?9{;L(VO|V}s&Gi*X^@(mT zVq5$SMdMmy(Z=Dc(a*k2xv<5*p9KwO(%qFcG5YJ2f_2_6hTUTtHI~p-D|;T-Bix@K z!_Q+Y^$14xiSXtr1sQ+!ky^yKEfc8Ex@=NPSWoJe1uaqBMC5;#R#`(@d5j-p#<2UT zL#t;LSld^9q%MbcoUC40NJ~cTm*jEQ093A@;*L zz4nzTq(<9wpk#wpD1D7*sl53Ghk^xK_|f(8!Pv%1#d4SK6oX2)3}gG_zvJ4g?N$x| z-Ot_!6bv8D5bN(p2wCwbw?rBFtxil*e)dHn229&x8TDD(pcU3YoQilf1XhTXNKH&h zB@fHOlChT?e3@0K@q4FwK}u(FFK(+AWT6 z)vyf~@)91|h5G3^8D3=-hGEXHL3>17?@G-yBqGiRLNuHPs@e@?{{|H8E8-_1z?o%X z#+U8(mVQym?+kLMWkloVsscYBDJytglfZ%ShxZnWA-DAb(Ff->*4cdOX8|y-WwJerd-5 z&O{TZi_S7!_yQ#)71F@-xO=$R%9u{}>aPhq5H?8c{CjJOgMJZ|0 z6!h9J+Nprwik(r(kea8n{O2mH^+d@0QrR=2;4sV@3bv(;Sh5~ z=C(u|8)!)yvSC7qjbel&-eLS%@4qp|YfN_6@pSrhg^_|?0ut2;N+d=(Z%dP4hQQk-XzgV+?95Tmv)eL|w6 z-D4c?qEmH9rM?{@U-Qa_dgqs>{hr8t+trd}d@=?#V}DhP^Q7gSUtk^`DX=9{1rv}& zPXvyp_9jl8dxvjG;$NvoU_N2Xca)k^)$zL;!SEyA{>8jxZrrcPK0pdd7RkqhDaceLaeAFq2tDsn9gMQ>%8!Et|5 z!HI@(wv1j*ct2i@p{TqPsvMPl;&K0Hl~LRH8)ZzE?`19#u~GCwmNcMrluHrg=iXG2NRRdR-s2J#8E-pdg%_5lFo z{1H}mItJyUjH6?noLWO`^+)z$kia*7M=8nSdq~}CT;CTZF z1P?&VW&D+oNvt4c9zp=P2Fvm7&qDS5a=6Hp9!2c6q$9ru(9jV28YzNHynbS!F66mi zZe4w%(i6q^*%eEJtg)$?tw*9BMF=Y%h9d0S+V2=tGFSp-bJnN>=Ej|PrZOR{Bqqfh{O zGE++oW6=M&>=d8@!v&kdkeO1hLaE}%uy=YBtL%KoD|_;?4YnO_nALHV5a;^3_!+t- zqm68ju#F>aZhsR^WDWZE9NWiMNZTO-g%Z+c%VBoy-c#lJ+qVGI9lqhdl4hdQ^*f~1 z>l5 zoA3MXRLky4@4D%4N)=!d53`iUDMe3v-$0PzvuZ781>C=A<4lB*Mg}Ep>fumD)7kK{ z&xSCG=DC!2*ZjBsr|rv_Jo%KwMsD_@A;fQC5NhTrz`4G|!p5nDJ#}+qQe}$n40|}y zA)44_EzA#-w)%BhMF&3*F1TElnD#Y_TlF{NrYl{IrelF3k5_lg$@zV*g7e%1zqqPU zEXqlRSt#U+K$XP@ZP%5U-oek75gJUMf~vub<7ZtMY~lZEk1Bj|6UIdjZt*}cCa^uG zu}a4ywZ=#Nov#7BiHV7wbxEs3@NvaMbhO zsS7jKl74m`I3E*uBh=EkGMp2#@w#qsMxqfV)YKo8y*&_h7}7|6H9%u{J`!&$3j&x` z&3?Kz?`=I>v>w_ckPw@qF9==>O3sk_?U1MCT#WKUR61sjHcG{>S1z8|mvZ}|n7>2D_DtGBL0`R$4M@NW4`+yiYE z1)#NO!ea6GEImEHT2>_c@|%xDgToYCnxP>J60kG=Ns>v*gp!vbd-U*}0*2|!l)cME y+87x9l83|+qpzN4FEeby2Z34s{~r$Bi04?3==;7^4tV()0Z>4w%2Z03h5jGZ8v + + + + diff --git a/apps/console/src/public/resources/applications/assets/images/technologies/ws-fed.png b/apps/console/src/public/resources/applications/assets/images/technologies/ws-fed.png new file mode 100644 index 0000000000000000000000000000000000000000..45de684962f1e392256a8995fe3de9ae6592da94 GIT binary patch literal 6190 zcmchbRag@a*u_cdM!E*0OBx3fW5PB{kWeXMbT^JpVMvWo8X2J=tw>1-N_UJ7VKjoY zfUxiX-GA5L#d**3p6hdQo*(LofesBN2PFXk0SycaG5*iL{3l!Td;i@CwKp~Y8HG3W zxgP-m71RHUkRUgo?Z1%F&sYacP&3N4``<(2q^Yk-Kv17b_0N`+fPl3J2GKNmMfkhm zxwoZha9=0ZPPai)cLm42QLvm%h+s?Sh#MwAi+pDXTte zX==l7tKg6DVcTMIHS~0;neV}>s>URS&Z#EfnHB_0|HNKE@2eI+GA8|hjVgcitnJNw zl9iR^M<5Ve+lh&k6;)N4m6c+r?S1}smbk&^=%E{kHrZJp*Ck!G6=3r3lNB^0Q?Ro$ zw6(46XZv$e-d9>$F(&5b!ra>T$jCNNHiu+EAkeW2xm?JFdqs71mYz_CGgp6~a!*eW zQ)f)5-_|giUCt559Y5RU)85`b8T>2yi`6#~?t+5J)mf+B%{j_24+S|VxQA7N{GMCB zl2;*edUiH%AE&?yyq-(5cK&b+lKjY=BV*G!y>~gV(v-(oa((B2!02+PBG~UDLz1f1 zV}_PI+T<3KDenBcPIa|YlG;EnA9QGmyt~?V_?dVgl>j|c3H@6a`sX{@>m-0{CLf*p zzdCp18ev66g{U%Ztm^C}zsgFOxs(W?=OZZME>v#x(d818%7AhTY97;fxY)UBIkfxq zLuuOwo$H$${Y=_E*;2D^S=e6Yw4Z;sf>`l8DJ!v0X4UEE``Cf?pKoZsBS%YT)oYl( zURt32@Wm7FP0LA5{U9uObbq%8$9>99FD2=-c8=Yz8Th@;B}2|uk+`(%@$J!q3`6xB zy&B6F+2gk7pB)F1OZOaJNf!FA(zs5*gD(Ul;p*XH|r;X6(F~+}-7k z`$_H9!mhs@ygGVxh08Fce%P~-NVvh5^UA*x;-cmQ&dtkn=+Hid#X8P&P0hHwKk1ab zvmB6eo*QJ37`vtbjs|+RpPN1Z;%tOH`Ws2dqs&K4OiY?8O!>8`X$UFE4^p^R0zyJ8 z@_<+IM32N6vI!1dzsK@}PrXazn6_gXkDO{drH;OxrsS(fgfr&kP;-s>RMD&cEku1^ zUB^;ct1wa7oz84*X{?j$;}+|}+qqN%CH5~r$e(CVgVFaHH67pHKKanvT#Df1J;ZKu zf;Yh;+)~b&0mAqCBrH0XfE6|NfW)JvmZujavV8>)ob4IgH-ovDqK;4}#n{6c6tS)J z9;D5GcQSVLq8W+K9*0yVSF*2SMYab?q0u~>URPbRVMa{K_Haw)*BVJ1DcoexVUoRr zy}@89)MC1zZc+^$;T2k_$PKJ(5;Qin|NK+%%|sth#-dl7K8wV&mrHNPTgU|-0JlP+ zZxMZ|LudgVz0A}aSso=aMy6c4;Pbs1ZE?m%utp^@8QtJUs(RsUFMmBh*v81NkFY^A zn=p$ZO^!7w9E+ORr_W3n4v;hjw@nl{CuT&cqO`Xb6$rzQ<5=yd%JsLho89_|>^Hyv zwB3AZ%!NNxx%ziHwrO7ZQ>FV7@RWAQT?}D=(DLTt^f$Wih)}(n=k_^n8xCPM_hPqE zh0;AC)<#$^KABr4px2qoB*PcmGj;i|LBi(vj{5*s#SX%vUl@ z&Wyb*g!9XH=<4-%daZWAINpie-59D%Uam$&e7DCsJBO`#NSinjKX1?$zF25<+pKO{ zkwtfWEoY9`tZfP|bS*DmBbFk{`h5PgYIcJ%f0f>G`h{K3^*oK$xZbzNonBKmmvvmb z&vJuITDhE%fo8Af}~H2EY7HgGAMDD`}~mk&l)> zciVE@uO(c0fV1#{y&vH&OtC~mjwvTYS1-v#`F@wEpjlG@449OwCv*!Da}@c`k}%w%^}B0z z1_yh?{&{wBAj7|#0j0BWo*(jfA;>xUEUEyati~9AcmJZ*srr7!Di`zn*JUQm=coqx z5|v|HE8d)ssLpTNc$RHINzwC*kbJlRIyph-3oo@jxjjDc$a=mbEToD=0~~9#RKS+z zUY4G?@2hE_qU{@L7T6eA|A3`fdsF{Kmnipj_>2TrY(_|T+?UXpCP)OO&ggR6VzwS$ zQMy}4B25x{8h$=5-R^-}KFiPjH@0`ld76>ymvSMFZhSv|Z3Ev5@~|I8j#{_D{li>^ z{n!siFj(aTt#wicD|*TL-g|yK2=_WSg#C4`4 z9F2eIQ{&JofTv^$3a<=sXX+@fn|i5Y_0K3f_OH*ljNHJe)}DzGJaelSE?{tx>PS3%eFukH?xoK}x3QRykcin!QdP zU5wj?llP#k{k&uXfHT!9a;fo)p?8vbXQBKuVQfa;k|yka`dzE88e4acx?6Jis#RX8 z!v2Y4k>#e2O2}=9IL*37)Q6BJArt)j(r}xBWr0mT=X#Og#!!7D%wqa&b(aF-u7&$0=9*qBJoD*2*WxvMq_Xuayc|-qa`#i|r#z=1 zDGki;aC+0l=PNba?j-w-UmK3DNV+KIW$&%cNCz(#h%*%45A(mCk7z9Ak+gKqlVa9) zejAie%cx-vjxt7iTI2U2GD=TQSW1)f%syd_=u*dtLOVlUJ zny(g4p|K$KFS;QzA16a?e-^!|`X?tC^wQ6_@bD3Qt7y+R5JZ?G9*yXWW(wc89f4H}?#&NQ7|y+!clxro>2p_$K1B4ODNHu7 z)fP^Sp9DcH89jpXWAWdNz)d1KCD%Cvbu#hdj4UxwGdgF~O7f(hyjWzF1he&@e5Ag9 ztKE1LSchBoUa}z(``hje9bYReN2&T$iX_tN!t`4e%qsL9GiieIoUbH$z0r1{Ai_%E zuDI(oxvdKBHXs?UUHVJYZEB(eCSbbA2?BJC>$axfeB0R>wb|wD++8wNxB?eoP9@i34tP93gRp;SPOk`!zw4N&9>Jo z+}pe+GIEntT{HSGlza`z7gXD(@7yN0$DA9++(O#^P$DF>&-34Pyies7D^_~(X8c*` zUPt~F>!(hbwQg4?`A9sNPzS6ZIKoN^~M-JwQSHB&H zY>rx8H%eb3bNC5@84i}{g! z>$+oXtm55g1bU=v$gG7Sx{QZ{_!tZpcYd%*BH-~N2@$_O2)&7hrx4!=eYLSAV*sqyO7S)@mBU1zN*f`amw^84cwC`2FX0cfZ#kmy|vr` zcb0+B_*+SfVX-dCZX{Yc^syb#g~?$O5Vi7ZgXYxQ-OTW|)y-8aWi3CZH8}YU7oj$h zGxG7O#t(xO9b09O$50s|KT3Klo^T-ou~iLe#NU-+AI=}u~)L#|HY}`m5A0OH zgP@VW`$wWR4=Y+HgnVr6bk4GXWgEwn?JkTD`}JbAwNmdZdp$0g8NWXjkr5?YM96RJ zb*ymkZp{NDmJk-y#E9GX>KLf()#T^*{E~{%6eb(h(ND9NO*w8f?f8>*jJeLCFohel z92)=njsysZlhwe;6Gr#1uJ>z`FJ7-%rs{e^+ilE6g}7)8XEA5lzvGqhl>zsB3Ab&J zc@y0K=1socsOl}+Cn5J>93tA@3^)eW_Kcp1zU%wDmc|7o4XSvYx-KA~LVK`U6hK{g zXqTL5WZr$CXav@(^sYj6IAswCn|!4&6CRZ`QAquwG3TPE>Co&2Y5UGVo-ZV zE>SVjmZD!C+6I5Wc@p^`=Y3uZZD%@9fTo2@9FV`Fo}hLt zEgcU4jL%(vY{|r+$cN4aW{~&4a-_rD>78sH(pOA>Ol0Y!>)>fsI3Qj9>XA3GaMXzp ze|z31Mp6MdGkIY=L?qGj?N}6XQ{c4f*mhISH6;7hVFvhW<|}Jknh6FM(KrS#$S*QS z!p{WTZ=ms}x!GY?o9~!ng?zMPCey-yCh}jUaYfV4<=IGhxAuZ)6iQ}j!R!9a zSCUjorHZy?LJA-$)8PJ7H80srh%<%(HY2?fuA(ch<*ZnC@o>`ukRc>ZeRc}QGioF#4?pKon`K9N*SjU;T;P7=^^Gcaz zBe0LMhJ>N@^`0xk5!pmmJz0tcSimY__~1*0#JGjQI#i9Y!p(fpAA@6&TT0q7Kobhe zN=4~{|KS8R2?c5OX!E08w~v5%OPAg4r0h5uW1W()VvDqilG{P?S~fSDK8J5V4hm;u z%6Svr1vWr?3c=f-o*Ag{nce=rDk822sf{OmE=gF-AZ04HN>w=#Kx;{(@^6~ll*Vk^ zSWYz z))7+7%WwhcCP{g7PFWHYA+HWI{husTT*C?{afhQSNAkuMbIv1;?~5*7jd~^jJfQU5 zeY>WusziM-Veu!EMSo>@`M7r*%rtq-YoQ)IKqm=sVatX7>8%d&IUj7Sw(!7v-6;Ld z`7m8Y4qw(c3m!L`D={5B=6VE73PRTQ4;0M_RUs{Y1NolYtIU;M&aC`9T588WevdPZ zbYPo5E);^dzy}}?&U}g;cv)k$1%iB=*Px|TcR~Jbrd$dAs@~8)iK57ixkvxTwaQ&6 zBu5+LIBorsqx_4B;H6Ge9#|UjtRLk~i}g32lA%PKoLJeZ+NwV6Dd1j+HB60AxFlZ}WJP0a*T7t3- z?l{aDI!oycMk>hMP+Lut7%6=ELmwm)buicHW*!<`Tq@Vj3o@%Oa}?rC8E~s@7itSS zQY@4ar%Femm{*LL?c$jT2YTE<7}PG$qt}b9%`HS@f)AIk*JA29scWQV6@3*SeF{Ez zeqVNK`cM1!>8orDK&;|Ywui7}Z$NhENZ=%m;7(@Ac4=xKVGeC(+_*%`-+rH1#bqQM z%x}lY2zI_M+fZyWBe~8w)ek@lFJP)+EP#dZ zXPDR}L%QEwz+lJ8F&)AIO^FgWOpA8|k|Z@3{a<3trprGl{QCEVSLMTT_*|S33s{Tf zf?#x^MeY;E$>2S(9JT6!9V1(!=ScXELd1SxEtUColH#R@83_Dj*>q@keXPVYG1BBi z&iR?=>h5y0WxG)B;+K9ve8e~B4F4Gmt6?>b&l@4RN>$iu)1iIo>df7L$|667Nm{u$ z$CoP3K}XL}#Gb^w5)*Q8N@#yW;l7Z(5q;cz;r%A@Hfuq`xa87XPI>9unIY*RbDJ=S zYk0ScDno!vB>b8|jz&C&v#6w{>2{5*+=2NjBP89?9fwH;*a#-SF7RzKk+r^E=HI`2 zasE3{|IYgJV)<~`L+uk_k`LneT1;ZMlJg*i72^|7I)pCG#L?Ro7J6O68UV_xko8+z zCK;tKzoxqMWejvu5Mq@04+#zJ8UDldF|BIpf9ttEe*%h9pmrcPN6SI0rOsnNBA>uE z?`5DY0)3VQQdRjs%y52C&#Silt;s8YIZ1_Yf@f1l|2e#s3pmf=WcGyu=bz|Cef;|5 zsXDJ&fe@UEr)bG`J9;tlm!AC~_of^+&vSC{WsjraoTpp+d1VKWD}^VaqWyB5M6?PM zdXRt9mkad}q{%V;*yWXm03Lj6F}$zSv+<=)*7DnwXTF10T@ExqhD^o8alvO_2_+F` zl!|jCBtkE)&vSL6Clz>t=TKxWFqYjm>%9YV!>UyP6@!z!VUMcOhv4wxt$Ep= zFTu2PA?|fOv3Xten))`MwOpsz%@KJg6(ZP*GV`YH^z4r0M3SRNhKzYF`O<%Qp8)pQ08#^f8T~&D&(gyH literal 0 HcmV?d00001 diff --git a/features/admin.applications.v1/api/use-get-application-template-categories.ts b/features/admin.applications.v1/api/use-get-application-template-categories.ts new file mode 100644 index 00000000000..495f3669146 --- /dev/null +++ b/features/admin.applications.v1/api/use-get-application-template-categories.ts @@ -0,0 +1,64 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { HttpMethods } from "@wso2is/core/models"; +import useRequest, { + RequestConfigInterface, + RequestErrorInterface, + RequestResultInterface +} from "../../admin.core.v1/hooks/use-request"; +import { store } from "../../admin.core.v1/store"; +import { ApplicationTemplateCategoryInterface } from "../models/application-templates"; + +/** + * Hook to fetches the application template categories from the API. + * + * @returns A promise containing the response. + */ +const useGetApplicationTemplateCategories = < + Data = ApplicationTemplateCategoryInterface[], + Error = RequestErrorInterface +>(): RequestResultInterface => { + const requestConfig: RequestConfigInterface = { + headers: { + Accept: "application/json", + "Content-Type": "application/json" + }, + method: HttpMethods.GET, + url: store?.getState()?.config?.endpoints?.applicationTemplateCategories + }; + + const { data, error, isValidating, mutate } = useRequest(requestConfig); + + if (Array.isArray(data)) { + data.sort( + (category1: ApplicationTemplateCategoryInterface, category2: ApplicationTemplateCategoryInterface) => + category1?.displayOrder - category2?.displayOrder + ); + } + + return { + data, + error, + isLoading: !error && !data, + isValidating, + mutate + }; +}; + +export default useGetApplicationTemplateCategories; diff --git a/features/admin.applications.v1/api/use-get-application-templates.ts b/features/admin.applications.v1/api/use-get-application-templates.ts index de4fe1656f3..2a08f194899 100644 --- a/features/admin.applications.v1/api/use-get-application-templates.ts +++ b/features/admin.applications.v1/api/use-get-application-templates.ts @@ -17,14 +17,12 @@ */ import { HttpMethods } from "@wso2is/core/models"; -import { useSelector } from "react-redux"; import useRequest, { RequestConfigInterface, RequestErrorInterface, RequestResultInterface } from "../../admin.core.v1/hooks/use-request"; -import { AppState, store } from "../../admin.core.v1/store"; -import { ApplicationTemplateConstants } from "../constants/application-templates"; +import { store } from "../../admin.core.v1/store"; import { ApplicationTemplateListInterface } from "../models/application-templates"; /** @@ -46,25 +44,12 @@ const useGetApplicationTemplates = < }; const { data, error, isValidating, mutate } = useRequest(requestConfig); - const clientOrigin: string = useSelector((state: AppState) => state?.config?.deployment?.clientOrigin); - const appBaseNameWithoutTenant: string = useSelector( - (state: AppState) => state?.config?.deployment?.appBaseNameWithoutTenant - ); if (Array.isArray(data)) { data.sort( (template1: ApplicationTemplateListInterface, template2: ApplicationTemplateListInterface) => template1?.displayOrder - template2?.displayOrder ); - - for (const template of data) { - if (template?.image?.includes(ApplicationTemplateConstants.CONSOLE_BASE_URL_PLACEHOLDER)) { - template.image = template.image.replace( - ApplicationTemplateConstants.CONSOLE_BASE_URL_PLACEHOLDER, - `${clientOrigin}/${appBaseNameWithoutTenant}` - ); - } - } } return { diff --git a/features/admin.applications.v1/components/application-templates/application-template-card.scss b/features/admin.applications.v1/components/application-templates/application-template-card.scss new file mode 100644 index 00000000000..a6ccc990d46 --- /dev/null +++ b/features/admin.applications.v1/components/application-templates/application-template-card.scss @@ -0,0 +1,118 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +.application-template { + display: flex; + flex-direction: column; + justify-content: flex-start; + width: 330px; + margin: 5px; + padding: 12px; + position: relative; + + &.disabled { + opacity: 0.6; + cursor: not-allowed !important; + filter: grayscale(100%); + + &:hover { + border-color: #d7d9e3 !important; + box-shadow: none; + } + } + + .application-template-coming-soon-ribbon { + position: absolute; + right: 0; + top: 13px; + font-size: .8em; + font-weight: 500; + color: #fff; + height: 24px; + width: 100px; + background: linear-gradient(270deg,#ff9d4d 0,#ff7300 100%); + display: flex; + flex-direction: row; + align-content: center; + align-items: center; + justify-content: space-around; + clip-path: polygon(4% 0,0 100%,100% 100%,100% 0,100% 0); + -webkit-clip-path: polygon(4% 0,0 100%,100% 100%,100% 0,100% 0); + } + + .application-template-header { + display: flex; + flex-direction: row; + gap: 15px; + align-content: center; + align-items: center; + padding-bottom: 0; + + .application-template-image-container { + height: 35px; + width: 35px; + justify-content: center; + display: flex; + flex-direction: row; + overflow: hidden; + + .application-template-image { + flex: 1; + height: 100%; + max-width: 100%; + object-fit: contain; + } + } + } + + .application-template-body { + padding-bottom: 16px; + + .application-template-description { + display: -webkit-box; + -webkit-box-orient: vertical; + overflow: hidden; + text-overflow: ellipsis; + -webkit-line-clamp: 2; /* Number of lines to show */ + /* Ensure compatibility with other browsers */ + height: calc(0.875rem * 1.5 * 2); /* Line height * number of lines */ + white-space: normal; + } + + .application-template-supported-technologies { + justify-content: flex-end; + margin-top: 10px; + + .application-template-supported-technology { + margin-left: 3px; + + &:last-child { + margin-left: -2px; + } + + .MuiAvatar-img { + object-fit: contain; + } + } + } + } +} + +.application-template:hover { + border-color: var(--oxygen-palette-primary-main); +} diff --git a/features/admin.applications.v1/components/application-templates/application-template-card.tsx b/features/admin.applications.v1/components/application-templates/application-template-card.tsx new file mode 100644 index 00000000000..02fdf00b83d --- /dev/null +++ b/features/admin.applications.v1/components/application-templates/application-template-card.tsx @@ -0,0 +1,184 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import Avatar from "@mui/material/Avatar"; +import AvatarGroup from "@mui/material/AvatarGroup"; +import Card from "@oxygen-ui/react/Card"; +import CardContent from "@oxygen-ui/react/CardContent"; +import Tooltip from "@oxygen-ui/react/Tooltip"; +import Typography from "@oxygen-ui/react/Typography"; +import { IdentifiableComponentInterface } from "@wso2is/core/models"; +import classnames from "classnames"; +import React, { FunctionComponent, MouseEvent, ReactElement, useMemo } from "react"; +import { useTranslation } from "react-i18next"; +import { ApplicationTemplateConstants } from "../../constants/application-templates"; +import { + ApplicationTemplateListInterface, + CustomAttributeInterface, + SupportedTechnologyMetadataInterface +} from "../../models/application-templates"; +import "./application-template-card.scss"; +import { ApplicationTemplateManagementUtils } from "../../utils/application-template-management-utils"; + +/** + * Props for the application template card component. + */ +export interface ApplicationTemplateCardPropsInterface extends IdentifiableComponentInterface { + /** + * Callback function triggered upon clicking on the application template card. + * + * @param e - Click event. + */ + onClick?: (e: MouseEvent) => void; + /** + * Details needed to render the application template card. + */ + template: ApplicationTemplateListInterface; +} + +/** + * Application template card component. + * + * @param props - Props injected to the component. + * + * @returns Application template card component. + */ +const ApplicationTemplateCard: FunctionComponent = ( + props: ApplicationTemplateCardPropsInterface +): ReactElement => { + const { + template, + onClick, + ["data-componentid"]: componentId + } = props; + + const { t } = useTranslation(); + + /** + * Extract the supported technology details related to the current application template. + */ + const supportedTechnologies: SupportedTechnologyMetadataInterface[] = useMemo(() => { + if (!template?.customAttributes || + !Array.isArray(template?.customAttributes) || + template?.customAttributes?.length <= 0) { + + return []; + } + + const property: CustomAttributeInterface = template?.customAttributes?.find( + (property: CustomAttributeInterface) => + property?.key === ApplicationTemplateConstants.SUPPORTED_TECHNOLOGIES_ATTRIBUTE_KEY + ); + + return property?.value ? JSON.parse(property?.value) : []; + }, [ template ]); + + /** + * Check whether the current application template should be displayed as a 'coming soon' template. + */ + const comingSoon: boolean = useMemo(() => { + if (!template?.customAttributes + || !Array.isArray(template?.customAttributes) + || template?.customAttributes?.length <= 0) { + + return false; + } + + const property: CustomAttributeInterface = template?.customAttributes.find( + (property: CustomAttributeInterface) => + property?.key === ApplicationTemplateConstants.COMING_SOON_ATTRIBUTE_KEY + ); + + return property?.value === "true"; + }, [ template ]); + + return ( + ) => { + if (!comingSoon) { + onClick(e); + } + } + } + data-componentid={ `${componentId}-${template?.id}` } + > + { + comingSoon + ? ( +
+ { t("common:comingSoon") } +
+ ) + : null + } + +
+ +
+
+ + { template.name } + +
+
+ + +
+ + { template.description } + +
+
+ { supportedTechnologies?.length > 0 && ( + + { supportedTechnologies.map( + (technology: SupportedTechnologyMetadataInterface) => ( + + ) + ) } + + ) } +
+
+ ); +}; + +/** + * Default props for the component. + */ +ApplicationTemplateCard.defaultProps = { + "data-componentid": "application-template-card" +}; + +export default ApplicationTemplateCard; diff --git a/features/admin.applications.v1/components/application-templates/application-templates-grid.scss b/features/admin.applications.v1/components/application-templates/application-templates-grid.scss new file mode 100644 index 00000000000..858e1ba4b80 --- /dev/null +++ b/features/admin.applications.v1/components/application-templates/application-templates-grid.scss @@ -0,0 +1,26 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +.application-template-card-group { + display: flex; + flex-direction: column; + justify-content: flex-start; + align-items: flex-start; + gap: 20px; + margin-bottom: 30px; +} diff --git a/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx b/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx index 95000f00ef5..ca3fefefef8 100644 --- a/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx +++ b/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx @@ -16,6 +16,7 @@ * under the License. */ +import { Typography } from "@mui/material"; import { IdentifiableComponentInterface, LoadableComponentInterface } from "@wso2is/core/models"; import { ContentLoader, @@ -25,20 +26,21 @@ import { SearchWithFilterLabels } from "@wso2is/react-components"; import union from "lodash-es/union"; -import React, { FunctionComponent, ReactElement, SyntheticEvent, useEffect, useMemo, useState } from "react"; +import React, { FunctionComponent, MouseEvent, ReactElement, useEffect, useMemo, useState } from "react"; import { useTranslation } from "react-i18next"; import { useSelector } from "react-redux"; +import ApplicationTemplateCard from "./application-template-card"; import { AppState, EventPublisher, getEmptyPlaceholderIllustrations } from "../../../admin.core.v1"; import { ApplicationTemplateConstants } from "../../constants/application-templates"; import useApplicationTemplates from "../../hooks/use-application-templates"; import { AuthProtocolMetaListItemInterface } from "../../models"; import { - AdditionalPropertyInterface, - ApplicationTemplateListInterface + ApplicationTemplateListInterface, + CategorizedApplicationTemplatesInterface } from "../../models/application-templates"; import { ApplicationManagementUtils } from "../../utils/application-management-utils"; -import { ApplicationTemplateManagementUtils } from "../../utils/application-template-management-utils"; import { InboundProtocolsMeta } from "../meta"; +import "./application-templates-grid.scss"; /** * Props for the Application templates grid page. @@ -70,7 +72,7 @@ const ApplicationTemplateGrid: FunctionComponent state?.config?.ui?.hiddenApplicationTemplates); - const { templates, isApplicationTemplatesRequestLoading } = useApplicationTemplates(); + const { templates, categorizedTemplates, isApplicationTemplatesRequestLoading } = useApplicationTemplates(); const [ searchQuery, setSearchQuery ] = useState(""); const [ selectedFilters, setSelectedFilters ] = useState([]); @@ -193,7 +195,10 @@ const ApplicationTemplateGrid: FunctionComponent { + const handleTemplateSelection = ( + e: MouseEvent, + template: ApplicationTemplateListInterface + ): void => { if (!template) { return; } @@ -281,11 +286,75 @@ const ApplicationTemplateGrid: FunctionComponent { + let isAdvancedSearchApplied: boolean = false; + + if (searchQuery || (!selectedFilters && Array.isArray(selectedFilters) && selectedFilters?.length > 0)) { + isAdvancedSearchApplied = true; + } + + if (isAdvancedSearchApplied) { + return ( + + { + filteredTemplates + .map((template: ApplicationTemplateListInterface) => { + return ( + ) => { + handleTemplateSelection(e, template); + } } + template={ template } + /> + ); + }) + } + + ); + } else { + return categorizedTemplates + .map((category: CategorizedApplicationTemplatesInterface) => { + const refinedTemplates: ApplicationTemplateListInterface[] = + removeIrrelevantTemplates(category?.templates); + + return ( +
+ + { category?.displayName } + + + { + refinedTemplates.map((template: ApplicationTemplateListInterface) => { + return ( + ) => { + handleTemplateSelection(e, template); + } } + template={ template } + /> + ); + }) + } + +
+ ); + }); + } + }; + return ( { - (filteredTemplates && !isApplicationTemplatesRequestLoading) - ? ( - - { - filteredTemplates - .map((template: ApplicationTemplateListInterface) => { - let isTemplateComingSoon: boolean = false; - - if (template?.additionalProperties - && Array.isArray(template?.additionalProperties) - && template?.additionalProperties.length > 0) { - - const comingSoonPropertyIndex: number = - template?.additionalProperties - .findIndex( - (property: AdditionalPropertyInterface) => - property?.key === - ApplicationTemplateConstants - .COMING_SOON_ATTRIBUTE_KEY - ); - - if (comingSoonPropertyIndex >= 0) { - isTemplateComingSoon = - template?.additionalProperties[ - comingSoonPropertyIndex - ]?.value === "true"; - } - } - - return ( - { - handleTemplateSelection(e, template); - } } - showTooltips={ - { - description: true, - header: false - } - } - data-testid={ `${ componentId }-${ template.name }` } - /> - ); - }) - } - - ) + (categorizedTemplates && filteredTemplates && !isApplicationTemplatesRequestLoading) + ? renderApplicationTemplateGrid() : } diff --git a/features/admin.applications.v1/configs/endpoints.ts b/features/admin.applications.v1/configs/endpoints.ts index ba157aecbaf..645ad9d74da 100644 --- a/features/admin.applications.v1/configs/endpoints.ts +++ b/features/admin.applications.v1/configs/endpoints.ts @@ -29,6 +29,7 @@ export const getApplicationsResourceEndpoints = (serverHost: string): Applicatio return { applicationTemplate: `${serverHost}/api/server/v1/extensions/applications/{{id}}`, + applicationTemplateCategories: `${serverHost}/api/server/v1/extensions/applications/categories`, applicationTemplateMetadata: `${serverHost}/api/server/v1/extensions/applications/{{id}}/metadata`, applicationTemplates: `${serverHost}/api/server/v1/extensions/applications`, applications: `${ serverHost }/api/server/v1/applications`, diff --git a/features/admin.applications.v1/constants/application-templates.ts b/features/admin.applications.v1/constants/application-templates.ts index 781b2807247..d71a8980878 100644 --- a/features/admin.applications.v1/constants/application-templates.ts +++ b/features/admin.applications.v1/constants/application-templates.ts @@ -24,5 +24,7 @@ export class ApplicationTemplateConstants { public static readonly COMING_SOON_ATTRIBUTE_KEY: string = "comingSoon"; + public static readonly SUPPORTED_TECHNOLOGIES_ATTRIBUTE_KEY: string = "supportedTechnologies"; + public static readonly CUSTOM_PROTOCOL_APPLICATION_TEMPLATE_ID: string = "custom-protocol-application"; } diff --git a/features/admin.applications.v1/context/application-templates-context.tsx b/features/admin.applications.v1/context/application-templates-context.tsx index 5f91622c4de..b190714d463 100644 --- a/features/admin.applications.v1/context/application-templates-context.tsx +++ b/features/admin.applications.v1/context/application-templates-context.tsx @@ -29,7 +29,7 @@ export interface ApplicationTemplatesContextProps { /** * Templates categorized by their `category`. */ - categorizedTemplates: CategorizedApplicationTemplatesInterface; + categorizedTemplates: CategorizedApplicationTemplatesInterface[]; /** * Application Templates. */ diff --git a/features/admin.applications.v1/models/application-templates.ts b/features/admin.applications.v1/models/application-templates.ts index 5bbcb473d50..cc38d791565 100644 --- a/features/admin.applications.v1/models/application-templates.ts +++ b/features/admin.applications.v1/models/application-templates.ts @@ -65,7 +65,7 @@ export interface ApplicationTemplateListInterface extends ApplicationTemplateCom /** * Additional properties of the template. */ - additionalProperties?: AdditionalPropertyInterface[]; + customAttributes?: CustomAttributeInterface[]; } /** @@ -111,7 +111,7 @@ export interface ApplicationTemplateMetadataInterface { /** * Interface for the additional properties of the template. */ -export interface AdditionalPropertyInterface { +export interface CustomAttributeInterface { /** * Key of the property. */ @@ -140,6 +140,28 @@ export enum ApplicationTemplateCategories { SSO_INTEGRATION = "SSO-INTEGRATION", } +/** + * Interface for the application template category details. + */ +export interface ApplicationTemplateCategoryInterface { + /** + * Unique identifier of the application template category. + */ + id: string, + /** + * Display name of the application template category. + */ + displayName: string, + /** + * Description of the application template category. + */ + description: string, + /** + * Order in which the application template category is displayed. + */ + displayOrder: number +} + /** * Supported technology metadata interface. */ @@ -157,9 +179,23 @@ export interface SupportedTechnologyMetadataInterface { /** * Interface for the categorized application templates. */ -export interface CategorizedApplicationTemplatesInterface { +export interface CategorizedApplicationTemplatesInterface extends ApplicationTemplateCategoryInterface { + /** + * Template associated with a specific category. + */ + templates: ApplicationTemplateListInterface[] +} + +/** + * Supported technology metadata interface. + */ +export interface SupportedTechnologyMetadataInterface { /** - * Category name - Template list mapping. + * Display name of the technology. + */ + displayName: string; + /** + * URL of the technology logo. */ - [ key: string ]: ApplicationTemplateListInterface[] + logo?: string; } diff --git a/features/admin.applications.v1/models/endpoints.ts b/features/admin.applications.v1/models/endpoints.ts index e93be8492a3..20332e8ab45 100644 --- a/features/admin.applications.v1/models/endpoints.ts +++ b/features/admin.applications.v1/models/endpoints.ts @@ -34,6 +34,10 @@ export interface ApplicationsResourceEndpointsInterface { * Endpoint to get the application template metadata. */ applicationTemplateMetadata: string; + /** + * Endpoint to get the application template categories. + */ + applicationTemplateCategories: string; applications: string; myAccountConfigMgt: string; requestPathAuthenticators: string; diff --git a/features/admin.applications.v1/provider/application-templates-provider.tsx b/features/admin.applications.v1/provider/application-templates-provider.tsx index 502f62c7a15..5feb6c6757b 100644 --- a/features/admin.applications.v1/provider/application-templates-provider.tsx +++ b/features/admin.applications.v1/provider/application-templates-provider.tsx @@ -25,6 +25,7 @@ import { Dispatch } from "redux"; import useGetApplicationTemplates from "../api/use-get-application-templates"; import ApplicationTemplatesContext from "../context/application-templates-context"; import { + ApplicationTemplateCategoryInterface, ApplicationTemplateListInterface, CategorizedApplicationTemplatesInterface } from "../models/application-templates"; @@ -34,6 +35,24 @@ import { */ export type ApplicationTemplatesProviderProps = PropsWithChildren; +/** + * This should be retrieved via the API upon the introduction of the extension categorization endpoint. + */ +const applicationTemplateCategories: ApplicationTemplateCategoryInterface[] = [ + { + description: "Basic application types to configure a service provider", + displayName: "Application Types", + displayOrder: 0, + id: "DEFAULT" + }, + { + description: "Single sign on application template to configure SSO with enterprise applications", + displayName: "SSO Integrations", + displayOrder: 1, + id: "SSO-INTEGRATION" + } +]; + /** * Application templates provider. * @@ -56,26 +75,25 @@ const ApplicationTemplatesProvider = (props: ApplicationTemplatesProviderProps): /** * Categorize application templates based on the `category` attribute. */ - const categorizedTemplates: CategorizedApplicationTemplatesInterface = useMemo(() => { - const categoryMap: CategorizedApplicationTemplatesInterface = {}; + const categorizedTemplates: CategorizedApplicationTemplatesInterface[] = useMemo(() => { + const categoryMap: CategorizedApplicationTemplatesInterface[] = []; - if (applicationTemplates) { - // Create a category called "ALL" and push all items into it - categoryMap["ALL"] = [ ...applicationTemplates ]; + if (!applicationTemplates + || !Array.isArray(applicationTemplates) + || applicationTemplates?.length <= 0) { - // Categorize the templates based on their actual categories - applicationTemplates.forEach((template: ApplicationTemplateListInterface) => { - const category: string = template?.category; + return categoryMap; + } - if (category) { - if (!categoryMap[category]) { - categoryMap[category] = []; - } + // Categorize the templates based on their actual categories + applicationTemplateCategories.forEach((category: ApplicationTemplateCategoryInterface) => { + const categoryData: CategorizedApplicationTemplatesInterface = { ...category, templates: [] }; - categoryMap[category].push(template); - } - }); - } + categoryData.templates = applicationTemplates.filter( + (template: ApplicationTemplateListInterface) => template?.category === category?.id); + + categoryMap.push(categoryData); + }); return categoryMap; }, [ applicationTemplates ]); diff --git a/features/admin.applications.v1/utils/application-template-management-utils.ts b/features/admin.applications.v1/utils/application-template-management-utils.ts index 1602e1b5046..6b82524637f 100644 --- a/features/admin.applications.v1/utils/application-template-management-utils.ts +++ b/features/admin.applications.v1/utils/application-template-management-utils.ts @@ -31,6 +31,7 @@ import { store } from "../../admin.core.v1/store"; import { getApplicationTemplateList } from "../api"; +import { ApplicationTemplateConstants } from "../constants/application-templates"; import { TemplateConfigInterface, getApplicationTemplatesConfig } from "../data/application-templates"; import CustomApplicationTemplate from "../data/application-templates/templates/custom-application/custom-application.json"; @@ -454,6 +455,16 @@ export class ApplicationTemplateManagementUtils { return path; } + const basename: string = AppConstants.getAppBasename() ? `/${AppConstants.getAppBasename()}` : ""; + const clientOrigin: string = AppConstants.getClientOrigin(); + + if (path?.includes(ApplicationTemplateConstants.CONSOLE_BASE_URL_PLACEHOLDER)) { + return path.replace( + ApplicationTemplateConstants.CONSOLE_BASE_URL_PLACEHOLDER, + `${clientOrigin}${basename}` + ); + } + if (URLUtils.isHttpsOrHttpUrl(path) && ImageUtils.isValidImageExtension(path)) { return path; } @@ -464,9 +475,7 @@ export class ApplicationTemplateManagementUtils { if (AppConstants.getClientOrigin()) { - const basename: string = AppConstants.getAppBasename() ? `/${AppConstants.getAppBasename()}` : ""; - - if (path?.includes(AppConstants.getClientOrigin())) { + if (path?.includes(clientOrigin)) { return path; } diff --git a/features/admin.core.v1/store/reducers/config.ts b/features/admin.core.v1/store/reducers/config.ts index 7f683a0f083..91c73c37ddf 100644 --- a/features/admin.core.v1/store/reducers/config.ts +++ b/features/admin.core.v1/store/reducers/config.ts @@ -87,6 +87,7 @@ export const commonConfigReducerInitialState: CommonConfigReducerStateInterface< apiResourceCollection: "", apiResourceCollections: "", applicationTemplate: "", + applicationTemplateCategories: "", applicationTemplateMetadata: "", applicationTemplates: "", applications: "", From 0876cb3fc8f66f94cea23eed094150d7fbfac2e0 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Mon, 8 Apr 2024 18:23:22 +0530 Subject: [PATCH 005/114] add supported categorization --- ...use-get-application-template-categories.ts | 64 ------------------- .../constants/application-templates.ts | 21 ++++++ .../models/application-templates.ts | 2 +- .../application-templates-provider.tsx | 47 +++++++------- 4 files changed, 46 insertions(+), 88 deletions(-) delete mode 100644 features/admin.applications.v1/api/use-get-application-template-categories.ts diff --git a/features/admin.applications.v1/api/use-get-application-template-categories.ts b/features/admin.applications.v1/api/use-get-application-template-categories.ts deleted file mode 100644 index 495f3669146..00000000000 --- a/features/admin.applications.v1/api/use-get-application-template-categories.ts +++ /dev/null @@ -1,64 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import { HttpMethods } from "@wso2is/core/models"; -import useRequest, { - RequestConfigInterface, - RequestErrorInterface, - RequestResultInterface -} from "../../admin.core.v1/hooks/use-request"; -import { store } from "../../admin.core.v1/store"; -import { ApplicationTemplateCategoryInterface } from "../models/application-templates"; - -/** - * Hook to fetches the application template categories from the API. - * - * @returns A promise containing the response. - */ -const useGetApplicationTemplateCategories = < - Data = ApplicationTemplateCategoryInterface[], - Error = RequestErrorInterface ->(): RequestResultInterface => { - const requestConfig: RequestConfigInterface = { - headers: { - Accept: "application/json", - "Content-Type": "application/json" - }, - method: HttpMethods.GET, - url: store?.getState()?.config?.endpoints?.applicationTemplateCategories - }; - - const { data, error, isValidating, mutate } = useRequest(requestConfig); - - if (Array.isArray(data)) { - data.sort( - (category1: ApplicationTemplateCategoryInterface, category2: ApplicationTemplateCategoryInterface) => - category1?.displayOrder - category2?.displayOrder - ); - } - - return { - data, - error, - isLoading: !error && !data, - isValidating, - mutate - }; -}; - -export default useGetApplicationTemplateCategories; diff --git a/features/admin.applications.v1/constants/application-templates.ts b/features/admin.applications.v1/constants/application-templates.ts index d71a8980878..fbb3130378a 100644 --- a/features/admin.applications.v1/constants/application-templates.ts +++ b/features/admin.applications.v1/constants/application-templates.ts @@ -16,6 +16,8 @@ * under the License. */ +import { ApplicationTemplateCategoryInterface } from "../models/application-templates"; + /** * Class containing application templates management constants. */ @@ -27,4 +29,23 @@ export class ApplicationTemplateConstants { public static readonly SUPPORTED_TECHNOLOGIES_ATTRIBUTE_KEY: string = "supportedTechnologies"; public static readonly CUSTOM_PROTOCOL_APPLICATION_TEMPLATE_ID: string = "custom-protocol-application"; + + public static readonly SUPPORTED_CATEGORIES_INFO: ApplicationTemplateCategoryInterface[] = [ + { + displayName: "Application Types", + displayOrder: 0, + id: "DEFAULT" + }, + { + displayName: "SSO Integrations", + displayOrder: 1, + id: "SSO-INTEGRATION" + } + ]; + + public static readonly OTHER_CATEGORY_INFO: ApplicationTemplateCategoryInterface = { + displayName: "Others", + displayOrder: Infinity, + id: "OTHER" + } } diff --git a/features/admin.applications.v1/models/application-templates.ts b/features/admin.applications.v1/models/application-templates.ts index cc38d791565..c28488b0d4f 100644 --- a/features/admin.applications.v1/models/application-templates.ts +++ b/features/admin.applications.v1/models/application-templates.ts @@ -155,7 +155,7 @@ export interface ApplicationTemplateCategoryInterface { /** * Description of the application template category. */ - description: string, + description?: string, /** * Order in which the application template category is displayed. */ diff --git a/features/admin.applications.v1/provider/application-templates-provider.tsx b/features/admin.applications.v1/provider/application-templates-provider.tsx index 5feb6c6757b..ed9d8208f3c 100644 --- a/features/admin.applications.v1/provider/application-templates-provider.tsx +++ b/features/admin.applications.v1/provider/application-templates-provider.tsx @@ -23,6 +23,7 @@ import { useTranslation } from "react-i18next"; import { useDispatch } from "react-redux"; import { Dispatch } from "redux"; import useGetApplicationTemplates from "../api/use-get-application-templates"; +import { ApplicationTemplateConstants } from "../constants/application-templates"; import ApplicationTemplatesContext from "../context/application-templates-context"; import { ApplicationTemplateCategoryInterface, @@ -35,24 +36,6 @@ import { */ export type ApplicationTemplatesProviderProps = PropsWithChildren; -/** - * This should be retrieved via the API upon the introduction of the extension categorization endpoint. - */ -const applicationTemplateCategories: ApplicationTemplateCategoryInterface[] = [ - { - description: "Basic application types to configure a service provider", - displayName: "Application Types", - displayOrder: 0, - id: "DEFAULT" - }, - { - description: "Single sign on application template to configure SSO with enterprise applications", - displayName: "SSO Integrations", - displayOrder: 1, - id: "SSO-INTEGRATION" - } -]; - /** * Application templates provider. * @@ -85,14 +68,32 @@ const ApplicationTemplatesProvider = (props: ApplicationTemplatesProviderProps): return categoryMap; } + // Sort the application template categories based on their assigned display order. + ApplicationTemplateConstants.SUPPORTED_CATEGORIES_INFO.sort( + (category1: ApplicationTemplateCategoryInterface, category2: ApplicationTemplateCategoryInterface) => + category1?.displayOrder - category2?.displayOrder + ); + // Categorize the templates based on their actual categories - applicationTemplateCategories.forEach((category: ApplicationTemplateCategoryInterface) => { - const categoryData: CategorizedApplicationTemplatesInterface = { ...category, templates: [] }; + ApplicationTemplateConstants.SUPPORTED_CATEGORIES_INFO.forEach( + (category: ApplicationTemplateCategoryInterface) => { + const categoryData: CategorizedApplicationTemplatesInterface = { ...category, templates: [] }; + + categoryData.templates = applicationTemplates.filter( + (template: ApplicationTemplateListInterface) => template?.category === category?.id); + + categoryMap.push(categoryData); + } + ); - categoryData.templates = applicationTemplates.filter( - (template: ApplicationTemplateListInterface) => template?.category === category?.id); + // Categorize all other unsupported template categories as the "other" type. + const supportedCategories: string[] = ApplicationTemplateConstants.SUPPORTED_CATEGORIES_INFO.map( + (category: ApplicationTemplateCategoryInterface) => category?.id); - categoryMap.push(categoryData); + categoryMap.push({ + ...ApplicationTemplateConstants.OTHER_CATEGORY_INFO, + templates: applicationTemplates.filter( + (template: ApplicationTemplateListInterface) => !supportedCategories.includes(template?.category)) }); return categoryMap; From 906e409d571d2f4d54576a7857191f164642df22 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Tue, 9 Apr 2024 09:53:04 +0530 Subject: [PATCH 006/114] fix tmeplate filtering issue --- .../application-templates-grid.tsx | 132 +++++++++--------- .../constants/application-templates.ts | 6 +- .../src/models/namespaces/applications-ns.ts | 5 + .../en-US/portals/applications.ts | 5 + 4 files changed, 78 insertions(+), 70 deletions(-) diff --git a/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx b/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx index ca3fefefef8..26149061eae 100644 --- a/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx +++ b/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx @@ -222,8 +222,6 @@ const ApplicationTemplateGrid: FunctionComponent { - let isAdvancedSearchApplied: boolean = false; - - if (searchQuery || (!selectedFilters && Array.isArray(selectedFilters) && selectedFilters?.length > 0)) { - isAdvancedSearchApplied = true; - } - - if (isAdvancedSearchApplied) { - return ( - - { - filteredTemplates - .map((template: ApplicationTemplateListInterface) => { - return ( - ) => { - handleTemplateSelection(e, template); - } } - template={ template } - /> - ); - }) - } - - ); - } else { - return categorizedTemplates - .map((category: CategorizedApplicationTemplatesInterface) => { - const refinedTemplates: ApplicationTemplateListInterface[] = - removeIrrelevantTemplates(category?.templates); - - return ( -
- - { category?.displayName } - - - { - refinedTemplates.map((template: ApplicationTemplateListInterface) => { - return ( - ) => { - handleTemplateSelection(e, template); - } } - template={ template } - /> - ); - }) - } - -
- ); - }); - } - }; - return ( { (categorizedTemplates && filteredTemplates && !isApplicationTemplatesRequestLoading) - ? renderApplicationTemplateGrid() + ? ( + searchQuery + || (selectedFilters && Array.isArray(selectedFilters) + && selectedFilters?.length > 0) + ? ( + + { + filteredTemplates + .map((template: ApplicationTemplateListInterface) => { + return ( + ) => { + handleTemplateSelection(e, template); + } } + template={ template } + /> + ); + }) + } + + ) + : categorizedTemplates + .map((category: CategorizedApplicationTemplatesInterface) => { + const refinedTemplates: ApplicationTemplateListInterface[] = + removeIrrelevantTemplates(category?.templates); + + if (refinedTemplates?.length <= 0) { + return null; + } + + return ( +
+ + { t(category?.displayName) } + + + { + refinedTemplates.map( + (template: ApplicationTemplateListInterface) => { + return ( + ) => { + handleTemplateSelection(e, template); + } } + template={ template } + /> + ); + }) + } + +
+ ); + }) + ) : }
diff --git a/features/admin.applications.v1/constants/application-templates.ts b/features/admin.applications.v1/constants/application-templates.ts index fbb3130378a..24b02424a3e 100644 --- a/features/admin.applications.v1/constants/application-templates.ts +++ b/features/admin.applications.v1/constants/application-templates.ts @@ -32,19 +32,19 @@ export class ApplicationTemplateConstants { public static readonly SUPPORTED_CATEGORIES_INFO: ApplicationTemplateCategoryInterface[] = [ { - displayName: "Application Types", + displayName: "applications:templates.categories.default", displayOrder: 0, id: "DEFAULT" }, { - displayName: "SSO Integrations", + displayName: "applications:templates.categories.ssoIntegration", displayOrder: 1, id: "SSO-INTEGRATION" } ]; public static readonly OTHER_CATEGORY_INFO: ApplicationTemplateCategoryInterface = { - displayName: "Others", + displayName: "applications:templates.categories.other", displayOrder: Infinity, id: "OTHER" } diff --git a/modules/i18n/src/models/namespaces/applications-ns.ts b/modules/i18n/src/models/namespaces/applications-ns.ts index bb4f0864447..9ff19d34eae 100644 --- a/modules/i18n/src/models/namespaces/applications-ns.ts +++ b/modules/i18n/src/models/namespaces/applications-ns.ts @@ -2581,6 +2581,11 @@ export interface ApplicationsNS { }; }; templates: { + categories: { + default: string; + ssoIntegration: string; + other: string; + } emptyPlaceholder: { action: string; title: string; diff --git a/modules/i18n/src/translations/en-US/portals/applications.ts b/modules/i18n/src/translations/en-US/portals/applications.ts index b8a331d144b..1ec75b53b95 100644 --- a/modules/i18n/src/translations/en-US/portals/applications.ts +++ b/modules/i18n/src/translations/en-US/portals/applications.ts @@ -2839,6 +2839,11 @@ export const applications: ApplicationsNS = { } }, templates: { + categories: { + default: "Application Types", + ssoIntegration: "SSO Integrations", + other: "Others" + }, emptyPlaceholder: { action: null, subtitles: "Please add templates to display here.", From a6f4e77e774faeb7a78f57a91aa110ddc02408f4 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Tue, 9 Apr 2024 12:24:02 +0530 Subject: [PATCH 007/114] improve application list and connected apps views --- .../components/application-list.tsx | 35 +- .../pages/applications.tsx | 323 +++++++++--------- .../edit/settings/connected-apps.tsx | 35 +- .../components/settings/connected-apps.tsx | 145 ++++---- 4 files changed, 312 insertions(+), 226 deletions(-) diff --git a/features/admin.applications.v1/components/application-list.tsx b/features/admin.applications.v1/components/application-list.tsx index 19c3524e2d7..c00432482ae 100644 --- a/features/admin.applications.v1/components/application-list.tsx +++ b/features/admin.applications.v1/components/application-list.tsx @@ -45,8 +45,6 @@ import { Trans, useTranslation } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; import { Dispatch } from "redux"; import { Header, Icon, Label, SemanticICONS } from "semantic-ui-react"; -import { applicationConfig } from "../../admin.extensions.v1"; -import { applicationListConfig } from "../../admin.extensions.v1/configs/application-list"; import { ConsoleSettingsModes } from "../../admin.console-settings.v1/models/ui"; import { AppConstants, @@ -57,10 +55,13 @@ import { getEmptyPlaceholderIllustrations, history } from "../../admin.core.v1"; +import { applicationConfig } from "../../admin.extensions.v1"; +import { applicationListConfig } from "../../admin.extensions.v1/configs/application-list"; import { OrganizationType } from "../../admin.organizations.v1/constants"; import { useGetCurrentOrganizationType } from "../../admin.organizations.v1/hooks/use-get-organization-type"; import { deleteApplication } from "../api"; import { ApplicationManagementConstants } from "../constants"; +import useApplicationTemplates from "../hooks/use-application-templates"; import { ApplicationAccessTypes, ApplicationInboundTypes, @@ -68,6 +69,7 @@ import { ApplicationListItemInterface, ApplicationTemplateListItemInterface } from "../models"; +import { ApplicationTemplateListInterface } from "../models/application-templates"; import { ApplicationManagementUtils } from "../utils/application-management-utils"; import { ApplicationTemplateManagementUtils } from "../utils/application-template-management-utils"; @@ -166,6 +168,10 @@ export const ApplicationList: FunctionComponent = const tenantDomain: string = useSelector((state: AppState) => state?.auth?.tenantDomain); const { organizationType } = useGetCurrentOrganizationType(); + const { + templates: extensionApplicationTemplates, + isApplicationTemplatesRequestLoading: isExtensionApplicationTemplatesRequestLoading + } = useApplicationTemplates(); const [ showDeleteConfirmationModal, setShowDeleteConfirmationModal ] = useState(false); const [ deletingApplication, setDeletingApplication ] = useState(undefined); @@ -350,6 +356,18 @@ export const ApplicationList: FunctionComponent = } } + /** + * This condition block will help identify the applications created from templates + * on the extensions management API side. + */ + if (!templateDisplayName) { + templateDisplayName = extensionApplicationTemplates.find( + (template: ApplicationTemplateListInterface) => { + return template?.id === app?.templateId; + } + )?.name; + } + return (
= className="applications-table" externalSearch={ advancedSearch } - isLoading={ isLoading || isApplicationTemplateRequestLoading } + isLoading={ + isLoading + || isApplicationTemplateRequestLoading + || isExtensionApplicationTemplatesRequestLoading + } actions={ !isSetStrongerAuth && resolveTableActions() } columns={ resolveTableColumns() } data={ list?.applications } @@ -617,7 +639,12 @@ export const ApplicationList: FunctionComponent = placeholders={ showPlaceholders() } selectable={ selection } showHeader={ applicationListConfig.enableTableHeaders } - transparent={ !(isLoading || isApplicationTemplateRequestLoading) && (showPlaceholders() !== null) } + transparent={ + !(isLoading + || isApplicationTemplateRequestLoading + || isExtensionApplicationTemplatesRequestLoading) + && (showPlaceholders() !== null) + } data-testid={ testId } /> { diff --git a/features/admin.applications.v1/pages/applications.tsx b/features/admin.applications.v1/pages/applications.tsx index d0172f5811d..d2621da45d6 100644 --- a/features/admin.applications.v1/pages/applications.tsx +++ b/features/admin.applications.v1/pages/applications.tsx @@ -17,7 +17,6 @@ */ import { AccessControlConstants, Show } from "@wso2is/access-control"; -import useUIConfig from "../../admin.core.v1/hooks/use-ui-configs"; import { AlertLevels, TestableComponentInterface } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; import { I18n } from "@wso2is/i18n"; @@ -55,7 +54,6 @@ import { List, PaginationProps } from "semantic-ui-react"; -import { applicationConfig } from "../../admin.extensions.v1"; import isLegacyAuthzRuntime from "../../admin.authorization.v1/utils/get-legacy-authz-runtime"; import { AdvancedSearchWithBasicFilters, @@ -68,6 +66,8 @@ import { getGeneralIcons, history } from "../../admin.core.v1"; +import useUIConfig from "../../admin.core.v1/hooks/use-ui-configs"; +import { applicationConfig } from "../../admin.extensions.v1"; import { OrganizationType } from "../../admin.organizations.v1/constants"; import { useGetCurrentOrganizationType } from "../../admin.organizations.v1/hooks/use-get-organization-type"; import { useApplicationList, useMyAccountApplicationData, useMyAccountStatus } from "../api"; @@ -77,6 +77,7 @@ import { ApplicationManagementConstants } from "../constants"; import CustomApplicationTemplate from "../data/application-templates/templates/custom-application/custom-application.json"; import { ApplicationAccessTypes, ApplicationListInterface, ApplicationListItemInterface } from "../models"; +import ApplicationTemplatesProvider from "../provider/application-templates-provider"; const APPLICATIONS_LIST_SORTING_OPTIONS: DropdownItemProps[] = [ { @@ -533,126 +534,61 @@ const ApplicationsPage: FunctionComponent = ( }; return ( - 0) && ( - - { - eventPublisher.publish("application-click-new-application-button"); - history.push(AppConstants.getPaths().get("APPLICATION_TEMPLATES")); - } } - data-testid={ `${ testId }-list-layout-add-button` } - > - - { t("applications:list.actions.add") } - - - ) } - title={ t("console:develop.pages.applications.title") } - description={ organizationType !== OrganizationType.SUBORGANIZATION - ? ( -

- { t("console:develop.pages.applications.subTitle") } - - { t("common:learnMore") } - -

- ) - : ( -

- { t("console:develop.pages.applications.alternateSubTitle") } - + 0) && ( + + { + eventPublisher.publish("application-click-new-application-button"); + history.push(AppConstants.getPaths().get("APPLICATION_TEMPLATES")); + } } + data-testid={ `${ testId }-list-layout-add-button` } > - { t("common:learnMore") } - -

- ) - } - contentTopMargin={ (AppConstants.getTenant() === AppConstants.getSuperTenant()) } - data-testid={ `${ testId }-page-layout` } - > - { - ( - isSAASDeployment - || ( - !isMyAccountApplicationDataFetchRequestLoading - && myAccountApplicationData?.applications?.length !== 0 - ) - ) - && renderTenantedMyAccountLink() - } - + + { t("applications:list.actions.add") } + + ) } - currentListSize={ filteredApplicationList?.count } - isLoading={ - isApplicationListFetchRequestLoading || isMyAccountApplicationDataFetchRequestLoading + title={ t("console:develop.pages.applications.title") } + description={ organizationType !== OrganizationType.SUBORGANIZATION + ? ( +

+ { t("console:develop.pages.applications.subTitle") } + + { t("common:learnMore") } + +

+ ) + : ( +

+ { t("console:develop.pages.applications.alternateSubTitle") } + + { t("common:learnMore") } + +

+ ) } - listItemLimit={ listItemLimit } - onItemsPerPageDropdownChange={ handleItemsPerPageDropdownChange } - onPageChange={ handlePaginationChange } - onSortStrategyChange={ handleListSortingStrategyOnChange } - showPagination={ true } - showTopActionPanel={ - isApplicationListFetchRequestLoading - || isMyAccountApplicationDataFetchRequestLoading - || !(!searchQuery && filteredApplicationList?.totalResults <= 0) } - sortOptions={ APPLICATIONS_LIST_SORTING_OPTIONS } - sortStrategy={ listSortingStrategy } - totalPages={ Math.ceil(filteredApplicationList?.totalResults / listItemLimit) } - totalListSize={ filteredApplicationList?.totalResults } - paginationOptions={ { - disableNextButton: !shouldShowNextPageNavigation(filteredApplicationList) - } } - data-testid={ `${ testId }-list-layout` } + contentTopMargin={ (AppConstants.getTenant() === AppConstants.getSuperTenant()) } + data-testid={ `${ testId }-page-layout` } > - = ( } ] } filterAttributePlaceholder={ - t("applications:advancedSearch." + - "form.inputs.filterAttribute.placeholder") + t("applications:advancedSearch.form" + + ".inputs.filterAttribute.placeholder") } filterConditionsPlaceholder={ - t("applications:advancedSearch." + - "form.inputs.filterCondition.placeholder") + t("applications:advancedSearch.form" + + ".inputs.filterCondition.placeholder") } filterValuePlaceholder={ - t("applications:advancedSearch." + - "form.inputs.filterValue.placeholder") - } - placeholder={ - t("applications:advancedSearch.placeholder") + t("applications:advancedSearch.form.inputs.filterValue" + + ".placeholder") } + placeholder={ t("applications:advancedSearch.placeholder") } style={ { minWidth: "425px" } } defaultSearchAttribute="name" defaultSearchOperator="co" predefinedDefaultSearchStrategy={ - "name co %search-value% or clientId co %search-value% or " + - "issuer co %search-value%" + "name co %search-value% or clientId co %search-value% or issuer co %search-value%" } triggerClearQuery={ triggerClearQuery } data-testid={ `${ testId }-list-advanced-search` } /> ) } - featureConfig={ featureConfig } - isSetStrongerAuth={ strongAuth } + currentListSize={ filteredApplicationList?.count } isLoading={ isApplicationListFetchRequestLoading || isMyAccountApplicationDataFetchRequestLoading } - list={ filteredApplicationList } - onApplicationDelete={ handleApplicationDelete } - onEmptyListPlaceholderActionClick={ - () => { - history.push(AppConstants.getPaths().get("APPLICATION_TEMPLATES")); + listItemLimit={ listItemLimit } + onItemsPerPageDropdownChange={ handleItemsPerPageDropdownChange } + onPageChange={ handlePaginationChange } + onSortStrategyChange={ handleListSortingStrategyOnChange } + showPagination={ true } + showTopActionPanel={ + isApplicationListFetchRequestLoading + || isMyAccountApplicationDataFetchRequestLoading + || !(!searchQuery && filteredApplicationList?.totalResults <= 0) } + sortOptions={ APPLICATIONS_LIST_SORTING_OPTIONS } + sortStrategy={ listSortingStrategy } + totalPages={ Math.ceil(filteredApplicationList?.totalResults / listItemLimit) } + totalListSize={ filteredApplicationList?.totalResults } + paginationOptions={ { + disableNextButton: !shouldShowNextPageNavigation(filteredApplicationList) + } } + data-testid={ `${ testId }-list-layout` } + > + + ) } + featureConfig={ featureConfig } + isSetStrongerAuth={ strongAuth } + isLoading={ + isApplicationListFetchRequestLoading || isMyAccountApplicationDataFetchRequestLoading } - } - onSearchQueryClear={ handleSearchQueryClear } - searchQuery={ searchQuery } - data-testid={ `${ testId }-list` } - data-componentid="application" - /> -
- { showWizard && ( - setShowWizard(false) } - template={ CustomApplicationTemplate } - showHelpPanel={ true } - subTemplates={ CustomApplicationTemplate?.subTemplates } - subTemplatesSectionTitle={ CustomApplicationTemplate?.subTemplatesSectionTitle } - addProtocol={ false } - templateLoadingStrategy={ - config.ui.applicationTemplateLoadingStrategy - ?? ApplicationManagementConstants.DEFAULT_APP_TEMPLATE_LOADING_STRATEGY - } - /> - ) } -
+ list={ filteredApplicationList } + onApplicationDelete={ handleApplicationDelete } + onEmptyListPlaceholderActionClick={ + () => { + history.push(AppConstants.getPaths().get("APPLICATION_TEMPLATES")); + } + } + onSearchQueryClear={ handleSearchQueryClear } + searchQuery={ searchQuery } + data-testid={ `${ testId }-list` } + data-componentid="application" + /> + + { showWizard && ( + setShowWizard(false) } + template={ CustomApplicationTemplate } + showHelpPanel={ true } + subTemplates={ CustomApplicationTemplate?.subTemplates } + subTemplatesSectionTitle={ CustomApplicationTemplate?.subTemplatesSectionTitle } + addProtocol={ false } + templateLoadingStrategy={ + config.ui.applicationTemplateLoadingStrategy + ?? ApplicationManagementConstants.DEFAULT_APP_TEMPLATE_LOADING_STRATEGY + } + /> + ) } + + ); }; diff --git a/features/admin.connections.v1/components/edit/settings/connected-apps.tsx b/features/admin.connections.v1/components/edit/settings/connected-apps.tsx index 27ccd2eb025..0619dfd55fa 100644 --- a/features/admin.connections.v1/components/edit/settings/connected-apps.tsx +++ b/features/admin.connections.v1/components/edit/settings/connected-apps.tsx @@ -16,7 +16,6 @@ * under the License. */ -import { OrganizationType } from "../../../../admin.core.v1/constants/organization-constants"; import { IdentityAppsError } from "@wso2is/core/errors"; import { isFeatureEnabled } from "@wso2is/core/helpers"; import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; @@ -51,15 +50,16 @@ import { Label, SemanticICONS } from "semantic-ui-react"; -import { applicationListConfig } from "../../../../admin.extensions.v1/configs/application-list"; import { getApplicationDetails } from "../../../../admin.applications.v1/api"; import { ApplicationManagementConstants } from "../../../../admin.applications.v1/constants"; +import useApplicationTemplates from "../../../../admin.applications.v1/hooks/use-application-templates"; import { ApplicationAccessTypes, ApplicationBasicInterface, ApplicationListItemInterface, ApplicationTemplateListItemInterface } from "../../../../admin.applications.v1/models"; +import { ApplicationTemplateListInterface } from "../../../../admin.applications.v1/models/application-templates"; import { ApplicationTemplateManagementUtils } from "../../../../admin.applications.v1/utils/application-template-management-utils"; @@ -73,6 +73,8 @@ import { getEmptyPlaceholderIllustrations, history } from "../../../../admin.core.v1"; +import { OrganizationType } from "../../../../admin.core.v1/constants/organization-constants"; +import { applicationListConfig } from "../../../../admin.extensions.v1/configs/application-list"; import { useGetCurrentOrganizationType } from "../../../../admin.organizations.v1/hooks/use-get-organization-type"; import { getConnectedApps } from "../../../api/connections"; import { @@ -172,6 +174,10 @@ export const ConnectedApps: FunctionComponent = ( ] = useState(false); const { t } = useTranslation(); + const { + templates: extensionApplicationTemplates, + isApplicationTemplatesRequestLoading: isExtensionApplicationTemplatesRequestLoading + } = useApplicationTemplates(); useEffect(() => { setIsAppsLoading(true); @@ -297,6 +303,18 @@ export const ConnectedApps: FunctionComponent = ( } } + /** + * This condition block will help identify the applications created from templates + * on the extensions management API side. + */ + if (!templateDisplayName) { + templateDisplayName = extensionApplicationTemplates.find( + (template: ApplicationTemplateListInterface) => { + return template?.id === app?.templateId; + } + )?.name; + } + return (
= ( ) } className="connected-applications-table" - isLoading={ isLoading || isApplicationTemplateRequestLoading } + isLoading={ + isLoading + || isApplicationTemplateRequestLoading + || isExtensionApplicationTemplatesRequestLoading + } loadingStateOptions={ { count: defaultListItemLimit ?? UIConstants.DEFAULT_RESOURCE_LIST_ITEM_LIMIT, imageType: "square" @@ -589,7 +611,12 @@ export const ConnectedApps: FunctionComponent = ( placeholders={ showPlaceholders() } selectable={ selection } showHeader={ applicationListConfig.enableTableHeaders } - transparent={ !(isLoading || isApplicationTemplateRequestLoading) && (showPlaceholders() !== null) } + transparent={ + !(isLoading + || isApplicationTemplateRequestLoading + || isExtensionApplicationTemplatesRequestLoading) + && (showPlaceholders() !== null) + } data-componentid={ `${ componentId }-data-table` } /> diff --git a/features/admin.identity-providers.v1/components/settings/connected-apps.tsx b/features/admin.identity-providers.v1/components/settings/connected-apps.tsx index ff5b6efde7f..ad23fec5afb 100644 --- a/features/admin.identity-providers.v1/components/settings/connected-apps.tsx +++ b/features/admin.identity-providers.v1/components/settings/connected-apps.tsx @@ -1,5 +1,5 @@ /** - * Copyright (c) 2023, WSO2 LLC. (https://www.wso2.com). All Rights Reserved. + * Copyright (c) 2023, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except @@ -19,59 +19,63 @@ import { IdentityAppsError } from "@wso2is/core/errors"; import { isFeatureEnabled } from "@wso2is/core/helpers"; import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; -import { - AnimatedAvatar, - AppAvatar, - DataTable, +import { + AnimatedAvatar, + AppAvatar, + DataTable, EmphasizedSegment, - EmptyPlaceholder, + EmptyPlaceholder, Heading, - TableActionsInterface, - TableColumnInterface + TableActionsInterface, + TableColumnInterface } from "@wso2is/react-components"; -import React, -{ +import React, +{ FunctionComponent, - ReactElement, - ReactNode, - SyntheticEvent, - useEffect, - useState + ReactElement, + ReactNode, + SyntheticEvent, + useEffect, + useState } from "react"; import { useTranslation } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; import { Dispatch } from "redux"; -import { +import { Divider, - Header, - Icon, - Input, - Label, + Header, + Icon, + Input, + Label, SemanticICONS } from "semantic-ui-react"; -import { applicationListConfig } from "../../../admin.extensions.v1/configs/application-list"; import { getApplicationDetails } from "../../../admin.applications.v1/api"; import { ApplicationManagementConstants } from "../../../admin.applications.v1/constants"; -import { - ApplicationAccessTypes, - ApplicationBasicInterface, - ApplicationListItemInterface, - ApplicationTemplateListItemInterface +import useApplicationTemplates from "../../../admin.applications.v1/hooks/use-application-templates"; +import { + ApplicationAccessTypes, + ApplicationBasicInterface, + ApplicationListItemInterface, + ApplicationTemplateListItemInterface } from "../../../admin.applications.v1/models"; -import { ApplicationTemplateManagementUtils } from "../../../admin.applications.v1/utils/application-template-management-utils"; -import { +import { ApplicationTemplateListInterface } from "../../../admin.applications.v1/models/application-templates"; +import { + ApplicationTemplateManagementUtils +} from "../../../admin.applications.v1/utils/application-template-management-utils"; +import { AppConstants, - AppState, - FeatureConfigInterface, - UIConstants, - getEmptyPlaceholderIllustrations, + AppState, + FeatureConfigInterface, + UIConstants, + getEmptyPlaceholderIllustrations, history } from "../../../admin.core.v1"; +import { applicationListConfig } from "../../../admin.extensions.v1/configs/application-list"; import { getIDPConnectedApps } from "../../api"; -import { +import { ConnectedAppInterface, - ConnectedAppsInterface, - IdentityProviderInterface + ConnectedAppsInterface, + IdentityProviderInterface } from "../../models"; @@ -143,7 +147,7 @@ export const ConnectedApps: FunctionComponent = ( loader: Loader, [ "data-componentid" ]: componentId } = props; - + const dispatch: Dispatch = useDispatch(); const [ connectedApps, setConnectedApps ] = useState(); @@ -162,15 +166,19 @@ export const ConnectedApps: FunctionComponent = ( ] = useState(false); const { t } = useTranslation(); + const { + templates: extensionApplicationTemplates, + isApplicationTemplatesRequestLoading: isExtensionApplicationTemplatesRequestLoading + } = useApplicationTemplates(); useEffect(() => { setIsAppsLoading(true); getIDPConnectedApps(editingIDP.id) .then(async (response: ConnectedAppsInterface) => { setconnectedAppsCount(response.count); - + if (response.count > 0) { - + const appRequests: Promise[] = response.connectedApps.map((app: ConnectedAppInterface) => { return getApplicationDetails(app.appId); }); @@ -181,7 +189,7 @@ export const ConnectedApps: FunctionComponent = ( description: error?.description || t("idp:connectedApps.genericError.description"), level: AlertLevels.ERROR, - message: error?.message + message: error?.message || t("idp:connectedApps.genericError.message") })); })) @@ -211,16 +219,16 @@ export const ConnectedApps: FunctionComponent = ( if (applicationTemplates !== undefined) { return; } - + setApplicationTemplateRequestLoadingStatus(true); - + ApplicationTemplateManagementUtils.getApplicationTemplates() .catch((error: IdentityAppsError) => { dispatch(addAlert({ description: error?.description || t("applications:notifications.fetchTemplates.genericError.description"), level: AlertLevels.ERROR, - message: error?.message + message: error?.message || t("applications:notifications.fetchTemplates.genericError.message") })); }) @@ -228,7 +236,7 @@ export const ConnectedApps: FunctionComponent = ( setApplicationTemplateRequestLoadingStatus(false); }); }, [ applicationTemplates, groupedApplicationTemplates ]); - + /** * Resolves data table columns. * @@ -267,7 +275,7 @@ export const ConnectedApps: FunctionComponent = ( return template.id === ApplicationManagementConstants.CUSTOM_APPLICATION; }).name; } else { - const relevantApplicationTemplate: ApplicationTemplateListItemInterface | undefined = + const relevantApplicationTemplate: ApplicationTemplateListItemInterface | undefined = applicationTemplates && applicationTemplates instanceof Array && applicationTemplates.length > 0 @@ -287,6 +295,18 @@ export const ConnectedApps: FunctionComponent = ( } } + /** + * This condition block will help identify the applications created from templates + * on the extensions management API side. + */ + if (!templateDisplayName) { + templateDisplayName = extensionApplicationTemplates.find( + (template: ApplicationTemplateListInterface) => { + return template?.id === app?.templateId; + } + )?.name; + } + return (
= ( history.push({ pathname: AppConstants.getPaths().get("APPLICATION_SIGN_IN_METHOD_EDIT") .replace(":id", appId).replace(":tabName", tabName), - + search: `?${ ApplicationManagementConstants.APP_STATE_STRONG_AUTH_PARAM_KEY }= ${ ApplicationManagementConstants.APP_STATE_STRONG_AUTH_PARAM_VALUE }`, - + state: { id: editingIDP.id, name: editingIDP.name } }); } else { history.push({ pathname: AppConstants.getPaths().get("APPLICATION_SIGN_IN_METHOD_EDIT") .replace(":id", appId).replace(":tabName", tabName), - + search: access === ApplicationAccessTypes.READ ? `?${ ApplicationManagementConstants.APP_READ_ONLY_STATE_URL_SEARCH_PARAM_KEY }=true` : "", @@ -412,7 +432,7 @@ export const ConnectedApps: FunctionComponent = ( image={ getEmptyPlaceholderIllustrations().newList } imageSize="tiny" subtitle={ [ - t("idp:connectedApps.placeholders.emptyList", + t("idp:connectedApps.placeholders.emptyList", { idpName: editingIDP.name }) ] } data-componentid={ `${ componentId }-empty-placeholder` } @@ -438,7 +458,7 @@ export const ConnectedApps: FunctionComponent = ( "data-componentid": `${ componentId }-item-edit-button`, hidden: (): boolean => !isFeatureEnabled(featureConfig?.applications, ApplicationManagementConstants.FEATURE_DICTIONARY.get("APPLICATION_EDIT")), - icon: (): SemanticICONS => { + icon: (): SemanticICONS => { return "caret right"; }, onClick: (e: SyntheticEvent, app: ApplicationListItemInterface): void => @@ -459,7 +479,7 @@ export const ConnectedApps: FunctionComponent = ( */ const handleChange = (event: React.ChangeEvent) => { const changeValue: string = event.target.value.trim(); - + setSearchQuery(changeValue); if (changeValue.length > 0) { @@ -475,10 +495,10 @@ export const ConnectedApps: FunctionComponent = ( * @param changevalue-search query. */ const searchFilter = (changeValue: string) => { - const appNameFilter: ConnectedAppInterface[] = connectedApps.filter((item: ConnectedAppInterface) => - item.name.toLowerCase().indexOf(changeValue.toLowerCase()) !== -1); - - setFilterSelectedApps(appNameFilter); + const appNameFilter: ConnectedAppInterface[] = connectedApps.filter((item: ConnectedAppInterface) => + item.name.toLowerCase().indexOf(changeValue.toLowerCase()) !== -1); + + setFilterSelectedApps(appNameFilter); }; if (isAppsLoading) { @@ -487,11 +507,11 @@ export const ConnectedApps: FunctionComponent = ( return ( - { t("idp:connectedApps.header", + { t("idp:connectedApps.header", { idpName: editingIDP.name }) } From 42ce81ca07708c23002fec35242110cd8f23dba7 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Sun, 14 Apr 2024 20:33:33 +0530 Subject: [PATCH 008/114] implement dynamic app creation wizard --- .../application-creation-adapter.tsx | 8 +- .../application-create-wizard.scss | 72 +++ .../application-create-wizard.tsx | 427 ++++++++++++++++++ .../application-form-dynamic-field.tsx | 16 +- .../use-application-sharing-eligibility.ts | 52 +++ .../hooks/use-dynamic-field-validation.ts | 208 +++++++++ .../models/application-templates.ts | 8 + .../models/dynamic-fields.ts | 7 +- features/admin.applications.v1/models/form.ts | 29 ++ .../utils/build-callback-urls-with-regexp.ts | 44 ++ .../utils/dynamic-field-validation.ts | 62 --- 11 files changed, 862 insertions(+), 71 deletions(-) create mode 100644 features/admin.applications.v1/components/dynamic-forms/application-create-wizard.scss create mode 100644 features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx create mode 100644 features/admin.applications.v1/hooks/use-application-sharing-eligibility.ts create mode 100644 features/admin.applications.v1/hooks/use-dynamic-field-validation.ts create mode 100644 features/admin.applications.v1/models/form.ts create mode 100644 features/admin.applications.v1/utils/build-callback-urls-with-regexp.ts delete mode 100644 features/admin.applications.v1/utils/dynamic-field-validation.ts diff --git a/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx b/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx index 57b6d386c1e..a64263272f2 100644 --- a/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx +++ b/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx @@ -25,6 +25,7 @@ import { ApplicationTemplateManagementUtils } from "../..//utils/application-tem import { ApplicationManagementConstants } from "../../constants"; import { ApplicationTemplateListItemInterface } from "../../models"; import { ApplicationTemplateCategories, ApplicationTemplateListInterface } from "../../models/application-templates"; +import { ApplicationCreateWizard } from "../dynamic-forms/application-create-wizard"; import { MinimalAppCreateWizard } from "../wizard/minimal-application-create-wizard"; /** @@ -100,7 +101,12 @@ const ApplicationCreationAdapter: FunctionComponent; + return ( + + ); default: return ( void; +} + +/** + * Dynamic application create wizard component. + * + * @param Props - Props to be injected into the component. + */ +export const ApplicationCreateWizard: FunctionComponent = ( + props: ApplicationCreateWizardPropsInterface +): ReactElement => { + const { ["data-componentid"]: componentId, template, onClose, ...rest } = props; + + const { data: templateData } = useGetApplicationTemplate(template?.id); + const { data: templateMetadata } = useGetApplicationTemplateMetadata(template?.id); + const isApplicationSharable: boolean = useApplicationSharingEligibility(); + const [ alert, setAlert, notification ] = useWizardAlert(); + + const { t } = useTranslation(); + const dispatch: Dispatch = useDispatch(); + + const [ installGuideActivePage, setInstallGuideActivePage ] = useState(1); + const [ showApplicationShareModal, setShowApplicationShareModal ] = useState(false); + const [ lastCreatedApplicationId, setLastCreatedApplicationId ] = useState(null); + const [ isApplicationSharingEnabled, setIsApplicationSharingEnabled ] = useState(false); + const [ openLimitReachedModal, setOpenLimitReachedModal ] = useState(false); + + const isClientSecretHashEnabled: boolean = useSelector((state: AppState) => + state?.config?.ui?.isClientSecretHashEnabled); + + const eventPublisher: EventPublisher = EventPublisher.getInstance(); + + /** + * After the application is created, the user will be redirected to the + * edit page using this function. + * + * @param createdAppId - ID of the created application. + */ + const handleAppCreationComplete = (createdAppId: string): void => { + // The created resource's id is sent as a location header. + // If that's available, navigate to the edit page. + if (!createdAppId) { + let searchParams: string = "?"; + const defaultTabIndex: number = 0; + + if (isClientSecretHashEnabled) { + searchParams = `${ searchParams }&${ + ApplicationManagementConstants.CLIENT_SECRET_HASH_ENABLED_URL_SEARCH_PARAM_KEY }=true`; + } + + history.push({ + hash: `#${URLFragmentTypes.TAB_INDEX}${defaultTabIndex}`, + pathname: AppConstants.getPaths().get("APPLICATION_EDIT").replace(":id", createdAppId), + search: searchParams + }); + + return; + } + + // Fallback to applications page, if the location header is not present. + history.push(AppConstants.getPaths().get("APPLICATIONS")); + }; + + /** + * This function will navigate the user to the notification message if there are any errors. + */ + const scrollToNotification = () => { + document.getElementById("notification-div")?.scrollIntoView({ behavior: "smooth" }); + }; + + const onSubmit = (values: ApplicationCreateWizardFormValuesInterface): void => { + const formValues: Record = cloneDeep(values); + + const application: MainApplicationInterface = merge(templateData?.payload, formValues); + + // Moderate Values to match API restrictions. + if (application.inboundProtocolConfiguration?.oidc?.callbackURLs) { + application.inboundProtocolConfiguration.oidc.callbackURLs = buildCallBackUrlsWithRegExp( + application.inboundProtocolConfiguration.oidc.callbackURLs + ); + } + + createApplication(application) + .then((response: AxiosResponse) => { + eventPublisher.compute(() => { + eventPublisher.publish("application-register-new-application", { + type: templateData?.id + }); + }); + + dispatch( + addAlert({ + description: t( + "applications:notifications." + + "addApplication.success.description" + ), + level: AlertLevels.SUCCESS, + message: t( + "applications:notifications." + + "addApplication.success.message" + ) + }) + ); + + const location: string = response.headers.location; + const createdAppID: string = location.substring(location.lastIndexOf("/") + 1); + + if (isApplicationSharingEnabled) { + setLastCreatedApplicationId(createdAppID); + setShowApplicationShareModal(true); + } else { + handleAppCreationComplete(createdAppID); + } + }) + .catch((error: AxiosError) => { + if (error?.response?.status === 403 + && error?.response?.data?.code === ApplicationManagementConstants + .ERROR_CREATE_LIMIT_REACHED.getErrorCode()) { + setOpenLimitReachedModal(true); + + return; + } + + if (error.response && error.response.data && error.response.data.description) { + setAlert({ + description: error.response.data.description, + level: AlertLevels.ERROR, + message: t( + "applications:notifications." + + "addApplication.error.message" + ) + }); + scrollToNotification(); + + return; + } + + setAlert({ + description: t( + "applications:notifications." + + "addApplication.genericError.description" + ), + level: AlertLevels.ERROR, + message: t( + "applications:notifications." + + "addApplication.genericError.message" + ) + }); + scrollToNotification(); + }); + }; + + let formSubmit: (e: MouseEvent) => void; + + if (openLimitReachedModal) { + return ( + { + setOpenLimitReachedModal(false); + onClose(); + } + } + header={ t( + "applications:notifications.tierLimitReachedError.heading" + ) } + description={ t( + "applications:notifications." + + "tierLimitReachedError.emptyPlaceholder.subtitles" + ) } + message={ t( + "applications:notifications." + + "tierLimitReachedError.emptyPlaceholder.title" + ) } + openModal={ openLimitReachedModal } + /> + ); + } + + if (showApplicationShareModal) { + return ( + setShowApplicationShareModal(false) } + onApplicationSharingCompleted={ () => { + setShowApplicationShareModal(false); + handleAppCreationComplete(lastCreatedApplicationId); + setLastCreatedApplicationId(null); + } } + /> + ); + } + + return ( + + + + { template.name } + { template.description } + + + { + alert && ( +
+ { notification } +
+ ) + } + , + { changeValue }: Tools< + ApplicationCreateWizardFormValuesInterface, + ApplicationCreateWizardFormInitialValuesInterface + > + ) => { + changeValue(state, fieldName, () => fieldVal); + } + } } + render={ ({ form, handleSubmit }: FormRenderProps) => { + formSubmit = handleSubmit; + + return ( +
+ { templateMetadata?.create?.form?.fields.map((field: DynamicFieldInterface) => { + return ( + + ); + }) } + + ); + } } + /> + { templateMetadata?.create?.isApplicationSharable && isApplicationSharable && ( + + ) => { + setIsApplicationSharingEnabled(e.target.checked); + } } + /> + ) } + label={ t("applications:forms.generalDetails.fields.isSharingEnabled.label") } + /> + + ) } +
+ + + + + + { t("common:cancel") } + + + + ) => formSubmit(e) } + floated="right" + data-componentid={ `${componentId}-next-button` } + > + { t("common:create") } + + + + + +
+ { templateMetadata?.create?.guide && ( + + +
+ { t("applications:wizards.minimalAppCreationWizard.help.heading") } +
+
+ + { Array.isArray(templateMetadata?.create?.guide) && ( + <> + + { templateMetadata.create.guide.length > 1 && ( +
+
+ + Page { installGuideActivePage } of{ " " } + { templateMetadata.create.guide.length } + + +
+ { + setInstallGuideActivePage(page); + } } + /> +
+ ) } + + ) } +
+
+ ) } +
+ ); +}; + +/** + * Default props for the application creation wizard. + */ +ApplicationCreateWizard.defaultProps = { + "data-componentid": "application-create-wizard" +}; diff --git a/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx b/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx index 0889f634099..71e1f7739a6 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx +++ b/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx @@ -17,10 +17,10 @@ */ import { IdentifiableComponentInterface } from "@wso2is/core/models"; -import { CheckboxFieldAdapter, FinalFormField, TextFieldAdapter } from "@wso2is/form"; +import { CheckboxFieldAdapter, FinalFormField, FormApi, TextFieldAdapter } from "@wso2is/form"; import React, { FunctionComponent, PropsWithChildren, ReactElement } from "react"; +import useDynamicFieldValidations from "../../hooks/use-dynamic-field-validation"; import { DynamicFieldInterface, DynamicInputFieldTypes } from "../../models/dynamic-fields"; -import validateField from "../../utils/dynamic-field-validation"; /** * Prop types for the dynamic input fields of the application form. @@ -30,6 +30,10 @@ export interface ApplicationFormDynamicFieldPropsInterface extends IdentifiableC * Field configs. */ field: DynamicFieldInterface; + /** + * Form state from the form library. + */ + form: FormApi>; } /** @@ -42,6 +46,8 @@ export const ApplicationFormDynamicField: FunctionComponent> = (props: PropsWithChildren): ReactElement => { const { ["data-componentid"]: componentId, field, ...rest } = props; + const { validate } = useDynamicFieldValidations(); + const getDynamicFieldAdapter = (type: DynamicInputFieldTypes): ReactElement => { switch (type) { case DynamicInputFieldTypes.CHECKBOX: @@ -59,7 +65,7 @@ export const ApplicationFormDynamicField: FunctionComponent validateField(value, field?.validations) } + validate={ (value: string) => validate(value, field?.validations) } /> ); case DynamicInputFieldTypes.TEXT: @@ -79,7 +85,7 @@ export const ApplicationFormDynamicField: FunctionComponent validateField(value, field?.validations) } + validate={ (value: string) => validate(value, field?.validations) } /> ); default: @@ -99,7 +105,7 @@ export const ApplicationFormDynamicField: FunctionComponent validateField(value, field?.validations) } + validate={ (value: string) => validate(value, field?.validations) } /> ); } diff --git a/features/admin.applications.v1/hooks/use-application-sharing-eligibility.ts b/features/admin.applications.v1/hooks/use-application-sharing-eligibility.ts new file mode 100644 index 00000000000..e8c190bffcf --- /dev/null +++ b/features/admin.applications.v1/hooks/use-application-sharing-eligibility.ts @@ -0,0 +1,52 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { hasRequiredScopes } from "@wso2is/core/helpers"; +import { FeatureAccessConfigInterface } from "@wso2is/core/models"; +import { useSelector } from "react-redux"; +import { AppState } from "../../admin.core.v1/store"; +import { applicationConfig } from "../../admin.extensions.v1/configs/application"; +import { useGetCurrentOrganizationType } from "../../admin.organizations.v1/hooks/use-get-organization-type"; + +/** + * Custom hook to determine whether the application sharing feature is eligible. + * + * @returns A boolean value indicating eligibility. + */ +const useApplicationSharingEligibility = (): boolean => { + const { isFirstLevelOrganization, isSubOrganization } = useGetCurrentOrganizationType(); + const allowedScopes: string = useSelector((state: AppState) => state?.auth?.allowedScopes); + const applicationFeatureAccessConfig: FeatureAccessConfigInterface = useSelector((state: AppState) => { + return state.config?.ui?.features?.applications; + }); + const organizationEnabled: string = useSelector((state: AppState) => state.config?.ui?.legacyMode?.organizations); + const isClientSecretHashEnabled: boolean = useSelector((state: AppState) => + state?.config?.ui?.isClientSecretHashEnabled); + + return (isOrganizationManagementEnabled + && organizationEnabled + && applicationConfig.editApplication.showApplicationShare + && isFirstLevelOrganization() + && hasRequiredScopes( + applicationFeatureAccessConfig, applicationFeatureAccessConfig?.scopes?.update, allowedScopes + ) + && !isSubOrganization() + && !isClientSecretHashEnabled); +}; + +export default useApplicationSharingEligibility; diff --git a/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts b/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts new file mode 100644 index 00000000000..b0309d1ca83 --- /dev/null +++ b/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts @@ -0,0 +1,208 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { AlertLevels } from "@wso2is/core/models"; +import { addAlert } from "@wso2is/core/store"; +import { AxiosError } from "axios"; +import { useTranslation } from "react-i18next"; +import { useDispatch, useSelector } from "react-redux"; +import { Dispatch } from "redux"; +import { AppState } from "../../admin.core.v1"; +import { getApplicationList } from "../api/application"; +import { ApplicationManagementConstants } from "../constants"; +import { ApplicationListInterface } from "../models"; +import { ValidationRule, ValidationRuleTypes } from "../models/dynamic-fields"; + +/** + * Custom hook for dynamic field validations. + * + * @returns A validation function for the field. + */ +const useDynamicFieldValidations = (): { + validate: (value: any, validations: ValidationRule[]) => Promise } => { + const { t, i18n } = useTranslation(); + + const dispatch: Dispatch = useDispatch(); + + const reservedAppNamePattern: string = useSelector((state: AppState) => { + return state.config?.deployment?.extensions?.asgardeoReservedAppRegex as string; + }); + + /** + * Search for applications and retrieve a list for the given app name. + * + * @param appName - Name of the application for searching. + * @returns List of applications found based on the given name. + */ + const getApplications = (appName: string): Promise => { + + return getApplicationList(null, null, "name eq " + appName.trim()) + .then((response: ApplicationListInterface) => response) + .catch((error: AxiosError) => { + if (error?.response?.data?.description) { + dispatch(addAlert({ + description: error?.response?.data?.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.fetchApplications.error.message") + })); + + return null; + } + + dispatch(addAlert({ + description: t("applications:notifications." + + "fetchApplications.genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications." + + "fetchApplications.genericError.message") + })); + + return null; + }); + }; + + /** + * Handle error messages based on the validation rule error message. + * If the validation rule contains an error message, that message will be returned. + * If there is no configured error message, the function will return the default error message. + * + * @param validationResult - Result of the validation function. + * @param errorMessage - Custom error message for the validation rule. + * @returns The final error message or null based on the validation result. + */ + const handleErrorMessage = (validationResult: string | null, errorMessage: string): string | null => { + if (validationResult) { + if (errorMessage) { + if (i18n.exists(errorMessage)) { + return t(errorMessage); + } + + return errorMessage; + } + + return t(validationResult); + } + + // If all validation rules are successful, return null for the errorMessage. + return null; + }; + + /** + * Validates a field based on its validation rules. + * + * @param value - The field's value to be validated. + * @param validations - An array of validation rules for the field. + * @returns An error message if validation fails, or `null` if validation succeeds. + */ + const validateField = async (value: any, validations: ValidationRule[]): Promise => { + if (!validations) { + return null; + } + + for (const validation of validations) { + const { type, errorMessage } = validation; + + switch (type) { + case ValidationRuleTypes.DOMAIN_NAME: + return handleErrorMessage(validateDomainName(value), errorMessage); + case ValidationRuleTypes.APPLICATION_NAME: + return handleErrorMessage(await validateApplicationName(value), errorMessage); + } + } + }; + + /** + * Verify if the provided value is a domain name. + * + * value - The value needs validation. + * @returns Whether the provided value is a valid domain name or not. + */ + const validateDomainName = (value: string): string | null => { + // Regular expression to validate domain name. + const domainRegex: RegExp = /^((?!-)[A-Za-z0-9-]{1, 63}(? => { + + /** + * Checks whether the application name is reserved. + * + * @param name - Name of the application. + */ + const isAppNameReserved = (name: string) => { + if(!reservedAppNamePattern) { + return false; + } + const reservedAppRegex: RegExp = new RegExp(reservedAppNamePattern); + + return name && reservedAppRegex.test(name); + }; + + /** + * Checks whether the application name is valid. + * + * @param name - Name of the application. + */ + const isNameValid = (name: string) => { + return name && !!name.match(ApplicationManagementConstants.FORM_FIELD_CONSTRAINTS.APP_NAME_PATTERN); + }; + + const appName: string = name.toString().trim(); + + if (!isNameValid(appName)) { + return t("applications:forms." + + "spaProtocolSettingsWizard.fields.name.validations.invalid", { + appName, + characterLimit: ApplicationManagementConstants.FORM_FIELD_CONSTRAINTS.APP_NAME_MAX_LENGTH + }); + } + + if (isAppNameReserved(appName)) { + return t("applications:forms.generalDetails.fields.name.validations.reserved", { + appName + }); + } + + const response: ApplicationListInterface = await getApplications(appName); + + if (response?.applications?.length > 0) { + return t("applications:forms.generalDetails.fields.name.validations.duplicate"); + } + + return null; + }; + + return { + validate: + (value: any, validations: ValidationRule[]): Promise => validateField(value, validations) + }; +}; + +export default useDynamicFieldValidations; diff --git a/features/admin.applications.v1/models/application-templates.ts b/features/admin.applications.v1/models/application-templates.ts index c28488b0d4f..3406c33170f 100644 --- a/features/admin.applications.v1/models/application-templates.ts +++ b/features/admin.applications.v1/models/application-templates.ts @@ -92,6 +92,14 @@ export interface ApplicationTemplateMetadataInterface { form: { fields: DynamicFieldInterface[]; }; + /** + * Indicates whether the application is sharable with sub orgs. + */ + isApplicationSharable: boolean; + /** + * Documentation link. + */ + docLink?: string; /** * Application creation guide metadata. */ diff --git a/features/admin.applications.v1/models/dynamic-fields.ts b/features/admin.applications.v1/models/dynamic-fields.ts index 2482b5242c1..89d654d511c 100644 --- a/features/admin.applications.v1/models/dynamic-fields.ts +++ b/features/admin.applications.v1/models/dynamic-fields.ts @@ -97,7 +97,7 @@ export enum DynamicInputFieldTypes { } /** - * Representation of the validation rules for dyanmic input field. + * Representation of the validation rules for dynamic input field. */ export interface ValidationRule { /** @@ -107,12 +107,13 @@ export interface ValidationRule { /** * Error message to be displayed when validation fails. */ - errorMessage: string; + errorMessage?: string; } /** * Supported validation rule types for dynamic input fields. */ export enum ValidationRuleTypes { - DOMAIN_NAME = "domainName" + DOMAIN_NAME = "domainName", + APPLICATION_NAME = "applicationName" } diff --git a/features/admin.applications.v1/models/form.ts b/features/admin.applications.v1/models/form.ts new file mode 100644 index 00000000000..2e69f4d882d --- /dev/null +++ b/features/admin.applications.v1/models/form.ts @@ -0,0 +1,29 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { MainApplicationInterface } from "./application"; + +/** + * Interface for the application create wizard form values. + */ +export type ApplicationCreateWizardFormValuesInterface = Partial; + +/** + * Interface for the application create wizard form initial values. + */ +export type ApplicationCreateWizardFormInitialValuesInterface = Partial; diff --git a/features/admin.applications.v1/utils/build-callback-urls-with-regexp.ts b/features/admin.applications.v1/utils/build-callback-urls-with-regexp.ts new file mode 100644 index 00000000000..6eee3b5b39f --- /dev/null +++ b/features/admin.applications.v1/utils/build-callback-urls-with-regexp.ts @@ -0,0 +1,44 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Build an array of URLs or a regular expression string from an array of URLs. + * + * @param urls - An array of URLs. + * @returns An array of URLs or a regular expression string. + * + * @example + * When there is a single URL: + * const url = buildCallBackUrlsWithRegExp(["https://example.com/login"]); + * Result: ["https://example.com/login"] + * + * When there are multiple URLs: + * const urls = buildCallBackUrlsWithRegExp(["https://example.com/login", "https://app.example.com/login"]); + * Result: ["regexp=(https://example.com/login|https://app.example.com/login)"] + */ +const buildCallBackUrlsWithRegExp = (urls: string[]): string[] => { + const sanitizedURLs: string[] = urls?.map((url: string) => url.replace(/['"]+/g, "")); + + if (sanitizedURLs.length > 1) { + return [ `regexp=(${sanitizedURLs.join("|")})` ]; + } + + return sanitizedURLs; +}; + +export default buildCallBackUrlsWithRegExp; diff --git a/features/admin.applications.v1/utils/dynamic-field-validation.ts b/features/admin.applications.v1/utils/dynamic-field-validation.ts deleted file mode 100644 index 01fe80e913e..00000000000 --- a/features/admin.applications.v1/utils/dynamic-field-validation.ts +++ /dev/null @@ -1,62 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import { ValidationRule, ValidationRuleTypes } from "../models/dynamic-fields"; - -/** - * Validate the provided value against the provided validation rules. - * - * value - The value needs validation. - * validations - Validation rules. - * @returns If the validation fails, return the corresponding error message; otherwise, return null. - */ -const validateField = (value: string, validations: ValidationRule[]): string => { - if (!validations) { - return null; - } - - for (const validation of validations) { - const { type, errorMessage } = validation; - - switch (type) { - case ValidationRuleTypes.DOMAIN_NAME: - if (!validateDomainName(value)) { - return errorMessage; - } - } - } - - // If all validation rules are successful, return null for the errorMessage. - return null; -}; - -/** - * Verify if the provided value is a domain name. - * - * value - The value needs validation. - * @returns Whether the provided value is a valid domain name or not. - */ -const validateDomainName = (value: string): boolean => { - // Regular expression to validate domain name. - const domainRegex: RegExp = /^((?!-)[A-Za-z0-9-]{1, 63}(? Date: Mon, 15 Apr 2024 18:31:21 +0530 Subject: [PATCH 009/114] fix the validation issue and i18n content --- .../application-create-wizard.scss | 10 +- .../application-create-wizard.tsx | 315 ++++++++++++++---- .../application-form-dynamic-field.tsx | 9 - .../use-application-sharing-eligibility.ts | 5 +- .../hooks/use-dynamic-field-validation.ts | 165 +++++++-- .../models/application-templates.ts | 15 +- .../models/dynamic-fields.ts | 17 +- .../utils/build-callback-urls-with-regexp.ts | 44 --- .../src/models/namespaces/applications-ns.ts | 22 ++ .../en-US/portals/applications.ts | 22 ++ 10 files changed, 448 insertions(+), 176 deletions(-) delete mode 100644 features/admin.applications.v1/utils/build-callback-urls-with-regexp.ts diff --git a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.scss b/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.scss index dbd01229146..2b31f9b11bf 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.scss +++ b/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.scss @@ -17,8 +17,14 @@ */ .application-create-wizard { - .wizard-error { - width: 100%; + .application-create-wizard-dynamic-fields { + &:not(:first-child) { + padding-top: 0; + } + } + + .application-share-field { + padding-top: 0; } .installation-guide-content { diff --git a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx b/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx index 73e3be948fc..7693392eaa6 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx +++ b/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx @@ -26,6 +26,7 @@ import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models import { addAlert } from "@wso2is/core/store"; import { FinalForm, FormRenderProps, MutableState, Tools } from "@wso2is/form"; import { + ContentLoader, Heading, LinkButton, Markdown, @@ -33,9 +34,10 @@ import { useWizardAlert } from "@wso2is/react-components"; import { AxiosError, AxiosResponse } from "axios"; +import useDynamicFieldValidations from "features/admin.applications.v1/hooks/use-dynamic-field-validation"; import cloneDeep from "lodash-es/cloneDeep"; import merge from "lodash-es/merge"; -import React, { ChangeEvent, FunctionComponent, MouseEvent, ReactElement, useState } from "react"; +import React, { ChangeEvent, FunctionComponent, MouseEvent, ReactElement, useEffect, useState } from "react"; import { useTranslation } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; import { Dispatch } from "redux"; @@ -46,19 +48,18 @@ import { ModalWithSidePanel } from "../../../admin.core.v1/components/modals/mod import { AppConstants } from "../../../admin.core.v1/constants/app-constants"; import { history } from "../../../admin.core.v1/helpers/history"; import { EventPublisher } from "../../../admin.core.v1/utils/event-publisher"; -import { createApplication } from "../../api"; +import { createApplication, useApplicationList } from "../../api"; import useGetApplicationTemplate from "../../api/use-get-application-template"; import useGetApplicationTemplateMetadata from "../../api/use-get-application-template-metadata"; import { ApplicationManagementConstants } from "../../constants"; import useApplicationSharingEligibility from "../../hooks/use-application-sharing-eligibility"; -import { MainApplicationInterface, URLFragmentTypes } from "../../models"; +import { ApplicationListItemInterface, MainApplicationInterface, URLFragmentTypes } from "../../models"; import { ApplicationTemplateListInterface } from "../../models/application-templates"; import { DynamicFieldInterface } from "../../models/dynamic-fields"; import { ApplicationCreateWizardFormInitialValuesInterface, ApplicationCreateWizardFormValuesInterface } from "../../models/form"; -import buildCallBackUrlsWithRegExp from "../../utils/build-callback-urls-with-regexp"; import { ApplicationShareModal } from "../modals/application-share-modal"; import "./application-create-wizard.scss"; @@ -86,10 +87,24 @@ export const ApplicationCreateWizard: FunctionComponent { const { ["data-componentid"]: componentId, template, onClose, ...rest } = props; - const { data: templateData } = useGetApplicationTemplate(template?.id); - const { data: templateMetadata } = useGetApplicationTemplateMetadata(template?.id); + const { + data: templateData, + isLoading: isTemplateDataFetchRequestLoading, + error: templateDataFetchRequestError + } = useGetApplicationTemplate(template?.id); + const { + data: templateMetadata, + isLoading: isTemplateMetadataFetchRequestLoading, + error: templateMetadataFetchRequestError + } = useGetApplicationTemplateMetadata(template?.id); const isApplicationSharable: boolean = useApplicationSharingEligibility(); + const { validate } = useDynamicFieldValidations(); const [ alert, setAlert, notification ] = useWizardAlert(); + const { + data: possibleListOfDuplicateApplications, + isLoading: isApplicationsFetchRequestLoading, + error: applicationsFetchRequestError + } = useApplicationList(null, null, null, "name sw " + templateData?.payload?.name, !!templateData?.payload?.name); const { t } = useTranslation(); const dispatch: Dispatch = useDispatch(); @@ -105,6 +120,129 @@ export const ApplicationCreateWizard: FunctionComponent { + if (!applicationsFetchRequestError) { + return; + } + + if (applicationsFetchRequestError?.response?.data?.description) { + dispatch(addAlert({ + description: applicationsFetchRequestError?.response?.data?.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.fetchApplications.error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications." + + "fetchApplications.genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications." + + "fetchApplications.genericError.message") + })); + }, [ applicationsFetchRequestError ]); + + /** + * Handle errors that occur during the application template data fetch request. + */ + useEffect(() => { + if (!templateDataFetchRequestError) { + return; + } + + if (templateDataFetchRequestError?.response?.data?.description) { + dispatch(addAlert({ + description: templateDataFetchRequestError?.response?.data?.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.fetchTemplate.error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.fetchTemplate" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications." + + "fetchTemplate.genericError.message") + })); + }, [ templateDataFetchRequestError ]); + + /** + * Handle errors that occur during the application template meta data fetch request. + */ + useEffect(() => { + if (!templateMetadataFetchRequestError) { + return; + } + + if (templateMetadataFetchRequestError?.response?.data?.description) { + dispatch(addAlert({ + description: templateMetadataFetchRequestError?.response?.data?.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.fetchTemplateMetadata.error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.fetchTemplateMetadata" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications." + + "fetchTemplateMetadata.genericError.message") + })); + }, [ templateMetadataFetchRequestError ]); + + /** + * Generate the next unique name by appending 1-based index number to the provided initial value. + * + * @param initialApplicationName - Initial value for the Application name. + * @returns A unique name from the provided list of names. + */ + const generateUniqueApplicationName = (initialApplicationName: string): string => { + + let appName: string = initialApplicationName; + + if (possibleListOfDuplicateApplications?.totalResults > 0) { + const applicationNameList: string[] = possibleListOfDuplicateApplications?.applications?.map( + (item: ApplicationListItemInterface) => item?.name); + + for (let i: number = 2; ; i++) { + if (!applicationNameList?.includes(appName)) { + break; + } + + appName = initialApplicationName + " " + i; + } + } + + return appName; + }; + + /** + * Prepare the initial values before assigning them to the form fields. + * + * @param initialValues - Initial values defined in template. + * @returns Moderated initial values. + */ + const moderateInitialValues = ( + initialValues: ApplicationCreateWizardFormInitialValuesInterface) + : ApplicationCreateWizardFormInitialValuesInterface => { + if (initialValues) { + initialValues.name = generateUniqueApplicationName(initialValues?.name); + } + + return initialValues; + }; + /** * After the application is created, the user will be redirected to the * edit page using this function. @@ -148,13 +286,6 @@ export const ApplicationCreateWizard: FunctionComponent { eventPublisher.compute(() => { @@ -273,6 +404,7 @@ export const ApplicationCreateWizard: FunctionComponent { - alert && ( -
- { notification } -
- ) - } - , - { changeValue }: Tools< - ApplicationCreateWizardFormValuesInterface, - ApplicationCreateWizardFormInitialValuesInterface - > - ) => { - changeValue(state, fieldName, () => fieldVal); - } - } } - render={ ({ form, handleSubmit }: FormRenderProps) => { - formSubmit = handleSubmit; - - return ( -
- { templateMetadata?.create?.form?.fields.map((field: DynamicFieldInterface) => { - return ( - - ); - }) } - - ); - } } - /> - { templateMetadata?.create?.isApplicationSharable && isApplicationSharable && ( - - ) => { - setIsApplicationSharingEnabled(e.target.checked); + isTemplateDataFetchRequestLoading + || isTemplateMetadataFetchRequestLoading + || (templateData?.payload?.name && isApplicationsFetchRequestLoading) + ? + : ( + <> + { alert && ( + + + + { notification } + + + + ) } + , + { changeValue }: Tools< + ApplicationCreateWizardFormValuesInterface, + ApplicationCreateWizardFormInitialValuesInterface + > + ) => { + changeValue(state, fieldName, () => fieldVal); + } + } } + validate={ + (formValues: ApplicationCreateWizardFormValuesInterface) => + validate(formValues, templateMetadata?.create?.form?.fields) + } + render={ ({ form, handleSubmit }: FormRenderProps) => { + formSubmit = handleSubmit; + + return ( +
+ + { templateMetadata?.create?.form?.fields.map( + (field: DynamicFieldInterface) => { + return ( + + + + + + ); + }) + } + +
+ ); } } /> - ) } - label={ t("applications:forms.generalDetails.fields.isSharingEnabled.label") } - /> -
- ) } + { templateMetadata?.create?.isApplicationSharable && isApplicationSharable && ( + + + + + ) => { + setIsApplicationSharingEnabled( + e.target.checked + ); + } } + /> + ) } + label={ + t("applications:forms.generalDetails.fields" + + ".isSharingEnabled.label") + } + /> + + + + + ) } + + ) + }
@@ -379,7 +554,7 @@ export const ApplicationCreateWizard: FunctionComponent { templateMetadata.create.guide.length > 1 && (
diff --git a/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx b/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx index 71e1f7739a6..858bfad6013 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx +++ b/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx @@ -19,7 +19,6 @@ import { IdentifiableComponentInterface } from "@wso2is/core/models"; import { CheckboxFieldAdapter, FinalFormField, FormApi, TextFieldAdapter } from "@wso2is/form"; import React, { FunctionComponent, PropsWithChildren, ReactElement } from "react"; -import useDynamicFieldValidations from "../../hooks/use-dynamic-field-validation"; import { DynamicFieldInterface, DynamicInputFieldTypes } from "../../models/dynamic-fields"; /** @@ -46,8 +45,6 @@ export const ApplicationFormDynamicField: FunctionComponent> = (props: PropsWithChildren): ReactElement => { const { ["data-componentid"]: componentId, field, ...rest } = props; - const { validate } = useDynamicFieldValidations(); - const getDynamicFieldAdapter = (type: DynamicInputFieldTypes): ReactElement => { switch (type) { case DynamicInputFieldTypes.CHECKBOX: @@ -58,14 +55,12 @@ export const ApplicationFormDynamicField: FunctionComponent validate(value, field?.validations) } /> ); case DynamicInputFieldTypes.TEXT: @@ -76,7 +71,6 @@ export const ApplicationFormDynamicField: FunctionComponent validate(value, field?.validations) } /> ); default: @@ -96,7 +89,6 @@ export const ApplicationFormDynamicField: FunctionComponent validate(value, field?.validations) } /> ); } diff --git a/features/admin.applications.v1/hooks/use-application-sharing-eligibility.ts b/features/admin.applications.v1/hooks/use-application-sharing-eligibility.ts index e8c190bffcf..7ed5012304d 100644 --- a/features/admin.applications.v1/hooks/use-application-sharing-eligibility.ts +++ b/features/admin.applications.v1/hooks/use-application-sharing-eligibility.ts @@ -29,7 +29,7 @@ import { useGetCurrentOrganizationType } from "../../admin.organizations.v1/hook * @returns A boolean value indicating eligibility. */ const useApplicationSharingEligibility = (): boolean => { - const { isFirstLevelOrganization, isSubOrganization } = useGetCurrentOrganizationType(); + const { isSubOrganization } = useGetCurrentOrganizationType(); const allowedScopes: string = useSelector((state: AppState) => state?.auth?.allowedScopes); const applicationFeatureAccessConfig: FeatureAccessConfigInterface = useSelector((state: AppState) => { return state.config?.ui?.features?.applications; @@ -40,8 +40,7 @@ const useApplicationSharingEligibility = (): boolean => { return (isOrganizationManagementEnabled && organizationEnabled - && applicationConfig.editApplication.showApplicationShare - && isFirstLevelOrganization() + && applicationConfig?.editApplication?.showApplicationShare && hasRequiredScopes( applicationFeatureAccessConfig, applicationFeatureAccessConfig?.scopes?.update, allowedScopes ) diff --git a/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts b/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts index b0309d1ca83..9ba3ba6d0d0 100644 --- a/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts +++ b/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts @@ -19,6 +19,10 @@ import { AlertLevels } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; import { AxiosError } from "axios"; +import debounce, { DebouncedFunc } from "lodash-es/debounce"; +import get from "lodash-es/get"; +import set from "lodash-es/set"; +import { useState } from "react"; import { useTranslation } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; import { Dispatch } from "redux"; @@ -26,7 +30,13 @@ import { AppState } from "../../admin.core.v1"; import { getApplicationList } from "../api/application"; import { ApplicationManagementConstants } from "../constants"; import { ApplicationListInterface } from "../models"; -import { ValidationRule, ValidationRuleTypes } from "../models/dynamic-fields"; +import { + ApplicationNameValidationCache, + DynamicFieldInterface, + ValidationRule, + ValidationRuleTypes +} from "../models/dynamic-fields"; +import { ApplicationCreateWizardFormValuesInterface } from "../models/form"; /** * Custom hook for dynamic field validations. @@ -34,7 +44,10 @@ import { ValidationRule, ValidationRuleTypes } from "../models/dynamic-fields"; * @returns A validation function for the field. */ const useDynamicFieldValidations = (): { - validate: (value: any, validations: ValidationRule[]) => Promise } => { + validate: ( + formValues: ApplicationCreateWizardFormValuesInterface, + fields: DynamicFieldInterface[] + ) => Promise<{ [key in keyof ApplicationCreateWizardFormValuesInterface]: string }> } => { const { t, i18n } = useTranslation(); const dispatch: Dispatch = useDispatch(); @@ -43,6 +56,11 @@ const useDynamicFieldValidations = (): { return state.config?.deployment?.extensions?.asgardeoReservedAppRegex as string; }); + const [ + applicationNameValidationCache, + setApplicationNameValidationCache + ] = useState(null); + /** * Search for applications and retrieve a list for the given app name. * @@ -117,13 +135,72 @@ const useDynamicFieldValidations = (): { for (const validation of validations) { const { type, errorMessage } = validation; + let validationResult: string = null; + switch (type) { case ValidationRuleTypes.DOMAIN_NAME: - return handleErrorMessage(validateDomainName(value), errorMessage); + validationResult = handleErrorMessage(validateDomainName(value), errorMessage); + + break; case ValidationRuleTypes.APPLICATION_NAME: - return handleErrorMessage(await validateApplicationName(value), errorMessage); + validationResult = handleErrorMessage(await validateApplicationName(value), errorMessage); + + break; + case ValidationRuleTypes.REQUIRED: + validationResult = handleErrorMessage(requiredField(value), errorMessage); + + break; + } + + if (validationResult) { + return validationResult; } } + + return null; + }; + + /** + * Validate all provided fields according to their respective validation rules. + * + * @param formValues - Current values of all form fields. + * @param fields - Metadata associated with each field. + * @returns An error object containing error messages for each provided field. + */ + const validateAllFields = async ( + formValues: ApplicationCreateWizardFormValuesInterface, + fields: DynamicFieldInterface[] + ): Promise<{ [key in keyof ApplicationCreateWizardFormValuesInterface]: string }> => { + const errorObject: { [key in keyof ApplicationCreateWizardFormValuesInterface]: string } = {}; + + for (const field of fields) { + let validations: ValidationRule[] = [ ...field?.validations ]; + + if (field?.required) { + validations = [ { type: ValidationRuleTypes.REQUIRED }, ...field?.validations ]; + } + + const value: any = get(formValues, field?.name); + const error: string = await validateField(value, validations); + + set(errorObject, field?.name, error); + } + + return errorObject; + }; + + /** + * Check if the field is filled with a value. + * + * value - The value needs validation. + * @returns Whether the provided value is a non empty value. + */ + const requiredField = (value: any): string | null => { + if (!value) { + return "applications:forms.dynamicApplicationCreateWizard.common.validations.required"; + } + + return null; }; /** @@ -134,46 +211,65 @@ const useDynamicFieldValidations = (): { */ const validateDomainName = (value: string): string | null => { // Regular expression to validate domain name. - const domainRegex: RegExp = /^((?!-)[A-Za-z0-9-]{1, 63}(? { + if(!reservedAppNamePattern) { + return false; + } + const reservedAppRegex: RegExp = new RegExp(reservedAppNamePattern); + + return name && reservedAppRegex.test(name); + }; + /** * Checks whether the application name is valid. * - * @param name - Application name. + * @param name - Name of the application. */ - const validateApplicationName = async (name: string): Promise => { - - /** - * Checks whether the application name is reserved. - * - * @param name - Name of the application. - */ - const isAppNameReserved = (name: string) => { - if(!reservedAppNamePattern) { - return false; - } - const reservedAppRegex: RegExp = new RegExp(reservedAppNamePattern); + const isNameValid = (name: string) => { + return name && !!name.match(ApplicationManagementConstants.FORM_FIELD_CONSTRAINTS.APP_NAME_PATTERN); + }; - return name && reservedAppRegex.test(name); - }; + /** + * Check if there is any application with the given name. + * + * @param name - Name of the application. + */ + const isApplicationNameAlreadyExist: DebouncedFunc<(name: string) => Promise> = debounce( + async (name: string) => { + if (applicationNameValidationCache?.value !== name) { + const response: ApplicationListInterface = await getApplications(name); - /** - * Checks whether the application name is valid. - * - * @param name - Name of the application. - */ - const isNameValid = (name: string) => { - return name && !!name.match(ApplicationManagementConstants.FORM_FIELD_CONSTRAINTS.APP_NAME_PATTERN); - }; + setApplicationNameValidationCache({ + state: response?.totalResults > 0, + value: name + }); + } + }, + 500 + ); + /** + * Checks whether the application name is valid. + * + * @param name - Application name. + */ + const validateApplicationName = async (name: string): Promise => { const appName: string = name.toString().trim(); if (!isNameValid(appName)) { @@ -190,9 +286,9 @@ const useDynamicFieldValidations = (): { }); } - const response: ApplicationListInterface = await getApplications(appName); + await isApplicationNameAlreadyExist(appName); - if (response?.applications?.length > 0) { + if (applicationNameValidationCache?.state) { return t("applications:forms.generalDetails.fields.name.validations.duplicate"); } @@ -200,8 +296,11 @@ const useDynamicFieldValidations = (): { }; return { - validate: - (value: any, validations: ValidationRule[]): Promise => validateField(value, validations) + validate: ( + formValues: ApplicationCreateWizardFormValuesInterface, + fields: DynamicFieldInterface[] + ): Promise<{ [key in keyof ApplicationCreateWizardFormValuesInterface]: string }> => + validateAllFields(formValues, fields) }; }; diff --git a/features/admin.applications.v1/models/application-templates.ts b/features/admin.applications.v1/models/application-templates.ts index 3406c33170f..750b37d5e57 100644 --- a/features/admin.applications.v1/models/application-templates.ts +++ b/features/admin.applications.v1/models/application-templates.ts @@ -96,23 +96,10 @@ export interface ApplicationTemplateMetadataInterface { * Indicates whether the application is sharable with sub orgs. */ isApplicationSharable: boolean; - /** - * Documentation link. - */ - docLink?: string; /** * Application creation guide metadata. */ - guide: { - /** - * Application creation guide content. - */ - content: string; - /** - * Application creation guide content type. - */ - contentType: "md" | "html" | string; - }[]; + guide: string[]; } } diff --git a/features/admin.applications.v1/models/dynamic-fields.ts b/features/admin.applications.v1/models/dynamic-fields.ts index 89d654d511c..000d942b81b 100644 --- a/features/admin.applications.v1/models/dynamic-fields.ts +++ b/features/admin.applications.v1/models/dynamic-fields.ts @@ -115,5 +115,20 @@ export interface ValidationRule { */ export enum ValidationRuleTypes { DOMAIN_NAME = "domainName", - APPLICATION_NAME = "applicationName" + APPLICATION_NAME = "applicationName", + REQUIRED = "required" +} + +/** + * Interface representing the cache for Application name validation results. + */ +export interface ApplicationNameValidationCache { + /** + * The previously validated Application name. + */ + value: string; + /** + * Indicates whether the above Application name is already taken. + */ + state: boolean; } diff --git a/features/admin.applications.v1/utils/build-callback-urls-with-regexp.ts b/features/admin.applications.v1/utils/build-callback-urls-with-regexp.ts deleted file mode 100644 index 6eee3b5b39f..00000000000 --- a/features/admin.applications.v1/utils/build-callback-urls-with-regexp.ts +++ /dev/null @@ -1,44 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -/** - * Build an array of URLs or a regular expression string from an array of URLs. - * - * @param urls - An array of URLs. - * @returns An array of URLs or a regular expression string. - * - * @example - * When there is a single URL: - * const url = buildCallBackUrlsWithRegExp(["https://example.com/login"]); - * Result: ["https://example.com/login"] - * - * When there are multiple URLs: - * const urls = buildCallBackUrlsWithRegExp(["https://example.com/login", "https://app.example.com/login"]); - * Result: ["regexp=(https://example.com/login|https://app.example.com/login)"] - */ -const buildCallBackUrlsWithRegExp = (urls: string[]): string[] => { - const sanitizedURLs: string[] = urls?.map((url: string) => url.replace(/['"]+/g, "")); - - if (sanitizedURLs.length > 1) { - return [ `regexp=(${sanitizedURLs.join("|")})` ]; - } - - return sanitizedURLs; -}; - -export default buildCallBackUrlsWithRegExp; diff --git a/modules/i18n/src/models/namespaces/applications-ns.ts b/modules/i18n/src/models/namespaces/applications-ns.ts index 9ff19d34eae..9ddb928df91 100644 --- a/modules/i18n/src/models/namespaces/applications-ns.ts +++ b/modules/i18n/src/models/namespaces/applications-ns.ts @@ -1804,6 +1804,18 @@ export interface ApplicationsNS { urlDeepLinkError: string; }; }; + dynamicApplicationCreateWizard: { + common: { + validations: { + required: string; + } + }, + domainName: { + validations: { + invalid: string; + } + } + } }; helpPanel: { tabs: { @@ -2217,6 +2229,16 @@ export interface ApplicationsNS { description: string; }; }; + fetchTemplateMetadata: { + error: { + message: string; + description: string; + }; + genericError: { + message: string; + description: string; + }; + }; fetchTemplate: { error: { message: string; diff --git a/modules/i18n/src/translations/en-US/portals/applications.ts b/modules/i18n/src/translations/en-US/portals/applications.ts index 1ec75b53b95..78e9c1c28d1 100644 --- a/modules/i18n/src/translations/en-US/portals/applications.ts +++ b/modules/i18n/src/translations/en-US/portals/applications.ts @@ -2107,6 +2107,18 @@ export const applications: ApplicationsNS = { }, urlDeepLinkError: "The entered URL is not a deep link." } + }, + dynamicApplicationCreateWizard: { + common: { + validations: { + required: "This is a required field." + } + }, + domainName: { + validations: { + invalid: "Invalid domain name. Please enter a valid domain name." + } + } } }, helpPanel: { @@ -2563,6 +2575,16 @@ export const applications: ApplicationsNS = { message: "Retrieval successful" } }, + fetchTemplateMetadata: { + error: { + description: "{{description}}", + message: "Retrieval error" + }, + genericError: { + description: "An error occurred while retrieving application template meta data.", + message: "Something went wrong" + } + }, fetchTemplate: { error: { description: "{{description}}", From c756fc8b50f95c5247cdc0417a0875f9e276d9fa Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Tue, 16 Apr 2024 11:11:14 +0530 Subject: [PATCH 010/114] fix submission issues of dynamic application create wizard --- .../application-create-wizard.tsx | 28 +++++++++--- .../configs/endpoints.ts | 3 +- .../hooks/use-dynamic-field-validation.ts | 25 ++++++----- .../models/dynamic-fields.ts | 18 -------- .../admin.applications.v1/models/endpoints.ts | 4 -- .../utils/build-callback-urls-with-regexp.ts | 44 +++++++++++++++++++ .../admin.core.v1/store/reducers/config.ts | 1 - 7 files changed, 80 insertions(+), 43 deletions(-) create mode 100644 features/admin.applications.v1/utils/build-callback-urls-with-regexp.ts diff --git a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx b/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx index 7693392eaa6..b2e56faa5c5 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx +++ b/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx @@ -37,7 +37,7 @@ import { AxiosError, AxiosResponse } from "axios"; import useDynamicFieldValidations from "features/admin.applications.v1/hooks/use-dynamic-field-validation"; import cloneDeep from "lodash-es/cloneDeep"; import merge from "lodash-es/merge"; -import React, { ChangeEvent, FunctionComponent, MouseEvent, ReactElement, useEffect, useState } from "react"; +import React, { ChangeEvent, FunctionComponent, MouseEvent, ReactElement, useEffect, useMemo, useState } from "react"; import { useTranslation } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; import { Dispatch } from "redux"; @@ -60,6 +60,7 @@ import { ApplicationCreateWizardFormInitialValuesInterface, ApplicationCreateWizardFormValuesInterface } from "../../models/form"; +import buildCallBackUrlsWithRegExp from "../../utils/build-callback-urls-with-regexp"; import { ApplicationShareModal } from "../modals/application-share-modal"; import "./application-create-wizard.scss"; @@ -120,6 +121,14 @@ export const ApplicationCreateWizard: FunctionComponent { + if (templateData?.payload) { + return cloneDeep(templateData?.payload); + } + + return null; + }, [ templateData?.payload ]); + /** * Handle errors that occur during the application list fetch request. */ @@ -234,13 +243,13 @@ export const ApplicationCreateWizard: FunctionComponent { - if (initialValues) { - initialValues.name = generateUniqueApplicationName(initialValues?.name); + if (formInitialValues) { + formInitialValues.name = generateUniqueApplicationName(templatePayload?.name); } - return initialValues; + return formInitialValues; }; /** @@ -286,6 +295,13 @@ export const ApplicationCreateWizard: FunctionComponent { eventPublisher.compute(() => { @@ -534,7 +550,7 @@ export const ApplicationCreateWizard: FunctionComponent) => formSubmit(e) } floated="right" - data-componentid={ `${componentId}-next-button` } + data-componentid={ `${componentId}-create-button` } > { t("common:create") } diff --git a/features/admin.applications.v1/configs/endpoints.ts b/features/admin.applications.v1/configs/endpoints.ts index 645ad9d74da..da76b6b237d 100644 --- a/features/admin.applications.v1/configs/endpoints.ts +++ b/features/admin.applications.v1/configs/endpoints.ts @@ -28,8 +28,7 @@ export const getApplicationsResourceEndpoints = (serverHost: string): Applicatio const serverHostWithoutOPath: string = serverHost.replace("/o/", "/"); return { - applicationTemplate: `${serverHost}/api/server/v1/extensions/applications/{{id}}`, - applicationTemplateCategories: `${serverHost}/api/server/v1/extensions/applications/categories`, + applicationTemplate: `${serverHost}/api/server/v1/extensions/applications/{{id}}/template`, applicationTemplateMetadata: `${serverHost}/api/server/v1/extensions/applications/{{id}}/metadata`, applicationTemplates: `${serverHost}/api/server/v1/extensions/applications`, applications: `${ serverHost }/api/server/v1/applications`, diff --git a/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts b/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts index 9ba3ba6d0d0..fd2238e36dc 100644 --- a/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts +++ b/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts @@ -22,7 +22,7 @@ import { AxiosError } from "axios"; import debounce, { DebouncedFunc } from "lodash-es/debounce"; import get from "lodash-es/get"; import set from "lodash-es/set"; -import { useState } from "react"; +import { MutableRefObject, useRef, useState } from "react"; import { useTranslation } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; import { Dispatch } from "redux"; @@ -31,7 +31,6 @@ import { getApplicationList } from "../api/application"; import { ApplicationManagementConstants } from "../constants"; import { ApplicationListInterface } from "../models"; import { - ApplicationNameValidationCache, DynamicFieldInterface, ValidationRule, ValidationRuleTypes @@ -56,10 +55,11 @@ const useDynamicFieldValidations = (): { return state.config?.deployment?.extensions?.asgardeoReservedAppRegex as string; }); + const previouslyValidatedApplicationName: MutableRefObject = useRef(null); const [ - applicationNameValidationCache, - setApplicationNameValidationCache - ] = useState(null); + isApplicationNameAlreadyReserved, + setIsApplicationNameAlreadyReserved + ] = useState(false); /** * Search for applications and retrieve a list for the given app name. @@ -183,7 +183,9 @@ const useDynamicFieldValidations = (): { const value: any = get(formValues, field?.name); const error: string = await validateField(value, validations); - set(errorObject, field?.name, error); + if (error) { + set(errorObject, field?.name, error); + } } return errorObject; @@ -252,13 +254,12 @@ const useDynamicFieldValidations = (): { */ const isApplicationNameAlreadyExist: DebouncedFunc<(name: string) => Promise> = debounce( async (name: string) => { - if (applicationNameValidationCache?.value !== name) { + if (previouslyValidatedApplicationName?.current !== name) { + previouslyValidatedApplicationName.current = name; + const response: ApplicationListInterface = await getApplications(name); - setApplicationNameValidationCache({ - state: response?.totalResults > 0, - value: name - }); + setIsApplicationNameAlreadyReserved(response?.totalResults > 0); } }, 500 @@ -288,7 +289,7 @@ const useDynamicFieldValidations = (): { await isApplicationNameAlreadyExist(appName); - if (applicationNameValidationCache?.state) { + if (isApplicationNameAlreadyReserved) { return t("applications:forms.generalDetails.fields.name.validations.duplicate"); } diff --git a/features/admin.applications.v1/models/dynamic-fields.ts b/features/admin.applications.v1/models/dynamic-fields.ts index 000d942b81b..97519a18660 100644 --- a/features/admin.applications.v1/models/dynamic-fields.ts +++ b/features/admin.applications.v1/models/dynamic-fields.ts @@ -52,10 +52,6 @@ export interface DynamicFieldInterface { * Placeholder for the input field. */ placeholder: string; - /** - * Initial value of the input field. - */ - initialValue: string; /** * The data component id for the input field. */ @@ -118,17 +114,3 @@ export enum ValidationRuleTypes { APPLICATION_NAME = "applicationName", REQUIRED = "required" } - -/** - * Interface representing the cache for Application name validation results. - */ -export interface ApplicationNameValidationCache { - /** - * The previously validated Application name. - */ - value: string; - /** - * Indicates whether the above Application name is already taken. - */ - state: boolean; -} diff --git a/features/admin.applications.v1/models/endpoints.ts b/features/admin.applications.v1/models/endpoints.ts index 20332e8ab45..e93be8492a3 100644 --- a/features/admin.applications.v1/models/endpoints.ts +++ b/features/admin.applications.v1/models/endpoints.ts @@ -34,10 +34,6 @@ export interface ApplicationsResourceEndpointsInterface { * Endpoint to get the application template metadata. */ applicationTemplateMetadata: string; - /** - * Endpoint to get the application template categories. - */ - applicationTemplateCategories: string; applications: string; myAccountConfigMgt: string; requestPathAuthenticators: string; diff --git a/features/admin.applications.v1/utils/build-callback-urls-with-regexp.ts b/features/admin.applications.v1/utils/build-callback-urls-with-regexp.ts new file mode 100644 index 00000000000..8b8afb3a185 --- /dev/null +++ b/features/admin.applications.v1/utils/build-callback-urls-with-regexp.ts @@ -0,0 +1,44 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Build an array of URLs or a regular expression string from an array of URLs. + * + * @param urls - An array of URLs. + * @returns An array of URLs or a regular expression string. + * + * @example + * // When there is a single URL: + * const url = buildCallBackUrlsWithRegExp(["https://example.com/login"]); + * // Result: ["https://example.com/login"] + * + * // When there are multiple URLs: + * const urls = buildCallBackUrlsWithRegExp(["https://example.com/login", "https://app.example.com/login"]); + * // Result: ["regexp=(https://example.com/login|https://app.example.com/login)"] + */ +const buildCallBackUrlsWithRegExp = (urls: string[]): string[] => { + const sanitizedURLs: string[] = urls?.map((url: string) => url.replace(/['"]+/g, "")); + + if (sanitizedURLs.length > 1) { + return [ `regexp=(${sanitizedURLs.join("|")})` ]; + } + + return sanitizedURLs; +}; + +export default buildCallBackUrlsWithRegExp; diff --git a/features/admin.core.v1/store/reducers/config.ts b/features/admin.core.v1/store/reducers/config.ts index 91c73c37ddf..7f683a0f083 100644 --- a/features/admin.core.v1/store/reducers/config.ts +++ b/features/admin.core.v1/store/reducers/config.ts @@ -87,7 +87,6 @@ export const commonConfigReducerInitialState: CommonConfigReducerStateInterface< apiResourceCollection: "", apiResourceCollections: "", applicationTemplate: "", - applicationTemplateCategories: "", applicationTemplateMetadata: "", applicationTemplates: "", applications: "", From 8a51eefef80230d96b16610bc3f6b4f9a613d264 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Tue, 16 Apr 2024 12:21:10 +0530 Subject: [PATCH 011/114] fix connections connected-apps tab issue --- .../pages/application-edit.tsx | 4 +- .../pages/connection-edit.tsx | 153 +++++++++--------- .../pages/identity-provider-edit.tsx | 147 +++++++++-------- 3 files changed, 156 insertions(+), 148 deletions(-) diff --git a/features/admin.applications.v1/pages/application-edit.tsx b/features/admin.applications.v1/pages/application-edit.tsx index 318918157c9..8bcd012d225 100755 --- a/features/admin.applications.v1/pages/application-edit.tsx +++ b/features/admin.applications.v1/pages/application-edit.tsx @@ -35,7 +35,6 @@ import { useDispatch, useSelector } from "react-redux"; import { RouteComponentProps } from "react-router"; import { Dispatch } from "redux"; import { Label } from "semantic-ui-react"; -import { applicationConfig } from "../../admin.extensions.v1/configs/application"; import { AppConstants, AppState, @@ -46,6 +45,7 @@ import { setHelpPanelDocsContentURL, toggleHelpPanelVisibility } from "../../admin.core.v1"; +import { applicationConfig } from "../../admin.extensions.v1/configs/application"; import { IdentityProviderConstants } from "../../admin.identity-providers.v1/constants"; import { useGetApplication } from "../api/use-get-application"; import { EditApplication } from "../components/edit-application"; @@ -64,7 +64,7 @@ import { ApplicationManagementUtils } from "../utils/application-management-util import { ApplicationTemplateManagementUtils } from "../utils/application-template-management-utils"; /** - * Proptypes for the applications edit page component. + * Prop types for the applications edit page component. */ interface ApplicationEditPageInterface extends IdentifiableComponentInterface, RouteComponentProps { } diff --git a/features/admin.connections.v1/pages/connection-edit.tsx b/features/admin.connections.v1/pages/connection-edit.tsx index 92aa7f0f7d6..12be8d092e2 100644 --- a/features/admin.connections.v1/pages/connection-edit.tsx +++ b/features/admin.connections.v1/pages/connection-edit.tsx @@ -16,7 +16,6 @@ * under the License. */ -import useUIConfig from "../../admin.core.v1/hooks/use-ui-configs"; import { IdentityAppsApiException } from "@wso2is/core/exceptions"; import { hasRequiredScopes } from "@wso2is/core/helpers"; import { AlertLevels, TestableComponentInterface } from "@wso2is/core/models"; @@ -46,16 +45,18 @@ import { useDispatch, useSelector } from "react-redux"; import { RouteComponentProps } from "react-router"; import { Dispatch } from "redux"; import { Label } from "semantic-ui-react"; -import { - AuthenticatorExtensionsConfigInterface, - identityProviderConfig -} from "../../admin.extensions.v1/configs"; +import ApplicationTemplatesProvider from "../../admin.applications.v1/provider/application-templates-provider"; import { AppConstants, AppState, FeatureConfigInterface, history } from "../../admin.core.v1"; +import useUIConfig from "../../admin.core.v1/hooks/use-ui-configs"; +import { + AuthenticatorExtensionsConfigInterface, + identityProviderConfig +} from "../../admin.extensions.v1/configs"; import { EditMultiFactorAuthenticator } from "../../admin.identity-providers.v1/components/edit-multi-factor-authenticator"; @@ -734,76 +735,78 @@ const ConnectionEditPage: FunctionComponent = }; return ( - - { - ConnectionsManagementUtils.isConnectorIdentityProvider(connector) - ? ( - - ) - : ( - - ) - } - + + + { + ConnectionsManagementUtils.isConnectorIdentityProvider(connector) + ? ( + + ) + : ( + + ) + } + + ); }; diff --git a/features/admin.identity-providers.v1/pages/identity-provider-edit.tsx b/features/admin.identity-providers.v1/pages/identity-provider-edit.tsx index 9762e5d8953..da6c8ca4475 100644 --- a/features/admin.identity-providers.v1/pages/identity-provider-edit.tsx +++ b/features/admin.identity-providers.v1/pages/identity-provider-edit.tsx @@ -42,7 +42,7 @@ import { useDispatch, useSelector } from "react-redux"; import { RouteComponentProps } from "react-router"; import { Dispatch } from "redux"; import { Label } from "semantic-ui-react"; -import { AuthenticatorExtensionsConfigInterface, identityProviderConfig } from "../../admin.extensions.v1/configs"; +import ApplicationTemplatesProvider from "../../admin.applications.v1/provider/application-templates-provider"; import { AppConstants, AppState, @@ -50,6 +50,7 @@ import { FeatureConfigInterface, history } from "../../admin.core.v1"; +import { AuthenticatorExtensionsConfigInterface, identityProviderConfig } from "../../admin.extensions.v1/configs"; import { getIdentityProviderDetail, getLocalAuthenticator, getMultiFactorAuthenticatorDetails } from "../api"; import { EditMultiFactorAuthenticator } from "../components/edit-multi-factor-authenticator"; import { EditIdentityProvider } from "../components/identity-provider-edit"; @@ -178,7 +179,7 @@ const IdentityProviderEditPage: FunctionComponent = ( /** * Checks if the user needs to go to a specific tab index. - */ + */ useEffect(() => { const tabName: string = location.state as string; @@ -274,7 +275,7 @@ const IdentityProviderEditPage: FunctionComponent = ( setConnectorDetailFetchRequestLoading(true); getIdentityProviderDetail(id) - .then((response: IdentityProviderInterface | MultiFactorAuthenticatorInterface | AuthenticatorInterface) => + .then((response: IdentityProviderInterface | MultiFactorAuthenticatorInterface | AuthenticatorInterface) => { setConnector(response); }) @@ -589,74 +590,78 @@ const IdentityProviderEditPage: FunctionComponent = ( }; return ( - - { - IdentityProviderManagementUtils.isConnectorIdentityProvider(connector) - ? ( - setIsExtensionsAvailable(isAvailable) } - type={ identityProviderTemplate?.id } - isReadOnly={ isReadOnly } - isAutomaticTabRedirectionEnabled={ isAutomaticTabRedirectionEnabled } - tabIdentifier={ tabIdentifier } - /> - ) - : ( - - ) - } - + + + { + IdentityProviderManagementUtils.isConnectorIdentityProvider(connector) + ? ( + setIsExtensionsAvailable(isAvailable) + } + type={ identityProviderTemplate?.id } + isReadOnly={ isReadOnly } + isAutomaticTabRedirectionEnabled={ isAutomaticTabRedirectionEnabled } + tabIdentifier={ tabIdentifier } + /> + ) + : ( + + ) + } + + ); }; From aa7e3df87187eade9366ed2b39124066c5707d94 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Tue, 16 Apr 2024 16:20:59 +0530 Subject: [PATCH 012/114] implement common feature providers component --- apps/console/src/app.tsx | 117 +++---- .../components/edit-application.tsx | 13 +- .../pages/application-edit.tsx | 5 + .../pages/application-template.tsx | 59 ++-- .../pages/applications.tsx | 319 +++++++++--------- .../pages/connection-edit.tsx | 143 ++++---- .../components/common-feature-provider.tsx | 44 +++ .../pages/identity-provider-edit.tsx | 143 ++++---- 8 files changed, 446 insertions(+), 397 deletions(-) create mode 100644 features/admin.core.v1/components/common-feature-provider.tsx diff --git a/apps/console/src/app.tsx b/apps/console/src/app.tsx index fba9a9f1c07..707fb09391a 100755 --- a/apps/console/src/app.tsx +++ b/apps/console/src/app.tsx @@ -18,13 +18,30 @@ import { BasicUserInfo, DecodedIDTokenPayload, useAuthContext } from "@asgardeo/auth-react"; import { AccessControlProvider, AllFeatureInterface, FeatureGateInterface } from "@wso2is/access-control"; -import useResourceEndpoints from "@wso2is/features/admin.core.v1/hooks/use-resource-endpoints"; import { AppConstants as CommonAppConstants } from "@wso2is/core/constants"; import { IdentityAppsApiException } from "@wso2is/core/exceptions"; import { CommonHelpers, isPortalAccessGranted } from "@wso2is/core/helpers"; import { RouteInterface, StorageIdentityAppsSettingsInterface, emptyIdentityAppsSettings } from "@wso2is/core/models"; import { setI18nConfigs, setServiceResourceEndpoints } from "@wso2is/core/store"; import { AuthenticateUtils, LocalStorageUtils } from "@wso2is/core/utils"; +import { AccessControlUtils } from "@wso2is/features/admin.access-control.v1/configs/access-control"; +import { EventPublisher, PreLoader } from "@wso2is/features/admin.core.v1"; +import { ProtectedRoute } from "@wso2is/features/admin.core.v1/components"; +import { Config, DocumentationLinks, getBaseRoutes } from "@wso2is/features/admin.core.v1/configs"; +import { AppConstants } from "@wso2is/features/admin.core.v1/constants"; +import { history } from "@wso2is/features/admin.core.v1/helpers"; +import useResourceEndpoints from "@wso2is/features/admin.core.v1/hooks/use-resource-endpoints"; +import { + ConfigReducerStateInterface, + DocumentationLinksInterface, + FeatureConfigInterface, + ServiceResourceEndpointsInterface +} from "@wso2is/features/admin.core.v1/models"; +import { AppState, store } from "@wso2is/features/admin.core.v1/store"; +import { commonConfig } from "@wso2is/features/admin.extensions.v1"; +import { useGetAllFeatures } from "@wso2is/features/admin.extensions.v1/components/feature-gate/api/feature-gate"; +import { featureGateConfig } from "@wso2is/features/admin.extensions.v1/configs/feature-gate"; +import { OrganizationUtils } from "@wso2is/features/admin.organizations.v1/utils"; import { I18nModuleOptionsInterface } from "@wso2is/i18n"; import { ChunkErrorModal, @@ -46,25 +63,9 @@ import { useDispatch, useSelector } from "react-redux"; import { StaticContext } from "react-router"; import { Redirect, Route, RouteComponentProps, Router, Switch } from "react-router-dom"; import { Dispatch } from "redux"; -import { commonConfig } from "@wso2is/features/admin.extensions.v1"; -import { useGetAllFeatures } from "@wso2is/features/admin.extensions.v1/components/feature-gate/api/feature-gate"; -import { featureGateConfig } from "@wso2is/features/admin.extensions.v1/configs/feature-gate"; -import { AccessControlUtils } from "@wso2is/features/admin.access-control.v1/configs/access-control"; -import { EventPublisher, PreLoader } from "@wso2is/features/admin.core.v1"; -import { ProtectedRoute } from "@wso2is/features/admin.core.v1/components"; -import { Config, DocumentationLinks, getBaseRoutes } from "@wso2is/features/admin.core.v1/configs"; -import { AppConstants } from "@wso2is/features/admin.core.v1/constants"; -import { history } from "@wso2is/features/admin.core.v1/helpers"; -import { - ConfigReducerStateInterface, - DocumentationLinksInterface, - FeatureConfigInterface, - ServiceResourceEndpointsInterface -} from "@wso2is/features/admin.core.v1/models"; -import { AppState, store } from "@wso2is/features/admin.core.v1/store"; +import CommonFeatureProviders from "../../../features/admin.core.v1/components/common-feature-provider"; import "moment/locale/si"; import "moment/locale/fr"; -import { OrganizationUtils } from "@wso2is/features/admin.organizations.v1/utils"; /** * Main App component. @@ -485,46 +486,48 @@ export const App: FunctionComponent> = (): ReactElement => ) } /> - - - { - baseRoutes.map((route: RouteInterface, index: number) => { - return ( - route.protected ? - ( - - ) - : - ( - ) => { - return (); + + + + { + baseRoutes.map((route: RouteInterface, index: number) => { + return ( + route.protected ? + ( + + ) + : + ( + ) => { + return (); + } } - } - key={ index } - exact={ route.exact } - /> - ) - ); - }) - } - + key={ index } + exact={ route.exact } + /> + ) + ); + }) + } + + diff --git a/features/admin.applications.v1/components/edit-application.tsx b/features/admin.applications.v1/components/edit-application.tsx index aa5302308ba..c8be74c5957 100644 --- a/features/admin.applications.v1/components/edit-application.tsx +++ b/features/admin.applications.v1/components/edit-application.tsx @@ -15,7 +15,7 @@ * specific language governing permissions and limitations * under the License. */ -import useUIConfig from "../../admin.core.v1/hooks/use-ui-configs"; + import { hasRequiredScopes, isFeatureEnabled } from "@wso2is/core/helpers"; import { AlertLevels, IdentifiableComponentInterface, SBACInterface } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; @@ -44,7 +44,6 @@ import { SignOnMethods } from "./settings"; import { Info } from "./settings/info"; -import { applicationConfig } from "../../admin.extensions.v1"; import { AppState, CORSOriginsListInterface, @@ -53,6 +52,8 @@ import { getCORSOrigins, history } from "../../admin.core.v1"; +import useUIConfig from "../../admin.core.v1/hooks/use-ui-configs"; +import { applicationConfig } from "../../admin.extensions.v1"; import { OrganizationType } from "../../admin.organizations.v1/constants"; import { useGetCurrentOrganizationType } from "../../admin.organizations.v1/hooks/use-get-organization-type"; import { getInboundProtocolConfig } from "../api"; @@ -72,6 +73,7 @@ import { SupportedAuthProtocolTypes, URLFragmentTypes } from "../models"; +import { ApplicationTemplateListInterface } from "../models/application-templates"; import { ApplicationManagementUtils } from "../utils/application-management-utils"; /** @@ -110,6 +112,13 @@ interface EditApplicationPropsInterface extends SBACInterface = ( const [ applicationId, setApplicationId ] = useState(undefined); const [ applicationTemplate, setApplicationTemplate ] = useState(undefined); + const [ + extensionApplicationTemplate, + setExtensionApplicationTemplate + ] = useState(undefined); const [ isApplicationRequestLoading, setApplicationRequestLoading ] = useState(undefined); const [ inboundProtocolList, setInboundProtocolList ] = useState(undefined); const [ inboundProtocolConfigs, setInboundProtocolConfigs ] = useState>(undefined); diff --git a/features/admin.applications.v1/pages/application-template.tsx b/features/admin.applications.v1/pages/application-template.tsx index 088bc2e4f1d..f374c4716f9 100755 --- a/features/admin.applications.v1/pages/application-template.tsx +++ b/features/admin.applications.v1/pages/application-template.tsx @@ -27,7 +27,6 @@ import { import ApplicationCreationAdapter from "../components/application-templates/application-creation-adapter"; import ApplicationTemplateGrid from "../components/application-templates/application-templates-grid"; import { ApplicationTemplateListInterface } from "../models/application-templates"; -import ApplicationTemplatesProvider from "../provider/application-templates-provider"; /** * Props for the Applications templates page. @@ -62,37 +61,35 @@ const ApplicationTemplateSelectPage: FunctionComponent - + { + setSelectedTemplate(template); + setShowWizard(true); } } - titleTextAlign="left" - bottomMargin={ false } - showBottomDivider - data-testid={ `${ testId }-page-layout` } - headingColumnWidth={ 13 } - actionColumnWidth={ 3 } - > - { - setSelectedTemplate(template); - setShowWizard(true); - } } - /> - setShowWizard(false) } - /> - - + /> + setShowWizard(false) } + /> + ); }; diff --git a/features/admin.applications.v1/pages/applications.tsx b/features/admin.applications.v1/pages/applications.tsx index d2621da45d6..13ad855a42c 100644 --- a/features/admin.applications.v1/pages/applications.tsx +++ b/features/admin.applications.v1/pages/applications.tsx @@ -77,7 +77,6 @@ import { ApplicationManagementConstants } from "../constants"; import CustomApplicationTemplate from "../data/application-templates/templates/custom-application/custom-application.json"; import { ApplicationAccessTypes, ApplicationListInterface, ApplicationListItemInterface } from "../models"; -import ApplicationTemplatesProvider from "../provider/application-templates-provider"; const APPLICATIONS_LIST_SORTING_OPTIONS: DropdownItemProps[] = [ { @@ -534,61 +533,126 @@ const ApplicationsPage: FunctionComponent = ( }; return ( - - 0) && ( - - { - eventPublisher.publish("application-click-new-application-button"); - history.push(AppConstants.getPaths().get("APPLICATION_TEMPLATES")); - } } - data-testid={ `${ testId }-list-layout-add-button` } + 0) && ( + + { + eventPublisher.publish("application-click-new-application-button"); + history.push(AppConstants.getPaths().get("APPLICATION_TEMPLATES")); + } } + data-testid={ `${ testId }-list-layout-add-button` } + > + + { t("applications:list.actions.add") } + + + ) } + title={ t("console:develop.pages.applications.title") } + description={ organizationType !== OrganizationType.SUBORGANIZATION + ? ( +

+ { t("console:develop.pages.applications.subTitle") } + - - { t("applications:list.actions.add") } - - - ) } - title={ t("console:develop.pages.applications.title") } - description={ organizationType !== OrganizationType.SUBORGANIZATION - ? ( -

- { t("console:develop.pages.applications.subTitle") } - - { t("common:learnMore") } - -

- ) - : ( -

- { t("console:develop.pages.applications.alternateSubTitle") } - - { t("common:learnMore") } - -

+ { t("common:learnMore") } + +

+ ) + : ( +

+ { t("console:develop.pages.applications.alternateSubTitle") } + + { t("common:learnMore") } + +

+ ) + } + contentTopMargin={ (AppConstants.getTenant() === AppConstants.getSuperTenant()) } + data-testid={ `${ testId }-page-layout` } + > + { + ( + isSAASDeployment + || ( + !isMyAccountApplicationDataFetchRequestLoading + && myAccountApplicationData?.applications?.length !== 0 ) + ) + && renderTenantedMyAccountLink() + } + + ) } + currentListSize={ filteredApplicationList?.count } + isLoading={ + isApplicationListFetchRequestLoading || isMyAccountApplicationDataFetchRequestLoading } - contentTopMargin={ (AppConstants.getTenant() === AppConstants.getSuperTenant()) } - data-testid={ `${ testId }-page-layout` } + listItemLimit={ listItemLimit } + onItemsPerPageDropdownChange={ handleItemsPerPageDropdownChange } + onPageChange={ handlePaginationChange } + onSortStrategyChange={ handleListSortingStrategyOnChange } + showPagination={ true } + showTopActionPanel={ + isApplicationListFetchRequestLoading + || isMyAccountApplicationDataFetchRequestLoading + || !(!searchQuery && filteredApplicationList?.totalResults <= 0) } + sortOptions={ APPLICATIONS_LIST_SORTING_OPTIONS } + sortStrategy={ listSortingStrategy } + totalPages={ Math.ceil(filteredApplicationList?.totalResults / listItemLimit) } + totalListSize={ filteredApplicationList?.totalResults } + paginationOptions={ { + disableNextButton: !shouldShowNextPageNavigation(filteredApplicationList) + } } + data-testid={ `${ testId }-list-layout` } > - { - ( - isSAASDeployment - || ( - !isMyAccountApplicationDataFetchRequestLoading - && myAccountApplicationData?.applications?.length !== 0 - ) - ) - && renderTenantedMyAccountLink() - } - = ( } ] } filterAttributePlaceholder={ - t("applications:advancedSearch.form" + - ".inputs.filterAttribute.placeholder") + t("applications:advancedSearch." + + "form.inputs.filterAttribute.placeholder") } filterConditionsPlaceholder={ - t("applications:advancedSearch.form" + - ".inputs.filterCondition.placeholder") + t("applications:advancedSearch." + + "form.inputs.filterCondition.placeholder") } filterValuePlaceholder={ - t("applications:advancedSearch.form.inputs.filterValue" + - ".placeholder") + t("applications:advancedSearch." + + "form.inputs.filterValue.placeholder") + } + placeholder={ + t("applications:advancedSearch.placeholder") } - placeholder={ t("applications:advancedSearch.placeholder") } style={ { minWidth: "425px" } } defaultSearchAttribute="name" defaultSearchOperator="co" predefinedDefaultSearchStrategy={ - "name co %search-value% or clientId co %search-value% or issuer co %search-value%" + "name co %search-value% or clientId co %search-value% or " + + "issuer co %search-value%" } triggerClearQuery={ triggerClearQuery } data-testid={ `${ testId }-list-advanced-search` } /> ) } - currentListSize={ filteredApplicationList?.count } + featureConfig={ featureConfig } + isSetStrongerAuth={ strongAuth } isLoading={ isApplicationListFetchRequestLoading || isMyAccountApplicationDataFetchRequestLoading } - listItemLimit={ listItemLimit } - onItemsPerPageDropdownChange={ handleItemsPerPageDropdownChange } - onPageChange={ handlePaginationChange } - onSortStrategyChange={ handleListSortingStrategyOnChange } - showPagination={ true } - showTopActionPanel={ - isApplicationListFetchRequestLoading - || isMyAccountApplicationDataFetchRequestLoading - || !(!searchQuery && filteredApplicationList?.totalResults <= 0) } - sortOptions={ APPLICATIONS_LIST_SORTING_OPTIONS } - sortStrategy={ listSortingStrategy } - totalPages={ Math.ceil(filteredApplicationList?.totalResults / listItemLimit) } - totalListSize={ filteredApplicationList?.totalResults } - paginationOptions={ { - disableNextButton: !shouldShowNextPageNavigation(filteredApplicationList) - } } - data-testid={ `${ testId }-list-layout` } - > - - ) } - featureConfig={ featureConfig } - isSetStrongerAuth={ strongAuth } - isLoading={ - isApplicationListFetchRequestLoading || isMyAccountApplicationDataFetchRequestLoading + list={ filteredApplicationList } + onApplicationDelete={ handleApplicationDelete } + onEmptyListPlaceholderActionClick={ + () => { + history.push(AppConstants.getPaths().get("APPLICATION_TEMPLATES")); } - list={ filteredApplicationList } - onApplicationDelete={ handleApplicationDelete } - onEmptyListPlaceholderActionClick={ - () => { - history.push(AppConstants.getPaths().get("APPLICATION_TEMPLATES")); - } - } - onSearchQueryClear={ handleSearchQueryClear } - searchQuery={ searchQuery } - data-testid={ `${ testId }-list` } - data-componentid="application" - /> - - { showWizard && ( - setShowWizard(false) } - template={ CustomApplicationTemplate } - showHelpPanel={ true } - subTemplates={ CustomApplicationTemplate?.subTemplates } - subTemplatesSectionTitle={ CustomApplicationTemplate?.subTemplatesSectionTitle } - addProtocol={ false } - templateLoadingStrategy={ - config.ui.applicationTemplateLoadingStrategy - ?? ApplicationManagementConstants.DEFAULT_APP_TEMPLATE_LOADING_STRATEGY - } - /> - ) } -
-
+ } + onSearchQueryClear={ handleSearchQueryClear } + searchQuery={ searchQuery } + data-testid={ `${ testId }-list` } + data-componentid="application" + /> + + { showWizard && ( + setShowWizard(false) } + template={ CustomApplicationTemplate } + showHelpPanel={ true } + subTemplates={ CustomApplicationTemplate?.subTemplates } + subTemplatesSectionTitle={ CustomApplicationTemplate?.subTemplatesSectionTitle } + addProtocol={ false } + templateLoadingStrategy={ + config.ui.applicationTemplateLoadingStrategy + ?? ApplicationManagementConstants.DEFAULT_APP_TEMPLATE_LOADING_STRATEGY + } + /> + ) } + ); }; diff --git a/features/admin.connections.v1/pages/connection-edit.tsx b/features/admin.connections.v1/pages/connection-edit.tsx index 12be8d092e2..b704c1aca43 100644 --- a/features/admin.connections.v1/pages/connection-edit.tsx +++ b/features/admin.connections.v1/pages/connection-edit.tsx @@ -45,7 +45,6 @@ import { useDispatch, useSelector } from "react-redux"; import { RouteComponentProps } from "react-router"; import { Dispatch } from "redux"; import { Label } from "semantic-ui-react"; -import ApplicationTemplatesProvider from "../../admin.applications.v1/provider/application-templates-provider"; import { AppConstants, AppState, @@ -735,78 +734,76 @@ const ConnectionEditPage: FunctionComponent = }; return ( - - - { - ConnectionsManagementUtils.isConnectorIdentityProvider(connector) - ? ( - - ) - : ( - - ) - } - - + + { + ConnectionsManagementUtils.isConnectorIdentityProvider(connector) + ? ( + + ) + : ( + + ) + } + ); }; diff --git a/features/admin.core.v1/components/common-feature-provider.tsx b/features/admin.core.v1/components/common-feature-provider.tsx new file mode 100644 index 00000000000..2818f810d31 --- /dev/null +++ b/features/admin.core.v1/components/common-feature-provider.tsx @@ -0,0 +1,44 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { PropsWithChildren, ReactElement } from "react"; +import ApplicationTemplatesProvider from "../../admin.applications.v1/provider/application-templates-provider"; + +/** + * Props interface for the `CommonFeatureProviders` component. + */ +export type CommonFeatureProvidersProps = PropsWithChildren; + +/** + * A common provider that aggregates all common feature providers, + * enabling any feature to access them. + * + * @param props - Props for the `CommonFeatureProviders` component. + * @returns `CommonFeatureProviders` component. + */ +const CommonFeatureProviders = (props: CommonFeatureProvidersProps): ReactElement => { + const { children } = props; + + return ( + + { children } + + ); +}; + +export default CommonFeatureProviders; diff --git a/features/admin.identity-providers.v1/pages/identity-provider-edit.tsx b/features/admin.identity-providers.v1/pages/identity-provider-edit.tsx index da6c8ca4475..5eae72093fb 100644 --- a/features/admin.identity-providers.v1/pages/identity-provider-edit.tsx +++ b/features/admin.identity-providers.v1/pages/identity-provider-edit.tsx @@ -42,7 +42,6 @@ import { useDispatch, useSelector } from "react-redux"; import { RouteComponentProps } from "react-router"; import { Dispatch } from "redux"; import { Label } from "semantic-ui-react"; -import ApplicationTemplatesProvider from "../../admin.applications.v1/provider/application-templates-provider"; import { AppConstants, AppState, @@ -590,78 +589,76 @@ const IdentityProviderEditPage: FunctionComponent = ( }; return ( - - - { - IdentityProviderManagementUtils.isConnectorIdentityProvider(connector) - ? ( - setIsExtensionsAvailable(isAvailable) - } - type={ identityProviderTemplate?.id } - isReadOnly={ isReadOnly } - isAutomaticTabRedirectionEnabled={ isAutomaticTabRedirectionEnabled } - tabIdentifier={ tabIdentifier } - /> - ) - : ( - - ) - } - - + + { + IdentityProviderManagementUtils.isConnectorIdentityProvider(connector) + ? ( + setIsExtensionsAvailable(isAvailable) + } + type={ identityProviderTemplate?.id } + isReadOnly={ isReadOnly } + isAutomaticTabRedirectionEnabled={ isAutomaticTabRedirectionEnabled } + tabIdentifier={ tabIdentifier } + /> + ) + : ( + + ) + } + ); }; From 37afa1b6321e136f910dbf5900dcccad96202f9b Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Wed, 17 Apr 2024 12:30:34 +0530 Subject: [PATCH 013/114] implement dynamic tab conrtrolling mechanism --- .../use-get-application-template-metadata.ts | 5 +- .../components/edit-application.tsx | 148 ++++++++++++++++-- .../models/application-templates.ts | 50 +++++- .../pages/application-edit.tsx | 126 ++++++--------- .../configs/application.tsx | 15 ++ .../tab/resource-tab/resource-tab.tsx | 13 +- 6 files changed, 260 insertions(+), 97 deletions(-) diff --git a/features/admin.applications.v1/api/use-get-application-template-metadata.ts b/features/admin.applications.v1/api/use-get-application-template-metadata.ts index 93559b62d48..70d7e5eb0a5 100644 --- a/features/admin.applications.v1/api/use-get-application-template-metadata.ts +++ b/features/admin.applications.v1/api/use-get-application-template-metadata.ts @@ -34,7 +34,8 @@ import { * @returns A promise containing the response. */ const useGetApplicationTemplateMetadata = ( - id: string + id: string, + shouldFetch: boolean = true ): RequestResultInterface => { const requestConfig: RequestConfigInterface = { @@ -46,7 +47,7 @@ const useGetApplicationTemplateMetadata = (requestConfig); + const { data, error, isValidating, mutate } = useRequest(shouldFetch ? requestConfig : null); return { data, diff --git a/features/admin.applications.v1/components/edit-application.tsx b/features/admin.applications.v1/components/edit-application.tsx index c8be74c5957..86fa20ea924 100644 --- a/features/admin.applications.v1/components/edit-application.tsx +++ b/features/admin.applications.v1/components/edit-application.tsx @@ -53,10 +53,11 @@ import { history } from "../../admin.core.v1"; import useUIConfig from "../../admin.core.v1/hooks/use-ui-configs"; -import { applicationConfig } from "../../admin.extensions.v1"; +import { ApplicationTabIDs, applicationConfig } from "../../admin.extensions.v1"; import { OrganizationType } from "../../admin.organizations.v1/constants"; import { useGetCurrentOrganizationType } from "../../admin.organizations.v1/hooks/use-get-organization-type"; import { getInboundProtocolConfig } from "../api"; +import useGetApplicationTemplateMetadata from "../api/use-get-application-template-metadata"; import { ApplicationManagementConstants } from "../constants"; import CustomApplicationTemplate from "../data/application-templates/templates/custom-application/custom-application.json"; @@ -73,7 +74,11 @@ import { SupportedAuthProtocolTypes, URLFragmentTypes } from "../models"; -import { ApplicationTemplateListInterface } from "../models/application-templates"; +import { + ApplicationEditTabContentTypes, + ApplicationEditTabMetadataInterface, + ApplicationTemplateListInterface +} from "../models/application-templates"; import { ApplicationManagementUtils } from "../utils/application-management-utils"; /** @@ -150,15 +155,21 @@ export const EditApplication: FunctionComponent = onDelete, onUpdate, template, + extensionTemplate, readOnly, urlSearchParams, [ "data-componentid" ]: componentId } = props; const { t } = useTranslation(); - const { isSuperOrganization } = useGetCurrentOrganizationType(); + const { isSuperOrganization, isSubOrganization } = useGetCurrentOrganizationType(); const dispatch: Dispatch = useDispatch(); const { UIConfig } = useUIConfig(); + const { + data: extensionTemplateMetadata, + isLoading: isExtensionTemplateMetadataFetchRequestLoading, + error: extensionTemplateMetadataFetchRequestError + } = useGetApplicationTemplateMetadata(extensionTemplate?.id, !!extensionTemplate); const availableInboundProtocols: AuthProtocolMetaListItemInterface[] = useSelector((state: AppState) => state.application.meta.inboundProtocols); @@ -201,7 +212,32 @@ export const EditApplication: FunctionComponent = const isFragmentApp: boolean = application?.advancedConfigurations?.fragment || false; const hiddenAuthenticators: string[] = [ ...(UIConfig?.hiddenAuthenticators ?? []) ]; - const { isSubOrganization } = useGetCurrentOrganizationType(); + /** + * Handle errors that occur during the application template meta data fetch request. + */ + useEffect(() => { + if (!extensionTemplateMetadataFetchRequestError) { + return; + } + + if (extensionTemplateMetadataFetchRequestError?.response?.data?.description) { + dispatch(addAlert({ + description: extensionTemplateMetadataFetchRequestError?.response?.data?.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.fetchTemplateMetadata.error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.fetchTemplateMetadata" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications." + + "fetchTemplateMetadata.genericError.message") + })); + }, [ extensionTemplateMetadataFetchRequestError ]); /** * Called when an application updates. @@ -245,6 +281,7 @@ export const EditApplication: FunctionComponent = )) { panes.push({ componentId: "general", + id: ApplicationTabIDs.GENERAL, menuItem: { t("applications:edit.sections.general.tabName") } @@ -274,6 +311,7 @@ export const EditApplication: FunctionComponent = ) && panes.push({ componentId: "protocol", + id: ApplicationTabIDs.PROTOCOL, menuItem: t("applications:edit.sections.access.tabName"), render: ApplicationSettingsTabPane }); @@ -289,6 +327,7 @@ export const EditApplication: FunctionComponent = inboundProtocolConfig?.oidc?.clientId, ApplicationTabTypes.USER_ATTRIBUTES, tenantDomain) && panes.push({ componentId: "user-attributes", + id: ApplicationTabIDs.USER_ATTRIBUTES, menuItem: { t("applications:edit.sections.attributes.tabName") } @@ -314,6 +353,7 @@ export const EditApplication: FunctionComponent = inboundProtocolConfig?.oidc?.clientId, ApplicationTabTypes.SIGN_IN_METHOD, tenantDomain) && panes.push({ componentId: "sign-in-method", + id: ApplicationTabIDs.SIGN_IN_METHODS, menuItem: { t("applications:edit.sections.signOnMethod.tabName") } @@ -333,6 +373,7 @@ export const EditApplication: FunctionComponent = inboundProtocolConfig?.oidc?.clientId, ApplicationTabTypes.PROVISIONING, tenantDomain) && panes.push({ componentId: "provisioning", + id: ApplicationTabIDs.PROVISIONING, menuItem: t("applications:edit.sections.provisioning.tabName"), render: ProvisioningSettingsTabPane }); @@ -349,6 +390,7 @@ export const EditApplication: FunctionComponent = inboundProtocolConfig?.oidc?.clientId , ApplicationTabTypes.ADVANCED, tenantDomain) && panes.push({ componentId: "advanced", + id: ApplicationTabIDs.ADVANCED, menuItem: ( { t("applications:edit.sections.advanced.tabName") } @@ -376,6 +418,7 @@ export const EditApplication: FunctionComponent = UIConfig?.legacyMode?.organizations && panes.push({ componentId: "shared-access", + id: ApplicationTabIDs.SHARED_ACCESS, menuItem: t("applications:edit.sections.sharedAccess.tabName"), render: SharedAccessTabPane }); @@ -392,6 +435,7 @@ export const EditApplication: FunctionComponent = ) && panes.push({ componentId: "info", + id: ApplicationTabIDs.INFO, menuItem: { content: t("applications:edit.sections.info.tabName"), icon: "info circle grey" @@ -412,41 +456,49 @@ export const EditApplication: FunctionComponent = return [ { componentId: "general", + id: ApplicationTabIDs.GENERAL, menuItem: t("applications:edit.sections.general.tabName"), render: GeneralApplicationSettingsTabPane }, { componentId: "protocol", + id: ApplicationTabIDs.PROTOCOL, menuItem: t("applications:edit.sections.access.tabName"), render: ApplicationSettingsTabPane }, { componentId: "user-attributes", + id: ApplicationTabIDs.USER_ATTRIBUTES, menuItem: t("applications:edit.sections.attributes.tabName"), render: AttributeSettingTabPane }, { componentId: "sign-in-method", + id: ApplicationTabIDs.SIGN_IN_METHODS, menuItem: t("applications:edit.sections.signOnMethod.tabName"), render: SignOnMethodsTabPane }, applicationConfig.editApplication.showProvisioningSettings && { componentId: "provisioning", + id: ApplicationTabIDs.PROVISIONING, menuItem: t("applications:edit.sections.provisioning.tabName"), render: ProvisioningSettingsTabPane }, { componentId: "advanced", + id: ApplicationTabIDs.ADVANCED, menuItem: t("applications:edit.sections.advanced.tabName"), render: AdvancedSettingsTabPane }, { componentId: "shared-access", + id: ApplicationTabIDs.SHARED_ACCESS, menuItem: t("applications:edit.sections.sharedAccess.tabName"), render: SharedAccessTabPane }, { componentId: "info", + id: ApplicationTabIDs.INFO, menuItem: { content: t("applications:edit.sections.info.tabName"), icon: "info circle grey" @@ -456,11 +508,85 @@ export const EditApplication: FunctionComponent = ]; }; - const renderedTabPanes: ResourceTabPaneInterface[] = useMemo( - () => resolveTabPanes(), [ - tabPaneExtensions, - application?.templateId - ]); + /** + * Filter the available tabs based on metadata defined in the extension template. + * + * @param tabs - All available templates. + * @returns Filtered tabs list. + */ + const filterTabsBasedOnExtensionTemplateMetadata = ( + tabs: ResourceTabPaneInterface[] + ): ResourceTabPaneInterface[] => { + const filteredTabs: ResourceTabPaneInterface[] = []; + + /** + * Check the existence of predefined tab based on the given tab ID and + * add it to the filtered list. + * + * @param currentTab - Metadata for the tab defined in the template. + */ + const addPredefineTab = (currentTab: ApplicationEditTabMetadataInterface) => { + const predefineTab: ResourceTabPaneInterface = + tabs.find((item: ResourceTabPaneInterface) => item?.id === currentTab?.id); + + if (predefineTab) { + if (currentTab?.displayName) { + predefineTab.menuItem = currentTab?.displayName; + } + + filteredTabs.push(predefineTab); + } + }; + + extensionTemplateMetadata?.edit?.tabs.forEach((tab: ApplicationEditTabMetadataInterface) => { + switch (tab?.contentType) { + case ApplicationEditTabContentTypes.GUIDE: + if (tab?.guide) { + // TOD: Add created markdown tab into filteredTabs list + } + + break; + case ApplicationEditTabContentTypes.FORM: + if (tab?.form && Array.isArray(tab?.form) && tab?.form?.length > 0) { + // TOD: Add created dynamic form tab into filteredTabs list + } + + break; + default: + addPredefineTab(tab); + } + }); + + return filteredTabs?.length > 0 ? filteredTabs : tabs; + }; + + /** + * Generate the final rendered tab list based on template metadata. + */ + const renderedTabPanes: ResourceTabPaneInterface[] = useMemo(() => { + const availableTabs: ResourceTabPaneInterface[] = resolveTabPanes(); + + if (!extensionTemplate) { + return availableTabs; + } + + if (isExtensionTemplateMetadataFetchRequestLoading) { + return []; + } + + if (extensionTemplateMetadata?.edit?.tabs + && Array.isArray(extensionTemplateMetadata?.edit?.tabs) + && extensionTemplateMetadata?.edit?.tabs?.length > 0) { + return filterTabsBasedOnExtensionTemplateMetadata(availableTabs); + } + + return availableTabs; + },[ + tabPaneExtensions, + application?.templateId, + extensionTemplateMetadata, + isExtensionTemplateMetadataFetchRequestLoading + ]); /** * Set the defaultTabIndex when the application template updates. @@ -1147,12 +1273,12 @@ export const EditApplication: FunctionComponent = ? ( <> { setTotalTabs(panesLength); } } diff --git a/features/admin.applications.v1/models/application-templates.ts b/features/admin.applications.v1/models/application-templates.ts index 750b37d5e57..547119c62ca 100644 --- a/features/admin.applications.v1/models/application-templates.ts +++ b/features/admin.applications.v1/models/application-templates.ts @@ -85,22 +85,64 @@ export interface ApplicationTemplateMetadataInterface { /** * Application creation related metadata. */ - create: { + create?: { /** * Dynamic input fields should be rendered in the application create wizard. */ - form: { + form?: { fields: DynamicFieldInterface[]; }; /** * Indicates whether the application is sharable with sub orgs. */ - isApplicationSharable: boolean; + isApplicationSharable?: boolean; /** * Application creation guide metadata. */ - guide: string[]; + guide?: string[]; } + /** + * Application editing section related metadata. + */ + edit?: { + tabs: ApplicationEditTabMetadataInterface[] + } +} + +/** + * Possible Content Types for application editing tabs. + */ +export enum ApplicationEditTabContentTypes { + FORM = "form", + GUIDE = "guide" +} + +/** + * Interface to generate a tab in the application editing section. + */ +export interface ApplicationEditTabMetadataInterface { + /** + * Unique identifier for the tab. + */ + id: string; + /** + * Display name of the tab. + */ + displayName?: string; + /** + * Content Types for current tab. + */ + contentType?: ApplicationEditTabContentTypes; + /** + * Dynamic input fields should be rendered in the current tab. + */ + form?: { + fields: DynamicFieldInterface[]; + }; + /** + * Guide content for application editing section. + */ + guide?: string; } /** diff --git a/features/admin.applications.v1/pages/application-edit.tsx b/features/admin.applications.v1/pages/application-edit.tsx index 6fd98835f00..0b1a904331f 100755 --- a/features/admin.applications.v1/pages/application-edit.tsx +++ b/features/admin.applications.v1/pages/application-edit.tsx @@ -17,7 +17,7 @@ */ import { hasRequiredScopes, isFeatureEnabled } from "@wso2is/core/helpers"; -import { AlertLevels, IdentifiableComponentInterface, StorageIdentityAppsSettingsInterface } from "@wso2is/core/models"; +import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; import { AnimatedAvatar, @@ -26,9 +26,6 @@ import { Popup, TabPageLayout } from "@wso2is/react-components"; -import cloneDeep from "lodash-es/cloneDeep"; -import get from "lodash-es/get"; -import isEmpty from "lodash-es/isEmpty"; import React, { FunctionComponent, ReactElement, useEffect, useRef, useState } from "react"; import { useTranslation } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; @@ -38,12 +35,8 @@ import { Label } from "semantic-ui-react"; import { AppConstants, AppState, - AppUtils, FeatureConfigInterface, - PortalDocumentationStructureInterface, - history, - setHelpPanelDocsContentURL, - toggleHelpPanelVisibility + history } from "../../admin.core.v1"; import { applicationConfig } from "../../admin.extensions.v1/configs/application"; import { IdentityProviderConstants } from "../../admin.identity-providers.v1/constants"; @@ -53,6 +46,9 @@ import { InboundProtocolDefaultFallbackTemplates } from "../components/meta/inbo import { ApplicationManagementConstants } from "../constants"; import CustomApplicationTemplate from "../data/application-templates/templates/custom-application/custom-application.json"; +import CustomProtocolApplicationTemplate + from "../data/application-templates/templates/custom-protocol-application/custom-protocol-application.json"; +import useApplicationTemplates from "../hooks/use-application-templates"; import { ApplicationAccessTypes, ApplicationTemplateListItemInterface, @@ -60,9 +56,9 @@ import { SupportedAuthProtocolTypes, idpInfoTypeInterface } from "../models"; +import { ApplicationTemplateListInterface } from "../models/application-templates"; import { ApplicationManagementUtils } from "../utils/application-management-utils"; import { ApplicationTemplateManagementUtils } from "../utils/application-template-management-utils"; -import { ApplicationTemplateListInterface } from "../models/application-templates"; /** * Prop types for the applications edit page component. @@ -87,7 +83,6 @@ const ApplicationEditPage: FunctionComponent = ( } = props; const urlSearchParams: URLSearchParams = new URLSearchParams(location.search); - const applicationHelpShownStatusKey: string = "isApplicationHelpShown"; const { t } = useTranslation(); @@ -95,9 +90,12 @@ const ApplicationEditPage: FunctionComponent = ( const appDescElement: React.MutableRefObject = useRef(null); + const { + templates: extensionApplicationTemplates, + isApplicationTemplatesRequestLoading: isExtensionApplicationTemplatesRequestLoading + } = useApplicationTemplates(); + const allowedScopes: string = useSelector((state: AppState) => state?.auth?.allowedScopes); - const helpPanelDocStructure: PortalDocumentationStructureInterface = useSelector( - (state: AppState) => state.helpPanel.docStructure); const applicationTemplates: ApplicationTemplateListItemInterface[] = useSelector( (state: AppState) => state.application.templates); const featureConfig: FeatureConfigInterface = useSelector((state: AppState) => state.config.ui.features); @@ -200,42 +198,14 @@ const ApplicationEditPage: FunctionComponent = ( * For more additional context please refer comment: * @see https://github.com/wso2/identity-apps/pull/3028#issuecomment-1123847668 */ - if (appDescElement || isApplicationRequestLoading) { + if (appDescElement) { const nativeElement: HTMLDivElement = appDescElement?.current; if (nativeElement && (nativeElement.offsetWidth < nativeElement.scrollWidth)) { setIsDescTruncated(true); } } - }, [ appDescElement, isApplicationRequestLoading ]); - - /** - * Get whether to show the help panel - * Help panel only shows for the first time - */ - const showHelpPanel = (): boolean => { - - const userPreferences: StorageIdentityAppsSettingsInterface = AppUtils.getUserPreferences(); - - return !isEmpty(userPreferences) && - !userPreferences.identityAppsSettings?.devPortal?.[ applicationHelpShownStatusKey ]; - }; - - /** - * Set status of first time help panel is shown - */ - const setHelpPanelShown = (): void => { - const userPreferences: StorageIdentityAppsSettingsInterface = AppUtils.getUserPreferences(); - - if (isEmpty(userPreferences) || !userPreferences?.identityAppsSettings?.devPortal) { - return; - } - - const newPref: StorageIdentityAppsSettingsInterface = cloneDeep(userPreferences); - - newPref.identityAppsSettings.devPortal[ applicationHelpShownStatusKey ] = true; - AppUtils.setUserPreferences(newPref); - }; + }, [ appDescElement, isApplicationRequestLoading, isExtensionApplicationTemplatesRequestLoading ]); /** * Fetch the application details on initial component load. @@ -244,11 +214,6 @@ const ApplicationEditPage: FunctionComponent = ( const path: string[] = history.location.pathname?.split("/"); const id: string = path[ path?.length - 1 ]; - if (showHelpPanel()) { - dispatch(toggleHelpPanelVisibility(true)); - setHelpPanelShown(); - } - setApplicationId(id); }, []); @@ -307,7 +272,7 @@ const ApplicationEditPage: FunctionComponent = ( determineApplicationTemplate(); - }, [ applicationTemplates, application ]); + }, [ applicationTemplates, extensionApplicationTemplates, application ]); useEffect(() => { @@ -340,7 +305,7 @@ const ApplicationEditPage: FunctionComponent = ( } } - }, [ isApplicationRequestLoading, application ]); + }, [ isApplicationRequestLoading, application, isExtensionApplicationTemplatesRequestLoading ]); /** * Push to 404 if application edit feature is disabled. @@ -357,28 +322,6 @@ const ApplicationEditPage: FunctionComponent = ( } }, [ featureConfig ]); - /** - * Set the default doc content URL for the tab. - */ - useEffect(() => { - if (!applicationTemplate) { - return; - } - - const editApplicationDocs: PortalDocumentationStructureInterface[] = get(helpPanelDocStructure, - ApplicationManagementConstants.EDIT_APPLICATIONS_DOCS_KEY); - - if (!editApplicationDocs) { - return; - } - - dispatch( - setHelpPanelDocsContentURL(editApplicationDocs[ - ApplicationManagementConstants.APPLICATION_TEMPLATE_DOC_MAPPING - .get(applicationTemplate.id)]?.[ApplicationManagementConstants.APPLICATION_DOCS_OVERVIEW]) - ); - }, [ applicationTemplate, helpPanelDocStructure ]); - const determineApplicationTemplate = () => { let template: ApplicationTemplateListItemInterface = applicationTemplates?.find( @@ -393,6 +336,36 @@ const ApplicationEditPage: FunctionComponent = ( template.id === CustomApplicationTemplate.id); } + /** + * This condition block will help identify the applications created from templates + * on the extensions management API side. + */ + if (!template) { + const extensionTemplate: ApplicationTemplateListInterface = extensionApplicationTemplates?.find( + (template: ApplicationTemplateListInterface) => { + return template?.id === application.templateId; + } + ); + + if (extensionTemplate) { + setExtensionApplicationTemplate(extensionTemplate); + + const relatedLegacyTemplateId: string = InboundProtocolDefaultFallbackTemplates.get( + application.inboundProtocols[ 0 /*We pick the first*/ ].type + ) ?? ApplicationManagementConstants.CUSTOM_APPLICATION_OIDC; + + if (relatedLegacyTemplateId === ApplicationManagementConstants.CUSTOM_APPLICATION_OIDC + || relatedLegacyTemplateId === ApplicationManagementConstants.CUSTOM_APPLICATION_SAML + || relatedLegacyTemplateId === ApplicationManagementConstants.CUSTOM_APPLICATION_PASSIVE_STS) { + template = applicationTemplates?.find((template: ApplicationTemplateListItemInterface) => + template.id === CustomApplicationTemplate?.id); + } else { + template = applicationTemplates?.find((template: ApplicationTemplateListItemInterface) => + template.id === CustomProtocolApplicationTemplate?.id); + } + } + } + setApplicationTemplate(template); }; @@ -510,6 +483,10 @@ const ApplicationEditPage: FunctionComponent = ( ); } + if (extensionApplicationTemplate?.name) { + return ; + } + if (applicationTemplate?.name) { return ; } @@ -579,7 +556,7 @@ const ApplicationEditPage: FunctionComponent = ( count: 5, imageType: "square" } } - isLoading={ isApplicationRequestLoading } + isLoading={ isApplicationRequestLoading || isExtensionApplicationTemplatesRequestLoading } backButton={ { "data-componentid": `${componentId}-page-back-button`, onClick: handleBackButtonClick, @@ -606,11 +583,12 @@ const ApplicationEditPage: FunctionComponent = ( { diff --git a/features/admin.extensions.v1/configs/application.tsx b/features/admin.extensions.v1/configs/application.tsx index 9cf3510337a..101092a3dce 100644 --- a/features/admin.extensions.v1/configs/application.tsx +++ b/features/admin.extensions.v1/configs/application.tsx @@ -103,6 +103,19 @@ const isIdentityClaim = (claim: ExtendedClaimInterface | ExtendedExternalClaimIn return identityRegex.test(claim.mappedLocalClaimURI); }; +export enum ApplicationTabIDs { + GENERAL = "general-tab", + PROTOCOL = "protocol-tab", + USER_ATTRIBUTES = "user-attributes-tab", + SIGN_IN_METHODS = "sign-in-methods-tab", + PROVISIONING = "provisioning-tab", + ADVANCED = "advanced-tab", + SHARED_ACCESS = "shared-access", + INFO = "info-tab", + API_AUTHORIZATION = "api-authorization-tab", + APPLICATION_ROLES = "application-roles-tab" +} + export const applicationConfig: ApplicationConfig = { advancedConfigurations: { showDefaultMyAccountApplicationEditPage: true, @@ -421,6 +434,7 @@ export const applicationConfig: ApplicationConfig = { tabExtensions.push( { componentId: "api-authorization", + id: ApplicationTabIDs.API_AUTHORIZATION, index: application?.templateId === ApplicationManagementConstants.M2M_APP_TEMPLATE_ID ? M2M_API_AUTHORIZATION_INDEX + tabExtensions.length : API_AUTHORIZATION_INDEX + tabExtensions.length, @@ -459,6 +473,7 @@ export const applicationConfig: ApplicationConfig = { tabExtensions.push( { componentId: "application-roles", + id: ApplicationTabIDs.APPLICATION_ROLES, index: APPLICATION_ROLES_INDEX + tabExtensions.length, menuItem: I18n.instance.t( "extensions:develop.applications.edit.sections.roles.heading" diff --git a/modules/react-components/src/components/tab/resource-tab/resource-tab.tsx b/modules/react-components/src/components/tab/resource-tab/resource-tab.tsx index eef343e1eaa..01c1ab7f0d0 100644 --- a/modules/react-components/src/components/tab/resource-tab/resource-tab.tsx +++ b/modules/react-components/src/components/tab/resource-tab/resource-tab.tsx @@ -46,12 +46,13 @@ export interface ResourceTabSubComponentsInterface { * Interface for the resource tab pane components. */ export interface ResourceTabPaneInterface { - pane?: SemanticShorthandItem - menuItem?: any - render?: () => React.ReactNode - "data-tabid"?: string - componentId?: string - index?: number + id?: string; + pane?: SemanticShorthandItem; + menuItem?: any; + render?: () => React.ReactNode; + "data-tabid"?: string; + componentId?: string; + index?: number; } /** From a1cb3e546b11fdefd6d5eb3dc5ab68a50c27565b Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Fri, 19 Apr 2024 15:14:04 +0530 Subject: [PATCH 014/114] implement dynamic application edit form and guide --- .../application-templates-grid.scss | 6 +- .../application-templates-grid.tsx | 18 + .../application-create-wizard.tsx | 131 +- .../dynamic-forms/application-edit-form.scss | 25 + .../dynamic-forms/application-edit-form.tsx | 279 +++++ .../application-form-dynamic-field.tsx | 42 +- .../components/edit-application.tsx | 1105 +++++++++-------- .../components/help-panel/markdown-guide.tsx | 75 ++ .../constants/application-templates.ts | 3 + .../hooks/use-dynamic-field-validation.ts | 61 +- .../models/application-templates.ts | 10 +- .../models/dynamic-fields.ts | 58 +- features/admin.applications.v1/models/form.ts | 4 +- .../pages/application-edit.tsx | 308 +++-- .../adapters/text-field-adapter.scss | 5 + 15 files changed, 1341 insertions(+), 789 deletions(-) create mode 100644 features/admin.applications.v1/components/dynamic-forms/application-edit-form.scss create mode 100644 features/admin.applications.v1/components/dynamic-forms/application-edit-form.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown-guide.tsx diff --git a/features/admin.applications.v1/components/application-templates/application-templates-grid.scss b/features/admin.applications.v1/components/application-templates/application-templates-grid.scss index 858e1ba4b80..e84a33f5dd2 100644 --- a/features/admin.applications.v1/components/application-templates/application-templates-grid.scss +++ b/features/admin.applications.v1/components/application-templates/application-templates-grid.scss @@ -21,6 +21,10 @@ flex-direction: column; justify-content: flex-start; align-items: flex-start; - gap: 20px; + gap: 25px; margin-bottom: 30px; + + .application-template-card-group-description { + margin-top: -20px; + } } diff --git a/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx b/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx index 26149061eae..ff3c21cf6d2 100644 --- a/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx +++ b/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx @@ -20,6 +20,7 @@ import { Typography } from "@mui/material"; import { IdentifiableComponentInterface, LoadableComponentInterface } from "@wso2is/core/models"; import { ContentLoader, + DocumentationLink, EmptyPlaceholder, GridLayout, ResourceGrid, @@ -337,6 +338,23 @@ const ApplicationTemplateGrid: FunctionComponent { t(category?.displayName) } + { + category?.description + ? ( + + { t(category?.description) } + + { t("common:learnMore") } + + + ) + : null + } (null); const [ isApplicationSharingEnabled, setIsApplicationSharingEnabled ] = useState(false); const [ openLimitReachedModal, setOpenLimitReachedModal ] = useState(false); + const [ isSubmitting, setIsSubmitting ] = useState(false); const isClientSecretHashEnabled: boolean = useSelector((state: AppState) => state?.config?.ui?.isClientSecretHashEnabled); const eventPublisher: EventPublisher = EventPublisher.getInstance(); + /** + * Generate the next unique name by appending 1-based index number to the provided initial value. + * + * @param initialApplicationName - Initial value for the Application name. + * @returns A unique name from the provided list of names. + */ + const generateUniqueApplicationName = (initialApplicationName: string): string => { + + let appName: string = initialApplicationName; + + if (possibleListOfDuplicateApplications?.totalResults > 0) { + const applicationNameList: string[] = possibleListOfDuplicateApplications?.applications?.map( + (item: ApplicationListItemInterface) => item?.name); + + for (let i: number = 2; ; i++) { + if (!applicationNameList?.includes(appName)) { + break; + } + + appName = initialApplicationName + " " + i; + } + } + + return appName; + }; + + /** + * Prepare the initial values before assigning them to the form fields. + * + * @param initialValues - Initial values defined in template. + * @returns Moderated initial values. + */ + const moderateInitialValues = ( + initialValues: ApplicationCreateWizardFormInitialValuesInterface, + templatePayload: ApplicationCreateWizardFormInitialValuesInterface + ): ApplicationCreateWizardFormInitialValuesInterface => { + if (initialValues) { + initialValues.name = generateUniqueApplicationName(templatePayload?.name); + } + + return initialValues; + }; + const formInitialValues: ApplicationCreateWizardFormInitialValuesInterface = useMemo(() => { - if (templateData?.payload) { - return cloneDeep(templateData?.payload); + if (!templateData?.payload) { + return null; } - return null; - }, [ templateData?.payload ]); + const initialValues: ApplicationCreateWizardFormInitialValuesInterface = cloneDeep(templateData?.payload); + + return moderateInitialValues(initialValues, templateData?.payload); + }, [ templateData?.payload, possibleListOfDuplicateApplications ]); /** * Handle errors that occur during the application list fetch request. @@ -210,48 +259,6 @@ export const ApplicationCreateWizard: FunctionComponent { - - let appName: string = initialApplicationName; - - if (possibleListOfDuplicateApplications?.totalResults > 0) { - const applicationNameList: string[] = possibleListOfDuplicateApplications?.applications?.map( - (item: ApplicationListItemInterface) => item?.name); - - for (let i: number = 2; ; i++) { - if (!applicationNameList?.includes(appName)) { - break; - } - - appName = initialApplicationName + " " + i; - } - } - - return appName; - }; - - /** - * Prepare the initial values before assigning them to the form fields. - * - * @param initialValues - Initial values defined in template. - * @returns Moderated initial values. - */ - const moderateInitialValues = ( - templatePayload: ApplicationCreateWizardFormInitialValuesInterface) - : ApplicationCreateWizardFormInitialValuesInterface => { - if (formInitialValues) { - formInitialValues.name = generateUniqueApplicationName(templatePayload?.name); - } - - return formInitialValues; - }; - /** * After the application is created, the user will be redirected to the * edit page using this function. @@ -290,8 +297,36 @@ export const ApplicationCreateWizard: FunctionComponent { - const formValues: Record = cloneDeep(values); + const formValues: ApplicationCreateWizardFormValuesInterface = cloneDeep(values); + + /** + * Make sure that cleared text fields are set to an empty string. + * Additionally, include the auto-submit properties in the form submission. + */ + templateMetadata?.create?.form?.fields?.forEach((field: DynamicFieldInterface) => { + if (!has(values, field?.name)) { + const initialValue: any = get(formInitialValues, field?.name); + + if (initialValue && typeof initialValue === "string") { + set(values, field?.name, ""); + } + } + + if (field?.meta?.autoSubmitProperties + && Array.isArray(field?.meta?.autoSubmitProperties) + && field?.meta?.autoSubmitProperties?.length > 0) { + field?.meta?.autoSubmitProperties.forEach( + (property: DynamicFieldAutoSubmitPropertyInterface) => + set(values, property?.path, property?.value) + ); + } + }); const application: MainApplicationInterface = merge(templateData?.payload, formValues); @@ -452,7 +487,7 @@ export const ApplicationCreateWizard: FunctionComponent ) } void; + /** + * Make the form read only. + */ + readOnly?: boolean; +} + +/** + * Dynamic application edit form component. + * + * @param Props - Props to be injected into the component. + */ +export const ApplicationEditForm: FunctionComponent = ( + props: ApplicationEditFormPropsInterface +): ReactElement => { + const { + tab, + application, + isLoading, + onUpdate, + readOnly, + ["data-componentid"]: componentId + } = props; + + const { validate } = useDynamicFieldValidations(); + + const { t } = useTranslation(); + const dispatch: Dispatch = useDispatch(); + const { UIConfig } = useUIConfig(); + const allowedScopes: string = useSelector((state: AppState) => state?.auth?.allowedScopes); + const [ isSubmitting, setIsSubmitting ] = useState(false); + + /** + * Callback function triggered when clicking the form submit button. + * + * @param values - Submission values from the form fields. + */ + const onSubmit = (values: ApplicationInterface): void => { + setIsSubmitting(true); + + /** + * Make sure that cleared text fields are set to an empty string. + * Additionally, include the auto-submit properties in the form submission. + */ + tab?.form?.fields?.forEach((field: DynamicFieldInterface) => { + if (!has(values, field?.name)) { + const initialValue: any = get(application, field?.name); + + if (initialValue && typeof initialValue === "string") { + set(values, field?.name, ""); + } + } + + if (field?.meta?.autoSubmitProperties + && Array.isArray(field?.meta?.autoSubmitProperties) + && field?.meta?.autoSubmitProperties?.length > 0) { + field?.meta?.autoSubmitProperties.forEach( + (property: DynamicFieldAutoSubmitPropertyInterface) => + set(values, property?.path, property?.value) + ); + } + }); + + updateApplicationDetails(values) + .then(() => { + dispatch(addAlert({ + description: t("applications:notifications.updateApplication.success" + + ".description"), + level: AlertLevels.SUCCESS, + message: t("applications:notifications.updateApplication.success.message") + })); + + onUpdate(application?.id); + }) + .catch((error: AxiosError) => { + if (error?.response?.data?.description) { + dispatch(addAlert({ + description: error?.response?.data?.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.updateApplication.error" + + ".message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.updateApplication" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications.updateApplication.genericError" + + ".message") + })); + }) + .finally(() => setIsSubmitting(false)); + }; + + /** + * Prepare the initial values before assigning them to the form fields. + * + * @param application - application data. + * @returns Moderated initial values. + */ + const moderateInitialValues = (application: ApplicationInterface): Partial => { + if (!tab?.form?.submitDefinedFieldsOnly) { + return application; + } + + const paths: string[] = tab?.form?.fields.map((field: DynamicFieldInterface) => field?.name); + + // The ID needs to be submitted to perform the update operation. + paths.push("id"); + + return pick(application, paths); + }; + + return ( + + { + isLoading + ? + : ( + <> + , + Partial + >, + { changeValue }: Tools< + Partial, + Partial + > + ) => { + changeValue(state, fieldName, () => fieldVal); + } + } } + validate={ + (formValues: ApplicationInterface) => + validate(formValues, tab?.form?.fields) + } + render={ ({ form, handleSubmit }: FormRenderProps) => { + return ( +
+ + { tab?.form?.fields?.map( + (field: DynamicFieldInterface) => { + return ( + + + + + + ); + }) + } + + + + { t("common:update") } + + + + +
+ ); + } } + /> + + ) + } +
+ ); +}; + +/** + * Default props for the application edit form component. + */ +ApplicationEditForm.defaultProps = { + "data-componentid": "application-edit-form" +}; diff --git a/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx b/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx index 858bfad6013..acda2573fa1 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx +++ b/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx @@ -33,6 +33,10 @@ export interface ApplicationFormDynamicFieldPropsInterface extends IdentifiableC * Form state from the form library. */ form: FormApi>; + /** + * Whether the form field is read only or not. + */ + readOnly?: boolean; } /** @@ -43,7 +47,7 @@ export interface ApplicationFormDynamicFieldPropsInterface extends IdentifiableC export const ApplicationFormDynamicField: FunctionComponent> = (props: PropsWithChildren): ReactElement => { - const { ["data-componentid"]: componentId, field, ...rest } = props; + const { ["data-componentid"]: componentId, field, readOnly, ...rest } = props; const getDynamicFieldAdapter = (type: DynamicInputFieldTypes): ReactElement => { switch (type) { @@ -54,13 +58,15 @@ export const ApplicationFormDynamicField: FunctionComponent ); case DynamicInputFieldTypes.TEXT: @@ -70,15 +76,35 @@ export const ApplicationFormDynamicField: FunctionComponent + ); + case DynamicInputFieldTypes.TEXTAREA: + return ( + ); default: @@ -88,15 +114,15 @@ export const ApplicationFormDynamicField: FunctionComponent ); } diff --git a/features/admin.applications.v1/components/edit-application.tsx b/features/admin.applications.v1/components/edit-application.tsx index 86fa20ea924..323e9e17471 100644 --- a/features/admin.applications.v1/components/edit-application.tsx +++ b/features/admin.applications.v1/components/edit-application.tsx @@ -27,12 +27,15 @@ import { ResourceTabPaneInterface } from "@wso2is/react-components"; import Axios, { AxiosError, AxiosResponse } from "axios"; +import cloneDeep from "lodash-es/cloneDeep"; import isEmpty from "lodash-es/isEmpty"; -import React, { FunctionComponent, ReactElement, SyntheticEvent, useEffect, useMemo, useState } from "react"; +import React, { FunctionComponent, ReactElement, SyntheticEvent, useEffect, useState } from "react"; import { useTranslation } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; import { Dispatch } from "redux"; import { Form, Grid, Menu, TabProps } from "semantic-ui-react"; +import { ApplicationEditForm } from "./dynamic-forms/application-edit-form"; +import { MarkdownGuide } from "./help-panel/markdown-guide"; import { InboundProtocolsMeta } from "./meta"; import { AccessConfiguration, @@ -249,6 +252,334 @@ export const EditApplication: FunctionComponent = onUpdate(id); }; + /** + * Todo Remove this mapping and fix the backend. + */ + const mapProtocolTypeToName = ((type: string): string => { + let protocolName: string = type; + + if (protocolName === "oauth2") { + protocolName = SupportedAuthProtocolTypes.OIDC; + } else if (protocolName === "passivests") { + protocolName = SupportedAuthProtocolTypes.WS_FEDERATION; + } else if (protocolName === "wstrust") { + protocolName = SupportedAuthProtocolTypes.WS_TRUST; + } else if (protocolName === "samlsso") { + protocolName = SupportedAuthProtocolTypes.SAML; + } + + return protocolName; + }); + + /** + * This function will normalize the SAML name ID format + * returned by the API. + * + * @param protocolConfigs - Protocol config object + */ + const normalizeSAMLNameIDFormat = (protocolConfigs: any): void => { + const key: string = "saml"; + + if (protocolConfigs[ key ]) { + const assertion: any = protocolConfigs[ key ].singleSignOnProfile?.assertion; + + if (assertion) { + const ref: string = assertion.nameIdFormat as string; + + assertion.nameIdFormat = ref.replace(/\//g, ":"); + } + } + }; + + /** + * Finds the configured inbound protocol. + */ + const findConfiguredInboundProtocol = (appId: string): void => { + let protocolConfigs: any = {}; + const selectedProtocolList: string[] = []; + const inboundProtocolRequests: Promise[] = []; + const protocolNames: string[] = []; + + if (application?.inboundProtocols?.length > 0) { + application.inboundProtocols.forEach((protocol: InboundProtocolListItemInterface) => { + + if (protocol.type === "openid") { + return; + } + + const protocolName: string = mapProtocolTypeToName(protocol.type); + + if(!protocolNames.includes(protocolName)) { + protocolNames.push(protocolName); + inboundProtocolRequests.push(getInboundProtocolConfig(appId, protocolName)); + } + }); + + setIsInboundProtocolConfigRequestLoading(true); + Axios.all(inboundProtocolRequests).then(Axios.spread((...responses: AxiosResponse[]) => { + responses.forEach((response: AxiosResponse, index: number) => { + protocolConfigs = { + ...protocolConfigs, + [ protocolNames[ index ] ]: response + }; + + selectedProtocolList.push(protocolNames[ index ]); + }); + + })) + .catch((error: AxiosError) => { + if (error?.response?.status === 404) { + return; + } + + if (error?.response && error?.response?.data && error?.response?.data?.description) { + dispatch(addAlert({ + description: error.response?.data?.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.getInboundProtocolConfig" + + ".error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.getInboundProtocolConfig" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications.getInboundProtocolConfig" + + ".genericError.message") + })); + }) + .finally(() => { + // Mutate the saml: NameIDFormat property according to the specification. + normalizeSAMLNameIDFormat(protocolConfigs); + setIsApplicationUpdated(true); + setInboundProtocolList(selectedProtocolList); + setInboundProtocolConfig(protocolConfigs); + setIsInboundProtocolConfigRequestLoading(false); + getConfiguredInboundProtocolsList(selectedProtocolList); + getConfiguredInboundProtocolConfigs(protocolConfigs); + }); + } else { + setInboundProtocolList([]); + setInboundProtocolConfig({}); + setIsInboundProtocolConfigRequestLoading(false); + getConfiguredInboundProtocolsList([]); + getConfiguredInboundProtocolConfigs({}); + } + }; + + /** + * Called when an application updates. + */ + const handleProtocolUpdate = (): void => { + if (!application?.id) { + return; + } + + findConfiguredInboundProtocol(application.id); + }; + + /** + * Handles application secret regenerate. + * @param config - Config response. + */ + const handleApplicationSecretRegenerate = (config: OIDCDataInterface): void => { + + if (isEmpty(config) || !config.clientSecret || !config.clientId) { + return; + } + + setClientSecretHashDisclaimerModalInputs({ + clientId: config.clientId, + clientSecret: config.clientSecret + }); + setShowClientSecretHashDisclaimerModal(true); + }; + + const GeneralApplicationSettingsTabPane = (): ReactElement => ( + + + + ); + + const ApplicationSettingsTabPane = (): ReactElement => ( + + setIsAllowedOriginsUpdated(!isAllowedOriginsUpdated) } + onApplicationSecretRegenerate={ handleApplicationSecretRegenerate } + appId={ application?.id } + appName={ application?.name } + applicationTemplateId={ application?.templateId } + extendedAccessConfig={ tabPaneExtensions !== undefined } + isLoading={ isLoading } + setIsLoading={ setIsLoading } + onUpdate={ handleApplicationUpdate } + onProtocolUpdate = { handleProtocolUpdate } + isInboundProtocolConfigRequestLoading={ isInboundProtocolConfigRequestLoading } + inboundProtocolsLoading={ isInboundProtocolConfigRequestLoading } + inboundProtocolConfig={ inboundProtocolConfig } + inboundProtocols={ inboundProtocolList } + featureConfig={ featureConfig } + template={ template } + readOnly={ readOnly || applicationConfig.editApplication.getTabPanelReadOnlyStatus( + "APPLICATION_EDIT_ACCESS_CONFIG", application) } + isDefaultApplication={ ApplicationManagementConstants.DEFAULT_APPS.includes(application?.name) } + isSystemApplication={ ApplicationManagementConstants.SYSTEM_APPS.includes(application?.name) } + data-componentid={ `${ componentId }-access-settings` } + /> + + ); + + const AttributeSettingTabPane = (): ReactElement => ( + + + + ); + + + const SignOnMethodsTabPane = (): ReactElement => ( + + + + ); + + const AdvancedSettingsTabPane = (): ReactElement => ( + + + + ); + + const ProvisioningSettingsTabPane = (): ReactElement => ( + applicationConfig.editApplication.showProvisioningSettings + ? ( + < ResourceTab.Pane controlledSegmentation> + + + ) + : null + ); + + const SharedAccessTabPane = (): ReactElement => ( + + + + ); + + const InfoTabPane = (): ReactElement => ( + + + + ); + + /** + * Renders a dynamic application edit tab pane. + * + * @param tab - The metadata for the tab. + * @returns The rendered tab pane. + */ + const DynamicApplicationEditTabPane = (tab: ApplicationEditTabMetadataInterface): ReactElement => ( + + + + ); + + /** + * Renders a markdown guide tab pane. + * + * @param guideContent - Content to display in Markdown format. + * @returns The rendered tab pane. + */ + const MarkdownGuideTabPane = (guideContent: string): ReactElement => ( + + + + ); + /** * Resolves the tab panes based on the application config. * @@ -266,7 +597,7 @@ export const EditApplication: FunctionComponent = } if (tabPaneExtensions && tabPaneExtensions.length > 0) { - extensionPanes.push(...tabPaneExtensions); + extensionPanes.push(...cloneDeep(tabPaneExtensions)); } if (featureConfig) { @@ -532,301 +863,66 @@ export const EditApplication: FunctionComponent = if (predefineTab) { if (currentTab?.displayName) { predefineTab.menuItem = currentTab?.displayName; - } - - filteredTabs.push(predefineTab); - } - }; - - extensionTemplateMetadata?.edit?.tabs.forEach((tab: ApplicationEditTabMetadataInterface) => { - switch (tab?.contentType) { - case ApplicationEditTabContentTypes.GUIDE: - if (tab?.guide) { - // TOD: Add created markdown tab into filteredTabs list - } - - break; - case ApplicationEditTabContentTypes.FORM: - if (tab?.form && Array.isArray(tab?.form) && tab?.form?.length > 0) { - // TOD: Add created dynamic form tab into filteredTabs list - } - - break; - default: - addPredefineTab(tab); - } - }); - - return filteredTabs?.length > 0 ? filteredTabs : tabs; - }; - - /** - * Generate the final rendered tab list based on template metadata. - */ - const renderedTabPanes: ResourceTabPaneInterface[] = useMemo(() => { - const availableTabs: ResourceTabPaneInterface[] = resolveTabPanes(); - - if (!extensionTemplate) { - return availableTabs; - } - - if (isExtensionTemplateMetadataFetchRequestLoading) { - return []; - } - - if (extensionTemplateMetadata?.edit?.tabs - && Array.isArray(extensionTemplateMetadata?.edit?.tabs) - && extensionTemplateMetadata?.edit?.tabs?.length > 0) { - return filterTabsBasedOnExtensionTemplateMetadata(availableTabs); - } - - return availableTabs; - },[ - tabPaneExtensions, - application?.templateId, - extensionTemplateMetadata, - isExtensionTemplateMetadataFetchRequestLoading - ]); - - /** - * Set the defaultTabIndex when the application template updates. - */ - useEffect(() => { - - if(!template) { - return; - } - - let defaultTabIndex: number = 0; - - if(applicationConfig.editApplication.extendTabs) { - defaultTabIndex=1; - } - - setDefaultActiveIndex(defaultTabIndex); - - if(isEmpty(window.location.hash)){ - - if(urlSearchParams.get(ApplicationManagementConstants.APP_STATE_STRONG_AUTH_PARAM_KEY) !== - ApplicationManagementConstants.APP_STATE_STRONG_AUTH_PARAM_VALUE) { - handleDefaultTabIndexChange(defaultTabIndex); - - return; - } - - // When application selection is done through the strong authentication flow. - const signInMethodtabIndex: number = renderedTabPanes?.findIndex( - (element: {"componentId": string}) => - element.componentId === ApplicationManagementConstants.SIGN_IN_METHOD_TAB_URL_FRAG - ); - - if (signInMethodtabIndex !== -1) { - handleActiveTabIndexChange(signInMethodtabIndex); - } - } - },[ template, renderedTabPanes ]); - - /** - * Check whether the application is an M2M Application. - */ - useEffect(() => { - - if (template?.id === ApplicationTemplateIdTypes.M2M_APPLICATION) { - setM2MApplication(true); - } - }, [ template ]); - - /** - * Called when the URL fragment updates. - */ - useEffect( () => { - - if(totalTabs === undefined || window.location.hash.includes(URLFragmentTypes.VIEW) || - isEmpty(window.location.hash)) { - - return; - } - - const urlFragment: string[] = window.location.hash.split("#"+URLFragmentTypes.TAB_INDEX); - - if(urlFragment.length === 2 && isEmpty(urlFragment[0]) && /^\d+$/.test(urlFragment[1])) { - - const tabIndex: number = parseInt(urlFragment[1], 10); - - if(tabIndex === activeTabIndex) { - return; - } - - handleActiveTabIndexChange(tabIndex); - } else if (window.location.hash.includes(ApplicationManagementConstants.SIGN_IN_METHOD_TAB_URL_FRAG)) { - // Handle loading sign-in method tab when redirecting from the "Connected Apps" Tab of an IdP. - const SignInMethodtabIndex: number = renderedTabPanes?.findIndex( - (element: {"componentId": string}) => - element.componentId === ApplicationManagementConstants.SIGN_IN_METHOD_TAB_URL_FRAG); - - handleActiveTabIndexChange(SignInMethodtabIndex); - } else { - // Change the tab index to defaultActiveIndex for invalid URL fragments. - handleDefaultTabIndexChange(defaultActiveIndex); - } - }, [ window.location.hash, totalTabs ]); - - /** - * Fetch the allowed origins list whenever there's an update. - */ - useEffect(() => { - const allowedCORSOrigins: string[] = []; - - if (isSuperOrganization()) { - getCORSOrigins() - .then((response: CORSOriginsListInterface[]) => { - response.map((origin: CORSOriginsListInterface) => { - allowedCORSOrigins.push(origin.url); - }); - setAllowedOrigins(allowedCORSOrigins); - }) - .catch((error: AxiosError) => { - if (error?.response?.data?.description) { - dispatch(addAlert({ - description: error.response.data.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.fetchAllowedCORSOrigins." + - "error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.fetchAllowedCORSOrigins" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications.fetchAllowedCORSOrigins." + - "genericError.message") - })); - }); - } - }, [ isAllowedOriginsUpdated ]); - - /** - * Called on `availableInboundProtocols` prop update. - */ - useEffect(() => { - if (!isEmpty(availableInboundProtocols)) { - return; - } - - setInboundProtocolsRequestLoading(true); - - ApplicationManagementUtils.getInboundProtocols(InboundProtocolsMeta, false) - .finally(() => { - setInboundProtocolsRequestLoading(false); - }); - }, [ availableInboundProtocols ]); - - /** - * Watch for `inboundProtocols` array change and fetch configured protocols if there's a difference. - */ - useEffect(() => { - if (!application?.inboundProtocols || !application?.id) { - return; - } - - findConfiguredInboundProtocol(application.id); - }, [ JSON.stringify(application?.inboundProtocols) ]); - - useEffect(() => { - if (samlConfigurations !== undefined) { - return; - } - setSAMLConfigsLoading(true); - - ApplicationManagementUtils.getSAMLApplicationMeta() - .finally(() => { - setSAMLConfigsLoading(false); - }); - }, [ samlConfigurations, inboundProtocolConfig ]); - - useEffect(() => { - if (oidcConfigurations !== undefined) { - return; - } - setOIDCConfigsLoading(true); - - ApplicationManagementUtils.getOIDCApplicationMeta() - .finally(() => { - setOIDCConfigsLoading(false); - }); - }, [ oidcConfigurations, inboundProtocolConfig ]); - - useEffect(() => { - if (tabPaneExtensions && !isApplicationUpdated) { - return; - } - - if (!application?.id || isInboundProtocolConfigRequestLoading) { - return; - } - - if (inboundProtocolConfig && samlConfigurations && samlConfigurations.certificate) { - inboundProtocolConfig.certificate = samlConfigurations.certificate; - inboundProtocolConfig.ssoUrl = samlConfigurations.ssoUrl; - inboundProtocolConfig.issuer = samlConfigurations.issuer; - } + } - const extensions: ResourceTabPaneInterface[] = applicationConfig.editApplication.getTabExtensions( - { - application: application, - content: template?.content?.quickStart, - inboundProtocolConfig: inboundProtocolConfig, - inboundProtocols: inboundProtocolList, - onApplicationUpdate: () => { - handleApplicationUpdate(application?.id); - }, - onTriggerTabUpdate: (tabIndex: number) => { - setActiveTabIndex(tabIndex); - }, - template: template - }, - featureConfig, - readOnly, - tenantDomain - ); + filteredTabs.push(predefineTab); + } + }; - setTabPaneExtensions(extensions); - setIsApplicationUpdated(false); - }, [ - tabPaneExtensions, - template, - application, - inboundProtocolList, - inboundProtocolConfig, - isInboundProtocolConfigRequestLoading - ]); + extensionTemplateMetadata?.edit?.tabs.forEach((tab: ApplicationEditTabMetadataInterface) => { + switch (tab?.contentType) { + case ApplicationEditTabContentTypes.GUIDE: + if (tab?.guide) { + filteredTabs.push({ + componentId: tab?.id, + id: tab?.id, + menuItem: tab?.displayName, + render: () => MarkdownGuideTabPane(tab?.guide) + }); + } - useEffect(() => { + break; + case ApplicationEditTabContentTypes.FORM: + if (tab?.form?.fields && Array.isArray(tab?.form?.fields) && tab?.form?.fields?.length > 0) { + filteredTabs.push({ + componentId: tab?.id, + id: tab?.id, + menuItem: tab?.displayName, + render: () => DynamicApplicationEditTabPane(tab) + }); + } - if (!urlSearchParams.get(ApplicationManagementConstants.CLIENT_SECRET_HASH_ENABLED_URL_SEARCH_PARAM_KEY)) { - return; - } + break; + default: + addPredefineTab(tab); + } + }); - setShowClientSecretHashDisclaimerModal(true); - }, [ urlSearchParams.get(ApplicationManagementConstants.CLIENT_SECRET_HASH_ENABLED_URL_SEARCH_PARAM_KEY) ]); + return filteredTabs?.length > 0 ? filteredTabs : tabs; + }; /** - * Handles the defaultActiveIndex change. + * Generate the final rendered tab list based on template metadata. + * + * @returns Tab panes list. */ - const handleDefaultTabIndexChange = (defaultActiveIndex: number): void => { - - if (template.id === CustomApplicationTemplate.id && defaultActiveIndex > 0) { - handleActiveTabIndexChange(defaultActiveIndex - 1); + const getFinalRenderingTabPanes = (): ResourceTabPaneInterface[] => { + const availableTabs: ResourceTabPaneInterface[] = resolveTabPanes(); - return; + if (extensionTemplateMetadata?.edit?.tabs + && Array.isArray(extensionTemplateMetadata?.edit?.tabs) + && extensionTemplateMetadata?.edit?.tabs?.length > 0) { + return filterTabsBasedOnExtensionTemplateMetadata(availableTabs); } - handleActiveTabIndexChange(defaultActiveIndex); + return availableTabs; }; + /** + * The list of tab panes rendered in the final render. + */ + const renderedTabPanes: ResourceTabPaneInterface[] = getFinalRenderingTabPanes(); + /** * Handles the activeTabIndex change. * @@ -842,316 +938,259 @@ export const EditApplication: FunctionComponent = }; /** - * Handles the tab change. - * - * @param e - Click event. - * @param data - Tab properties. + * Handles the defaultActiveIndex change. */ - const handleTabChange = (e: SyntheticEvent, data: TabProps): void => { - eventPublisher.compute(() => { - eventPublisher.publish("application-switch-edit-application-tabs", { - type: data.panes[data.activeIndex].componentId - }); - }); + const handleDefaultTabIndexChange = (defaultActiveIndex: number): void => { - handleActiveTabIndexChange(data.activeIndex as number); + if (template.id === CustomApplicationTemplate.id && defaultActiveIndex > 0) { + handleActiveTabIndexChange(defaultActiveIndex - 1); + + return; + } + + handleActiveTabIndexChange(defaultActiveIndex); }; /** - * Todo Remove this mapping and fix the backend. + * Set the defaultTabIndex when the application template updates. */ - const mapProtocolTypeToName = ((type: string): string => { - let protocolName: string = type; + useEffect(() => { - if (protocolName === "oauth2") { - protocolName = SupportedAuthProtocolTypes.OIDC; - } else if (protocolName === "passivests") { - protocolName = SupportedAuthProtocolTypes.WS_FEDERATION; - } else if (protocolName === "wstrust") { - protocolName = SupportedAuthProtocolTypes.WS_TRUST; - } else if (protocolName === "samlsso") { - protocolName = SupportedAuthProtocolTypes.SAML; + if(!template) { + return; } - return protocolName; - }); + let defaultTabIndex: number = 0; - /** - * This function will normalize the SAML name ID format - * returned by the API. - * - * @param protocolConfigs - Protocol config object - */ - const normalizeSAMLNameIDFormat = (protocolConfigs: any): void => { - const key: string = "saml"; + if(applicationConfig.editApplication.extendTabs) { + defaultTabIndex=1; + } - if (protocolConfigs[ key ]) { - const assertion: any = protocolConfigs[ key ].singleSignOnProfile?.assertion; + setDefaultActiveIndex(defaultTabIndex); - if (assertion) { - const ref: string = assertion.nameIdFormat as string; + if(isEmpty(window.location.hash)){ - assertion.nameIdFormat = ref.replace(/\//g, ":"); + if(urlSearchParams.get(ApplicationManagementConstants.APP_STATE_STRONG_AUTH_PARAM_KEY) !== + ApplicationManagementConstants.APP_STATE_STRONG_AUTH_PARAM_VALUE) { + handleDefaultTabIndexChange(defaultTabIndex); + + return; + } + + // When application selection is done through the strong authentication flow. + const signInMethodtabIndex: number = renderedTabPanes?.findIndex( + (element: {"componentId": string}) => + element.componentId === ApplicationManagementConstants.SIGN_IN_METHOD_TAB_URL_FRAG + ); + + if (signInMethodtabIndex !== -1) { + handleActiveTabIndexChange(signInMethodtabIndex); } } - }; + },[ template, renderedTabPanes ]); /** - * Finds the configured inbound protocol. + * Check whether the application is an M2M Application. */ - const findConfiguredInboundProtocol = (appId: string): void => { - let protocolConfigs: any = {}; - const selectedProtocolList: string[] = []; - const inboundProtocolRequests: Promise[] = []; - const protocolNames: string[] = []; + useEffect(() => { - if (application?.inboundProtocols?.length > 0) { - application.inboundProtocols.forEach((protocol: InboundProtocolListItemInterface) => { + if (template?.id === ApplicationTemplateIdTypes.M2M_APPLICATION) { + setM2MApplication(true); + } + }, [ template ]); - if (protocol.type === "openid") { - return; - } + /** + * Called when the URL fragment updates. + */ + useEffect( () => { - const protocolName: string = mapProtocolTypeToName(protocol.type); + if(totalTabs === undefined || window.location.hash.includes(URLFragmentTypes.VIEW) || + isEmpty(window.location.hash)) { - if(!protocolNames.includes(protocolName)) { - protocolNames.push(protocolName); - inboundProtocolRequests.push(getInboundProtocolConfig(appId, protocolName)); - } - }); + return; + } - setIsInboundProtocolConfigRequestLoading(true); - Axios.all(inboundProtocolRequests).then(Axios.spread((...responses: AxiosResponse[]) => { - responses.forEach((response: AxiosResponse, index: number) => { - protocolConfigs = { - ...protocolConfigs, - [ protocolNames[ index ] ]: response - }; + const urlFragment: string[] = window.location.hash.split("#"+URLFragmentTypes.TAB_INDEX); - selectedProtocolList.push(protocolNames[ index ]); - }); + if(urlFragment.length === 2 && isEmpty(urlFragment[0]) && /^\d+$/.test(urlFragment[1])) { - })) - .catch((error: AxiosError) => { - if (error?.response?.status === 404) { - return; - } + const tabIndex: number = parseInt(urlFragment[1], 10); - if (error?.response && error?.response?.data && error?.response?.data?.description) { + if(tabIndex === activeTabIndex) { + return; + } + + handleActiveTabIndexChange(tabIndex); + } else if (window.location.hash.includes(ApplicationManagementConstants.SIGN_IN_METHOD_TAB_URL_FRAG)) { + // Handle loading sign-in method tab when redirecting from the "Connected Apps" Tab of an IdP. + const SignInMethodtabIndex: number = renderedTabPanes?.findIndex( + (element: {"componentId": string}) => + element.componentId === ApplicationManagementConstants.SIGN_IN_METHOD_TAB_URL_FRAG); + + handleActiveTabIndexChange(SignInMethodtabIndex); + } else { + // Change the tab index to defaultActiveIndex for invalid URL fragments. + handleDefaultTabIndexChange(defaultActiveIndex); + } + }, [ window.location.hash, totalTabs ]); + + /** + * Fetch the allowed origins list whenever there's an update. + */ + useEffect(() => { + const allowedCORSOrigins: string[] = []; + + if (isSuperOrganization()) { + getCORSOrigins() + .then((response: CORSOriginsListInterface[]) => { + response.map((origin: CORSOriginsListInterface) => { + allowedCORSOrigins.push(origin.url); + }); + setAllowedOrigins(allowedCORSOrigins); + }) + .catch((error: AxiosError) => { + if (error?.response?.data?.description) { dispatch(addAlert({ - description: error.response?.data?.description, + description: error.response.data.description, level: AlertLevels.ERROR, - message: t("applications:notifications.getInboundProtocolConfig" + - ".error.message") + message: t("applications:notifications.fetchAllowedCORSOrigins." + + "error.message") })); return; } dispatch(addAlert({ - description: t("applications:notifications.getInboundProtocolConfig" + + description: t("applications:notifications.fetchAllowedCORSOrigins" + ".genericError.description"), level: AlertLevels.ERROR, - message: t("applications:notifications.getInboundProtocolConfig" + - ".genericError.message") + message: t("applications:notifications.fetchAllowedCORSOrigins." + + "genericError.message") })); - }) - .finally(() => { - // Mutate the saml: NameIDFormat property according to the specification. - normalizeSAMLNameIDFormat(protocolConfigs); - setIsApplicationUpdated(true); - setInboundProtocolList(selectedProtocolList); - setInboundProtocolConfig(protocolConfigs); - setIsInboundProtocolConfigRequestLoading(false); - getConfiguredInboundProtocolsList(selectedProtocolList); - getConfiguredInboundProtocolConfigs(protocolConfigs); }); - } else { - setInboundProtocolList([]); - setInboundProtocolConfig({}); - setIsInboundProtocolConfigRequestLoading(false); - getConfiguredInboundProtocolsList([]); - getConfiguredInboundProtocolConfigs({}); } - }; + }, [ isAllowedOriginsUpdated ]); /** - * Called when an application updates. + * Called on `availableInboundProtocols` prop update. */ - const handleProtocolUpdate = (): void => { - if (!application?.id) { + useEffect(() => { + if (!isEmpty(availableInboundProtocols)) { return; } - findConfiguredInboundProtocol(application.id); - }; + setInboundProtocolsRequestLoading(true); + + ApplicationManagementUtils.getInboundProtocols(InboundProtocolsMeta, false) + .finally(() => { + setInboundProtocolsRequestLoading(false); + }); + }, [ availableInboundProtocols ]); /** - * Handles application secret regenerate. - * @param config - Config response. + * Watch for `inboundProtocols` array change and fetch configured protocols if there's a difference. */ - const handleApplicationSecretRegenerate = (config: OIDCDataInterface): void => { + useEffect(() => { + if (!application?.inboundProtocols || !application?.id) { + return; + } - if (isEmpty(config) || !config.clientSecret || !config.clientId) { + findConfiguredInboundProtocol(application.id); + }, [ JSON.stringify(application?.inboundProtocols) ]); + + useEffect(() => { + if (samlConfigurations !== undefined) { return; } + setSAMLConfigsLoading(true); - setClientSecretHashDisclaimerModalInputs({ - clientId: config.clientId, - clientSecret: config.clientSecret - }); - setShowClientSecretHashDisclaimerModal(true); - }; + ApplicationManagementUtils.getSAMLApplicationMeta() + .finally(() => { + setSAMLConfigsLoading(false); + }); + }, [ samlConfigurations, inboundProtocolConfig ]); - const GeneralApplicationSettingsTabPane = (): ReactElement => ( - - - - ); + useEffect(() => { + if (oidcConfigurations !== undefined) { + return; + } + setOIDCConfigsLoading(true); - const ApplicationSettingsTabPane = (): ReactElement => ( - - setIsAllowedOriginsUpdated(!isAllowedOriginsUpdated) } - onApplicationSecretRegenerate={ handleApplicationSecretRegenerate } - appId={ application?.id } - appName={ application?.name } - applicationTemplateId={ application?.templateId } - extendedAccessConfig={ tabPaneExtensions !== undefined } - isLoading={ isLoading } - setIsLoading={ setIsLoading } - onUpdate={ handleApplicationUpdate } - onProtocolUpdate = { handleProtocolUpdate } - isInboundProtocolConfigRequestLoading={ isInboundProtocolConfigRequestLoading } - inboundProtocolsLoading={ isInboundProtocolConfigRequestLoading } - inboundProtocolConfig={ inboundProtocolConfig } - inboundProtocols={ inboundProtocolList } - featureConfig={ featureConfig } - template={ template } - readOnly={ readOnly || applicationConfig.editApplication.getTabPanelReadOnlyStatus( - "APPLICATION_EDIT_ACCESS_CONFIG", application) } - isDefaultApplication={ ApplicationManagementConstants.DEFAULT_APPS.includes(application?.name) } - isSystemApplication={ ApplicationManagementConstants.SYSTEM_APPS.includes(application?.name) } - data-componentid={ `${ componentId }-access-settings` } - /> - - ); + ApplicationManagementUtils.getOIDCApplicationMeta() + .finally(() => { + setOIDCConfigsLoading(false); + }); + }, [ oidcConfigurations, inboundProtocolConfig ]); - const AttributeSettingTabPane = (): ReactElement => ( - - - - ); + useEffect(() => { + if (tabPaneExtensions && !isApplicationUpdated) { + return; + } + if (!application?.id || isInboundProtocolConfigRequestLoading) { + return; + } - const SignOnMethodsTabPane = (): ReactElement => ( - - - - ); + if (inboundProtocolConfig && samlConfigurations && samlConfigurations.certificate) { + inboundProtocolConfig.certificate = samlConfigurations.certificate; + inboundProtocolConfig.ssoUrl = samlConfigurations.ssoUrl; + inboundProtocolConfig.issuer = samlConfigurations.issuer; + } - const AdvancedSettingsTabPane = (): ReactElement => ( - - - - ); + const extensions: ResourceTabPaneInterface[] = applicationConfig.editApplication.getTabExtensions( + { + application: application, + content: template?.content?.quickStart, + inboundProtocolConfig: inboundProtocolConfig, + inboundProtocols: inboundProtocolList, + onApplicationUpdate: () => { + handleApplicationUpdate(application?.id); + }, + onTriggerTabUpdate: (tabIndex: number) => { + setActiveTabIndex(tabIndex); + }, + template: template + }, + featureConfig, + readOnly, + tenantDomain + ); - const ProvisioningSettingsTabPane = (): ReactElement => ( - applicationConfig.editApplication.showProvisioningSettings - ? ( - < ResourceTab.Pane controlledSegmentation> - - - ) - : null - ); + setTabPaneExtensions(extensions); + setIsApplicationUpdated(false); + }, [ + tabPaneExtensions, + template, + application, + inboundProtocolList, + inboundProtocolConfig, + isInboundProtocolConfigRequestLoading + ]); - const SharedAccessTabPane = (): ReactElement => ( - - - - ); + useEffect(() => { - const InfoTabPane = (): ReactElement => ( - - - - ); + if (!urlSearchParams.get(ApplicationManagementConstants.CLIENT_SECRET_HASH_ENABLED_URL_SEARCH_PARAM_KEY)) { + return; + } + + setShowClientSecretHashDisclaimerModal(true); + }, [ urlSearchParams.get(ApplicationManagementConstants.CLIENT_SECRET_HASH_ENABLED_URL_SEARCH_PARAM_KEY) ]); + + /** + * Handles the tab change. + * + * @param e - Click event. + * @param data - Tab properties. + */ + const handleTabChange = (e: SyntheticEvent, data: TabProps): void => { + eventPublisher.compute(() => { + eventPublisher.publish("application-switch-edit-application-tabs", { + type: data.panes[data.activeIndex].componentId + }); + }); + + handleActiveTabIndexChange(data.activeIndex as number); + }; /** * Renders the client secret hash disclaimer modal. diff --git a/features/admin.applications.v1/components/help-panel/markdown-guide.tsx b/features/admin.applications.v1/components/help-panel/markdown-guide.tsx new file mode 100644 index 00000000000..0cfc47bdf19 --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown-guide.tsx @@ -0,0 +1,75 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { IdentifiableComponentInterface } from "@wso2is/core/models"; +import { + ContentLoader, + EmphasizedSegment, + Markdown +} from "@wso2is/react-components"; +import React, { FunctionComponent, ReactElement } from "react"; + +/** + * Prop types of the `MarkdownGuide` component. + */ +export interface MarkdownGuidePropsInterface extends IdentifiableComponentInterface { + /** + * Content to be displayed in Markdown format. + */ + content: string; + /** + * Is the application info request loading. + */ + isLoading?: boolean; +} + +/** + * Markdown guide generation component. + * + * @param Props - Props to be injected into the component. + */ +export const MarkdownGuide: FunctionComponent = ( + props: MarkdownGuidePropsInterface +): ReactElement => { + const { + content, + isLoading, + ["data-componentid"]: componentId + } = props; + + return ( + + { + isLoading + ? + : ( + + ) + } + + ); +}; + +/** + * Default props for the `MarkdownGuide` guide. + */ +MarkdownGuide.defaultProps = { + "data-componentid": "markdown-guide" +}; diff --git a/features/admin.applications.v1/constants/application-templates.ts b/features/admin.applications.v1/constants/application-templates.ts index 24b02424a3e..8409f243a9f 100644 --- a/features/admin.applications.v1/constants/application-templates.ts +++ b/features/admin.applications.v1/constants/application-templates.ts @@ -32,11 +32,14 @@ export class ApplicationTemplateConstants { public static readonly SUPPORTED_CATEGORIES_INFO: ApplicationTemplateCategoryInterface[] = [ { + description: "Integrate applications based on technology and platform.", displayName: "applications:templates.categories.default", displayOrder: 0, id: "DEFAULT" }, { + description: "Configure single sign-on seamlessly across SaaS services such as" + + " Google Workspace, Salesforce, and more.", displayName: "applications:templates.categories.ssoIntegration", displayOrder: 1, id: "SSO-INTEGRATION" diff --git a/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts b/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts index fd2238e36dc..469d3f631ec 100644 --- a/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts +++ b/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts @@ -123,11 +123,15 @@ const useDynamicFieldValidations = (): { /** * Validates a field based on its validation rules. * - * @param value - The field's value to be validated. + * @param values - The form values to be validated. * @param validations - An array of validation rules for the field. * @returns An error message if validation fails, or `null` if validation succeeds. */ - const validateField = async (value: any, validations: ValidationRule[]): Promise => { + const validateField = async ( + values: ApplicationCreateWizardFormValuesInterface, + field: DynamicFieldInterface, + validations: ValidationRule[] + ): Promise => { if (!validations) { return null; } @@ -139,15 +143,15 @@ const useDynamicFieldValidations = (): { switch (type) { case ValidationRuleTypes.DOMAIN_NAME: - validationResult = handleErrorMessage(validateDomainName(value), errorMessage); + validationResult = handleErrorMessage(validateDomainName(values, field), errorMessage); break; case ValidationRuleTypes.APPLICATION_NAME: - validationResult = handleErrorMessage(await validateApplicationName(value), errorMessage); + validationResult = handleErrorMessage(await validateApplicationName(values, field), errorMessage); break; case ValidationRuleTypes.REQUIRED: - validationResult = handleErrorMessage(requiredField(value), errorMessage); + validationResult = handleErrorMessage(requiredField(values, field), errorMessage); break; } @@ -174,17 +178,22 @@ const useDynamicFieldValidations = (): { const errorObject: { [key in keyof ApplicationCreateWizardFormValuesInterface]: string } = {}; for (const field of fields) { - let validations: ValidationRule[] = [ ...field?.validations ]; + let validations: ValidationRule[] = []; + + if (field?.validations && Array.isArray(field?.validations) && field?.validations?.length > 0) { + validations = [ ...field?.validations ]; + } if (field?.required) { - validations = [ { type: ValidationRuleTypes.REQUIRED }, ...field?.validations ]; + validations = [ { type: ValidationRuleTypes.REQUIRED }, ...validations ]; } - const value: any = get(formValues, field?.name); - const error: string = await validateField(value, validations); + if (validations?.length > 0) { + const error: string = await validateField(formValues, field, validations); - if (error) { - set(errorObject, field?.name, error); + if (error) { + set(errorObject, field?.name, error); + } } } @@ -197,7 +206,12 @@ const useDynamicFieldValidations = (): { * value - The value needs validation. * @returns Whether the provided value is a non empty value. */ - const requiredField = (value: any): string | null => { + const requiredField = ( + values: ApplicationCreateWizardFormValuesInterface, + field: DynamicFieldInterface + ): string | null => { + const value: any = get(values, field?.name); + if (!value) { return "applications:forms.dynamicApplicationCreateWizard.common.validations.required"; } @@ -211,7 +225,12 @@ const useDynamicFieldValidations = (): { * value - The value needs validation. * @returns Whether the provided value is a valid domain name or not. */ - const validateDomainName = (value: string): string | null => { + const validateDomainName = ( + values: ApplicationCreateWizardFormValuesInterface, + field: DynamicFieldInterface + ): string | null => { + const value: any = get(values, field?.name); + // Regular expression to validate domain name. const domainRegex: RegExp = /^(?!-)[A-Za-z0-9-]{1,63}(? Promise> = debounce( - async (name: string) => { + const isApplicationNameAlreadyExist: DebouncedFunc<(name: string, appId: string) => Promise> = debounce( + async (name: string, appId: string) => { if (previouslyValidatedApplicationName?.current !== name) { previouslyValidatedApplicationName.current = name; const response: ApplicationListInterface = await getApplications(name); - setIsApplicationNameAlreadyReserved(response?.totalResults > 0); + setIsApplicationNameAlreadyReserved( + response?.totalResults > 0 && response?.applications[0]?.id !== appId); } }, 500 @@ -270,8 +290,11 @@ const useDynamicFieldValidations = (): { * * @param name - Application name. */ - const validateApplicationName = async (name: string): Promise => { - const appName: string = name.toString().trim(); + const validateApplicationName = async ( + values: ApplicationCreateWizardFormValuesInterface, + field: DynamicFieldInterface + ): Promise => { + const appName: string = get(values, field?.name)?.toString()?.trim(); if (!isNameValid(appName)) { return t("applications:forms." + @@ -287,7 +310,7 @@ const useDynamicFieldValidations = (): { }); } - await isApplicationNameAlreadyExist(appName); + await isApplicationNameAlreadyExist(appName, values?.id); if (isApplicationNameAlreadyReserved) { return t("applications:forms.generalDetails.fields.name.validations.duplicate"); diff --git a/features/admin.applications.v1/models/application-templates.ts b/features/admin.applications.v1/models/application-templates.ts index 547119c62ca..c11eabc334c 100644 --- a/features/admin.applications.v1/models/application-templates.ts +++ b/features/admin.applications.v1/models/application-templates.ts @@ -17,7 +17,7 @@ */ import { MainApplicationInterface } from "./application"; -import { DynamicFieldInterface } from "./dynamic-fields"; +import { DynamicFormInterface } from "./dynamic-fields"; export interface ApplicationTemplateCommonInterface { /** @@ -89,9 +89,7 @@ export interface ApplicationTemplateMetadataInterface { /** * Dynamic input fields should be rendered in the application create wizard. */ - form?: { - fields: DynamicFieldInterface[]; - }; + form?: DynamicFormInterface; /** * Indicates whether the application is sharable with sub orgs. */ @@ -136,9 +134,7 @@ export interface ApplicationEditTabMetadataInterface { /** * Dynamic input fields should be rendered in the current tab. */ - form?: { - fields: DynamicFieldInterface[]; - }; + form?: DynamicFormInterface; /** * Guide content for application editing section. */ diff --git a/features/admin.applications.v1/models/dynamic-fields.ts b/features/admin.applications.v1/models/dynamic-fields.ts index 97519a18660..84baa4df4ac 100644 --- a/features/admin.applications.v1/models/dynamic-fields.ts +++ b/features/admin.applications.v1/models/dynamic-fields.ts @@ -17,13 +17,23 @@ */ /** - * Data types required to render the dynamic input fields. + * Interface to define a dynamic form. */ -export interface DynamicFieldInterface { +export interface DynamicFormInterface { + /** + * Dynamic field data needs to be rendered on the form. + */ + fields: DynamicFieldInterface[], /** - * The index of the field. + * Should the form only submit the fields defined above. */ - index: number; + submitDefinedFieldsOnly?: boolean; +} + +/** + * Data types required to render the dynamic input fields. + */ +export interface DynamicFieldInterface { /** * Unique identifier for the input field. */ @@ -31,7 +41,7 @@ export interface DynamicFieldInterface { /** * Aria label of the input field. */ - ariaLabel: string; + "aria-label": string; /** * Name of the input field. */ @@ -57,25 +67,37 @@ export interface DynamicFieldInterface { */ dataComponentId: string; /** - * The maximum length of the field's input. + * Array of validation rules for the field's input. */ - maxLength: string; + validations?: ValidationRule[]; /** - * The minimu length of the field's input. + * Additional meta data need to decorate the dynamic input field. */ - minLength: string; + meta?: DynamicFieldMetadataInterface; +} + +/** + * Interface for the metadata of dynamic fields. + */ +export interface DynamicFieldMetadataInterface { /** - * The width of the input field. + * Properties that should automatically submit along with the current property. */ - width: string; + autoSubmitProperties?: DynamicFieldAutoSubmitPropertyInterface[]; +} + +/** + * Interface for defining an auto-submitting property. + */ +export interface DynamicFieldAutoSubmitPropertyInterface { /** - * Array of validation rules for the field's input. + * The path for the property that should be included in the final form submit payload. */ - validations?: ValidationRule[]; + path: string; /** - * Additional custom attributes need to decorate the dynamic input field. + * The value to be assigned to the specified path. */ - additionalAttributes?: any; + value: any; } /** @@ -89,7 +111,11 @@ export enum DynamicInputFieldTypes { /** * Checkbox field. */ - CHECKBOX = "checkbox" + CHECKBOX = "checkbox", + /** + * Text Area. + */ + TEXTAREA = "textarea" } /** diff --git a/features/admin.applications.v1/models/form.ts b/features/admin.applications.v1/models/form.ts index 2e69f4d882d..a08e31142d6 100644 --- a/features/admin.applications.v1/models/form.ts +++ b/features/admin.applications.v1/models/form.ts @@ -19,11 +19,11 @@ import { MainApplicationInterface } from "./application"; /** - * Interface for the application create wizard form values. + * Interface for the dynamic application create wizard form values. */ export type ApplicationCreateWizardFormValuesInterface = Partial; /** - * Interface for the application create wizard form initial values. + * Interface for the dynamic application create wizard form initial values. */ export type ApplicationCreateWizardFormInitialValuesInterface = Partial; diff --git a/features/admin.applications.v1/pages/application-edit.tsx b/features/admin.applications.v1/pages/application-edit.tsx index 0b1a904331f..96e4d455c1b 100755 --- a/features/admin.applications.v1/pages/application-edit.tsx +++ b/features/admin.applications.v1/pages/application-edit.tsx @@ -26,7 +26,8 @@ import { Popup, TabPageLayout } from "@wso2is/react-components"; -import React, { FunctionComponent, ReactElement, useEffect, useRef, useState } from "react"; +import cloneDeep from "lodash-es/cloneDeep"; +import React, { FunctionComponent, ReactElement, useEffect, useMemo, useRef, useState } from "react"; import { useTranslation } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; import { RouteComponentProps } from "react-router"; @@ -46,11 +47,10 @@ import { InboundProtocolDefaultFallbackTemplates } from "../components/meta/inbo import { ApplicationManagementConstants } from "../constants"; import CustomApplicationTemplate from "../data/application-templates/templates/custom-application/custom-application.json"; -import CustomProtocolApplicationTemplate - from "../data/application-templates/templates/custom-protocol-application/custom-protocol-application.json"; import useApplicationTemplates from "../hooks/use-application-templates"; import { ApplicationAccessTypes, + ApplicationInterface, ApplicationTemplateListItemInterface, State, SupportedAuthProtocolTypes, @@ -91,8 +91,7 @@ const ApplicationEditPage: FunctionComponent = ( const appDescElement: React.MutableRefObject = useRef(null); const { - templates: extensionApplicationTemplates, - isApplicationTemplatesRequestLoading: isExtensionApplicationTemplatesRequestLoading + templates: extensionApplicationTemplates } = useApplicationTemplates(); const allowedScopes: string = useSelector((state: AppState) => state?.auth?.allowedScopes); @@ -120,17 +119,147 @@ const ApplicationEditPage: FunctionComponent = ( const { data: application, mutate: mutateApplicationGetRequest, - isLoading: isApplicationGetRequestLoading, error: applicationGetRequestError } = useGetApplication(applicationId, !!applicationId); /** - * Sets the internal state of the application loading status when the SWR `isLoading` state changes. - * TODO: Remove this once `setIsLoading` is removed from the nested components. + * Load the template that the application is built on. */ useEffect(() => { - setApplicationRequestLoading(isApplicationGetRequestLoading); - }, [ isApplicationGetRequestLoading ]); + + if (!(applicationTemplates + && applicationTemplates instanceof Array + && applicationTemplates.length > 0)) { + + /** + * What's this? + * + * When navigating to an application using the direct url i.e., + * /t/foo/develop/applications/:id#tab=1 this component will be + * mounted. But you see this {@link applicationTemplates}?; it is + * loaded elsewhere. For some reason, requesting the state from + * {@link useSelector} always returns `undefined` when + * directly navigating or refreshing the page. Therefore; it hangs + * without doing anything. It will show a overlay loader but + * that's it. Nothing happens afterwards. + * + * So, as a workaround; if for some reason, the {@link useSelector} + * return no data, we will manually emit the event + * {@link ApplicationActionTypes.SET_APPLICATION_TEMPLATES}. So, doing + * that ensures we load the application templates again. + * + * Consider this as a **failsafe workaround**. We shouldn't rely + * on this. This may get removed in the future. + */ + ApplicationTemplateManagementUtils + .getApplicationTemplates() + .finally(); + + return; + } + + }, [ applicationTemplates ]); + + /** + * Fetch the application details on initial component load. + */ + useEffect(() => { + const path: string[] = history.location.pathname?.split("/"); + const id: string = path[ path?.length - 1 ]; + + setApplicationId(id); + }, []); + + const determineApplicationTemplate = (applicationData: ApplicationInterface): ApplicationInterface => { + + let template: ApplicationTemplateListItemInterface = applicationTemplates?.find( + (template: ApplicationTemplateListItemInterface) => { + return template.id === applicationData.templateId; + }); + + if (applicationData.templateId === ApplicationManagementConstants.CUSTOM_APPLICATION_OIDC + || applicationData.templateId === ApplicationManagementConstants.CUSTOM_APPLICATION_SAML + || applicationData.templateId === ApplicationManagementConstants.CUSTOM_APPLICATION_PASSIVE_STS) { + template = applicationTemplates?.find((template: ApplicationTemplateListItemInterface) => + template.id === CustomApplicationTemplate.id); + } + + /** + * This condition block will help identify the applications created from templates + * on the extensions management API side. + */ + if (!template) { + const extensionTemplate: ApplicationTemplateListInterface = extensionApplicationTemplates?.find( + (template: ApplicationTemplateListInterface) => { + return template?.id === applicationData.templateId; + } + ); + + if (extensionTemplate) { + setExtensionApplicationTemplate(extensionTemplate); + + const relatedLegacyTemplateId: string = InboundProtocolDefaultFallbackTemplates.get( + applicationData.inboundProtocols[ 0 /*We pick the first*/ ].type + ) ?? ApplicationManagementConstants.CUSTOM_APPLICATION_OIDC; + + applicationData.templateId = relatedLegacyTemplateId; + } + } + + setApplicationTemplate(template); + + return applicationData; + }; + + const moderatedApplicationData: ApplicationInterface = useMemo(() => { + if (!isApplicationRequestLoading) { + setApplicationRequestLoading(true); + } + + if (!applicationTemplates || !extensionApplicationTemplates || !application) { + return null; + } + + const clonedApplication: ApplicationInterface = cloneDeep(application); + + /** + * If there's no application {@link ApplicationInterface.templateId} + * in the application instance, then we manually bind a templateId. You + * may ask why templateId is null at this point? Well, one reason + * is that, if you create an application via the API, the templateId + * is an optional property in the model instance. + * + * So, if someone creates one without it, we don't have a template + * to bootstrap the model. When that happens the edit view will not + * work properly. + * + * We have added a mapping for application's inbound protocol + * {@link InboundProtocolDefaultFallbackTemplates} to pick a default + * template if none is present. One caveat is that, if we couldn't + * find any template from the fallback mapping, we always assign + * {@link ApplicationManagementConstants.CUSTOM_APPLICATION_OIDC} to it. + * Additionally @see InboundFormFactory. + */ + if (!clonedApplication?.advancedConfigurations?.fragment && !clonedApplication?.templateId) { + if (clonedApplication?.inboundProtocols?.length > 0) { + clonedApplication.templateId = InboundProtocolDefaultFallbackTemplates.get( + clonedApplication.inboundProtocols[ 0 /*We pick the first*/ ].type + ) ?? ApplicationManagementConstants.CUSTOM_APPLICATION_OIDC; + + return determineApplicationTemplate(clonedApplication); + } + + return clonedApplication; + } + + setApplicationRequestLoading(false); + + return determineApplicationTemplate(clonedApplication); + }, [ + applicationTemplates, + extensionApplicationTemplates, + application + ]); /** * Handles the application get request error. @@ -205,17 +334,7 @@ const ApplicationEditPage: FunctionComponent = ( setIsDescTruncated(true); } } - }, [ appDescElement, isApplicationRequestLoading, isExtensionApplicationTemplatesRequestLoading ]); - - /** - * Fetch the application details on initial component load. - */ - useEffect(() => { - const path: string[] = history.location.pathname?.split("/"); - const id: string = path[ path?.length - 1 ]; - - setApplicationId(id); - }, []); + }, [ appDescElement, isApplicationRequestLoading ]); /** * Fetch the identity provider id & name when calling the app edit through connected apps @@ -233,80 +352,6 @@ const ApplicationEditPage: FunctionComponent = ( idpInfo?.redirectTo && setcallBackRedirect(idpInfo.redirectTo); }); - /** - * Load the template that the application is built on. - */ - useEffect(() => { - - if (!application - || !(applicationTemplates - && applicationTemplates instanceof Array - && applicationTemplates.length > 0)) { - - /** - * What's this? - * - * When navigating to an application using the direct url i.e., - * /t/foo/develop/applications/:id#tab=1 this component will be - * mounted. But you see this {@link applicationTemplates}?; it is - * loaded elsewhere. For some reason, requesting the state from - * {@link useSelector} always returns `undefined` when - * directly navigating or refreshing the page. Therefore; it hangs - * without doing anything. It will show a overlay loader but - * that's it. Nothing happens afterwards. - * - * So, as a workaround; if for some reason, the {@link useSelector} - * return no data, we will manually emit the event - * {@link ApplicationActionTypes.SET_APPLICATION_TEMPLATES}. So, doing - * that ensures we load the application templates again. - * - * Consider this as a **failsafe workaround**. We shouldn't rely - * on this. This may get removed in the future. - */ - ApplicationTemplateManagementUtils - .getApplicationTemplates() - .finally(); - - return; - } - - determineApplicationTemplate(); - - }, [ applicationTemplates, extensionApplicationTemplates, application ]); - - useEffect(() => { - - /** - * If there's no application {@link ApplicationInterface.templateId} - * in the application instance, then we manually bind a templateId. You - * may ask why templateId is null at this point? Well, one reason - * is that, if you create an application via the API, the templateId - * is an optional property in the model instance. - * - * So, if someone creates one without it, we don't have a template - * to bootstrap the model. When that happens the edit view will not - * work properly. - * - * We have added a mapping for application's inbound protocol - * {@link InboundProtocolDefaultFallbackTemplates} to pick a default - * template if none is present. One caveat is that, if we couldn't - * find any template from the fallback mapping, we always assign - * {@link ApplicationManagementConstants.CUSTOM_APPLICATION_OIDC} to it. - * Additionally @see InboundFormFactory. - */ - if (!application?.advancedConfigurations?.fragment && !application?.templateId) { - if (application?.inboundProtocols?.length > 0) { - // FIXME: `application` object is directly mutated here causing unpredictable side effects. - // Tracker: https://github.com/wso2/product-is/issues/20016 - application.templateId = InboundProtocolDefaultFallbackTemplates.get( - application.inboundProtocols[ 0 /*We pick the first*/ ].type - ) ?? ApplicationManagementConstants.CUSTOM_APPLICATION_OIDC; - determineApplicationTemplate(); - } - } - - }, [ isApplicationRequestLoading, application, isExtensionApplicationTemplatesRequestLoading ]); - /** * Push to 404 if application edit feature is disabled. */ @@ -322,53 +367,6 @@ const ApplicationEditPage: FunctionComponent = ( } }, [ featureConfig ]); - const determineApplicationTemplate = () => { - - let template: ApplicationTemplateListItemInterface = applicationTemplates?.find( - (template: ApplicationTemplateListItemInterface) => { - return template.id === application.templateId; - }); - - if (application.templateId === ApplicationManagementConstants.CUSTOM_APPLICATION_OIDC - || application.templateId === ApplicationManagementConstants.CUSTOM_APPLICATION_SAML - || application.templateId === ApplicationManagementConstants.CUSTOM_APPLICATION_PASSIVE_STS) { - template = applicationTemplates?.find((template: ApplicationTemplateListItemInterface) => - template.id === CustomApplicationTemplate.id); - } - - /** - * This condition block will help identify the applications created from templates - * on the extensions management API side. - */ - if (!template) { - const extensionTemplate: ApplicationTemplateListInterface = extensionApplicationTemplates?.find( - (template: ApplicationTemplateListInterface) => { - return template?.id === application.templateId; - } - ); - - if (extensionTemplate) { - setExtensionApplicationTemplate(extensionTemplate); - - const relatedLegacyTemplateId: string = InboundProtocolDefaultFallbackTemplates.get( - application.inboundProtocols[ 0 /*We pick the first*/ ].type - ) ?? ApplicationManagementConstants.CUSTOM_APPLICATION_OIDC; - - if (relatedLegacyTemplateId === ApplicationManagementConstants.CUSTOM_APPLICATION_OIDC - || relatedLegacyTemplateId === ApplicationManagementConstants.CUSTOM_APPLICATION_SAML - || relatedLegacyTemplateId === ApplicationManagementConstants.CUSTOM_APPLICATION_PASSIVE_STS) { - template = applicationTemplates?.find((template: ApplicationTemplateListItemInterface) => - template.id === CustomApplicationTemplate?.id); - } else { - template = applicationTemplates?.find((template: ApplicationTemplateListItemInterface) => - template.id === CustomProtocolApplicationTemplate?.id); - } - } - } - - setApplicationTemplate(template); - }; - /** * Handles the back button click event. */ @@ -464,7 +462,7 @@ const ApplicationEditPage: FunctionComponent = ( const resolveReadOnlyState = (): boolean => { return urlSearchParams.get(ApplicationManagementConstants.APP_READ_ONLY_STATE_URL_SEARCH_PARAM_KEY) === "true" - || application?.access === ApplicationAccessTypes.READ + || moderatedApplicationData?.access === ApplicationAccessTypes.READ || !hasRequiredScopes(featureConfig?.applications, featureConfig?.applications?.scopes?.update, allowedScopes); }; @@ -475,7 +473,7 @@ const ApplicationEditPage: FunctionComponent = ( * @returns Template label. */ const resolveTemplateLabel = (): ReactElement => { - if (application?.advancedConfigurations?.fragment) { + if (moderatedApplicationData?.advancedConfigurations?.fragment) { return (
Tnkm5WB$;;usVaREM%0QX7mh$_qKVLqD z5*~+XMlh^47*`hmT(qc;nCYDDPgMy0VgJ{`-gjRM+$*y}QEv8eHT=l%SdVpPdqikY zT$9!YC?AMflddzBU?qwDyZ9l|;&$gQlC)ppC;iK(yI;KxsC)195KHFNwuzaRH>-bl zoVO}`(uz@QyF2H7dtE0;JJE|UGZGAUMkt6Q25ivKClkhfU~@cJ!{D6P$Fyu>?jB}d zkJ~hcMqk?72nZdX_;*d+zs)@suygK@?d;e5ikLmH{i#)#R~CFn_$AP+>q>)xJbK?gbP%Y#(MP@~9cAhKwcXrliLLnEc|5pLwWX^6WkJ3j`SP*K zu*6;?BC$W#8VGy!PGT0!lr%5d1L<509lk|KIed`aW-ObWZ4s?$VoBn>o9|JL%&x_m z`~mkW#`ys*p^yF2q_DIbqhQNOWg3IF>V9cQjVN0CDaRVv-#iHmVB=&-4cTgwW3&Ms zQYK%(WI6a6G9U|MHYHym`6n3M8hMUMg_{l_9&H5P5@L(`QF)o+TalmbLzd0$PTwII z1t0Eb>>=F$48b=(Ne`2?`f}~UFYoUZq`(q57T{F`@!1oE}Yc@L1XVyb|+lL-h@jQu*<{2l(Ki<=0}oQ;fK$sA%5F>hw;=8P?xh zps#m`DQk>W_hzvmMHds-G{9eA8G2PBNP4syiaNm-zZHhyd7!-4&%F2(!~4;7i4|{` zQ9EkDeBQ?62%V_rI}E{>R0nNG-6}k{T~YHG3xxO0R+J1dGui1J5Sw_=pVSI{ST-(B zdH#NP1uRdRxp6ttWE@rp-|Q5EUtzjoMelxh$sl8Z{7pLQY{zl!Z1InLW8nIU(hkXv z*EBeg6M{KBrlZVN$FXWhT!biJ1KiNz_m>>I8BnzuwURbuxyrh3w$K-wNRS5+@7rb7bvQc4q;3G|*>@_t#PvHyqGG?)b|d!{P;`W@@^7TUNY(7W z1YZD-eA?U)Q~`N7HGapG{zFqEn|3ZJ+A8iAonjH3Z5s}V<#Ls14`*YD*glxc zcm3={Mw|j`)Ju?~^_i0gttbax-koNMEyHgukSRH!V&&>oiuT^HfedgN+#`xKFF8{J zi}gmRM)lWs+PP2+b{~P!wK~)foES$WK`naD7QeNrOdi`zghO>tU5C*20#o+xSX6uqW7#CVa) zwF53Ng(ws0bUbZ9zDm5vjG(_JZ>c<8NPzl=>^+Ds0$|UXEbo0Tz#?V&2(2`zmShV^ zgJGRh!<$}NT|ejJ;=#NK!{p5eb$O}xfYlSF4#6T*Mfypo7H5JN(d?r%fC4cz-kI~9 zaunU?K9@ghnOr20s2kfseqNW_c+I3U+V^X=#^QYbd~(FK;hotk!YfAn?%h_r5>_O{ zBzMJevZ#=ED!%-OouWRZ?HUl@;W(H^tRw0$1 z@#8W3f)kyWWWrWp54D_~Tp&2on-4xq;JjgUev=6wLgr z;h6E!KHL2Q@iUSTs!_u$&;fIUugW$2+ zTy0i}O4ca($t$KMkIw|=+rWnIq{y4ID0`!N%Ax}{)8PjfBUV=^D3D>#yJSn#*o947 zE)591@HvGMdV9H*?GVDzUAv3<9dUxfg zSTd+d`&;00Etg&t}FX!koy4$+@Sz5fe>_3^ai z*Pe>>15;re8SM(HKf4GV1x;NWuD{jQ&{`>YmHCbliF*3rYi!oH8Qb}vv2Kos zn(g>n(rp Date: Wed, 15 May 2024 12:00:01 +0530 Subject: [PATCH 022/114] add unit test for application templates provider --- .../__mocks__/application-template.ts | 214 ++++++++++++++++++ .../mock-application-templates-component.tsx | 73 ++++++ .../__tests__/__mocks__/permissions.ts | 25 ++ .../application-templates-provider.test.tsx | 54 +++++ 4 files changed, 366 insertions(+) create mode 100644 features/admin.applications.v1/__tests__/__mocks__/application-template.ts create mode 100644 features/admin.applications.v1/__tests__/__mocks__/mock-application-templates-component.tsx create mode 100644 features/admin.applications.v1/__tests__/__mocks__/permissions.ts create mode 100644 features/admin.applications.v1/__tests__/provider/application-templates-provider.test.tsx diff --git a/features/admin.applications.v1/__tests__/__mocks__/application-template.ts b/features/admin.applications.v1/__tests__/__mocks__/application-template.ts new file mode 100644 index 00000000000..ec09d838a68 --- /dev/null +++ b/features/admin.applications.v1/__tests__/__mocks__/application-template.ts @@ -0,0 +1,214 @@ +/** +* Copyright (c) 2024, WSO2 Inc. (http://www.wso2.com) All Rights Reserved. +* +* WSO2 LLC. licenses this file to you under the Apache License, +* Version 2.0 (the "License"); you may not use this file except +* in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +import { ApplicationTemplateCategories, ApplicationTemplateListInterface, CategorizedApplicationTemplatesInterface } from "../../models/application-templates"; + +export const applicationTemplatesListMockResponse: ApplicationTemplateListInterface[] = [ + { + id: "single-page-application", + name: "Single-Page Application", + description: "A web application that runs application logic in the browser.", + image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/spa-template.svg", + displayOrder: 0, + tags: [ + "Default", + "OIDC" + ], + customAttributes: [ + { + "value": "[{\"displayName\":\"React\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/react-logo.svg\"},{\"displayName\":\"Angular\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/angular-logo.svg\"},{\"displayName\":\"Vue\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/vue-logo.svg\"},{\"displayName\":\"Javascript\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/javascript-logo.svg\"}]", + "key": "supportedTechnologies" + } + ], + category: ApplicationTemplateCategories.DEFAULT, + type: "applications", + self: "/api/server/v1/extensions/applications/single-page-application" + }, + { + id: "traditional-web-application", + name: "Traditional Web Application", + description: "A web application that runs application logic on the server.", + image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/traditional-template.svg", + displayOrder: 1, + tags: [ + "Default", + "OIDC", + "SAML" + ], + customAttributes: [ + { + "value": "[{\"displayName\":\"Java EE\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/java-logo.svg\"},{\"displayName\":\".NET\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/dotnet-logo.svg\"},{\"displayName\":\"Node.js\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/nodejs-logo.svg\"},{\"displayName\":\"PHP\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/php-logo.svg\"}]", + "key": "supportedTechnologies" + } + ], + category: ApplicationTemplateCategories.DEFAULT, + type: "applications", + self: "/api/server/v1/extensions/applications/traditional-web-application" + }, + { + id: "custom-application", + name: "Standard-Based Application", + description: "Applications built using standard protocols.", + image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/standard-based-template.svg", + displayOrder: 3, + tags: [ + "Default", + "OIDC", + "SAML", + "WS-Federation" + ], + customAttributes: [ + { + "value": "[{\"displayName\":\"OIDC\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/openid-connect.png\"},{\"displayName\":\"SAML\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/saml.png\"},{\"displayName\":\"WS-Federation\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/ws-fed.png\"}]", + "key": "supportedTechnologies" + } + ], + category: ApplicationTemplateCategories.DEFAULT, + type: "applications", + self: "/api/server/v1/extensions/applications/custom-application" + }, + { + id: "google-workspace", + name: "Google Workspace", + description: "A suite of cloud-based tools like Gmail, Google Drive, and Docs, offering one platform for email, storage, document editing, and communication.", + image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/google-workspace.png", + displayOrder: 6, + tags: [ + "SAML", + "SSO" + ], + customAttributes: [ + { + "value": "false", + "key": "comingSoon" + } + ], + category: ApplicationTemplateCategories.SSO_INTEGRATION, + type: "applications", + self: "/api/server/v1/extensions/applications/google-workspace" + } +]; + +export const categorizedApplicationTemplatesListMockResponse: CategorizedApplicationTemplatesInterface[] = [ + { + description: "applications:templates.categories.default.description", + displayName: "applications:templates.categories.default.displayName", + displayOrder: 0, + id: ApplicationTemplateCategories.DEFAULT, + templates: [ + { + id: "single-page-application", + name: "Single-Page Application", + description: "A web application that runs application logic in the browser.", + image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/spa-template.svg", + displayOrder: 0, + tags: [ + "Default", + "OIDC" + ], + customAttributes: [ + { + "value": "[{\"displayName\":\"React\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/react-logo.svg\"},{\"displayName\":\"Angular\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/angular-logo.svg\"},{\"displayName\":\"Vue\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/vue-logo.svg\"},{\"displayName\":\"Javascript\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/javascript-logo.svg\"}]", + "key": "supportedTechnologies" + } + ], + category: ApplicationTemplateCategories.DEFAULT, + type: "applications", + self: "/api/server/v1/extensions/applications/single-page-application" + }, + { + id: "traditional-web-application", + name: "Traditional Web Application", + description: "A web application that runs application logic on the server.", + image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/traditional-template.svg", + displayOrder: 1, + tags: [ + "Default", + "OIDC", + "SAML" + ], + customAttributes: [ + { + "value": "[{\"displayName\":\"Java EE\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/java-logo.svg\"},{\"displayName\":\".NET\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/dotnet-logo.svg\"},{\"displayName\":\"Node.js\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/nodejs-logo.svg\"},{\"displayName\":\"PHP\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/php-logo.svg\"}]", + "key": "supportedTechnologies" + } + ], + category: ApplicationTemplateCategories.DEFAULT, + type: "applications", + self: "/api/server/v1/extensions/applications/traditional-web-application" + }, + { + id: "custom-application", + name: "Standard-Based Application", + description: "Applications built using standard protocols.", + image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/standard-based-template.svg", + displayOrder: 3, + tags: [ + "Default", + "OIDC", + "SAML", + "WS-Federation" + ], + customAttributes: [ + { + "value": "[{\"displayName\":\"OIDC\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/openid-connect.png\"},{\"displayName\":\"SAML\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/saml.png\"},{\"displayName\":\"WS-Federation\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/ws-fed.png\"}]", + "key": "supportedTechnologies" + } + ], + category: ApplicationTemplateCategories.DEFAULT, + type: "applications", + self: "/api/server/v1/extensions/applications/custom-application" + } + ] + }, + { + description: "applications:templates.categories.ssoIntegration.description", + displayName: "applications:templates.categories.ssoIntegration.displayName", + displayOrder: 1, + id: ApplicationTemplateCategories.SSO_INTEGRATION, + templates: [ + { + id: "google-workspace", + name: "Google Workspace", + description: "A suite of cloud-based tools like Gmail, Google Drive, and Docs, offering one platform for email, storage, document editing, and communication.", + image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/google-workspace.png", + displayOrder: 6, + tags: [ + "SAML", + "SSO" + ], + customAttributes: [ + { + "value": "false", + "key": "comingSoon" + } + ], + category: ApplicationTemplateCategories.SSO_INTEGRATION, + type: "applications", + self: "/api/server/v1/extensions/applications/google-workspace" + } + ] + }, + { + description: "applications:templates.categories.other.description", + displayName: "applications:templates.categories.other.displayName", + displayOrder: Infinity, + id: "OTHER", + templates: [] + } +] diff --git a/features/admin.applications.v1/__tests__/__mocks__/mock-application-templates-component.tsx b/features/admin.applications.v1/__tests__/__mocks__/mock-application-templates-component.tsx new file mode 100644 index 00000000000..927fff51276 --- /dev/null +++ b/features/admin.applications.v1/__tests__/__mocks__/mock-application-templates-component.tsx @@ -0,0 +1,73 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { IdentifiableComponentInterface } from "@wso2is/core/models"; +import React, { FunctionComponent, PropsWithChildren } from "react"; +import useApplicationTemplates from "../../hooks/use-application-templates"; +import { CategorizedApplicationTemplatesInterface } from "../../models/application-templates"; + +/** + * Props interface for the `MockApplicationTemplatesComponent`. + */ +export interface MockApplicationTemplatesComponentProps extends IdentifiableComponentInterface {}; + +/** + * Mock application templates using components. + * + * @param props - Props for the `MockApplicationTemplatesComponent`. + * @returns MockApplicationTemplatesComponent + */ +const MockApplicationTemplatesComponent: FunctionComponent> = ( + props: PropsWithChildren +) => { + const { + "data-componentid": componentId + } = props; + + const { + categorizedTemplates, + isApplicationTemplatesRequestLoading, + templates + } = useApplicationTemplates(); + + return ( + <> + { + isApplicationTemplatesRequestLoading !== undefined + ?
+ : null + } + { + categorizedTemplates.map((template: CategorizedApplicationTemplatesInterface) => ( +
+ { `Number of templates-${template?.templates?.length}` } +
+ )) + } + { +
{ `Number of templates-${templates?.length}` }
+ } + + ) +} + +MockApplicationTemplatesComponent.defaultProps = { + "data-componentid": "mock-application-templates-component" +} + +export default MockApplicationTemplatesComponent; diff --git a/features/admin.applications.v1/__tests__/__mocks__/permissions.ts b/features/admin.applications.v1/__tests__/__mocks__/permissions.ts new file mode 100644 index 00000000000..6407a87d082 --- /dev/null +++ b/features/admin.applications.v1/__tests__/__mocks__/permissions.ts @@ -0,0 +1,25 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export const fullPermissions: string = [ + "internal_login", + ...window[ "AppUtils" ]?.getConfig()?.ui?.features?.applications?.scopes?.create, + ...window[ "AppUtils" ]?.getConfig()?.ui?.features?.applications?.scopes?.delete, + ...window[ "AppUtils" ]?.getConfig()?.ui?.features?.applications?.scopes?.read, + ...window[ "AppUtils" ]?.getConfig()?.ui?.features?.applications?.scopes?.update +].join(" "); diff --git a/features/admin.applications.v1/__tests__/provider/application-templates-provider.test.tsx b/features/admin.applications.v1/__tests__/provider/application-templates-provider.test.tsx new file mode 100644 index 00000000000..8b59889fc2b --- /dev/null +++ b/features/admin.applications.v1/__tests__/provider/application-templates-provider.test.tsx @@ -0,0 +1,54 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from "react"; +import { render, screen } from "../../../test-configs"; +import { + applicationTemplatesListMockResponse, categorizedApplicationTemplatesListMockResponse +} from "../__mocks__/application-template"; +import "@testing-library/jest-dom"; +import * as useGetApplicationTemplates from "../../api/use-get-application-templates"; +import ApplicationTemplatesProvider from "../../provider/application-templates-provider"; +import MockApplicationTemplatesComponent from "../__mocks__/mock-application-templates-component"; +import { CategorizedApplicationTemplatesInterface } from "../../models/application-templates"; + +describe("[Applications Management Feature] - Application Templates Provider", () => { + const useGetApplicationTemplatesMock: jest.SpyInstance = jest.spyOn(useGetApplicationTemplates, "default"); + + useGetApplicationTemplatesMock.mockImplementation(() => ({ + data: applicationTemplatesListMockResponse, + error: null, + isLoading: false, + isValidating: false, + mutate: jest.fn() + })); + + test("Test whether the application templates provider provides the application templates list correctly.", () => { + render( + + + + ); + + expect(screen.getByTestId("mock-application-templates-component-loading-status")).toBeInTheDocument(); + expect(screen.getByTestId("mock-application-templates-component-templates").innerHTML).toContain(`Number of templates-${applicationTemplatesListMockResponse.length}`); + categorizedApplicationTemplatesListMockResponse.forEach((item: CategorizedApplicationTemplatesInterface) => { + expect(screen.getByTestId(`mock-application-templates-component-${item.id}`).innerHTML).toContain(`Number of templates-${item.templates.length}`); + }); + }); +}); From 3bc693ec99b8d0d9215a5f862c25d8df54b02f60 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Wed, 15 May 2024 12:36:54 +0530 Subject: [PATCH 023/114] fix eslint errors --- .../__mocks__/application-template.ts | 322 ++++++++++++------ .../mock-application-templates-component.tsx | 18 +- .../application-templates-provider.test.tsx | 12 +- 3 files changed, 236 insertions(+), 116 deletions(-) diff --git a/features/admin.applications.v1/__tests__/__mocks__/application-template.ts b/features/admin.applications.v1/__tests__/__mocks__/application-template.ts index ec09d838a68..84a63211f35 100644 --- a/features/admin.applications.v1/__tests__/__mocks__/application-template.ts +++ b/features/admin.applications.v1/__tests__/__mocks__/application-template.ts @@ -1,106 +1,160 @@ /** -* Copyright (c) 2024, WSO2 Inc. (http://www.wso2.com) All Rights Reserved. -* -* WSO2 LLC. licenses this file to you under the Apache License, -* Version 2.0 (the "License"); you may not use this file except -* in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, -* software distributed under the License is distributed on an -* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -* KIND, either express or implied. See the License for the -* specific language governing permissions and limitations -* under the License. -*/ + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ -import { ApplicationTemplateCategories, ApplicationTemplateListInterface, CategorizedApplicationTemplatesInterface } from "../../models/application-templates"; +import { + ApplicationTemplateCategories, + ApplicationTemplateListInterface, + CategorizedApplicationTemplatesInterface +} from "../../models/application-templates"; export const applicationTemplatesListMockResponse: ApplicationTemplateListInterface[] = [ { - id: "single-page-application", - name: "Single-Page Application", + category: ApplicationTemplateCategories.DEFAULT, + customAttributes: [ + { + key: "supportedTechnologies", + value: [ + { + displayName: "React", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/react-logo.svg" + }, + { + displayName: "Angular", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/angular-logo.svg" + }, + { + displayName: "Vue", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/vue-logo.svg" + }, + { + displayName: "Javascript", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/" + + "javascript-logo.svg" + } + ] + } + ], description: "A web application that runs application logic in the browser.", - image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/spa-template.svg", displayOrder: 0, + id: "single-page-application", + image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/spa-template.svg", + name: "Single-Page Application", + self: "/api/server/v1/extensions/applications/single-page-application", tags: [ "Default", "OIDC" ], + type: "applications" + }, + { + category: ApplicationTemplateCategories.DEFAULT, customAttributes: [ { - "value": "[{\"displayName\":\"React\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/react-logo.svg\"},{\"displayName\":\"Angular\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/angular-logo.svg\"},{\"displayName\":\"Vue\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/vue-logo.svg\"},{\"displayName\":\"Javascript\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/javascript-logo.svg\"}]", - "key": "supportedTechnologies" + key: "supportedTechnologies", + value: [ + { + displayName: "Java EE", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/java-logo.svg" + }, + { + displayName: ".NET", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/dotnet-logo.svg" + }, + { + displayName: "Node.js", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/nodejs-logo.svg" + }, + { + displayName: "PHP", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/php-logo.svg" + } + ] } ], - category: ApplicationTemplateCategories.DEFAULT, - type: "applications", - self: "/api/server/v1/extensions/applications/single-page-application" - }, - { - id: "traditional-web-application", - name: "Traditional Web Application", description: "A web application that runs application logic on the server.", - image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/traditional-template.svg", displayOrder: 1, + id: "traditional-web-application", + image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/traditional-template.svg", + name: "Traditional Web Application", + self: "/api/server/v1/extensions/applications/traditional-web-application", tags: [ "Default", "OIDC", "SAML" ], + type: "applications" + }, + { + category: ApplicationTemplateCategories.DEFAULT, customAttributes: [ { - "value": "[{\"displayName\":\"Java EE\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/java-logo.svg\"},{\"displayName\":\".NET\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/dotnet-logo.svg\"},{\"displayName\":\"Node.js\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/nodejs-logo.svg\"},{\"displayName\":\"PHP\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/php-logo.svg\"}]", - "key": "supportedTechnologies" + key: "supportedTechnologies", + value: [ + { + displayName: "OIDC", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/" + + "openid-connect.png" + }, + { + displayName: "SAML", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/saml.png" + }, + { + displayName: "WS-Federation", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/ws-fed.png" + } + ] } ], - category: ApplicationTemplateCategories.DEFAULT, - type: "applications", - self: "/api/server/v1/extensions/applications/traditional-web-application" - }, - { - id: "custom-application", - name: "Standard-Based Application", description: "Applications built using standard protocols.", - image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/standard-based-template.svg", displayOrder: 3, + id: "custom-application", + image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/standard-based-template.svg", + name: "Standard-Based Application", + self: "/api/server/v1/extensions/applications/custom-application", tags: [ "Default", "OIDC", "SAML", "WS-Federation" ], + type: "applications" + }, + { + category: ApplicationTemplateCategories.SSO_INTEGRATION, customAttributes: [ { - "value": "[{\"displayName\":\"OIDC\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/openid-connect.png\"},{\"displayName\":\"SAML\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/saml.png\"},{\"displayName\":\"WS-Federation\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/ws-fed.png\"}]", - "key": "supportedTechnologies" + key: "comingSoon", + value: "false" } ], - category: ApplicationTemplateCategories.DEFAULT, - type: "applications", - self: "/api/server/v1/extensions/applications/custom-application" - }, - { + description: "A suite of cloud-based tools like Gmail, Google Drive, and Docs, offering" + + " one platform for email, storage, document editing, and communication.", + displayOrder: 6, id: "google-workspace", - name: "Google Workspace", - description: "A suite of cloud-based tools like Gmail, Google Drive, and Docs, offering one platform for email, storage, document editing, and communication.", image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/google-workspace.png", - displayOrder: 6, + name: "Google Workspace", + self: "/api/server/v1/extensions/applications/google-workspace", tags: [ "SAML", "SSO" ], - customAttributes: [ - { - "value": "false", - "key": "comingSoon" - } - ], - category: ApplicationTemplateCategories.SSO_INTEGRATION, - type: "applications", - self: "/api/server/v1/extensions/applications/google-workspace" + type: "applications" } ]; @@ -112,67 +166,126 @@ export const categorizedApplicationTemplatesListMockResponse: CategorizedApplica id: ApplicationTemplateCategories.DEFAULT, templates: [ { - id: "single-page-application", - name: "Single-Page Application", + category: ApplicationTemplateCategories.DEFAULT, + customAttributes: [ + { + key: "supportedTechnologies", + value: [ + { + displayName: "React", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/" + + "technologies/react-logo.svg" + }, + { + displayName: "Angular", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/" + + "technologies/angular-logo.svg" + }, + { + displayName: "Vue", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/" + + "technologies/vue-logo.svg" + }, + { + displayName: "Javascript", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/" + + "javascript-logo.svg" + } + ] + } + ], description: "A web application that runs application logic in the browser.", - image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/spa-template.svg", displayOrder: 0, + id: "single-page-application", + image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/spa-template.svg", + name: "Single-Page Application", + self: "/api/server/v1/extensions/applications/single-page-application", tags: [ "Default", "OIDC" ], + type: "applications" + }, + { + category: ApplicationTemplateCategories.DEFAULT, customAttributes: [ { - "value": "[{\"displayName\":\"React\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/react-logo.svg\"},{\"displayName\":\"Angular\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/angular-logo.svg\"},{\"displayName\":\"Vue\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/vue-logo.svg\"},{\"displayName\":\"Javascript\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/javascript-logo.svg\"}]", - "key": "supportedTechnologies" + key: "supportedTechnologies", + value: [ + { + displayName: "Java EE", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/" + + "technologies/java-logo.svg" + }, + { + displayName: ".NET", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/" + + "technologies/dotnet-logo.svg" + }, + { + displayName: "Node.js", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/" + + "technologies/nodejs-logo.svg" + }, + { + displayName: "PHP", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/" + + "technologies/php-logo.svg" + } + ] } ], - category: ApplicationTemplateCategories.DEFAULT, - type: "applications", - self: "/api/server/v1/extensions/applications/single-page-application" - }, - { - id: "traditional-web-application", - name: "Traditional Web Application", description: "A web application that runs application logic on the server.", - image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/traditional-template.svg", displayOrder: 1, + id: "traditional-web-application", + image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/" + + "illustrations/traditional-template.svg", + name: "Traditional Web Application", + self: "/api/server/v1/extensions/applications/traditional-web-application", tags: [ "Default", "OIDC", "SAML" ], + type: "applications" + }, + { + category: ApplicationTemplateCategories.DEFAULT, customAttributes: [ { - "value": "[{\"displayName\":\"Java EE\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/java-logo.svg\"},{\"displayName\":\".NET\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/dotnet-logo.svg\"},{\"displayName\":\"Node.js\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/nodejs-logo.svg\"},{\"displayName\":\"PHP\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/php-logo.svg\"}]", - "key": "supportedTechnologies" + key: "supportedTechnologies", + value: [ + { + displayName: "OIDC", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/" + + "openid-connect.png" + }, + { + displayName: "SAML", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/saml.png" + }, + { + displayName: "WS-Federation", + logo: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/" + + "technologies/ws-fed.png" + } + ] } ], - category: ApplicationTemplateCategories.DEFAULT, - type: "applications", - self: "/api/server/v1/extensions/applications/traditional-web-application" - }, - { - id: "custom-application", - name: "Standard-Based Application", description: "Applications built using standard protocols.", - image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/standard-based-template.svg", displayOrder: 3, + id: "custom-application", + image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/" + + "illustrations/standard-based-template.svg", + name: "Standard-Based Application", + self: "/api/server/v1/extensions/applications/custom-application", tags: [ "Default", "OIDC", "SAML", "WS-Federation" ], - customAttributes: [ - { - "value": "[{\"displayName\":\"OIDC\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/openid-connect.png\"},{\"displayName\":\"SAML\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/saml.png\"},{\"displayName\":\"WS-Federation\",\"logo\":\"{{CONSOLE_BASE_URL}}/resources/applications/assets/images/technologies/ws-fed.png\"}]", - "key": "supportedTechnologies" - } - ], - category: ApplicationTemplateCategories.DEFAULT, - type: "applications", - self: "/api/server/v1/extensions/applications/custom-application" + type: "applications" } ] }, @@ -183,24 +296,25 @@ export const categorizedApplicationTemplatesListMockResponse: CategorizedApplica id: ApplicationTemplateCategories.SSO_INTEGRATION, templates: [ { + category: ApplicationTemplateCategories.SSO_INTEGRATION, + customAttributes: [ + { + key: "comingSoon", + value: "false" + } + ], + description: "A suite of cloud-based tools like Gmail, Google Drive, and Docs, offering" + + " one platform for email, storage, document editing, and communication.", + displayOrder: 6, id: "google-workspace", - name: "Google Workspace", - description: "A suite of cloud-based tools like Gmail, Google Drive, and Docs, offering one platform for email, storage, document editing, and communication.", image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/google-workspace.png", - displayOrder: 6, + name: "Google Workspace", + self: "/api/server/v1/extensions/applications/google-workspace", tags: [ "SAML", "SSO" ], - customAttributes: [ - { - "value": "false", - "key": "comingSoon" - } - ], - category: ApplicationTemplateCategories.SSO_INTEGRATION, - type: "applications", - self: "/api/server/v1/extensions/applications/google-workspace" + type: "applications" } ] }, @@ -211,4 +325,4 @@ export const categorizedApplicationTemplatesListMockResponse: CategorizedApplica id: "OTHER", templates: [] } -] +]; diff --git a/features/admin.applications.v1/__tests__/__mocks__/mock-application-templates-component.tsx b/features/admin.applications.v1/__tests__/__mocks__/mock-application-templates-component.tsx index 927fff51276..3fc7cd3d182 100644 --- a/features/admin.applications.v1/__tests__/__mocks__/mock-application-templates-component.tsx +++ b/features/admin.applications.v1/__tests__/__mocks__/mock-application-templates-component.tsx @@ -24,7 +24,7 @@ import { CategorizedApplicationTemplatesInterface } from "../../models/applicati /** * Props interface for the `MockApplicationTemplatesComponent`. */ -export interface MockApplicationTemplatesComponentProps extends IdentifiableComponentInterface {}; +export type MockApplicationTemplatesComponentProps = IdentifiableComponentInterface; /** * Mock application templates using components. @@ -32,7 +32,9 @@ export interface MockApplicationTemplatesComponentProps extends IdentifiableComp * @param props - Props for the `MockApplicationTemplatesComponent`. * @returns MockApplicationTemplatesComponent */ -const MockApplicationTemplatesComponent: FunctionComponent> = ( +const MockApplicationTemplatesComponent: FunctionComponent< + PropsWithChildren +> = ( props: PropsWithChildren ) => { const { @@ -54,20 +56,22 @@ const MockApplicationTemplatesComponent: FunctionComponent ( -
+
{ `Number of templates-${template?.templates?.length}` }
)) } { -
{ `Number of templates-${templates?.length}` }
+
+ { `Number of templates-${templates?.length}` } +
} - ) -} + ); +}; MockApplicationTemplatesComponent.defaultProps = { "data-componentid": "mock-application-templates-component" -} +}; export default MockApplicationTemplatesComponent; diff --git a/features/admin.applications.v1/__tests__/provider/application-templates-provider.test.tsx b/features/admin.applications.v1/__tests__/provider/application-templates-provider.test.tsx index 8b59889fc2b..24bfcc75bcf 100644 --- a/features/admin.applications.v1/__tests__/provider/application-templates-provider.test.tsx +++ b/features/admin.applications.v1/__tests__/provider/application-templates-provider.test.tsx @@ -18,14 +18,14 @@ import React from "react"; import { render, screen } from "../../../test-configs"; +import * as useGetApplicationTemplates from "../../api/use-get-application-templates"; +import { CategorizedApplicationTemplatesInterface } from "../../models/application-templates"; +import ApplicationTemplatesProvider from "../../provider/application-templates-provider"; import { applicationTemplatesListMockResponse, categorizedApplicationTemplatesListMockResponse } from "../__mocks__/application-template"; import "@testing-library/jest-dom"; -import * as useGetApplicationTemplates from "../../api/use-get-application-templates"; -import ApplicationTemplatesProvider from "../../provider/application-templates-provider"; import MockApplicationTemplatesComponent from "../__mocks__/mock-application-templates-component"; -import { CategorizedApplicationTemplatesInterface } from "../../models/application-templates"; describe("[Applications Management Feature] - Application Templates Provider", () => { const useGetApplicationTemplatesMock: jest.SpyInstance = jest.spyOn(useGetApplicationTemplates, "default"); @@ -46,9 +46,11 @@ describe("[Applications Management Feature] - Application Templates Provider", ( ); expect(screen.getByTestId("mock-application-templates-component-loading-status")).toBeInTheDocument(); - expect(screen.getByTestId("mock-application-templates-component-templates").innerHTML).toContain(`Number of templates-${applicationTemplatesListMockResponse.length}`); + expect(screen.getByTestId("mock-application-templates-component-templates").innerHTML) + .toContain(`Number of templates-${applicationTemplatesListMockResponse.length}`); categorizedApplicationTemplatesListMockResponse.forEach((item: CategorizedApplicationTemplatesInterface) => { - expect(screen.getByTestId(`mock-application-templates-component-${item.id}`).innerHTML).toContain(`Number of templates-${item.templates.length}`); + expect(screen.getByTestId(`mock-application-templates-component-${item.id}`).innerHTML) + .toContain(`Number of templates-${item.templates.length}`); }); }); }); From 27c7b1ca87be8e8dca8c690dae8f9e39bb1529f5 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Thu, 16 May 2024 15:14:53 +0530 Subject: [PATCH 024/114] add test for the application list component --- .../__mocks__/application-template.ts | 103 +++++++-- .../components/application-list.test.tsx | 63 ++++++ .../application-templates-provider.test.tsx | 4 +- features/test-configs/__mocks__/global.ts | 3 +- .../__mocks__/redux/redux-store-state.ts | 204 +++++++++++++++++- 5 files changed, 355 insertions(+), 22 deletions(-) create mode 100644 features/admin.applications.v1/__tests__/components/application-list.test.tsx diff --git a/features/admin.applications.v1/__tests__/__mocks__/application-template.ts b/features/admin.applications.v1/__tests__/__mocks__/application-template.ts index 84a63211f35..ff581984415 100644 --- a/features/admin.applications.v1/__tests__/__mocks__/application-template.ts +++ b/features/admin.applications.v1/__tests__/__mocks__/application-template.ts @@ -16,6 +16,7 @@ * under the License. */ +import { ApplicationAccessTypes, ApplicationListInterface } from "../../models"; import { ApplicationTemplateCategories, ApplicationTemplateListInterface, @@ -143,13 +144,13 @@ export const applicationTemplatesListMockResponse: ApplicationTemplateListInterf value: "false" } ], - description: "A suite of cloud-based tools like Gmail, Google Drive, and Docs, offering" - + " one platform for email, storage, document editing, and communication.", - displayOrder: 6, - id: "google-workspace", - image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/google-workspace.png", - name: "Google Workspace", - self: "/api/server/v1/extensions/applications/google-workspace", + description: "Customer relationship management (CRM) platform that enables businesses to manage their sales" + + ", marketing, and customer service operations efficiently.", + displayOrder: 7, + id: "salesforce", + image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/salesforce.png", + name: "Salesforce", + self: "/api/server/v1/extensions/applications/salesforce", tags: [ "SAML", "SSO" @@ -303,13 +304,13 @@ export const categorizedApplicationTemplatesListMockResponse: CategorizedApplica value: "false" } ], - description: "A suite of cloud-based tools like Gmail, Google Drive, and Docs, offering" - + " one platform for email, storage, document editing, and communication.", - displayOrder: 6, - id: "google-workspace", - image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/google-workspace.png", - name: "Google Workspace", - self: "/api/server/v1/extensions/applications/google-workspace", + description: "Customer relationship management (CRM) platform that enables businesses " + + "to manage their sales, marketing, and customer service operations efficiently.", + displayOrder: 7, + id: "salesforce", + image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/salesforce.png", + name: "Salesforce", + self: "/api/server/v1/extensions/applications/salesforce", tags: [ "SAML", "SSO" @@ -326,3 +327,77 @@ export const categorizedApplicationTemplatesListMockResponse: CategorizedApplica templates: [] } ]; + +export const applicationListMockResponse: ApplicationListInterface = { + applications: [ + { + access: ApplicationAccessTypes.WRITE, + advancedConfigurations: { + additionalSpProperties: [ + { + displayName: "Is B2B Self Service Application", + name: "isB2BSelfServiceApp", + value: "false" + } + ], + attestationMetaData: { + enableClientAttestation: false + }, + discoverableByEndUsers: false, + enableAPIBasedAuthentication: false, + enableAuthorization: false, + fragment: false, + returnAuthenticatedIdpList: false, + saas: false, + skipLoginConsent: false, + skipLogoutConsent: true + }, + clientId: "kcn1kuV1yiZbaDofF2Xfg4jUpsUa", + id: "142fbbc0-69b8-4f3d-a647-adecc9f29804", + issuer: "", + name: "Sample salesforce SSO app", + realm: "", + self: "/api/server/v1/applications/142fbbc0-69b8-4f3d-a647-adecc9f29804", + templateId: "salesforce" + }, + { + access: ApplicationAccessTypes.WRITE, + advancedConfigurations: { + additionalSpProperties: [ + { + displayName: "Is B2B Self Service Application", + name: "isB2BSelfServiceApp", + value: "false" + } + ], + attestationMetaData: { + enableClientAttestation: false + }, + discoverableByEndUsers: false, + enableAPIBasedAuthentication: false, + enableAuthorization: false, + fragment: false, + returnAuthenticatedIdpList: false, + saas: false, + skipLoginConsent: true, + skipLogoutConsent: true + }, + clientId: "Y4LmFp5bwqvylijALgOCYPGvlTMa", + id: "c3a3d3ce-4166-416a-963a-94e1c1c8de5f", + issuer: "", + name: "SPA", + realm: "", + self: "/api/server/v1/applications/c3a3d3ce-4166-416a-963a-94e1c1c8de5f", + templateId: "6a90e4b0-fbff-42d7-bfde-1efd98f07cd7" + } + ], + count: 2, + links: [], + startIndex: 1, + totalResults: 2 +}; + +export const TEMPLATE_NAMES: { [key: string]: string } = { + salesforce: "Salesforce", + spa: "Single-Page Application" +}; diff --git a/features/admin.applications.v1/__tests__/components/application-list.test.tsx b/features/admin.applications.v1/__tests__/components/application-list.test.tsx new file mode 100644 index 00000000000..acb1a3e9d6f --- /dev/null +++ b/features/admin.applications.v1/__tests__/components/application-list.test.tsx @@ -0,0 +1,63 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import * as Grid from "@oxygen-ui/react/Grid"; +import React, { PropsWithChildren } from "react"; +import { render, screen, waitFor } from "../../../test-configs"; +import * as useGetApplicationTemplates from "../../api/use-get-application-templates"; +import { ApplicationList, ApplicationListPropsInterface } from "../../components/application-list"; +import ApplicationTemplatesProvider from "../../provider/application-templates-provider"; +import { + TEMPLATE_NAMES, + applicationListMockResponse, + applicationTemplatesListMockResponse +} from "../__mocks__/application-template"; +import "@testing-library/jest-dom"; + +describe("[Applications Management Feature] - ApplicationList", () => { + const useGetApplicationTemplatesMock: jest.SpyInstance = jest.spyOn(useGetApplicationTemplates, "default"); + + useGetApplicationTemplatesMock.mockImplementation(() => ({ + data: applicationTemplatesListMockResponse, + error: null, + isLoading: false, + isValidating: false, + mutate: jest.fn() + })); + + const gridComponent: jest.SpyInstance = jest.spyOn(Grid, "default"); + + gridComponent.mockImplementation((props: PropsWithChildren) =>
{ props?.children }
); + + const props: ApplicationListPropsInterface = { + list: applicationListMockResponse + }; + + test("Test whether the application list correctly identifies the created app template", async () => { + render( + + + + ); + + await waitFor(() => { + expect(screen.getByText(TEMPLATE_NAMES.salesforce)).toBeInTheDocument(); + expect(screen.getByText(TEMPLATE_NAMES.spa)).toBeInTheDocument(); + }); + }); +}); diff --git a/features/admin.applications.v1/__tests__/provider/application-templates-provider.test.tsx b/features/admin.applications.v1/__tests__/provider/application-templates-provider.test.tsx index 24bfcc75bcf..d295fb721ab 100644 --- a/features/admin.applications.v1/__tests__/provider/application-templates-provider.test.tsx +++ b/features/admin.applications.v1/__tests__/provider/application-templates-provider.test.tsx @@ -27,7 +27,7 @@ import { import "@testing-library/jest-dom"; import MockApplicationTemplatesComponent from "../__mocks__/mock-application-templates-component"; -describe("[Applications Management Feature] - Application Templates Provider", () => { +describe("[Applications Management Feature] - ApplicationTemplatesProvider", () => { const useGetApplicationTemplatesMock: jest.SpyInstance = jest.spyOn(useGetApplicationTemplates, "default"); useGetApplicationTemplatesMock.mockImplementation(() => ({ @@ -38,7 +38,7 @@ describe("[Applications Management Feature] - Application Templates Provider", ( mutate: jest.fn() })); - test("Test whether the application templates provider provides the application templates list correctly.", () => { + test("Test whether the application templates provider provides the application templates list correctly", () => { render( diff --git a/features/test-configs/__mocks__/global.ts b/features/test-configs/__mocks__/global.ts index 17073a673d4..b28571f2893 100644 --- a/features/test-configs/__mocks__/global.ts +++ b/features/test-configs/__mocks__/global.ts @@ -51,6 +51,5 @@ global.console = { ...console, debug: jest.fn(), error: jest.fn(), - info: jest.fn(), - log: jest.fn() + info: jest.fn() }; diff --git a/features/test-configs/__mocks__/redux/redux-store-state.ts b/features/test-configs/__mocks__/redux/redux-store-state.ts index cc79d6d6e0a..448dba45964 100644 --- a/features/test-configs/__mocks__/redux/redux-store-state.ts +++ b/features/test-configs/__mocks__/redux/redux-store-state.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2021, WSO2 LLC. (https://www.wso2.com). + * Copyright (c) 2021-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except @@ -17,24 +17,220 @@ */ /** - * @fileoverview Mocks the Redux store state. + * Mocks the Redux store state. * * @remarks If you add new attributes to the reducers, you will need to add them to this file. */ /* eslint-disable sort-keys, max-len */ -const ReduxStoreStateMock = { +const ReduxStoreStateMock: any = { accessControl: { isDevelopAllowed: true, isManageAllowed: true }, application: { + groupedTemplates: [ + { + id: "6a90e4b0-fbff-42d7-bfde-1efd98f07cd7", + templateId: "single-page-application", + name: "Single-Page Application", + description: "A web application that runs application logic in the browser.", + image: "spa", + authenticationProtocol: "oidc", + types: [ + { + displayName: "React", + logo: {}, + name: "react" + }, + { + displayName: "Angular", + logo: {}, + name: "angular" + }, + { + displayName: "Vue", + logo: {}, + name: "vue" + }, + { + displayName: "Javascript", + logo: {}, + name: "javascript" + } + ], + category: "DEFAULT", + displayOrder: 0, + templateGroup: "spa", + application: { + name: "", + advancedConfigurations: { + discoverableByEndUsers: false, + skipLogoutConsent: true, + skipLoginConsent: true + }, + authenticationSequence: { + type: "DEFAULT", + steps: [ + { + id: 1, + options: [ + { + idp: "LOCAL", + authenticator: "basic" + } + ] + } + ] + }, + claimConfiguration: { + dialect: "LOCAL", + requestedClaims: [ + { + claim: { + uri: "http://wso2.org/claims/username" + } + } + ] + }, + inboundProtocolConfiguration: { + oidc: { + accessToken: { + applicationAccessTokenExpiryInSeconds: 3600, + bindingType: "sso-session", + revokeTokensWhenIDPSessionTerminated: true, + type: "Default", + userAccessTokenExpiryInSeconds: 3600, + validateTokenBinding: false + }, + grantTypes: [ + "authorization_code", + "refresh_token" + ], + allowedOrigins: [ + "https://localhost:3000" + ], + callbackURLs: [ + "https://localhost:3000" + ], + pkce: { + mandatory: true, + supportPlainTransformAlgorithm: false + }, + publicClient: true, + refreshToken: { + expiryInSeconds: 86400, + renewRefreshToken: true + } + } + } + } + } + ], meta: { customInboundProtocolChecked: false, customInboundProtocols: [], inboundProtocols: [], protocolMeta: {} - } + }, + templates: [ + { + id: "6a90e4b0-fbff-42d7-bfde-1efd98f07cd7", + templateId: "single-page-application", + name: "Single-Page Application", + description: "A web application that runs application logic in the browser.", + image: "spa", + authenticationProtocol: "oidc", + types: [ + { + displayName: "React", + logo: {}, + name: "react" + }, + { + displayName: "Angular", + logo: {}, + name: "angular" + }, + { + displayName: "Vue", + logo: {}, + name: "vue" + }, + { + displayName: "Javascript", + logo: {}, + name: "javascript" + } + ], + category: "DEFAULT", + displayOrder: 0, + templateGroup: "spa", + application: { + name: "", + advancedConfigurations: { + discoverableByEndUsers: false, + skipLogoutConsent: true, + skipLoginConsent: true + }, + authenticationSequence: { + type: "DEFAULT", + steps: [ + { + id: 1, + options: [ + { + idp: "LOCAL", + authenticator: "basic" + } + ] + } + ] + }, + claimConfiguration: { + dialect: "LOCAL", + requestedClaims: [ + { + claim: { + uri: "http://wso2.org/claims/username" + } + } + ] + }, + inboundProtocolConfiguration: { + oidc: { + accessToken: { + applicationAccessTokenExpiryInSeconds: 3600, + bindingType: "sso-session", + revokeTokensWhenIDPSessionTerminated: true, + type: "Default", + userAccessTokenExpiryInSeconds: 3600, + validateTokenBinding: false + }, + grantTypes: [ + "authorization_code", + "refresh_token" + ], + allowedOrigins: [ + "https://localhost:3000" + ], + callbackURLs: [ + "https://localhost:3000" + ], + pkce: { + mandatory: true, + supportPlainTransformAlgorithm: false + }, + publicClient: true, + refreshToken: { + expiryInSeconds: 86400, + renewRefreshToken: true + } + } + } + } + } + ] }, auth: { displayName: "admin@carbon.super", From b44ee913654bbd125dab071e80db76584573d963 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Thu, 16 May 2024 15:24:31 +0530 Subject: [PATCH 025/114] add export to the application list props interface --- .../admin.applications.v1/components/application-list.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/admin.applications.v1/components/application-list.tsx b/features/admin.applications.v1/components/application-list.tsx index 5c76433eaf4..addd9a3438d 100644 --- a/features/admin.applications.v1/components/application-list.tsx +++ b/features/admin.applications.v1/components/application-list.tsx @@ -77,8 +77,8 @@ import { ApplicationTemplateManagementUtils } from "../utils/application-templat * * Proptypes for the applications list component. */ -interface ApplicationListPropsInterface extends SBACInterface, LoadableComponentInterface, - TestableComponentInterface, IdentifiableComponentInterface { +export interface ApplicationListPropsInterface extends SBACInterface, + LoadableComponentInterface, TestableComponentInterface, IdentifiableComponentInterface { /** * Advanced Search component. From 810971588e45133b7e4d1e01ce9965dacb489930 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Fri, 17 May 2024 17:23:00 +0530 Subject: [PATCH 026/114] add unit test --- .../application-creation-adapter.test.tsx | 77 ++++++++ .../application-template-card.test.tsx | 67 +++++++ .../application-template-grid.test.tsx | 176 ++++++++++++++++++ .../application-creation-adapter.tsx | 2 +- .../application-template-card.tsx | 6 +- .../application-templates-grid.tsx | 126 +++++++------ .../application-create-wizard.tsx | 6 +- .../minimal-application-create-wizard.tsx | 10 +- features/jest.config.ts | 3 +- .../__mocks__/redux/redux-store-state.ts | 4 +- features/test-configs/utils.tsx | 19 +- 11 files changed, 420 insertions(+), 76 deletions(-) create mode 100644 features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx create mode 100644 features/admin.applications.v1/__tests__/components/application-templates/application-template-card.test.tsx create mode 100644 features/admin.applications.v1/__tests__/components/application-templates/application-template-grid.test.tsx diff --git a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx new file mode 100644 index 00000000000..ce563027368 --- /dev/null +++ b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx @@ -0,0 +1,77 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from "react"; +import { render, screen, waitFor } from "../../../../test-configs"; +import ApplicationCreationAdapter, { + ApplicationCreationAdapterPropsInterface +} from "../../../components/application-templates/application-creation-adapter"; +import * as OauthProtocolSettingsWizardForm from "../../../components/wizard/oauth-protocol-settings-wizard-form"; +import { + applicationTemplatesListMockResponse +} from "../../__mocks__/application-template"; +import "@testing-library/jest-dom"; + +describe("[Applications Management Feature] - ApplicationCreationAdapter", () => { + const useGetApplicationTemplatesMock: jest.SpyInstance = jest.spyOn( + OauthProtocolSettingsWizardForm, "OauthProtocolSettingsWizardForm"); + + useGetApplicationTemplatesMock.mockImplementation(() => jest.fn()); + + const propsWithSPATemplate: ApplicationCreationAdapterPropsInterface = { + onClose: jest.fn(), + showWizard: true, + template: applicationTemplatesListMockResponse[0] + }; + + const propsWithSalesforceTemplate: ApplicationCreationAdapterPropsInterface = { + onClose: jest.fn(), + showWizard: true, + template: applicationTemplatesListMockResponse[3] + }; + + const script: HTMLScriptElement = document.createElement("script"); + + script.innerHTML = "var isOrganizationManagementEnabled = true;"; + + test("Test the existing technology/protocol based application creation wizard", async () => { + render( + , + { + container: document.body.appendChild(script) + } + ); + + await waitFor(() => { + expect(screen.getByTestId("minimal-application-create-wizard-modal")).toBeInTheDocument(); + }); + }); + + test("Test the dynamically rendered application creation wizard", async () => { + render( + , + { + container: document.body.appendChild(script) + } + ); + + await waitFor(() => { + expect(screen.getByTestId("application-create-wizard")).toBeInTheDocument(); + }); + }); +}); diff --git a/features/admin.applications.v1/__tests__/components/application-templates/application-template-card.test.tsx b/features/admin.applications.v1/__tests__/components/application-templates/application-template-card.test.tsx new file mode 100644 index 00000000000..234dc2db7bf --- /dev/null +++ b/features/admin.applications.v1/__tests__/components/application-templates/application-template-card.test.tsx @@ -0,0 +1,67 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import * as Card from "@oxygen-ui/react/Card"; +import cloneDeep from "lodash-es/cloneDeep"; +import React, { PropsWithChildren } from "react"; +import { render, screen, waitFor } from "../../../../test-configs"; +import ApplicationTemplateCard, { + ApplicationTemplateCardPropsInterface +} from "../../../components/application-templates/application-template-card"; +import { + applicationTemplatesListMockResponse +} from "../../__mocks__/application-template"; +import "@testing-library/jest-dom"; + +describe("[Applications Management Feature] - ApplicationTemplateCard", () => { + const props: ApplicationTemplateCardPropsInterface = { + onClick: jest.fn(), + template: cloneDeep(applicationTemplatesListMockResponse[3]) + }; + + const cardComponent: jest.SpyInstance = jest.spyOn(Card, "default"); + + cardComponent.mockImplementation((props: PropsWithChildren) =>
{ props?.children }
); + + test("Test the rendering of the application creation template card component", async () => { + render( + + ); + + await waitFor(() => { + expect(screen.getByText(applicationTemplatesListMockResponse[3]?.name)).toBeInTheDocument(); + }); + }); + + test("Test the 'Coming Soon' label of the application template card component", async () => { + props.template.customAttributes = [ + { + key: "comingSoon", + value: "true" + } + ]; + + render( + + ); + + await waitFor(() => { + expect(screen.getByText("common:comingSoon")).toBeInTheDocument(); + }); + }); +}); diff --git a/features/admin.applications.v1/__tests__/components/application-templates/application-template-grid.test.tsx b/features/admin.applications.v1/__tests__/components/application-templates/application-template-grid.test.tsx new file mode 100644 index 00000000000..f1a2b1a513f --- /dev/null +++ b/features/admin.applications.v1/__tests__/components/application-templates/application-template-grid.test.tsx @@ -0,0 +1,176 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import * as Card from "@oxygen-ui/react/Card"; +import React, { PropsWithChildren } from "react"; +import { fireEvent, render, screen, waitFor, within } from "../../../../test-configs"; +import * as useGetApplicationTemplates from "../../../api/use-get-application-templates"; +import ApplicationTemplateGrid, { + ApplicationTemplateGridPropsInterface +} from "../../../components/application-templates/application-templates-grid"; +import { CategorizedApplicationTemplatesInterface } from "../../../models/application-templates"; +import ApplicationTemplatesProvider from "../../../provider/application-templates-provider"; +import { ApplicationManagementUtils } from "../../../utils/application-management-utils"; +import { + applicationTemplatesListMockResponse, categorizedApplicationTemplatesListMockResponse +} from "../../__mocks__/application-template"; +import "@testing-library/jest-dom"; + +jest.mock("../../../../admin.core.v1", () => { + const adminCore: Record = jest.requireActual("../../../../admin.core.v1"); + + return { + ...adminCore, + getEmptyPlaceholderIllustrations: jest.fn().mockReturnValue({}) + }; +}); + +describe("[Applications Management Feature] - ApplicationTemplateGrid", () => { + const props: ApplicationTemplateGridPropsInterface = { + onTemplateSelect: jest.fn() + }; + + const useGetApplicationTemplatesMock: jest.SpyInstance = jest.spyOn(useGetApplicationTemplates, "default"); + + useGetApplicationTemplatesMock.mockImplementation(() => ({ + data: applicationTemplatesListMockResponse, + error: null, + isLoading: false, + isValidating: false, + mutate: jest.fn() + })); + + const getCustomInboundProtocolsMock: jest.SpyInstance = jest.spyOn( + ApplicationManagementUtils, "getCustomInboundProtocols"); + + getCustomInboundProtocolsMock.mockImplementation(() => []); + + const cardComponent: jest.SpyInstance = jest.spyOn(Card, "default"); + + cardComponent.mockImplementation((props: PropsWithChildren) =>
{ props?.children }
); + + /** + * Perform the assertion to ensure that the correct application template + * cards are being displayed. + * + * @param empty - Whether the expected search result is empty or not. + */ + const assert = async (empty: boolean = false): Promise => { + await waitFor(() => { + if (empty) { + expect(screen.queryByText("Salesforce")).not.toBeInTheDocument(); + } else { + expect(screen.getByText("Salesforce")).toBeInTheDocument(); + } + expect(screen.queryByText("Single-Page Application")).not.toBeInTheDocument(); + expect(screen.queryByText("Traditional Web Application")).not.toBeInTheDocument(); + expect(screen.queryByText("Standard-Based Application")).not.toBeInTheDocument(); + categorizedApplicationTemplatesListMockResponse.forEach( + (category: CategorizedApplicationTemplatesInterface) => { + expect(screen.queryByText(category.displayName)).not.toBeInTheDocument(); + expect(screen.queryByText(category?.description ?? "")).not.toBeInTheDocument(); + } + ); + }); + }; + + test("Test the rendering of the application template grid component", async () => { + render( + + + + ); + + await waitFor(() => { + categorizedApplicationTemplatesListMockResponse.forEach( + (category: CategorizedApplicationTemplatesInterface) => { + if (category?.templates?.length > 0) { + expect(screen.getByText(category.displayName)).toBeInTheDocument(); + expect(screen.getByText(category?.description ?? "")).toBeInTheDocument(); + } + } + ); + }); + }); + + test("Test the search functionality of the template grid component", async () => { + render( + + + + ); + + fireEvent.change( + within(screen.getByTestId("search-with-filters")).getByRole("textbox"), + { target: { value: "Salesforce" } } + ); + + await assert(); + + fireEvent.change( + within(screen.getByTestId("search-with-filters")).getByRole("textbox"), + { target: { value: "salesforce" } } + ); + + await assert(); + + fireEvent.change( + within(screen.getByTestId("search-with-filters")).getByRole("textbox"), + { target: { value: "sa" } } + ); + fireEvent.click( + within(screen.getByTestId("search-with-filters")).getByText("SSO") + ); + + await assert(); + + fireEvent.click( + within(screen.getByTestId("search-with-filters")).getByText("SSO") + ); + fireEvent.change( + within(screen.getByTestId("search-with-filters")).getByRole("textbox"), + { target: { value: "this is a query to get the empty search result" } } + ); + + await assert(true); + await waitFor(() => { + expect(screen.getByTestId("application-template-grid-empty-search-placeholder")).toBeInTheDocument(); + }); + }); + + test("Test the empty placeholder when the application template list is empty", async () => { + useGetApplicationTemplatesMock.mockImplementation(() => ({ + data: [], + error: null, + isLoading: false, + isValidating: false, + mutate: jest.fn() + })); + + render( + + + + ); + + await assert(true); + await waitFor(() => { + expect(screen.getByTestId("application-template-grid-empty-placeholder")).toBeInTheDocument(); + }); + }); +}); diff --git a/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx b/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx index 07a28494c0d..b5926a9d368 100644 --- a/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx +++ b/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx @@ -20,8 +20,8 @@ import { IdentifiableComponentInterface } from "@wso2is/core/models"; import { ContentLoader } from "@wso2is/react-components"; import React, { FunctionComponent, ReactElement, useEffect, useState } from "react"; import { useSelector } from "react-redux"; -import { AppState } from "../../../admin.core.v1"; import { ApplicationTemplateManagementUtils } from "../..//utils/application-template-management-utils"; +import { AppState } from "../../../admin.core.v1"; import { ApplicationManagementConstants } from "../../constants"; import { ApplicationTemplateListItemInterface } from "../../models"; import { ApplicationTemplateCategories, ApplicationTemplateListInterface } from "../../models/application-templates"; diff --git a/features/admin.applications.v1/components/application-templates/application-template-card.tsx b/features/admin.applications.v1/components/application-templates/application-template-card.tsx index 02fdf00b83d..b83d90a72cb 100644 --- a/features/admin.applications.v1/components/application-templates/application-template-card.tsx +++ b/features/admin.applications.v1/components/application-templates/application-template-card.tsx @@ -85,7 +85,11 @@ const ApplicationTemplateCard: FunctionComponent tag?.toLocaleLowerCase()?.includes(query))) { + if (name.includes(query.toLocaleLowerCase()) + || template?.tags?.some( + (tag: string) => tag?.toLocaleLowerCase()?.includes(query.toLocaleLowerCase())) + ) { return isFiltersMatched(template); } @@ -266,7 +268,7 @@ const ApplicationTemplateGrid: FunctionComponent ) - : categorizedTemplates - .map((category: CategorizedApplicationTemplatesInterface) => { - const refinedTemplates: ApplicationTemplateListInterface[] = - removeIrrelevantTemplates(category?.templates); - - if (refinedTemplates?.length <= 0) { - return null; - } - - return ( -
- - { t(category?.displayName) } - - { - category?.description - ? ( - - { t(category?.description) } - - { t("common:learnMore") } - - - ) - : null + : ( + (Array.isArray(categorizedTemplates) && categorizedTemplates?.length === 0) + ? showPlaceholders(categorizedTemplates) + : categorizedTemplates + .map((category: CategorizedApplicationTemplatesInterface) => { + const refinedTemplates: ApplicationTemplateListInterface[] = + removeIrrelevantTemplates(category?.templates); + + if (refinedTemplates?.length <= 0) { + return null; } - - { - refinedTemplates.map( - (template: ApplicationTemplateListInterface) => { - return ( - ) => { - handleTemplateSelection(e, template); - } } - template={ template } - /> - ); - }) - } - -
- ); - }) + + return ( +
+ + { t(category?.displayName) } + + { + category?.description + ? ( + + { t(category?.description) } + + { t("common:learnMore") } + + + ) + : null + } + + { + refinedTemplates.map( + (template: ApplicationTemplateListInterface) => { + return ( + ) => { + handleTemplateSelection( + e, template); + } + } + template={ template } + /> + ); + }) + } + +
+ ); + }) + ) ) : } diff --git a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx b/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx index 7bd1d0cfdcc..e1ce51ebe55 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx +++ b/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx @@ -16,8 +16,8 @@ * under the License. */ -import LinearProgress from "@mui/material/LinearProgress/LinearProgress"; -import Pagination from "@mui/material/Pagination/Pagination"; +import LinearProgress from "@mui/material/LinearProgress"; +import Pagination from "@mui/material/Pagination"; import Checkbox from "@oxygen-ui/react/Checkbox"; import FormControl from "@oxygen-ui/react/FormControl"; import FormControlLabel from "@oxygen-ui/react/FormControlLabel"; @@ -34,7 +34,6 @@ import { useWizardAlert } from "@wso2is/react-components"; import { AxiosError, AxiosResponse } from "axios"; -import useDynamicFieldValidations from "features/admin.applications.v1/hooks/use-dynamic-field-validation"; import cloneDeep from "lodash-es/cloneDeep"; import get from "lodash-es/get"; import has from "lodash-es/has"; @@ -55,6 +54,7 @@ import useGetApplicationTemplate from "../../api/use-get-application-template"; import useGetApplicationTemplateMetadata from "../../api/use-get-application-template-metadata"; import { ApplicationManagementConstants } from "../../constants"; import useApplicationSharingEligibility from "../../hooks/use-application-sharing-eligibility"; +import useDynamicFieldValidations from "../../hooks/use-dynamic-field-validation"; import { ApplicationListItemInterface, MainApplicationInterface, URLFragmentTypes } from "../../models"; import { ApplicationTemplateListInterface } from "../../models/application-templates"; import { DynamicFieldAutoSubmitPropertyInterface, DynamicFieldInterface } from "../../models/dynamic-fields"; diff --git a/features/admin.applications.v1/components/wizard/minimal-application-create-wizard.tsx b/features/admin.applications.v1/components/wizard/minimal-application-create-wizard.tsx index e64f7c95334..c0768a4eae8 100644 --- a/features/admin.applications.v1/components/wizard/minimal-application-create-wizard.tsx +++ b/features/admin.applications.v1/components/wizard/minimal-application-create-wizard.tsx @@ -21,7 +21,7 @@ import Chip from "@oxygen-ui/react/Chip"; import { Show } from "@wso2is/access-control"; import { IdentityAppsApiException } from "@wso2is/core/exceptions"; import { isFeatureEnabled } from "@wso2is/core/helpers"; -import { AlertLevels, TestableComponentInterface } from "@wso2is/core/models"; +import { AlertLevels, IdentifiableComponentInterface, TestableComponentInterface } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; import { Field, FormValue, Forms, Validation, useTrigger } from "@wso2is/forms"; import { @@ -105,7 +105,8 @@ import "./minimal-application-create-wizard.scss"; /** * Prop types of the `MinimalAppCreateWizard` component. */ -interface MinimalApplicationCreateWizardPropsInterface extends TestableComponentInterface { +interface MinimalApplicationCreateWizardPropsInterface extends TestableComponentInterface, + IdentifiableComponentInterface { title: string; closeWizard: () => void; template?: ApplicationTemplateInterface; @@ -157,7 +158,8 @@ export const MinimalAppCreateWizard: FunctionComponent @@ -1376,6 +1379,7 @@ export const MinimalAppCreateWizard: FunctionComponent/node_modules/@oxygen-ui/react", "@wso2is/core/api": "/../modules/core/dist/src/api", @@ -45,8 +46,8 @@ module.exports = { "@wso2is/core/utils": "/../modules/core/dist/src/utils", "@wso2is/core/workers": "/../modules/core/dist/src/workers", "@wso2is/dynamic-forms": "/../modules/dynamic-forms/dist", - "@wso2is/form": "/../modules/form/dist", "@wso2is/forms": "/../modules/forms/dist", + "@wso2is/form": "/../modules/form/dist", "@wso2is/react-components": "/../modules/react-components/dist", "\\.(css|less|scss)$": "/test-configs/__mocks__/style-file.ts", "\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|md)$": diff --git a/features/test-configs/__mocks__/redux/redux-store-state.ts b/features/test-configs/__mocks__/redux/redux-store-state.ts index 448dba45964..eba2db74e96 100644 --- a/features/test-configs/__mocks__/redux/redux-store-state.ts +++ b/features/test-configs/__mocks__/redux/redux-store-state.ts @@ -16,6 +16,8 @@ * under the License. */ +import { AppState } from "../../../admin.core.v1"; + /** * Mocks the Redux store state. * @@ -23,7 +25,7 @@ */ /* eslint-disable sort-keys, max-len */ -const ReduxStoreStateMock: any = { +const ReduxStoreStateMock: AppState = { accessControl: { isDevelopAllowed: true, isManageAllowed: true diff --git a/features/test-configs/utils.tsx b/features/test-configs/utils.tsx index 0d97f9ac6e5..a56cf778fc6 100644 --- a/features/test-configs/utils.tsx +++ b/features/test-configs/utils.tsx @@ -25,6 +25,7 @@ import { mockStore } from "./__mocks__/redux/redux-store"; import ReduxStoreStateMock from "./__mocks__/redux/redux-store-state"; // import { AuthenticateUtils } from "../src/features/authentication/utils/authenticate-utils"; // import { PreLoader } from "../src/features/core/components/pre-loader/pre-loader"; +import { AppConfigProvider } from "../admin.core.v1/providers/app-config-provider"; /** * Custom render method to includes things like global context providers, data stores, etc. @@ -61,14 +62,16 @@ const render = ( // getAuthParams={ AuthenticateUtils.getAuthParams } // > - - { children } - + + + { children } + + // ); From b9c2c0cb5dabf138145c977ea1337433856ee2c6 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Fri, 17 May 2024 17:54:44 +0530 Subject: [PATCH 027/114] add a custom script to the body before rendering component --- .../application-creation-adapter.test.tsx | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx index ce563027368..e41e063862b 100644 --- a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx +++ b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx @@ -47,14 +47,12 @@ describe("[Applications Management Feature] - ApplicationCreationAdapter", () => const script: HTMLScriptElement = document.createElement("script"); - script.innerHTML = "var isOrganizationManagementEnabled = true;"; + script.textContent = "var isOrganizationManagementEnabled = false"; + document.body.appendChild(script); test("Test the existing technology/protocol based application creation wizard", async () => { render( - , - { - container: document.body.appendChild(script) - } + ); await waitFor(() => { @@ -64,10 +62,7 @@ describe("[Applications Management Feature] - ApplicationCreationAdapter", () => test("Test the dynamically rendered application creation wizard", async () => { render( - , - { - container: document.body.appendChild(script) - } + ); await waitFor(() => { From 6ebfb33da1e1f44a13aabec704a37dce0ce60df4 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Fri, 17 May 2024 18:05:21 +0530 Subject: [PATCH 028/114] add the script to the head element --- .../application-templates/application-creation-adapter.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx index e41e063862b..6cdbc96f7b2 100644 --- a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx +++ b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx @@ -48,7 +48,7 @@ describe("[Applications Management Feature] - ApplicationCreationAdapter", () => const script: HTMLScriptElement = document.createElement("script"); script.textContent = "var isOrganizationManagementEnabled = false"; - document.body.appendChild(script); + document.head.appendChild(script); test("Test the existing technology/protocol based application creation wizard", async () => { render( From 86d2aafc4780ef95090cdf402a45dbd28a860537 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Fri, 17 May 2024 18:28:12 +0530 Subject: [PATCH 029/114] change the application creation adapter test --- .../application-creation-adapter.test.tsx | 20 ++++++++++--------- .../minimal-application-create-wizard.tsx | 10 +++------- 2 files changed, 14 insertions(+), 16 deletions(-) diff --git a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx index 6cdbc96f7b2..53aa9bd3a9c 100644 --- a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx +++ b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx @@ -21,17 +21,24 @@ import { render, screen, waitFor } from "../../../../test-configs"; import ApplicationCreationAdapter, { ApplicationCreationAdapterPropsInterface } from "../../../components/application-templates/application-creation-adapter"; -import * as OauthProtocolSettingsWizardForm from "../../../components/wizard/oauth-protocol-settings-wizard-form"; +import * as MinimalApplicationCreateWizard from "../../../components/wizard/minimal-application-create-wizard"; +import * as useApplicationSharingEligibility from "../../../hooks/use-application-sharing-eligibility"; import { applicationTemplatesListMockResponse } from "../../__mocks__/application-template"; import "@testing-library/jest-dom"; describe("[Applications Management Feature] - ApplicationCreationAdapter", () => { - const useGetApplicationTemplatesMock: jest.SpyInstance = jest.spyOn( - OauthProtocolSettingsWizardForm, "OauthProtocolSettingsWizardForm"); + const minimalApplicationCreateWizardMock: jest.SpyInstance = jest.spyOn( + MinimalApplicationCreateWizard, "MinimalAppCreateWizard"); - useGetApplicationTemplatesMock.mockImplementation(() => jest.fn()); + minimalApplicationCreateWizardMock.mockImplementation(() => +
); + + const useApplicationSharingEligibilityMock: jest.SpyInstance = jest.spyOn( + useApplicationSharingEligibility, "default"); + + useApplicationSharingEligibilityMock.mockImplementation(() => jest.fn().mockReturnValue(true)); const propsWithSPATemplate: ApplicationCreationAdapterPropsInterface = { onClose: jest.fn(), @@ -45,11 +52,6 @@ describe("[Applications Management Feature] - ApplicationCreationAdapter", () => template: applicationTemplatesListMockResponse[3] }; - const script: HTMLScriptElement = document.createElement("script"); - - script.textContent = "var isOrganizationManagementEnabled = false"; - document.head.appendChild(script); - test("Test the existing technology/protocol based application creation wizard", async () => { render( diff --git a/features/admin.applications.v1/components/wizard/minimal-application-create-wizard.tsx b/features/admin.applications.v1/components/wizard/minimal-application-create-wizard.tsx index c0768a4eae8..e64f7c95334 100644 --- a/features/admin.applications.v1/components/wizard/minimal-application-create-wizard.tsx +++ b/features/admin.applications.v1/components/wizard/minimal-application-create-wizard.tsx @@ -21,7 +21,7 @@ import Chip from "@oxygen-ui/react/Chip"; import { Show } from "@wso2is/access-control"; import { IdentityAppsApiException } from "@wso2is/core/exceptions"; import { isFeatureEnabled } from "@wso2is/core/helpers"; -import { AlertLevels, IdentifiableComponentInterface, TestableComponentInterface } from "@wso2is/core/models"; +import { AlertLevels, TestableComponentInterface } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; import { Field, FormValue, Forms, Validation, useTrigger } from "@wso2is/forms"; import { @@ -105,8 +105,7 @@ import "./minimal-application-create-wizard.scss"; /** * Prop types of the `MinimalAppCreateWizard` component. */ -interface MinimalApplicationCreateWizardPropsInterface extends TestableComponentInterface, - IdentifiableComponentInterface { +interface MinimalApplicationCreateWizardPropsInterface extends TestableComponentInterface { title: string; closeWizard: () => void; template?: ApplicationTemplateInterface; @@ -158,8 +157,7 @@ export const MinimalAppCreateWizard: FunctionComponent @@ -1379,7 +1376,6 @@ export const MinimalAppCreateWizard: FunctionComponent Date: Fri, 17 May 2024 18:40:15 +0530 Subject: [PATCH 030/114] mock the dynamic aplication create wizard --- .../application-creation-adapter.test.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx index 53aa9bd3a9c..9297d4c580e 100644 --- a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx +++ b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx @@ -21,8 +21,8 @@ import { render, screen, waitFor } from "../../../../test-configs"; import ApplicationCreationAdapter, { ApplicationCreationAdapterPropsInterface } from "../../../components/application-templates/application-creation-adapter"; +import * as ApplicationCreateWizard from "../../../components/dynamic-forms/application-create-wizard"; import * as MinimalApplicationCreateWizard from "../../../components/wizard/minimal-application-create-wizard"; -import * as useApplicationSharingEligibility from "../../../hooks/use-application-sharing-eligibility"; import { applicationTemplatesListMockResponse } from "../../__mocks__/application-template"; @@ -35,10 +35,11 @@ describe("[Applications Management Feature] - ApplicationCreationAdapter", () => minimalApplicationCreateWizardMock.mockImplementation(() =>
); - const useApplicationSharingEligibilityMock: jest.SpyInstance = jest.spyOn( - useApplicationSharingEligibility, "default"); + const applicationCreateWizardMock: jest.SpyInstance = jest.spyOn( + ApplicationCreateWizard, "ApplicationCreateWizard"); - useApplicationSharingEligibilityMock.mockImplementation(() => jest.fn().mockReturnValue(true)); + applicationCreateWizardMock.mockImplementation(() => +
); const propsWithSPATemplate: ApplicationCreationAdapterPropsInterface = { onClose: jest.fn(), From a7b91837e491a7a18c8c317c36e740ccb5009eca Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Fri, 17 May 2024 19:15:13 +0530 Subject: [PATCH 031/114] declare the global variable --- .../application-creation-adapter.test.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx index 9297d4c580e..065462b65cc 100644 --- a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx +++ b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx @@ -28,6 +28,10 @@ import { } from "../../__mocks__/application-template"; import "@testing-library/jest-dom"; +declare global { + const isOrganizationManagementEnabled: boolean; +} + describe("[Applications Management Feature] - ApplicationCreationAdapter", () => { const minimalApplicationCreateWizardMock: jest.SpyInstance = jest.spyOn( MinimalApplicationCreateWizard, "MinimalAppCreateWizard"); From 68e7f1582d7234b3526c28a759b57b37aa38cb3c Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Mon, 20 May 2024 10:46:40 +0530 Subject: [PATCH 032/114] update the application creation adapter unit test --- .../application-creation-adapter.test.tsx | 16 ++++------------ .../wizard/minimal-application-create-wizard.tsx | 10 +++++++--- .../hooks/use-application-sharing-eligibility.ts | 3 +++ 3 files changed, 14 insertions(+), 15 deletions(-) diff --git a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx index 065462b65cc..fd59522a153 100644 --- a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx +++ b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx @@ -21,8 +21,7 @@ import { render, screen, waitFor } from "../../../../test-configs"; import ApplicationCreationAdapter, { ApplicationCreationAdapterPropsInterface } from "../../../components/application-templates/application-creation-adapter"; -import * as ApplicationCreateWizard from "../../../components/dynamic-forms/application-create-wizard"; -import * as MinimalApplicationCreateWizard from "../../../components/wizard/minimal-application-create-wizard"; +import * as OauthProtocolSettingsWizardForm from "../../../components/wizard/oauth-protocol-settings-wizard-form"; import { applicationTemplatesListMockResponse } from "../../__mocks__/application-template"; @@ -33,17 +32,10 @@ declare global { } describe("[Applications Management Feature] - ApplicationCreationAdapter", () => { - const minimalApplicationCreateWizardMock: jest.SpyInstance = jest.spyOn( - MinimalApplicationCreateWizard, "MinimalAppCreateWizard"); + const useGetApplicationTemplatesMock: jest.SpyInstance = jest.spyOn( + OauthProtocolSettingsWizardForm, "OauthProtocolSettingsWizardForm"); - minimalApplicationCreateWizardMock.mockImplementation(() => -
); - - const applicationCreateWizardMock: jest.SpyInstance = jest.spyOn( - ApplicationCreateWizard, "ApplicationCreateWizard"); - - applicationCreateWizardMock.mockImplementation(() => -
); + useGetApplicationTemplatesMock.mockImplementation(() => jest.fn()); const propsWithSPATemplate: ApplicationCreationAdapterPropsInterface = { onClose: jest.fn(), diff --git a/features/admin.applications.v1/components/wizard/minimal-application-create-wizard.tsx b/features/admin.applications.v1/components/wizard/minimal-application-create-wizard.tsx index 619d747cf8a..1d8cd28869f 100644 --- a/features/admin.applications.v1/components/wizard/minimal-application-create-wizard.tsx +++ b/features/admin.applications.v1/components/wizard/minimal-application-create-wizard.tsx @@ -21,7 +21,7 @@ import Chip from "@oxygen-ui/react/Chip"; import { Show } from "@wso2is/access-control"; import { IdentityAppsApiException } from "@wso2is/core/exceptions"; import { isFeatureEnabled } from "@wso2is/core/helpers"; -import { AlertLevels, TestableComponentInterface } from "@wso2is/core/models"; +import { AlertLevels, IdentifiableComponentInterface, TestableComponentInterface } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; import { Field, FormValue, Forms, Validation, useTrigger } from "@wso2is/forms"; import { @@ -106,7 +106,8 @@ import "./minimal-application-create-wizard.scss"; /** * Prop types of the `MinimalAppCreateWizard` component. */ -interface MinimalApplicationCreateWizardPropsInterface extends TestableComponentInterface { +interface MinimalApplicationCreateWizardPropsInterface extends TestableComponentInterface, + IdentifiableComponentInterface { title: string; closeWizard: () => void; template?: ApplicationTemplateInterface; @@ -158,7 +159,8 @@ export const MinimalAppCreateWizard: FunctionComponent @@ -1377,6 +1380,7 @@ export const MinimalAppCreateWizard: FunctionComponent { const isClientSecretHashEnabled: boolean = useSelector((state: AppState) => state?.config?.ui?.isClientSecretHashEnabled); + const { isOrganizationManagementEnabled } = useGlobalVariables(); + return (isOrganizationManagementEnabled && organizationEnabled && applicationConfig?.editApplication?.showApplicationShare From adee90f7b2af41535b822e73a1cb7fe0385b5cf6 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Tue, 21 May 2024 12:30:02 +0530 Subject: [PATCH 033/114] add unit test for the application-create-wizard component --- .../__mocks__/application-template.ts | 214 ++++++++++++++++++ .../application-creation-adapter.test.tsx | 4 - .../application-create-wizard.test.tsx | 181 +++++++++++++++ .../application-create-wizard.tsx | 27 ++- .../dynamic-forms/application-edit-form.tsx | 2 +- .../application-form-dynamic-field.tsx | 10 +- .../modals/application-share-modal.tsx | 1 + features/test-configs/utils.tsx | 34 +-- 8 files changed, 444 insertions(+), 29 deletions(-) create mode 100644 features/admin.applications.v1/__tests__/components/dynamic-forms/application-create-wizard.test.tsx diff --git a/features/admin.applications.v1/__tests__/__mocks__/application-template.ts b/features/admin.applications.v1/__tests__/__mocks__/application-template.ts index ff581984415..37058a4cbcb 100644 --- a/features/admin.applications.v1/__tests__/__mocks__/application-template.ts +++ b/features/admin.applications.v1/__tests__/__mocks__/application-template.ts @@ -18,10 +18,14 @@ import { ApplicationAccessTypes, ApplicationListInterface } from "../../models"; import { + ApplicationEditTabContentTypes, ApplicationTemplateCategories, + ApplicationTemplateInterface, ApplicationTemplateListInterface, + ApplicationTemplateMetadataInterface, CategorizedApplicationTemplatesInterface } from "../../models/application-templates"; +import { DynamicInputFieldTypes, ValidationRuleTypes } from "../../models/dynamic-fields"; export const applicationTemplatesListMockResponse: ApplicationTemplateListInterface[] = [ { @@ -397,7 +401,217 @@ export const applicationListMockResponse: ApplicationListInterface = { totalResults: 2 }; +export const applicationSearchListMockResponse: ApplicationListInterface = { + applications: [ + { + access: ApplicationAccessTypes.WRITE, + advancedConfigurations: { + additionalSpProperties: [ + { + displayName: "Is B2B Self Service Application", + name: "isB2BSelfServiceApp", + value: "false" + } + ], + attestationMetaData: { + enableClientAttestation: false + }, + discoverableByEndUsers: false, + enableAPIBasedAuthentication: false, + enableAuthorization: false, + fragment: false, + returnAuthenticatedIdpList: false, + saas: false, + skipLoginConsent: false, + skipLogoutConsent: true + }, + clientId: "kcn1kuV1yiZbaDofF2Xfg4jUpsUa", + id: "142fbbc0-69b8-4f3d-a647-adecc9f29804", + issuer: "", + name: "Salesforce", + realm: "", + self: "/api/server/v1/applications/142fbbc0-69b8-4f3d-a647-adecc9f29804", + templateId: "salesforce" + } + ], + count: 1, + links: [], + startIndex: 1, + totalResults: 1 +}; + export const TEMPLATE_NAMES: { [key: string]: string } = { salesforce: "Salesforce", spa: "Single-Page Application" }; + +export const applicationTemplateMockResponse: ApplicationTemplateInterface = { + category: ApplicationTemplateCategories.SSO_INTEGRATION, + description: "Salesforce is a customer relationship management (CRM) platform that enables " + + "businesses to manage their sales, marketing, and customer service operations efficiently.", + displayOrder: 6, + id: "salesforce", + image: "{{CONSOLE_BASE_URL}}/resources/applications/assets/images/illustrations/salesforce.svg", + name: "Salesforce", + payload: { + advancedConfigurations: { + discoverableByEndUsers: false, + skipLogoutConsent: true + }, + authenticationSequence: { + steps: [ + { + id: 1, + options: [ + { + authenticator: "basic", + idp: "LOCAL" + } + ] + } + ], + type: "DEFAULT" + }, + claimConfiguration: { + dialect: "LOCAL", + requestedClaims: [ + { + claim: { + uri: "http://wso2.org/claims/username" + }, + mandatory: false + } + ] + }, + inboundProtocolConfiguration: { + oidc: { + accessToken: { + applicationAccessTokenExpiryInSeconds: 3600, + bindingType: "sso-session", + revokeTokensWhenIDPSessionTerminated: true, + type: "Default", + userAccessTokenExpiryInSeconds: 3600, + validateTokenBinding: false + }, + allowedOrigins: [ + "https://example.com" + ], + callbackURLs: [ + "https://example.com/login" + ], + grantTypes: [ + "authorization_code", + "refresh_token" + ], + pkce: { + mandatory: true, + supportPlainTransformAlgorithm: false + }, + publicClient: true, + refreshToken: { + expiryInSeconds: 86400, + renewRefreshToken: true + } + } + }, + name: "Salesforce", + templateId: "salesforce" + }, + tags: [ + "SAML", + "SSO" + ], + type: "applications" +}; + +export const applicationTemplateMetadataMockResponse: ApplicationTemplateMetadataInterface = { + create: { + form: { + fields: [ + { + "aria-label": "Application Name", + dataComponentId: "salesforce-create-wizard-application-name", + id: "application-name", + label: "Name", + name: "name", + placeholder: "My App", + required: true, + type: DynamicInputFieldTypes.TEXT, + validations: [ + { + type: ValidationRuleTypes.APPLICATION_NAME + } + ] + } + ], + submitDefinedFieldsOnly: true + }, + guide: [ + "#### Name\nA unique name to identify your application.\n\nFor example, " + + "My App\n\n---\n\n#### Authorized Redirect URLs\nThe URL to which the " + + "authorization code is sent upon authentication and where the user is " + + "redirected upon logout.\n\nFor example, [https://myapp.io/login](https" + + "://myapp.io/login)\n\n---\n\n#### Allow sharing with sub-organizations" + + "\n\nIf enabled, it will share this application with all or any selected " + + "sub-organizations that belong to your root organization." + ], + isApplicationSharable: true + }, + edit: { + defaultActiveTabId: "salesforce-settings", + tabs: [ + { + contentType: ApplicationEditTabContentTypes.GUIDE, + displayName: "Quick Start", + guide: "# Dillinger\n## _The Last Markdown Editor", + id: "quick-start" + }, + { + id: "general" + }, + { + displayName: "Application Roles", + id: "application-roles" + }, + { + displayName: "Attributes", + id: "user-attributes" + }, + { + contentType: ApplicationEditTabContentTypes.FORM, + displayName: "Salesforce Settings", + form: { + fields: [ + { + "aria-label": "Application Name", + dataComponentId: "dynamic-application-edit-form-application-name", + id: "application-name", + label: "Name", + name: "name", + placeholder: "My App", + required: true, + type: DynamicInputFieldTypes.TEXT, + validations: [ + { + type: ValidationRuleTypes.APPLICATION_NAME + } + ] + }, + { + "aria-label": "application-description", + dataComponentId: "dynamic-application-edit-form-application-description", + id: "application-description", + label: "Description", + name: "description", + placeholder: "My App Description", + required: false, + type: DynamicInputFieldTypes.TEXTAREA + } + ], + submitDefinedFieldsOnly: true + }, + id: "salesforce-settings" + } + ] + } +}; diff --git a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx index fd59522a153..9dfb4e76824 100644 --- a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx +++ b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx @@ -27,10 +27,6 @@ import { } from "../../__mocks__/application-template"; import "@testing-library/jest-dom"; -declare global { - const isOrganizationManagementEnabled: boolean; -} - describe("[Applications Management Feature] - ApplicationCreationAdapter", () => { const useGetApplicationTemplatesMock: jest.SpyInstance = jest.spyOn( OauthProtocolSettingsWizardForm, "OauthProtocolSettingsWizardForm"); diff --git a/features/admin.applications.v1/__tests__/components/dynamic-forms/application-create-wizard.test.tsx b/features/admin.applications.v1/__tests__/components/dynamic-forms/application-create-wizard.test.tsx new file mode 100644 index 00000000000..984c44117e3 --- /dev/null +++ b/features/admin.applications.v1/__tests__/components/dynamic-forms/application-create-wizard.test.tsx @@ -0,0 +1,181 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import MuiTextField, { TextFieldProps as MuiTextFieldProps } from "@mui/material/TextField"; +import * as OxygenTextField from "@oxygen-ui/react/TextField"; +import cloneDeep from "lodash-es/cloneDeep"; +import set from "lodash-es/set"; +import React from "react"; +import { fireEvent, render, screen, waitFor, within } from "../../../../test-configs"; +import * as api from "../../../api/application"; +import * as useGetApplicationTemplate from "../../../api/use-get-application-template"; +import * as useGetApplicationTemplateMetadata from "../../../api/use-get-application-template-metadata"; +import { + ApplicationCreateWizard, + ApplicationCreateWizardPropsInterface +} from "../../../components/dynamic-forms/application-create-wizard"; +import * as useApplicationSharingEligibility from "../../../hooks/use-application-sharing-eligibility"; +import { MainApplicationInterface } from "../../../models"; +import { ApplicationTemplateMetadataInterface } from "../../../models/application-templates"; +import { + applicationSearchListMockResponse, + applicationTemplateMetadataMockResponse, + applicationTemplateMockResponse, + applicationTemplatesListMockResponse +} from "../../__mocks__/application-template"; +import "@testing-library/jest-dom"; + +describe("[Applications Management Feature] - ApplicationCreateWizard", () => { + const useGetApplicationTemplateMock: jest.SpyInstance = jest.spyOn(useGetApplicationTemplate, "default"); + + useGetApplicationTemplateMock.mockImplementation(() => ({ + data: applicationTemplateMockResponse, + error: null, + isLoading: false, + isValidating: false, + mutate: jest.fn() + })); + + const useGetApplicationTemplateMetadataMock: jest.SpyInstance = jest.spyOn( + useGetApplicationTemplateMetadata, "default"); + + useGetApplicationTemplateMetadataMock.mockImplementation(() => ({ + data: applicationTemplateMetadataMockResponse, + error: null, + isLoading: false, + isValidating: false, + mutate: jest.fn() + })); + + const useApplicationListMock: jest.SpyInstance = jest.spyOn(api, "useApplicationList"); + + useApplicationListMock.mockImplementation(() => ({ + data: applicationSearchListMockResponse, + error: null, + isLoading: false, + isValidating: false, + mutate: jest.fn() + })); + + const getApplicationListMock: jest.SpyInstance = jest.spyOn(api, "getApplicationList"); + + getApplicationListMock.mockImplementation(() => Promise.resolve(applicationSearchListMockResponse)); + + const createApplicationMock: jest.SpyInstance = jest.spyOn(api, "createApplication"); + + createApplicationMock.mockImplementation(() => Promise.resolve()); + + const textFieldMock: jest.SpyInstance = jest.spyOn(OxygenTextField, "default"); + + textFieldMock.mockImplementation((props: MuiTextFieldProps) => { + const { id, type, ...rest } = props; + + return ( +
+ +
+ ); + }); + + const useApplicationSharingEligibilityMock: jest.SpyInstance = jest.spyOn( + useApplicationSharingEligibility, "default"); + + useApplicationSharingEligibilityMock.mockImplementation(jest.fn().mockReturnValue(true)); + + const props: ApplicationCreateWizardPropsInterface = { + onClose: jest.fn(), + template: applicationTemplatesListMockResponse[3] + }; + + test("Test the rendering of the dynamic application create wizard based on the template", async () => { + render( + + ); + + await waitFor(() => { + expect(screen.getByTestId("application-create-wizard")).toBeInTheDocument(); + expect(screen.getByText("Salesforce")).toBeInTheDocument(); + expect(screen.getByTestId("salesforce-create-wizard-application-name")).toBeInTheDocument(); + expect(screen.getByTestId("application-create-wizard-share-field")).toBeInTheDocument(); + expect(screen.getByText("applications:wizards.minimalAppCreationWizard.help.heading")).toBeInTheDocument(); + expect(screen.getByText("https://myapp.io/login")).toBeInTheDocument(); + }); + }); + + test("Test whether the unique application name is generated", async () => { + render( + + ); + + await waitFor(() => { + expect(within(screen.getByTestId("salesforce-create-wizard-application-name")) + .getByRole("textbox")).toHaveValue("Salesforce 2"); + }); + }); + + test("Test whether the form submission is completed with only defined fields", async () => { + render( + + ); + + fireEvent.click(screen.getByTestId("application-create-wizard-create-button")); + + await waitFor(() => { + expect(createApplicationMock).toHaveBeenCalledWith({ + name: "Salesforce 2" + }); + }); + }); + + test("Test whether the form submission is completed with initial values and input values", async () => { + const clonedApplicationTemplateMetadataMockResponse: ApplicationTemplateMetadataInterface = cloneDeep( + applicationTemplateMetadataMockResponse); + + set( + clonedApplicationTemplateMetadataMockResponse, + "create.form.submitDefinedFieldsOnly", + false + ); + + useGetApplicationTemplateMetadataMock.mockImplementation(() => ({ + data: clonedApplicationTemplateMetadataMockResponse, + error: null, + isLoading: false, + isValidating: false, + mutate: jest.fn() + })); + + render( + + ); + + fireEvent.change( + within(screen.getByTestId("salesforce-create-wizard-application-name")).getByRole("textbox"), + { target: { value: "New Salesforce App" } } + ); + fireEvent.click(screen.getByTestId("application-create-wizard-create-button")); + + const appPayload: MainApplicationInterface = cloneDeep(applicationTemplateMockResponse.payload); + + appPayload.name = "New Salesforce App"; + + await waitFor(() => { + expect(createApplicationMock).toHaveBeenCalledWith(appPayload); + }); + }); +}); diff --git a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx b/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx index e1ce51ebe55..7b6a0ffd8c5 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx +++ b/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx @@ -37,6 +37,7 @@ import { AxiosError, AxiosResponse } from "axios"; import cloneDeep from "lodash-es/cloneDeep"; import get from "lodash-es/get"; import has from "lodash-es/has"; +import pick from "lodash-es/pick"; import set from "lodash-es/set"; import React, { ChangeEvent, FunctionComponent, MouseEvent, ReactElement, useEffect, useMemo, useState } from "react"; import { useTranslation } from "react-i18next"; @@ -153,22 +154,31 @@ export const ApplicationCreateWizard: FunctionComponent, templatePayload: MainApplicationInterface - ): MainApplicationInterface => { - if (initialValues) { + ): Partial => { + if (initialValues?.name) { initialValues.name = generateUniqueApplicationName(templatePayload?.name); } return initialValues; }; - const formInitialValues: MainApplicationInterface = useMemo(() => { + const formInitialValues: Partial = useMemo(() => { if (!templateData?.payload) { return null; } - const initialValues: MainApplicationInterface = cloneDeep(templateData?.payload); + let initialValues: Partial; + + if (templateMetadata?.create?.form?.submitDefinedFieldsOnly) { + const paths: string[] = templateMetadata?.create?.form?.fields.map( + (field: DynamicFieldInterface) => field?.name); + + initialValues = pick(templateData?.payload, paths); + } else { + initialValues = cloneDeep(templateData?.payload); + } return moderateInitialValues(initialValues, templateData?.payload); }, [ templateData?.payload, possibleListOfDuplicateApplications ]); @@ -539,12 +549,17 @@ export const ApplicationCreateWizard: FunctionComponent { templateMetadata?.create?.isApplicationSharable && isApplicationSharable && ( - + ) => { diff --git a/features/admin.applications.v1/components/dynamic-forms/application-edit-form.tsx b/features/admin.applications.v1/components/dynamic-forms/application-edit-form.tsx index f3b5198eeae..b0a8da5ef4e 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-edit-form.tsx +++ b/features/admin.applications.v1/components/dynamic-forms/application-edit-form.tsx @@ -26,7 +26,6 @@ import { PrimaryButton } from "@wso2is/react-components"; import { AxiosError } from "axios"; -import useDynamicFieldValidations from "features/admin.applications.v1/hooks/use-dynamic-field-validation"; import cloneDeep from "lodash-es/cloneDeep"; import get from "lodash-es/get"; import has from "lodash-es/has"; @@ -41,6 +40,7 @@ import { ApplicationFormDynamicField } from "./application-form-dynamic-field"; import { AppState } from "../../../admin.core.v1"; import useUIConfig from "../../../admin.core.v1/hooks/use-ui-configs"; import { updateApplicationDetails } from "../../api"; +import useDynamicFieldValidations from "../../hooks/use-dynamic-field-validation"; import { ApplicationInterface } from "../../models"; diff --git a/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx b/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx index acda2573fa1..8f8a168b17f 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx +++ b/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx @@ -47,7 +47,7 @@ export interface ApplicationFormDynamicFieldPropsInterface extends IdentifiableC export const ApplicationFormDynamicField: FunctionComponent> = (props: PropsWithChildren): ReactElement => { - const { ["data-componentid"]: componentId, field, readOnly, ...rest } = props; + const { ["data-componentid"]: componentId, field, form: _form, readOnly, ...rest } = props; const getDynamicFieldAdapter = (type: DynamicInputFieldTypes): ReactElement => { switch (type) { @@ -59,7 +59,7 @@ export const ApplicationFormDynamicField: FunctionComponent diff --git a/features/test-configs/utils.tsx b/features/test-configs/utils.tsx index a56cf778fc6..74e2ed6e008 100644 --- a/features/test-configs/utils.tsx +++ b/features/test-configs/utils.tsx @@ -26,6 +26,7 @@ import ReduxStoreStateMock from "./__mocks__/redux/redux-store-state"; // import { AuthenticateUtils } from "../src/features/authentication/utils/authenticate-utils"; // import { PreLoader } from "../src/features/core/components/pre-loader/pre-loader"; import { AppConfigProvider } from "../admin.core.v1/providers/app-config-provider"; +import GlobalVariablesProvider from "../admin.core.v1/providers/global-variables-provider"; /** * Custom render method to includes things like global context providers, data stores, etc. @@ -61,19 +62,26 @@ const render = ( // fallback={ } // getAuthParams={ AuthenticateUtils.getAuthParams } // > - - - - { children } - - - - // + + + + + { children } + + + + + // ); }; From 96ade486085f036530c7fe522a54ced4eeef9597 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Wed, 22 May 2024 01:11:26 +0530 Subject: [PATCH 034/114] add unit tests --- .../__mocks__/application-template.ts | 236 +++- .../application-edit-form.test.tsx | 131 ++ .../__tests__/pages/application-edit.test.tsx | 191 +++ .../dynamic-forms/application-edit-form.tsx | 6 +- .../pages/application-edit.tsx | 2 +- .../admin.extensions.v1/configs/common.tsx | 1 + .../configs/models/common.ts | 1 + .../test-configs/__mocks__/window.ts | 1110 +++++++++-------- features/test-configs/__mocks__/global.ts | 3 +- .../__mocks__/redux/redux-store-state.ts | 42 +- .../__mocks__/window/app-utils.ts | 17 + 11 files changed, 1182 insertions(+), 558 deletions(-) create mode 100644 features/admin.applications.v1/__tests__/components/dynamic-forms/application-edit-form.test.tsx create mode 100644 features/admin.applications.v1/__tests__/pages/application-edit.test.tsx diff --git a/features/admin.applications.v1/__tests__/__mocks__/application-template.ts b/features/admin.applications.v1/__tests__/__mocks__/application-template.ts index 37058a4cbcb..d86e73ff6f5 100644 --- a/features/admin.applications.v1/__tests__/__mocks__/application-template.ts +++ b/features/admin.applications.v1/__tests__/__mocks__/application-template.ts @@ -16,9 +16,11 @@ * under the License. */ -import { ApplicationAccessTypes, ApplicationListInterface } from "../../models"; +import { RoleAudienceTypes } from "../../../admin.roles.v2/constants"; +import { ApplicationAccessTypes, ApplicationInterface, ApplicationListInterface } from "../../models"; import { ApplicationEditTabContentTypes, + ApplicationEditTabMetadataInterface, ApplicationTemplateCategories, ApplicationTemplateInterface, ApplicationTemplateListInterface, @@ -615,3 +617,235 @@ export const applicationTemplateMetadataMockResponse: ApplicationTemplateMetadat ] } }; + +export const dynamicApplicationEditTabMetadataMockObject: ApplicationEditTabMetadataInterface = { + contentType: ApplicationEditTabContentTypes.FORM, + displayName: "Salesforce Settings", + form: { + fields: [ + { + "aria-label": "Application Name", + dataComponentId: "dynamic-application-edit-form-application-name", + id: "application-name", + label: "Name", + name: "name", + placeholder: "My App", + required: true, + type: DynamicInputFieldTypes.TEXT, + validations: [ + { + type: ValidationRuleTypes.APPLICATION_NAME + } + ] + }, + { + "aria-label": "application-description", + dataComponentId: "dynamic-application-edit-form-application-description", + id: "application-description", + label: "Description", + name: "description", + placeholder: "My App Description", + required: false, + type: DynamicInputFieldTypes.TEXTAREA + } + ], + submitDefinedFieldsOnly: true + }, + id: "salesforce-settings" +}; + +export const applicationMockResponse: ApplicationInterface = { + access: ApplicationAccessTypes.WRITE, + advancedConfigurations: { + additionalSpProperties: [ + { + displayName: "Is B2B Self Service Application", + name: "isB2BSelfServiceApp", + value: "false" + } + ], + attestationMetaData: { + androidPackageName: "", + appleAppId: "", + enableClientAttestation: false + }, + discoverableByEndUsers: false, + enableAPIBasedAuthentication: false, + enableAuthorization: false, + fragment: false, + returnAuthenticatedIdpList: false, + saas: false, + skipLoginConsent: false, + skipLogoutConsent: true + }, + associatedRoles: { + allowedAudience: RoleAudienceTypes.ORGANIZATION, + roles: [] + }, + authenticationSequence: { + attributeStepId: 1, + requestPathAuthenticators: [], + steps: [ + { + id: 1, + options: [ + { + authenticator: "BasicAuthenticator", + idp: "LOCAL" + } + ] + } + ], + subjectStepId: 1, + type: "DEFAULT" + }, + claimConfiguration: { + claimMappings: [ + { + applicationClaim: "http://wso2.org/claims/username", + localClaim: { + uri: "http://wso2.org/claims/username" + } + } + ], + dialect: "LOCAL", + requestedClaims: [ + { + claim: { + uri: "http://wso2.org/claims/username" + }, + mandatory: false + } + ], + role: { + claim: { + uri: "http://wso2.org/claims/role" + }, + includeUserDomain: true, + mappings: [] + }, + subject: { + claim: { + uri: "http://wso2.org/claims/userid" + }, + includeTenantDomain: false, + includeUserDomain: false, + mappedLocalSubjectMandatory: false, + useMappedLocalSubject: false + } + }, + clientId: "kcn1kuV1yfZbaDofF2Xfg4jUpsUa", + id: "142fbbc0-69b8-4f3d-a6a7-adecc9f29804", + inboundProtocols: [ + { + self: "/api/server/v1/applications/142fbbc0-69b8-4f3d-a6a7-adecc9f29804/inbound-protocols/oidc", + type: "oauth2" + } + ], + isManagementApp: false, + issuer: "", + name: "Salesforce", + provisioningConfigurations: { + outboundProvisioningIdps: [] + }, + realm: "", + templateId: "salesforce" +}; + +export const spaApplicationMockResponse: ApplicationInterface = { + access: ApplicationAccessTypes.WRITE, + advancedConfigurations: { + additionalSpProperties: [ + { + displayName: "Is B2B Self Service Application", + name: "isB2BSelfServiceApp", + value: "false" + } + ], + attestationMetaData: { + androidPackageName: "", + appleAppId: "", + enableClientAttestation: false + }, + discoverableByEndUsers: false, + enableAPIBasedAuthentication: false, + enableAuthorization: false, + fragment: false, + returnAuthenticatedIdpList: false, + saas: false, + skipLoginConsent: true, + skipLogoutConsent: true + }, + associatedRoles: { + allowedAudience: RoleAudienceTypes.ORGANIZATION, + roles: [] + }, + authenticationSequence: { + attributeStepId: 1, + requestPathAuthenticators: [], + steps: [ + { + id: 1, + options: [ + { + authenticator: "BasicAuthenticator", + idp: "LOCAL" + } + ] + } + ], + subjectStepId: 1, + type: "DEFAULT" + }, + claimConfiguration: { + claimMappings: [ + { + applicationClaim: "http://wso2.org/claims/username", + localClaim: { + uri: "http://wso2.org/claims/username" + } + } + ], + dialect: "LOCAL", + requestedClaims: [ + { + claim: { + uri: "http://wso2.org/claims/username" + }, + mandatory: false + } + ], + role: { + claim: { + uri: "http://wso2.org/claims/role" + }, + includeUserDomain: true, + mappings: [] + }, + subject: { + claim: { + uri: "http://wso2.org/claims/userid" + }, + includeTenantDomain: false, + includeUserDomain: false, + mappedLocalSubjectMandatory: false, + useMappedLocalSubject: false + } + }, + clientId: "Y4LmFp5bwqvylgjALgOCYPGvlTMa", + id: "c3a3d3ce-4166-4e6a-963a-94e1c1c8de5f", + inboundProtocols: [ + { + self: "/api/server/v1/applications/c3a3d3ce-4166-4e6a-963a-94e1c1c8de5f/inbound-protocols/oidc", + type: "oauth2" + } + ], + isManagementApp: false, + issuer: "", + name: "SPA", + provisioningConfigurations: { + outboundProvisioningIdps: [] + }, + realm: "", + templateId: "6a90e4b0-fbff-42d7-bfde-1efd98f07cd7" +}; diff --git a/features/admin.applications.v1/__tests__/components/dynamic-forms/application-edit-form.test.tsx b/features/admin.applications.v1/__tests__/components/dynamic-forms/application-edit-form.test.tsx new file mode 100644 index 00000000000..68657831b57 --- /dev/null +++ b/features/admin.applications.v1/__tests__/components/dynamic-forms/application-edit-form.test.tsx @@ -0,0 +1,131 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import MuiTextField, { TextFieldProps as MuiTextFieldProps } from "@mui/material/TextField"; +import * as OxygenTextField from "@oxygen-ui/react/TextField"; +import cloneDeep from "lodash-es/cloneDeep"; +import set from "lodash-es/set"; +import React from "react"; +import { fireEvent, render, screen, waitFor, within } from "../../../../test-configs"; +import * as api from "../../../api/application"; +import { + ApplicationEditForm, + ApplicationEditFormPropsInterface +} from "../../../components/dynamic-forms/application-edit-form"; +import { MainApplicationInterface } from "../../../models"; +import { ApplicationEditTabMetadataInterface } from "../../../models/application-templates"; +import { + applicationMockResponse, + applicationSearchListMockResponse, + dynamicApplicationEditTabMetadataMockObject +} from "../../__mocks__/application-template"; +import "@testing-library/jest-dom"; + +describe("[Applications Management Feature] - ApplicationEditForm", () => { + const getApplicationListMock: jest.SpyInstance = jest.spyOn(api, "getApplicationList"); + + getApplicationListMock.mockImplementation(() => Promise.resolve(applicationSearchListMockResponse)); + + const updateApplicationMock: jest.SpyInstance = jest.spyOn(api, "updateApplicationDetails"); + + updateApplicationMock.mockImplementation(() => Promise.resolve()); + + const textFieldMock: jest.SpyInstance = jest.spyOn(OxygenTextField, "default"); + + textFieldMock.mockImplementation((props: MuiTextFieldProps) => { + const { id, type, ...rest } = props; + + return ( +
+ +
+ ); + }); + + const props: ApplicationEditFormPropsInterface = { + application: applicationMockResponse, + isLoading: false, + onUpdate: jest.fn(), + readOnly: false, + tab: dynamicApplicationEditTabMetadataMockObject + }; + + test("Test the rendering of the dynamic application edit tab based on the metadata", async () => { + render( + + ); + + await waitFor(() => { + expect(screen.getByTestId("application-edit-form-tab-salesforce-settings")).toBeInTheDocument(); + expect(screen.getByTestId("dynamic-application-edit-form-application-name")).toBeInTheDocument(); + expect(screen.getByTestId("dynamic-application-edit-form-application-description")).toBeInTheDocument(); + }); + }); + + test("Test whether the form submission is completed with only defined fields", async () => { + render( + + ); + + fireEvent.click(screen.getByTestId("application-edit-form-update-button")); + + await waitFor(() => { + expect(updateApplicationMock).toHaveBeenCalledWith({ + description: applicationMockResponse?.description, + id: applicationMockResponse?.id, + name: applicationMockResponse?.name + }); + }); + }); + + test("Test whether the form submission is completed with initial values and input values", async () => { + const clonedApplicationEditTabMetadataMockResponse: ApplicationEditTabMetadataInterface = cloneDeep( + dynamicApplicationEditTabMetadataMockObject); + + set( + clonedApplicationEditTabMetadataMockResponse, + "form.submitDefinedFieldsOnly", + false + ); + + props.tab = clonedApplicationEditTabMetadataMockResponse; + + render( + + ); + + fireEvent.change( + within(screen.getByTestId("dynamic-application-edit-form-application-name")).getByRole("textbox"), + { target: { value: "Test App" } } + ); + fireEvent.change( + within(screen.getByTestId("dynamic-application-edit-form-application-description")).getByRole("textbox"), + { target: { value: "Test Description" } } + ); + fireEvent.click(screen.getByTestId("application-edit-form-update-button")); + + const appPayload: MainApplicationInterface = cloneDeep(applicationMockResponse); + + appPayload.name = "Test App"; + appPayload.description = "Test Description"; + + await waitFor(() => { + expect(updateApplicationMock).toHaveBeenCalledWith(appPayload); + }); + }); +}); diff --git a/features/admin.applications.v1/__tests__/pages/application-edit.test.tsx b/features/admin.applications.v1/__tests__/pages/application-edit.test.tsx new file mode 100644 index 00000000000..79511b0489f --- /dev/null +++ b/features/admin.applications.v1/__tests__/pages/application-edit.test.tsx @@ -0,0 +1,191 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { I18n } from "@wso2is/i18n"; +import { createMemoryHistory } from "history"; +import React from "react"; +import * as getCORSOrigins from "../../../admin.core.v1/api/cors-configurations"; +import * as useUIConfig from "../../../admin.core.v1/hooks/use-ui-configs"; +import { render, screen, waitFor, within } from "../../../test-configs"; +import * as api from "../../api/application"; +import * as useGetApplication from "../../api/use-get-application"; +import * as useGetApplicationTemplateMetadata from "../../api/use-get-application-template-metadata"; +import * as useGetApplicationTemplates from "../../api/use-get-application-templates"; +import ApplicationEditPage, { ApplicationEditPageInterface } from "../../pages/application-edit"; +import ApplicationTemplatesProvider from "../../provider/application-templates-provider"; +import { ApplicationManagementUtils } from "../../utils/application-management-utils"; +import { + applicationMockResponse, + applicationSearchListMockResponse, + applicationTemplateMetadataMockResponse, + applicationTemplatesListMockResponse, + spaApplicationMockResponse +} from "../__mocks__/application-template"; +import "@testing-library/jest-dom"; + +describe("[Applications Management Feature] - ApplicationEditPage", () => { + const useGetApplicationTemplatesMock: jest.SpyInstance = jest.spyOn(useGetApplicationTemplates, "default"); + + useGetApplicationTemplatesMock.mockImplementation(() => ({ + data: applicationTemplatesListMockResponse, + error: null, + isLoading: false, + isValidating: false, + mutate: jest.fn() + })); + + const useGetApplicationMock: jest.SpyInstance = jest.spyOn(useGetApplication, "useGetApplication"); + + useGetApplicationMock.mockImplementation(() => ({ + data: spaApplicationMockResponse, + error: null, + isLoading: false, + isValidating: false, + mutate: jest.fn() + })); + + const getApplicationListMock: jest.SpyInstance = jest.spyOn(api, "getApplicationList"); + + getApplicationListMock.mockImplementation(() => Promise.resolve(applicationSearchListMockResponse)); + + const useUIConfigMock: jest.SpyInstance = jest.spyOn(useUIConfig, "default"); + + useUIConfigMock.mockImplementation(() => ({ + UIConfig: { + legacyMode: { + organizations: true + } + } + })); + + const getInboundProtocolsMock: jest.SpyInstance = jest.spyOn( + ApplicationManagementUtils, "getInboundProtocols"); + + getInboundProtocolsMock.mockImplementation(() => Promise.resolve()); + + const getInboundProtocolConfigMock: jest.SpyInstance = jest.spyOn(api, "getInboundProtocolConfig"); + + getInboundProtocolConfigMock.mockImplementation(() => Promise.resolve({})); + + const getSAMLApplicationMetaMock: jest.SpyInstance = jest.spyOn( + ApplicationManagementUtils, "getSAMLApplicationMeta"); + + getSAMLApplicationMetaMock.mockImplementation(() => Promise.resolve()); + + const getOIDCApplicationMetaMock: jest.SpyInstance = jest.spyOn( + ApplicationManagementUtils, "getOIDCApplicationMeta"); + + getOIDCApplicationMetaMock.mockImplementation(() => Promise.resolve()); + + const getCORSOriginsMock: jest.SpyInstance = jest.spyOn( + getCORSOrigins, "getCORSOrigins"); + + getCORSOriginsMock.mockImplementation(() => Promise.resolve([])); + + const translateMock: jest.SpyInstance = jest.spyOn(I18n.instance, "t"); + + translateMock.mockImplementation((key: string) => key); + + const props: ApplicationEditPageInterface = { + history: createMemoryHistory(), + location: { + hash: "", + pathname: "/t/carbon.super/console/applications/c3a3d3ce-4166-4e6a-963a-94e1c1c8de5f", + search: "", + state: null + }, + match: { + isExact: true, + params: { + id: "c3a3d3ce-4166-4e6a-963a-94e1c1c8de5f" + }, + path: "/t/carbon.super/console/applications/c3a3d3ce-4166-4e6a-963a-94e1c1c8de5f", + url: "https://localhost:9001/t/carbon.super/console/applications/c3a3d3ce-4166-4e6a-963a-94e1c1c8de5f" + } + }; + + test("Test the rendering of the application edit page component for a SPA app", async () => { + render( + + + + ); + + await waitFor(() => { + expect(screen.getByTestId("application-edit-page-layout")).toBeInTheDocument(); + + const tabs: string[] = [ + "applications:edit.sections.general.tabName", + "applications:edit.sections.access.tabName", + "applications:edit.sections.attributes.tabName", + "applications:edit.sections.signOnMethod.tabName", + "extensions:develop.applications.edit.sections.apiAuthorization.title", + "extensions:develop.applications.edit.sections.roles.heading", + "applications:edit.sections.provisioning.tabName", + "applications:edit.sections.advanced.tabName", + "applications:edit.sections.sharedAccess.tabName", + "applications:edit.sections.info.tabName" + ]; + + tabs.forEach((tabName: string) => expect( + within(screen.getByTestId("application-edit-resource-tabs")).getByText(tabName)).toBeInTheDocument()); + }); + }); + + test("Test the rendering of the application edit page component for a SSO app", async () => { + const useGetApplicationTemplateMetadataMock: jest.SpyInstance = jest.spyOn( + useGetApplicationTemplateMetadata, "default"); + + useGetApplicationTemplateMetadataMock.mockImplementation(() => ({ + data: applicationTemplateMetadataMockResponse, + error: null, + isLoading: false, + isValidating: false, + mutate: jest.fn() + })); + + useGetApplicationMock.mockImplementation(() => ({ + data: applicationMockResponse, + error: null, + isLoading: false, + isValidating: false, + mutate: jest.fn() + })); + + render( + + + + ); + + await waitFor(() => { + expect(screen.getByTestId("application-edit-page-layout")).toBeInTheDocument(); + + const tabs: string[] = [ + "Quick Start", + "applications:edit.sections.general.tabName", + "Application Roles", + "Attributes", + "Salesforce Settings" + ]; + + tabs.forEach((tabName: string) => expect( + within(screen.getByTestId("application-edit-resource-tabs")).getByText(tabName)).toBeInTheDocument()); + }); + }); +}); diff --git a/features/admin.applications.v1/components/dynamic-forms/application-edit-form.tsx b/features/admin.applications.v1/components/dynamic-forms/application-edit-form.tsx index b0a8da5ef4e..c84b0e09b7a 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-edit-form.tsx +++ b/features/admin.applications.v1/components/dynamic-forms/application-edit-form.tsx @@ -185,7 +185,11 @@ export const ApplicationEditForm: FunctionComponent + { isLoading ? diff --git a/features/admin.applications.v1/pages/application-edit.tsx b/features/admin.applications.v1/pages/application-edit.tsx index 6bc0e796dec..524e5c9fff5 100755 --- a/features/admin.applications.v1/pages/application-edit.tsx +++ b/features/admin.applications.v1/pages/application-edit.tsx @@ -63,7 +63,7 @@ import { ApplicationTemplateManagementUtils } from "../utils/application-templat /** * Prop types for the applications edit page component. */ -interface ApplicationEditPageInterface extends IdentifiableComponentInterface, RouteComponentProps { +export interface ApplicationEditPageInterface extends IdentifiableComponentInterface, RouteComponentProps { } /** diff --git a/features/admin.extensions.v1/configs/common.tsx b/features/admin.extensions.v1/configs/common.tsx index a7beccc26db..b5ae2bbb3ab 100644 --- a/features/admin.extensions.v1/configs/common.tsx +++ b/features/admin.extensions.v1/configs/common.tsx @@ -151,6 +151,7 @@ export const commonConfig: CommonConfig = { } }, primaryUserstoreOnly: true, + useExtensionTestConfig: false, userEditSection: { isGuestUser: true, showEmail: true diff --git a/features/admin.extensions.v1/configs/models/common.ts b/features/admin.extensions.v1/configs/models/common.ts index 1f59cfb00d8..0bf34c6dcc2 100644 --- a/features/admin.extensions.v1/configs/models/common.ts +++ b/features/admin.extensions.v1/configs/models/common.ts @@ -51,6 +51,7 @@ export interface CommonConfig { }; }; primaryUserstoreOnly: boolean; + useExtensionTestConfig: boolean; userEditSection: { isGuestUser: boolean; showEmail: boolean; diff --git a/features/admin.extensions.v1/test-configs/__mocks__/window.ts b/features/admin.extensions.v1/test-configs/__mocks__/window.ts index d09891c692c..624a91d54b2 100644 --- a/features/admin.extensions.v1/test-configs/__mocks__/window.ts +++ b/features/admin.extensions.v1/test-configs/__mocks__/window.ts @@ -16,575 +16,579 @@ * under the License. */ +import { commonConfig } from "../../configs"; + /** * @remarks Window Mocks. * * @remarks Document and place all the extended Window mocks in this file. */ -/** - * Custom window interface. - */ -interface CustomExtendedWindow extends Window { - AppUtils: { - getConfig: () => any; - }; -} +if (commonConfig?.useExtensionTestConfig) { + /** + * Custom window interface. + */ + interface CustomExtendedWindow extends Window { + AppUtils: { + getConfig: () => any; + }; + } -/** - * `AppUtils` Mock. - * @remarks Overrides the default `window.AppUtils.getConfig()` result. - * IMPORTANT: Constantly keep this updated by executing `window.AppUtils.getConfig()` on the browser. - */ -(window as CustomExtendedWindow & typeof globalThis).AppUtils = { - /* eslint-disable sort-keys, max-len */ - getConfig: () => { - return { - accountApp: { - commonPostLogoutUrl: true, - path: "https://localhost:9000/myaccount/overview", - tenantQualifiedPath: "https://localhost:9000/t/brionmario" - }, - adminApp: { - basePath: "/t/brionmario/manage", - displayName: "Manage", - path: "/t/brionmario/manage/users" - }, - allowMultipleAppProtocols: false, - appBase: "", - appBaseNameForHistoryAPI: "/", - appBaseWithTenant: "/t/brionmario", - clientID: "CONSOLE", - clientOrigin: "https://dev.console.asgardeo.io", - clientOriginWithTenant: "https://dev.console.asgardeo.io/t/brionmario", - debug: false, - developerApp: { - basePath: "/t/brionmario/develop", - displayName: "Develop", - path: "/t/brionmario/develop/applications" - }, - docSiteUrl: "https://dev.docs.asgardeo.io/", - documentation: { - baseURL: "https://api.github.com", - contentBaseURL: "https://api.github.com/repos/wso2/docs-is/contents/en/docs", - githubOptions: { - branch: "new_restructure" + /** + * `AppUtils` Mock. + * @remarks Overrides the default `window.AppUtils.getConfig()` result. + * IMPORTANT: Constantly keep this updated by executing `window.AppUtils.getConfig()` on the browser. + */ + (window as CustomExtendedWindow & typeof globalThis).AppUtils = { + /* eslint-disable sort-keys, max-len */ + getConfig: () => { + return { + accountApp: { + commonPostLogoutUrl: true, + path: "https://localhost:9000/myaccount/overview", + tenantQualifiedPath: "https://localhost:9000/t/brionmario" }, - imagePrefixURL: "https://github.com/wso2/docs-is/raw/new_restructure/en/docs/", - provider: "GITHUB", - structureFileType: "YAML", - structureFileURL: "https://api.github.com/repos/wso2/docs-is/contents/en/mkdocs.yml" - }, - extensions: { - applicationInsightsEnabled: false, - applicationInsightsCookieDomain: "", - applicationInsightsCookiePostfix: "", - applicationInsightsInstrumentationKey: "", - applicationInsightsProxyEndpoint: "", - collaboratorUsernameRegex: "^[\\u00C0-\\u00FFa-zA-Z0-9.+\\-_]+@[a-zA-Z0-9.\\-]+\\.[a-zA-Z]{2,10}$", - community: "https://wso2iem-en-community.insided.com/ssoproxy/login?ssoType=openidconnect&returnUrl=https://wso2iem-en-community.insided.com/asgardeo-1", - feedbackEndPoint: "https://dev.portal.asgardeo.io/api/cloud/v1/feedback/", - helpCenterUrl: "https://dev.support.asgardeo.io/asp?id=asgardeo_support_login", - defaultBrandedLoginScreenCopyright: "${copyright} ${year} WSO2, Inc.", - supportEmail: "asgardeo-help@wso2.com" - }, - idpConfigs: { - serverOrigin: "https://dev.api.asgardeo.io", - enablePKCE: true, - clockTolerance: 300, - responseMode: "query", - scope: [ - "SYSTEM" - ], - storage: "webWorker", - authorizeEndpointURL: "https://dev.api.asgardeo.io/t/a/oauth2/authorize?ut=brionmario", - logoutEndpointURL: "https://dev.api.asgardeo.io/t/a/oidc/logout", - oidcSessionIFrameEndpointURL: "https://dev.api.asgardeo.io/t/a/oidc/checksession" - }, - isSaas: true, - loginCallbackURL: "https://dev.console.asgardeo.io/login", - logoutCallbackURL: "https://dev.console.asgardeo.io", - productVersionConfig: { - productVersion: "BETA" - }, - routes: { - home: "/t/brionmario/getting-started", - login: "/t/brionmario/login", - logout: "/t/brionmario/logout" - }, - serverOrigin: "https://dev.api.asgardeo.io", - serverOriginWithTenant: "https://dev.api.asgardeo.io/t/brionmario", - session: { - sessionRefreshTimeOut: 300, - userIdleWarningTimeOut: 1740, - checkSessionInterval: 5, - userIdleTimeOut: 1800 - }, - superTenant: "carbon.super", - tenant: "brionmario", - tenantPath: "/t/brionmario", - tenantPrefix: "t", - ui: { - appCopyright: "${copyright} ${year} WSO2, Inc.", - appTitle: "Asgardeo Console", - appName: "Console", - applicationTemplateLoadingStrategy: "LOCAL", - identityProviderTemplateLoadingStrategy: "LOCAL", - appLogoPath: "/assets/images/branding/logo.svg", - showAppSwitchButton: true, - features: { - accountSecurity: { - enabled: true, - disabledFeatures: [], - scopes: { - create: [], - read: [ - "internal_governance_view" - ], - update: [ - "internal_governance_update" - ], - delete: [] - } - }, - accountRecovery: { - enabled: true, - disabledFeatures: [], - scopes: { - create: [], - read: [ - "internal_governance_view" - ], - update: [ - "internal_governance_update" - ], - delete: [] - } - }, - applications: { - disabledFeatures: [], - enabled: true, - scopes: { - feature: [ - "console:applications" - ], - create: [ - "internal_application_mgt_create" - ], - read: [ - "internal_cors_origins_view", - "internal_application_mgt_view", - "internal_claim_meta_view", - "internal_idp_view" - ], - update: [ - "internal_application_mgt_update" - ], - delete: [ - "internal_application_mgt_delete" - ] - } - }, - approvals: { - disabledFeatures: [], - enabled: false, - scopes: { - create: [ - "internal_humantask_view" - ], - read: [ - "internal_humantask_view" - ], - update: [ - "internal_humantask_view" - ], - delete: [ - "internal_humantask_view" - ] - } - }, - attributeDialects: { - enabled: true, - disabledFeatures: [], - scopes: { - feature: [ - "console:attributes" - ], - create: [ - "internal_claim_meta_create" - ], - read: [ - "internal_userstore_view", - "internal_claim_meta_view" - ], - update: [ - "internal_claim_meta_update" - ], - delete: [ - "internal_claim_meta_delete" - ] - } - }, - branding: { - enabled: true, - disabledFeatures: [], - scopes: { - create: [ - "internal_application_mgt_update" - ], - delete: [ - "internal_application_mgt_update" - ], - read: [ - "internal_application_mgt_view" - ], - update: [ - "internal_application_mgt_update" - ] - } - }, - certificates: { - enabled: true, - disabledFeatures: [], - scopes: { - create: [ - "internal_keystore_update" - ], - read: [ - "internal_keystore_view" - ], - update: [ - "internal_keystore_update" - ], - delete: [ - "internal_keystore_update" - ] - } - }, - developerGettingStarted: { - enabled: true, - disabledFeatures: [], - scopes: { - create: [], - read: [ - "internal_application_mgt_create", - "internal_idp_create", - "internal_application_mgt_update" - ], - update: [], - delete: [] - } - }, - emailTemplates: { - enabled: true, - disabledFeatures: [], - scopes: { - create: [ - "internal_email_mgt_create" - ], - read: [ - "internal_email_mgt_view" - ], - update: [ - "internal_email_mgt_update" - ], - delete: [ - "internal_email_mgt_delete" - ] - } - }, - governanceConnectors: { - enabled: true, - disabledFeatures: [], - scopes: { - create: [], - read: [ - "internal_governance_view" - ], - update: [ - "internal_governance_update" - ], - delete: [] - } - }, - groups: { - enabled: true, - disabledFeatures: [], - scopes: { - feature: [ - "console:groups" - ], - create: [ - "internal_group_mgt_create" - ], - read: [ - "internal_user_mgt_view", - "internal_role_mgt_view", - "internal_group_mgt_view", - "internal_userstore_view" - ], - update: [ - "internal_group_mgt_update" - ], - delete: [ - "internal_group_mgt_delete" - ] - } - }, - identityProviders: { - disabledFeatures: [], - enabled: true, - scopes: { - feature: [ - "console:idps" - ], - create: [ - "internal_idp_create" - ], - read: [ - "internal_userstore_view", - "internal_idp_view", - "internal_role_mgt_view", - "internal_claim_meta_view" - ], - update: [ - "internal_idp_update" - ], - delete: [ - "internal_idp_delete" - ] - } - }, - manageGettingStarted: { - enabled: true, - disabledFeatures: [], - scopes: { - create: [], - read: [ - "internal_user_mgt_create", - "internal_group_mgt_create" - ], - update: [], - delete: [] - } - }, - oidcScopes: { - enabled: true, - disabledFeatures: [], - scopes: { - feature: [ - "console:scopes:oidc" - ], - create: [ - "internal_oidc_scope_mgt_create" - ], - read: [ - "internal_oidc_scope_mgt_view", - "internal_claim_meta_view" - ], - update: [ - "internal_oidc_scope_mgt_update" - ], - delete: [ - "internal_oidc_scope_mgt_delete" - ] - } - }, - secretsManagement: { - enabled: false, - disabledFeatures: [], - scopes: { - create: [ - "internal_secret_mgt_add" - ], - read: [ - "internal_secret_mgt_view" - ], - update: [ - "internal_secret_mgt_update" - ], - delete: [ - "internal_secret_mgt_delete" - ] - } - }, - remoteFetchConfig: { - enabled: true, - disabledFeatures: [], - scopes: { - create: [ - "internal_identity_mgt_view", - "internal_identity_mgt_update", - "internal_identity_mgt_create", - "internal_identity_mgt_delete" - ], - read: [ - "internal_identity_mgt_view", - "internal_identity_mgt_update", - "internal_identity_mgt_create", - "internal_identity_mgt_delete" - ], - update: [ - "internal_identity_mgt_view", - "internal_identity_mgt_update", - "internal_identity_mgt_create", - "internal_identity_mgt_delete" - ], - delete: [ - "internal_identity_mgt_view", - "internal_identity_mgt_update", - "internal_identity_mgt_create", - "internal_identity_mgt_delete" - ] - } - }, - roles: { - enabled: true, - disabledFeatures: [], - scopes: { - feature: [ - "console:roles" - ], - create: [ - "internal_role_mgt_create" - ], - read: [ - "internal_user_mgt_view", - "internal_role_mgt_view", - "internal_userstore_view", - "internal_group_mgt_view" - ], - update: [ - "internal_role_mgt_update" - ], - delete: [ - "internal_role_mgt_delete" - ] - } - }, - userOnboarding: { - enabled: true, - disabledFeatures: [], - scopes: { - create: [], - read: [ - "internal_governance_view" - ], - update: [ - "internal_governance_update" - ], - delete: [] - } - }, - userStores: { - enabled: true, - disabledFeatures: [], - scopes: { - create: [ - "internal_userstore_create" - ], - read: [ - "internal_userstore_view" - ], - update: [ - "internal_userstore_update" - ], - delete: [ - "internal_userstore_delete" - ] - } + adminApp: { + basePath: "/t/brionmario/manage", + displayName: "Manage", + path: "/t/brionmario/manage/users" + }, + allowMultipleAppProtocols: false, + appBase: "", + appBaseNameForHistoryAPI: "/", + appBaseWithTenant: "/t/brionmario", + clientID: "CONSOLE", + clientOrigin: "https://dev.console.asgardeo.io", + clientOriginWithTenant: "https://dev.console.asgardeo.io/t/brionmario", + debug: false, + developerApp: { + basePath: "/t/brionmario/develop", + displayName: "Develop", + path: "/t/brionmario/develop/applications" + }, + docSiteUrl: "https://dev.docs.asgardeo.io/", + documentation: { + baseURL: "https://api.github.com", + contentBaseURL: "https://api.github.com/repos/wso2/docs-is/contents/en/docs", + githubOptions: { + branch: "new_restructure" }, - users: { - enabled: true, - disabledFeatures: [], - scopes: { - feature: [ - "console:users" - ], - create: [ - "internal_user_mgt_create" - ], - read: [ - "internal_userstore_view", - "internal_role_mgt_view", - "internal_group_mgt_view", - "internal_governance_view", - "internal_login", - "internal_user_mgt_view", - "internal_user_mgt_list", - "internal_session_view" - ], - update: [ - "internal_user_mgt_update", - "internal_session_delete" - ], - delete: [ - "internal_user_mgt_delete" - ] - } - } + imagePrefixURL: "https://github.com/wso2/docs-is/raw/new_restructure/en/docs/", + provider: "GITHUB", + structureFileType: "YAML", + structureFileURL: "https://api.github.com/repos/wso2/docs-is/contents/en/mkdocs.yml" + }, + extensions: { + applicationInsightsEnabled: false, + applicationInsightsCookieDomain: "", + applicationInsightsCookiePostfix: "", + applicationInsightsInstrumentationKey: "", + applicationInsightsProxyEndpoint: "", + collaboratorUsernameRegex: "^[\\u00C0-\\u00FFa-zA-Z0-9.+\\-_]+@[a-zA-Z0-9.\\-]+\\.[a-zA-Z]{2,10}$", + community: "https://wso2iem-en-community.insided.com/ssoproxy/login?ssoType=openidconnect&returnUrl=https://wso2iem-en-community.insided.com/asgardeo-1", + feedbackEndPoint: "https://dev.portal.asgardeo.io/api/cloud/v1/feedback/", + helpCenterUrl: "https://dev.support.asgardeo.io/asp?id=asgardeo_support_login", + defaultBrandedLoginScreenCopyright: "${copyright} ${year} WSO2, Inc.", + supportEmail: "asgardeo-help@wso2.com" }, - gravatarConfig: { - fallback: "404" + idpConfigs: { + serverOrigin: "https://dev.api.asgardeo.io", + enablePKCE: true, + clockTolerance: 300, + responseMode: "query", + scope: [ + "SYSTEM" + ], + storage: "webWorker", + authorizeEndpointURL: "https://dev.api.asgardeo.io/t/a/oauth2/authorize?ut=brionmario", + logoutEndpointURL: "https://dev.api.asgardeo.io/t/a/oidc/logout", + oidcSessionIFrameEndpointURL: "https://dev.api.asgardeo.io/t/a/oidc/checksession" }, - hiddenAuthenticators: [ - "FIDOAuthenticator", - "IdentifierExecutor" - ], - hiddenConnectionTemplates: [], - i18nConfigs: { - showLanguageSwitcher: false, - langAutoDetectEnabled: false + isSaas: true, + loginCallbackURL: "https://dev.console.asgardeo.io/login", + logoutCallbackURL: "https://dev.console.asgardeo.io", + productVersionConfig: { + productVersion: "BETA" + }, + routes: { + home: "/t/brionmario/getting-started", + login: "/t/brionmario/login", + logout: "/t/brionmario/logout" + }, + serverOrigin: "https://dev.api.asgardeo.io", + serverOriginWithTenant: "https://dev.api.asgardeo.io/t/brionmario", + session: { + sessionRefreshTimeOut: 300, + userIdleWarningTimeOut: 1740, + checkSessionInterval: 5, + userIdleTimeOut: 1800 }, - identityProviderTemplates: { - enterpriseOIDC: { - enabled: true + superTenant: "carbon.super", + tenant: "brionmario", + tenantPath: "/t/brionmario", + tenantPrefix: "t", + ui: { + appCopyright: "${copyright} ${year} WSO2, Inc.", + appTitle: "Asgardeo Console", + appName: "Console", + applicationTemplateLoadingStrategy: "LOCAL", + identityProviderTemplateLoadingStrategy: "LOCAL", + appLogoPath: "/assets/images/branding/logo.svg", + showAppSwitchButton: true, + features: { + accountSecurity: { + enabled: true, + disabledFeatures: [], + scopes: { + create: [], + read: [ + "internal_governance_view" + ], + update: [ + "internal_governance_update" + ], + delete: [] + } + }, + accountRecovery: { + enabled: true, + disabledFeatures: [], + scopes: { + create: [], + read: [ + "internal_governance_view" + ], + update: [ + "internal_governance_update" + ], + delete: [] + } + }, + applications: { + disabledFeatures: [], + enabled: true, + scopes: { + feature: [ + "console:applications" + ], + create: [ + "internal_application_mgt_create" + ], + read: [ + "internal_cors_origins_view", + "internal_application_mgt_view", + "internal_claim_meta_view", + "internal_idp_view" + ], + update: [ + "internal_application_mgt_update" + ], + delete: [ + "internal_application_mgt_delete" + ] + } + }, + approvals: { + disabledFeatures: [], + enabled: false, + scopes: { + create: [ + "internal_humantask_view" + ], + read: [ + "internal_humantask_view" + ], + update: [ + "internal_humantask_view" + ], + delete: [ + "internal_humantask_view" + ] + } + }, + attributeDialects: { + enabled: true, + disabledFeatures: [], + scopes: { + feature: [ + "console:attributes" + ], + create: [ + "internal_claim_meta_create" + ], + read: [ + "internal_userstore_view", + "internal_claim_meta_view" + ], + update: [ + "internal_claim_meta_update" + ], + delete: [ + "internal_claim_meta_delete" + ] + } + }, + branding: { + enabled: true, + disabledFeatures: [], + scopes: { + create: [ + "internal_application_mgt_update" + ], + delete: [ + "internal_application_mgt_update" + ], + read: [ + "internal_application_mgt_view" + ], + update: [ + "internal_application_mgt_update" + ] + } + }, + certificates: { + enabled: true, + disabledFeatures: [], + scopes: { + create: [ + "internal_keystore_update" + ], + read: [ + "internal_keystore_view" + ], + update: [ + "internal_keystore_update" + ], + delete: [ + "internal_keystore_update" + ] + } + }, + developerGettingStarted: { + enabled: true, + disabledFeatures: [], + scopes: { + create: [], + read: [ + "internal_application_mgt_create", + "internal_idp_create", + "internal_application_mgt_update" + ], + update: [], + delete: [] + } + }, + emailTemplates: { + enabled: true, + disabledFeatures: [], + scopes: { + create: [ + "internal_email_mgt_create" + ], + read: [ + "internal_email_mgt_view" + ], + update: [ + "internal_email_mgt_update" + ], + delete: [ + "internal_email_mgt_delete" + ] + } + }, + governanceConnectors: { + enabled: true, + disabledFeatures: [], + scopes: { + create: [], + read: [ + "internal_governance_view" + ], + update: [ + "internal_governance_update" + ], + delete: [] + } + }, + groups: { + enabled: true, + disabledFeatures: [], + scopes: { + feature: [ + "console:groups" + ], + create: [ + "internal_group_mgt_create" + ], + read: [ + "internal_user_mgt_view", + "internal_role_mgt_view", + "internal_group_mgt_view", + "internal_userstore_view" + ], + update: [ + "internal_group_mgt_update" + ], + delete: [ + "internal_group_mgt_delete" + ] + } + }, + identityProviders: { + disabledFeatures: [], + enabled: true, + scopes: { + feature: [ + "console:idps" + ], + create: [ + "internal_idp_create" + ], + read: [ + "internal_userstore_view", + "internal_idp_view", + "internal_role_mgt_view", + "internal_claim_meta_view" + ], + update: [ + "internal_idp_update" + ], + delete: [ + "internal_idp_delete" + ] + } + }, + manageGettingStarted: { + enabled: true, + disabledFeatures: [], + scopes: { + create: [], + read: [ + "internal_user_mgt_create", + "internal_group_mgt_create" + ], + update: [], + delete: [] + } + }, + oidcScopes: { + enabled: true, + disabledFeatures: [], + scopes: { + feature: [ + "console:scopes:oidc" + ], + create: [ + "internal_oidc_scope_mgt_create" + ], + read: [ + "internal_oidc_scope_mgt_view", + "internal_claim_meta_view" + ], + update: [ + "internal_oidc_scope_mgt_update" + ], + delete: [ + "internal_oidc_scope_mgt_delete" + ] + } + }, + secretsManagement: { + enabled: false, + disabledFeatures: [], + scopes: { + create: [ + "internal_secret_mgt_add" + ], + read: [ + "internal_secret_mgt_view" + ], + update: [ + "internal_secret_mgt_update" + ], + delete: [ + "internal_secret_mgt_delete" + ] + } + }, + remoteFetchConfig: { + enabled: true, + disabledFeatures: [], + scopes: { + create: [ + "internal_identity_mgt_view", + "internal_identity_mgt_update", + "internal_identity_mgt_create", + "internal_identity_mgt_delete" + ], + read: [ + "internal_identity_mgt_view", + "internal_identity_mgt_update", + "internal_identity_mgt_create", + "internal_identity_mgt_delete" + ], + update: [ + "internal_identity_mgt_view", + "internal_identity_mgt_update", + "internal_identity_mgt_create", + "internal_identity_mgt_delete" + ], + delete: [ + "internal_identity_mgt_view", + "internal_identity_mgt_update", + "internal_identity_mgt_create", + "internal_identity_mgt_delete" + ] + } + }, + roles: { + enabled: true, + disabledFeatures: [], + scopes: { + feature: [ + "console:roles" + ], + create: [ + "internal_role_mgt_create" + ], + read: [ + "internal_user_mgt_view", + "internal_role_mgt_view", + "internal_userstore_view", + "internal_group_mgt_view" + ], + update: [ + "internal_role_mgt_update" + ], + delete: [ + "internal_role_mgt_delete" + ] + } + }, + userOnboarding: { + enabled: true, + disabledFeatures: [], + scopes: { + create: [], + read: [ + "internal_governance_view" + ], + update: [ + "internal_governance_update" + ], + delete: [] + } + }, + userStores: { + enabled: true, + disabledFeatures: [], + scopes: { + create: [ + "internal_userstore_create" + ], + read: [ + "internal_userstore_view" + ], + update: [ + "internal_userstore_update" + ], + delete: [ + "internal_userstore_delete" + ] + } + }, + users: { + enabled: true, + disabledFeatures: [], + scopes: { + feature: [ + "console:users" + ], + create: [ + "internal_user_mgt_create" + ], + read: [ + "internal_userstore_view", + "internal_role_mgt_view", + "internal_group_mgt_view", + "internal_governance_view", + "internal_login", + "internal_user_mgt_view", + "internal_user_mgt_list", + "internal_session_view" + ], + update: [ + "internal_user_mgt_update", + "internal_session_delete" + ], + delete: [ + "internal_user_mgt_delete" + ] + } + } + }, + gravatarConfig: { + fallback: "404" }, - enterpriseSAML: { - enabled: true + hiddenAuthenticators: [ + "FIDOAuthenticator", + "IdentifierExecutor" + ], + hiddenConnectionTemplates: [], + i18nConfigs: { + showLanguageSwitcher: false, + langAutoDetectEnabled: false }, - facebook: { - enabled: true + identityProviderTemplates: { + enterpriseOIDC: { + enabled: true + }, + enterpriseSAML: { + enabled: true + }, + facebook: { + enabled: true + }, + google: { + enabled: true + }, + github: { + enabled: true + }, + microsoft: { + enabled: true + } }, - google: { - enabled: true + isCookieConsentBannerEnabled: true, + isGroupAndRoleSeparationEnabled: true, + isSignatureValidationCertificateAliasEnabled: false, + isCustomClaimMappingEnabled: true, + isCustomClaimMappingMergeEnabled: true, + isClientSecretHashEnabled: false, + isDefaultDialectEditingEnabled: false, + isDialectAddingEnabled: false, + isHeaderAvatarLabelAllowed: false, + isLeftNavigationCategorized: false, + isRequestPathAuthenticationEnabled: false, + listAllAttributeDialects: false, + privacyPolicyConfigs: { + visibleOnFooter: false }, - github: { - enabled: true + productName: "Asgardeo", + productVersionConfig: { + productVersion: "BETA" }, - microsoft: { - enabled: true + selfAppIdentifier: "Console", + systemAppsIdentifiers: [ + "Console", + "My Account" + ], + theme: { + name: "asgardio" } - }, - isCookieConsentBannerEnabled: true, - isGroupAndRoleSeparationEnabled: true, - isSignatureValidationCertificateAliasEnabled: false, - isCustomClaimMappingEnabled: true, - isCustomClaimMappingMergeEnabled: true, - isClientSecretHashEnabled: false, - isDefaultDialectEditingEnabled: false, - isDialectAddingEnabled: false, - isHeaderAvatarLabelAllowed: false, - isLeftNavigationCategorized: false, - isRequestPathAuthenticationEnabled: false, - listAllAttributeDialects: false, - privacyPolicyConfigs: { - visibleOnFooter: false - }, - productName: "Asgardeo", - productVersionConfig: { - productVersion: "BETA" - }, - selfAppIdentifier: "Console", - systemAppsIdentifiers: [ - "Console", - "My Account" - ], - theme: { - name: "asgardio" } - } - }; - } - /* eslint-disable sort-keys, max-len */ -}; + }; + } + /* eslint-disable sort-keys, max-len */ + }; +} diff --git a/features/test-configs/__mocks__/global.ts b/features/test-configs/__mocks__/global.ts index b28571f2893..c92a964a972 100644 --- a/features/test-configs/__mocks__/global.ts +++ b/features/test-configs/__mocks__/global.ts @@ -51,5 +51,6 @@ global.console = { ...console, debug: jest.fn(), error: jest.fn(), - info: jest.fn() + info: jest.fn(), + warn: jest.fn() }; diff --git a/features/test-configs/__mocks__/redux/redux-store-state.ts b/features/test-configs/__mocks__/redux/redux-store-state.ts index eba2db74e96..8bd53dc367c 100644 --- a/features/test-configs/__mocks__/redux/redux-store-state.ts +++ b/features/test-configs/__mocks__/redux/redux-store-state.ts @@ -370,6 +370,27 @@ const ReduxStoreStateMock: AppState = { identityProviderTemplateLoadingStrategy: "LOCAL", appTitle: "Console | WSO2 Identity Server", features: { + apiResources: { + disabledFeatures: [], + enabled: true, + scopes: { + create: [ + "internal_api_resource_create" + ], + delete: [ + "internal_api_resource_delete" + ], + feature: [ + "console:apiResources" + ], + read: [ + "internal_api_resource_view" + ], + update: [ + "internal_api_resource_update" + ] + } + }, applications: { disabledFeatures: [], enabled: true, @@ -651,6 +672,23 @@ const ReduxStoreStateMock: AppState = { isLeftNavigationCategorized: true, isRequestPathAuthenticationEnabled: true, isSignatureValidationCertificateAliasEnabled: false, + legacyMode: { + apiResourcesV1: false, + apiResourcesV2: true, + applicationListSystemApps: false, + applicationOIDCSubjectIdentifier: true, + applicationRequestPathAuthentication: false, + applicationSystemAppsSettings: false, + backupCodesForSubOrganizations: true, + certificates: false, + consoleFeatureScopeCheck: true, + loginAndRegistrationEmailDomainDiscovery: true, + organizations: true, + roleMapping: false, + rolesV1: false, + saasApplications: false, + secretsManagement: false + }, listAllAttributeDialects: false, privacyPolicyConfigs: { visibleOnFooter: true @@ -784,7 +822,9 @@ const ReduxStoreStateMock: AppState = { name: "Organization", id: "org-0001", ref: "/org-001" - } + }, + isFirstLevelOrganization: true, + organizationType: "SUPER_ORGANIZATION" }, profile: { isSCIMEnabled: true, diff --git a/features/test-configs/__mocks__/window/app-utils.ts b/features/test-configs/__mocks__/window/app-utils.ts index 0dc871bba73..0befd088be4 100644 --- a/features/test-configs/__mocks__/window/app-utils.ts +++ b/features/test-configs/__mocks__/window/app-utils.ts @@ -458,6 +458,23 @@ interface CustomWindow extends Window { isCookieConsentBannerEnabled: false, isGroupAndRoleSeparationEnabled: true, isSignatureValidationCertificateAliasEnabled: false, + legacyMode: { + apiResourcesV1: false, + apiResourcesV2: true, + applicationListSystemApps: false, + applicationOIDCSubjectIdentifier: true, + applicationRequestPathAuthentication: false, + applicationSystemAppsSettings: false, + backupCodesForSubOrganizations: true, + certificates: false, + consoleFeatureScopeCheck: true, + loginAndRegistrationEmailDomainDiscovery: true, + organizations: true, + roleMapping: false, + rolesV1: false, + saasApplications: false, + secretsManagement: false + }, isClientSecretHashEnabled: false, isDefaultDialectEditingEnabled: false, isDialectAddingEnabled: true, From 884105fa327d62cf59cc061cc8b566ee927b4614 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Wed, 22 May 2024 19:32:20 +0530 Subject: [PATCH 035/114] add unit test for field validations --- .../__mocks__/application-template.ts | 34 ++++- .../mock-application-templates-component.tsx | 2 +- ...ock-dynamic-field-validation-component.tsx | 79 +++++++++++ .../help-panel/markdown-guide.test.tsx | 43 ++++++ .../use-dynamic-field-validation.test.tsx | 125 ++++++++++++++++++ 5 files changed, 281 insertions(+), 2 deletions(-) create mode 100644 features/admin.applications.v1/__tests__/__mocks__/mock-dynamic-field-validation-component.tsx create mode 100644 features/admin.applications.v1/__tests__/components/help-panel/markdown-guide.test.tsx create mode 100644 features/admin.applications.v1/__tests__/hooks/use-dynamic-field-validation.test.tsx diff --git a/features/admin.applications.v1/__tests__/__mocks__/application-template.ts b/features/admin.applications.v1/__tests__/__mocks__/application-template.ts index d86e73ff6f5..75f7f75727b 100644 --- a/features/admin.applications.v1/__tests__/__mocks__/application-template.ts +++ b/features/admin.applications.v1/__tests__/__mocks__/application-template.ts @@ -27,7 +27,7 @@ import { ApplicationTemplateMetadataInterface, CategorizedApplicationTemplatesInterface } from "../../models/application-templates"; -import { DynamicInputFieldTypes, ValidationRuleTypes } from "../../models/dynamic-fields"; +import { DynamicFieldInterface, DynamicInputFieldTypes, ValidationRuleTypes } from "../../models/dynamic-fields"; export const applicationTemplatesListMockResponse: ApplicationTemplateListInterface[] = [ { @@ -849,3 +849,35 @@ export const spaApplicationMockResponse: ApplicationInterface = { realm: "", templateId: "6a90e4b0-fbff-42d7-bfde-1efd98f07cd7" }; + +export const applicationNameDynamicFormFieldMock: DynamicFieldInterface = { + "aria-label": "Application Name", + dataComponentId: "application-name", + id: "application-name", + label: "Name", + name: "name", + placeholder: "My App", + required: true, + type: DynamicInputFieldTypes.TEXT, + validations: [ + { + type: ValidationRuleTypes.APPLICATION_NAME + } + ] +}; + +export const domainNameDynamicFormFieldMock: DynamicFieldInterface = { + "aria-label": "Domain Name", + dataComponentId: "domain-name", + id: "domain-name", + label: "Domain Name", + name: "advancedConfigurations.additionalSpProperties.[0].value", + placeholder: "https://example.com", + required: true, + type: DynamicInputFieldTypes.TEXT, + validations: [ + { + type: ValidationRuleTypes.DOMAIN_NAME + } + ] +}; diff --git a/features/admin.applications.v1/__tests__/__mocks__/mock-application-templates-component.tsx b/features/admin.applications.v1/__tests__/__mocks__/mock-application-templates-component.tsx index 3fc7cd3d182..b687df396f0 100644 --- a/features/admin.applications.v1/__tests__/__mocks__/mock-application-templates-component.tsx +++ b/features/admin.applications.v1/__tests__/__mocks__/mock-application-templates-component.tsx @@ -27,7 +27,7 @@ import { CategorizedApplicationTemplatesInterface } from "../../models/applicati export type MockApplicationTemplatesComponentProps = IdentifiableComponentInterface; /** - * Mock application templates using components. + * Mock component that uses the application templates hook. * * @param props - Props for the `MockApplicationTemplatesComponent`. * @returns MockApplicationTemplatesComponent diff --git a/features/admin.applications.v1/__tests__/__mocks__/mock-dynamic-field-validation-component.tsx b/features/admin.applications.v1/__tests__/__mocks__/mock-dynamic-field-validation-component.tsx new file mode 100644 index 00000000000..88851f55c68 --- /dev/null +++ b/features/admin.applications.v1/__tests__/__mocks__/mock-dynamic-field-validation-component.tsx @@ -0,0 +1,79 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { IdentifiableComponentInterface } from "@wso2is/core/models"; +import get from "lodash-es/get"; +import React, { FunctionComponent, PropsWithChildren, useMemo, useState } from "react"; +import useDynamicFieldValidations from "../../hooks/use-dynamic-field-validation"; +import { MainApplicationInterface } from "../../models"; +import { DynamicFieldInterface } from "../../models/dynamic-fields"; + +/** + * Props interface for the `MockDynamicFieldValidationComponent`. + */ +export interface MockDynamicFieldValidationComponentProps extends IdentifiableComponentInterface { + /** + * Values to be validated. + */ + formValues: MainApplicationInterface; + /** + * Metadata of the dynamic field. + */ + field: DynamicFieldInterface; +} + +/** + * Mock component that uses the dynamic field validation. + * + * @param props - Props for the `MockDynamicFieldValidationComponent`. + * @returns MockDynamicFieldValidationComponent + */ +const MockDynamicFieldValidationComponent: FunctionComponent< + PropsWithChildren +> = ( + props: PropsWithChildren +) => { + const { + field, + formValues, + "data-componentid": componentId + } = props; + + const [ displayMessage, setDisplayMessage ] = useState(""); + + const { validate } = useDynamicFieldValidations(); + + useMemo(() => { + validate(formValues, [ field ]) + .then((errors: { [key in keyof Partial]: string }) => { + const errorMsg: string = get(errors, field?.name); + + if (errorMsg) { + setDisplayMessage(errorMsg); + } + }); + }, [ formValues, field, validate ]); + + return

{ displayMessage }

; +}; + +MockDynamicFieldValidationComponent.defaultProps = { + "data-componentid": "mock-dynamic-field-validation-component" +}; + +export default MockDynamicFieldValidationComponent; diff --git a/features/admin.applications.v1/__tests__/components/help-panel/markdown-guide.test.tsx b/features/admin.applications.v1/__tests__/components/help-panel/markdown-guide.test.tsx new file mode 100644 index 00000000000..2725f585e53 --- /dev/null +++ b/features/admin.applications.v1/__tests__/components/help-panel/markdown-guide.test.tsx @@ -0,0 +1,43 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React from "react"; +import { render, screen, waitFor } from "../../../../test-configs"; +import { MarkdownGuide, MarkdownGuidePropsInterface } from "../../../components/help-panel/markdown-guide"; +import { ApplicationEditTabMetadataInterface } from "../../../models/application-templates"; +import { applicationTemplateMetadataMockResponse } from "../../__mocks__/application-template"; +import "@testing-library/jest-dom"; + +describe("[Applications Management Feature] - MarkdownGuide", () => { + const props: MarkdownGuidePropsInterface = { + content: applicationTemplateMetadataMockResponse?.edit?.tabs.find( + (tab: ApplicationEditTabMetadataInterface) => tab?.id === "quick-start")?.guide ?? "", + isLoading: false + }; + + test("Test the rendering of the markdown guide component", async () => { + render( + + ); + + await waitFor(() => { + expect(screen.getByText("Dillinger")).toBeInTheDocument(); + expect(screen.getByText("_The Last Markdown Editor")).toBeInTheDocument(); + }); + }); +}); diff --git a/features/admin.applications.v1/__tests__/hooks/use-dynamic-field-validation.test.tsx b/features/admin.applications.v1/__tests__/hooks/use-dynamic-field-validation.test.tsx new file mode 100644 index 00000000000..1cd86ad83b9 --- /dev/null +++ b/features/admin.applications.v1/__tests__/hooks/use-dynamic-field-validation.test.tsx @@ -0,0 +1,125 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import cloneDeep from "lodash-es/cloneDeep"; +import React from "react"; +import { render, screen, waitFor } from "../../../test-configs"; +import * as api from "../../api/application"; +import { ApplicationManagementConstants } from "../../constants"; +import { + applicationNameDynamicFormFieldMock, + applicationSearchListMockResponse, + domainNameDynamicFormFieldMock +} from "../__mocks__/application-template"; +import "@testing-library/jest-dom"; +import MockDynamicFieldValidationComponent, { + MockDynamicFieldValidationComponentProps +} from "../__mocks__/mock-dynamic-field-validation-component"; + +describe("[Applications Management Feature] - useDynamicFieldValidations", () => { + const getApplicationListMock: jest.SpyInstance = jest.spyOn(api, "getApplicationList"); + + getApplicationListMock.mockImplementation(() => Promise.resolve(applicationSearchListMockResponse)); + + const props: MockDynamicFieldValidationComponentProps = { + field: cloneDeep(applicationNameDynamicFormFieldMock), + formValues: { name: "" } + }; + + test("Test the validation for the required field", async () => { + render( + + ); + + await waitFor(() => { + expect(screen.getByText("applications:forms.dynamicApplicationCreateWizard.common.validations.required")) + .toBeInTheDocument(); + }); + }); + + test("Test the validation for the not required field", async () => { + props.field.required = false; + + render( + + ); + + await waitFor(() => { + expect(screen.queryByText("applications:forms.dynamicApplicationCreateWizard.common.validations.required")) + .not.toBeInTheDocument(); + expect(screen.getByText(`applications:forms.spaProtocolSettingsWizard.fields.name.validations.invalid.${ + ApplicationManagementConstants.FORM_FIELD_CONSTRAINTS.APP_NAME_MAX_LENGTH + }`)).toBeInTheDocument(); + }); + }); + + test("Test the validation for the invalid application name", async () => { + props.field.required = true; + props.formValues.name = "inv@lid n@me!"; + + render( + + ); + + await waitFor(() => { + expect(screen.getByText(`applications:forms.spaProtocolSettingsWizard.fields.name.validations.invalid${ + props.formValues.name + }.${ + ApplicationManagementConstants.FORM_FIELD_CONSTRAINTS.APP_NAME_MAX_LENGTH + }`)).toBeInTheDocument(); + }); + }); + + test("Test the validation for the duplicate application name", async () => { + props.formValues.name = "Salesforce"; + + render( + + ); + + await waitFor(() => { + expect(screen.getByText("applications:forms.generalDetails.fields.name.validations.duplicate")) + .toBeInTheDocument(); + }); + }); + + test("Test the validation for the invalid domain name", async () => { + props.field = domainNameDynamicFormFieldMock; + props.formValues = { + advancedConfigurations: { + additionalSpProperties: [ + { + displayName: "Domain Name", + name: "domainName", + value: ".ex@mple.cominavlid" + } + ] + }, + name: "Salesforce" + }; + + render( + + ); + + await waitFor(() => { + expect(screen.getByText("applications:forms.dynamicApplicationCreateWizard.domainName.validations.invalid")) + .toBeInTheDocument(); + }); + }); +}); From d1f77370ca724fb589ba7166e56cc62b1867143c Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Sat, 25 May 2024 12:59:21 +0530 Subject: [PATCH 036/114] add unit tests for the application templates selection page component --- .../application-creation-adapter.test.tsx | 4 +- .../pages/application-template.test.tsx | 139 ++++++++++++++++++ 2 files changed, 141 insertions(+), 2 deletions(-) create mode 100644 features/admin.applications.v1/__tests__/pages/application-template.test.tsx diff --git a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx index 9dfb4e76824..6c5a19a0234 100644 --- a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx +++ b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx @@ -28,10 +28,10 @@ import { import "@testing-library/jest-dom"; describe("[Applications Management Feature] - ApplicationCreationAdapter", () => { - const useGetApplicationTemplatesMock: jest.SpyInstance = jest.spyOn( + const OauthProtocolSettingsWizardFormMock: jest.SpyInstance = jest.spyOn( OauthProtocolSettingsWizardForm, "OauthProtocolSettingsWizardForm"); - useGetApplicationTemplatesMock.mockImplementation(() => jest.fn()); + OauthProtocolSettingsWizardFormMock.mockImplementation(() => jest.fn()); const propsWithSPATemplate: ApplicationCreationAdapterPropsInterface = { onClose: jest.fn(), diff --git a/features/admin.applications.v1/__tests__/pages/application-template.test.tsx b/features/admin.applications.v1/__tests__/pages/application-template.test.tsx new file mode 100644 index 00000000000..cbbdee5d8d9 --- /dev/null +++ b/features/admin.applications.v1/__tests__/pages/application-template.test.tsx @@ -0,0 +1,139 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import * as Card from "@oxygen-ui/react/Card"; +import React, { PropsWithChildren } from "react"; +import * as getCORSOrigins from "../../../admin.core.v1/api/cors-configurations"; +import { fireEvent, render, screen, waitFor, within } from "../../../test-configs"; +import * as useGetApplicationTemplates from "../../api/use-get-application-templates"; +import { + ApplicationTemplateCardPropsInterface +} from "../../components/application-templates/application-template-card"; +import * as OauthProtocolSettingsWizardForm from "../../components/wizard/oauth-protocol-settings-wizard-form"; +import { CategorizedApplicationTemplatesInterface } from "../../models/application-templates"; +import ApplicationTemplateSelectPage from "../../pages/application-template"; +import ApplicationTemplatesProvider from "../../provider/application-templates-provider"; +import { ApplicationManagementUtils } from "../../utils/application-management-utils"; +import { + applicationTemplatesListMockResponse, + categorizedApplicationTemplatesListMockResponse +} from "../__mocks__/application-template"; +import "@testing-library/jest-dom"; + +describe("[Applications Management Feature] - ApplicationTemplateSelectPage", () => { + const useGetApplicationTemplatesMock: jest.SpyInstance = jest.spyOn(useGetApplicationTemplates, "default"); + + useGetApplicationTemplatesMock.mockImplementation(() => ({ + data: applicationTemplatesListMockResponse, + error: null, + isLoading: false, + isValidating: false, + mutate: jest.fn() + })); + + const OauthProtocolSettingsWizardFormMock: jest.SpyInstance = jest.spyOn( + OauthProtocolSettingsWizardForm, "OauthProtocolSettingsWizardForm"); + + OauthProtocolSettingsWizardFormMock.mockImplementation(() => jest.fn()); + + const getCustomInboundProtocolsMock: jest.SpyInstance = jest.spyOn( + ApplicationManagementUtils, "getCustomInboundProtocols"); + + getCustomInboundProtocolsMock.mockImplementation(() => []); + + const getCORSOriginsMock: jest.SpyInstance = jest.spyOn( + getCORSOrigins, "getCORSOrigins"); + + getCORSOriginsMock.mockImplementation(() => Promise.resolve([])); + + const cardComponent: jest.SpyInstance = jest.spyOn(Card, "default"); + + cardComponent.mockImplementation((props: PropsWithChildren) => { + return ( +
+ { props?.children } +
+ ); + }); + + test("Test the rendering of the application template selection page", async () => { + render( + + + + ); + + await waitFor(() => { + expect(screen.getByText("console:develop.pages.applicationTemplate.title")).toBeInTheDocument(); + expect(screen.getByText("console:develop.pages.applicationTemplate.subTitle")).toBeInTheDocument(); + expect(screen.getByTestId("application-template-card-single-page-application")).toBeInTheDocument(); + expect(screen.getByTestId("application-template-card-traditional-web-application")).toBeInTheDocument(); + expect(screen.getByTestId("application-template-card-custom-application")).toBeInTheDocument(); + expect(screen.getByTestId("application-template-card-salesforce")).toBeInTheDocument(); + categorizedApplicationTemplatesListMockResponse.forEach( + (category: CategorizedApplicationTemplatesInterface) => { + if (category?.templates?.length > 0) { + expect(screen.getByText(category.displayName)).toBeInTheDocument(); + expect(screen.getByText(category?.description ?? "")).toBeInTheDocument(); + } + } + ); + }); + }); + + test("Test the single page application create wizard", async () => { + render( + + + + ); + + fireEvent.click(screen.getByTestId("application-template-card-single-page-application")); + + await waitFor(() => { + expect(screen.getByTestId("minimal-application-create-wizard-modal")).toBeInTheDocument(); + expect( + within(screen.getByTestId("minimal-application-create-wizard-modal")) + .getByText("Single-Page Application") + ).toBeInTheDocument(); + fireEvent.click( + within(screen.getByTestId("minimal-application-create-wizard-modal")).getByTestId("link-button")); + }); + }); + + test("Test the salesforce application create wizard", async () => { + render( + + + + ); + + fireEvent.click(screen.getByTestId("application-template-card-salesforce")); + + await waitFor(() => { + expect(screen.getByTestId("application-create-wizard")).toBeInTheDocument(); + expect( + within(screen.getByTestId("application-create-wizard")) + .getByText("Salesforce") + ).toBeInTheDocument(); + }); + }); +}); From 32078ac76bb489cc5e2f8f9b96de6d85c31d2903 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Sat, 25 May 2024 13:37:44 +0530 Subject: [PATCH 037/114] add unit tests for the application templates management utils --- ...ication-template-management-utils.test.tsx | 71 +++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 features/admin.applications.v1/__tests__/utils/application-template-management-utils.test.tsx diff --git a/features/admin.applications.v1/__tests__/utils/application-template-management-utils.test.tsx b/features/admin.applications.v1/__tests__/utils/application-template-management-utils.test.tsx new file mode 100644 index 00000000000..b557e005a8e --- /dev/null +++ b/features/admin.applications.v1/__tests__/utils/application-template-management-utils.test.tsx @@ -0,0 +1,71 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import "@testing-library/jest-dom"; +import { ApplicationTemplateConstants } from "../../constants/application-templates"; +import { ApplicationTemplateManagementUtils } from "../../utils/application-template-management-utils"; + +describe("[Applications Management Feature] - ApplicationTemplateManagementUtils", () => { + + describe("'resolveApplicationResourcePath' function", () => { + + test("Test the function with the console base url placeholder", async () => { + const result: string = ApplicationTemplateManagementUtils.resolveApplicationResourcePath( + `${ApplicationTemplateConstants.CONSOLE_BASE_URL_PLACEHOLDER}/test/app/template/logo.png` + ); + + expect(result).toBe("https://localhost:9001/console/test/app/template/logo.png"); + }); + + test("Test the function with a http url", async () => { + const result: string = ApplicationTemplateManagementUtils.resolveApplicationResourcePath( + "http://example.com/test/app/template/logo.svg" + ); + + expect(result).toBe("http://example.com/test/app/template/logo.svg"); + }); + + test("Test the function with a https url", async () => { + const result: string = ApplicationTemplateManagementUtils.resolveApplicationResourcePath( + "https://example.com/test/app/template/logo.jpeg" + ); + + expect(result).toBe("https://example.com/test/app/template/logo.jpeg"); + }); + + test("Test the function with a data url", async () => { + const result: string = ApplicationTemplateManagementUtils.resolveApplicationResourcePath( + "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAATTTAAAC1HAwCA" + + "AAAC0lEQVR42mP8/wcAAgAB/FRpWZkYYYASUVORK5CYII=" + ); + + expect(result).toBe( + "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAATTTAAAC1HAwCA" + + "AAAC0lEQVR42mP8/wcAAgAB/FRpWZkYYYASUVORK5CYII=" + ); + }); + + test("Test the function with a relative path", async () => { + const result: string = ApplicationTemplateManagementUtils.resolveApplicationResourcePath( + "test/app/template/logo.jpeg" + ); + + expect(result).toBe("https://localhost:9001/console/resources/applications/test/app/template/logo.jpeg"); + }); + }); +}); From 4c3b4687a2265881bbf2638543697eb3735ac8fb Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Sat, 25 May 2024 13:48:13 +0530 Subject: [PATCH 038/114] add unit tests for the build callback url function --- ...ication-template-management-utils.test.ts} | 0 .../build-callback-urls-with-regexp.test.ts | 43 +++++++++++++++++++ 2 files changed, 43 insertions(+) rename features/admin.applications.v1/__tests__/utils/{application-template-management-utils.test.tsx => application-template-management-utils.test.ts} (100%) create mode 100644 features/admin.applications.v1/__tests__/utils/build-callback-urls-with-regexp.test.ts diff --git a/features/admin.applications.v1/__tests__/utils/application-template-management-utils.test.tsx b/features/admin.applications.v1/__tests__/utils/application-template-management-utils.test.ts similarity index 100% rename from features/admin.applications.v1/__tests__/utils/application-template-management-utils.test.tsx rename to features/admin.applications.v1/__tests__/utils/application-template-management-utils.test.ts diff --git a/features/admin.applications.v1/__tests__/utils/build-callback-urls-with-regexp.test.ts b/features/admin.applications.v1/__tests__/utils/build-callback-urls-with-regexp.test.ts new file mode 100644 index 00000000000..ea186b75eb1 --- /dev/null +++ b/features/admin.applications.v1/__tests__/utils/build-callback-urls-with-regexp.test.ts @@ -0,0 +1,43 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import "@testing-library/jest-dom"; +import buildCallBackUrlsWithRegExp from "../../utils/build-callback-urls-with-regexp"; + +describe("[Applications Management Feature] - buildCallBackUrlsWithRegExp", () => { + + test("Test the function with the single callback url", async () => { + const urls: string[] = [ "https://example.com/login" ]; + + const results: string[] = buildCallBackUrlsWithRegExp(urls); + + expect(results).toEqual(urls); + }); + + test("Test the function with the multiple callback url", async () => { + const results: string[] = buildCallBackUrlsWithRegExp([ + "https://example.com/login", + "https://app.example.com/login", + "https://localhost:3000/sample/oidc/login" + ]); + + expect(results).toEqual([ + "regexp=(https://example.com/login|https://app.example.com/login|https://localhost:3000/sample/oidc/login)" + ]); + }); +}); From 1249899c13c99855337134d3adb71a3ca24e84a5 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Sat, 25 May 2024 20:02:20 +0530 Subject: [PATCH 039/114] fix the unit test failures --- .../application-creation-adapter.test.tsx | 6 ++++++ .../test-configs/__mocks__/window/app-utils.ts | 18 ++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx index 6c5a19a0234..0d89fc1c5d6 100644 --- a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx +++ b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx @@ -17,6 +17,7 @@ */ import React from "react"; +import * as getCORSOrigins from "../../../../admin.core.v1/api/cors-configurations"; import { render, screen, waitFor } from "../../../../test-configs"; import ApplicationCreationAdapter, { ApplicationCreationAdapterPropsInterface @@ -33,6 +34,11 @@ describe("[Applications Management Feature] - ApplicationCreationAdapter", () => OauthProtocolSettingsWizardFormMock.mockImplementation(() => jest.fn()); + const getCORSOriginsMock: jest.SpyInstance = jest.spyOn( + getCORSOrigins, "getCORSOrigins"); + + getCORSOriginsMock.mockImplementation(() => Promise.resolve([])); + const propsWithSPATemplate: ApplicationCreationAdapterPropsInterface = { onClose: jest.fn(), showWizard: true, diff --git a/features/test-configs/__mocks__/window/app-utils.ts b/features/test-configs/__mocks__/window/app-utils.ts index 0befd088be4..2c2bc48a215 100644 --- a/features/test-configs/__mocks__/window/app-utils.ts +++ b/features/test-configs/__mocks__/window/app-utils.ts @@ -182,6 +182,24 @@ interface CustomWindow extends Window { ] } }, + branding: { + enabled: true, + disabledFeatures: [], + scopes: { + create: [ + "internal_application_mgt_update" + ], + delete: [ + "internal_application_mgt_update" + ], + read: [ + "internal_application_mgt_view" + ], + update: [ + "internal_application_mgt_update" + ] + } + }, certificates: { enabled: true, disabledFeatures: [], From 3a1137185a64efefc4dc5f136d375e75ec494a2b Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Sat, 25 May 2024 20:50:53 +0530 Subject: [PATCH 040/114] fix the eslint issue --- apps/console/src/public/deployment.config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/console/src/public/deployment.config.json b/apps/console/src/public/deployment.config.json index 4a6cc07612b..75bbfb2ac0a 100644 --- a/apps/console/src/public/deployment.config.json +++ b/apps/console/src/public/deployment.config.json @@ -1115,6 +1115,7 @@ "gravatarConfig": { "fallback": "404" }, + "hiddenApplicationTemplates": [], "hiddenAuthenticators": [ "BasicAuthRequestPathAuthenticator", "OAuthRequestPathAuthenticator" @@ -1123,7 +1124,6 @@ "hypr-idp", "swe-idp" ], - "hiddenApplicationTemplates": [], "hiddenUserStores": [], "i18nConfigs": { "langAutoDetectEnabled": false, From e5ffb07fb65c269cae66c72d5e859a576a9eac9e Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Sat, 25 May 2024 21:08:06 +0530 Subject: [PATCH 041/114] refactor the unit test mocks --- .../__mocks__/application-template.ts | 306 ----------------- .../__tests__/__mocks__/application.ts | 324 ++++++++++++++++++ .../__tests__/__mocks__/permissions.ts | 25 -- .../components/application-list.test.tsx | 2 +- .../application-create-wizard.test.tsx | 2 +- .../application-edit-form.test.tsx | 7 +- .../use-dynamic-field-validation.test.tsx | 2 +- .../__tests__/pages/application-edit.test.tsx | 6 +- 8 files changed, 333 insertions(+), 341 deletions(-) create mode 100644 features/admin.applications.v1/__tests__/__mocks__/application.ts delete mode 100644 features/admin.applications.v1/__tests__/__mocks__/permissions.ts diff --git a/features/admin.applications.v1/__tests__/__mocks__/application-template.ts b/features/admin.applications.v1/__tests__/__mocks__/application-template.ts index 75f7f75727b..2f3fc4f807e 100644 --- a/features/admin.applications.v1/__tests__/__mocks__/application-template.ts +++ b/features/admin.applications.v1/__tests__/__mocks__/application-template.ts @@ -16,8 +16,6 @@ * under the License. */ -import { RoleAudienceTypes } from "../../../admin.roles.v2/constants"; -import { ApplicationAccessTypes, ApplicationInterface, ApplicationListInterface } from "../../models"; import { ApplicationEditTabContentTypes, ApplicationEditTabMetadataInterface, @@ -334,114 +332,6 @@ export const categorizedApplicationTemplatesListMockResponse: CategorizedApplica } ]; -export const applicationListMockResponse: ApplicationListInterface = { - applications: [ - { - access: ApplicationAccessTypes.WRITE, - advancedConfigurations: { - additionalSpProperties: [ - { - displayName: "Is B2B Self Service Application", - name: "isB2BSelfServiceApp", - value: "false" - } - ], - attestationMetaData: { - enableClientAttestation: false - }, - discoverableByEndUsers: false, - enableAPIBasedAuthentication: false, - enableAuthorization: false, - fragment: false, - returnAuthenticatedIdpList: false, - saas: false, - skipLoginConsent: false, - skipLogoutConsent: true - }, - clientId: "kcn1kuV1yiZbaDofF2Xfg4jUpsUa", - id: "142fbbc0-69b8-4f3d-a647-adecc9f29804", - issuer: "", - name: "Sample salesforce SSO app", - realm: "", - self: "/api/server/v1/applications/142fbbc0-69b8-4f3d-a647-adecc9f29804", - templateId: "salesforce" - }, - { - access: ApplicationAccessTypes.WRITE, - advancedConfigurations: { - additionalSpProperties: [ - { - displayName: "Is B2B Self Service Application", - name: "isB2BSelfServiceApp", - value: "false" - } - ], - attestationMetaData: { - enableClientAttestation: false - }, - discoverableByEndUsers: false, - enableAPIBasedAuthentication: false, - enableAuthorization: false, - fragment: false, - returnAuthenticatedIdpList: false, - saas: false, - skipLoginConsent: true, - skipLogoutConsent: true - }, - clientId: "Y4LmFp5bwqvylijALgOCYPGvlTMa", - id: "c3a3d3ce-4166-416a-963a-94e1c1c8de5f", - issuer: "", - name: "SPA", - realm: "", - self: "/api/server/v1/applications/c3a3d3ce-4166-416a-963a-94e1c1c8de5f", - templateId: "6a90e4b0-fbff-42d7-bfde-1efd98f07cd7" - } - ], - count: 2, - links: [], - startIndex: 1, - totalResults: 2 -}; - -export const applicationSearchListMockResponse: ApplicationListInterface = { - applications: [ - { - access: ApplicationAccessTypes.WRITE, - advancedConfigurations: { - additionalSpProperties: [ - { - displayName: "Is B2B Self Service Application", - name: "isB2BSelfServiceApp", - value: "false" - } - ], - attestationMetaData: { - enableClientAttestation: false - }, - discoverableByEndUsers: false, - enableAPIBasedAuthentication: false, - enableAuthorization: false, - fragment: false, - returnAuthenticatedIdpList: false, - saas: false, - skipLoginConsent: false, - skipLogoutConsent: true - }, - clientId: "kcn1kuV1yiZbaDofF2Xfg4jUpsUa", - id: "142fbbc0-69b8-4f3d-a647-adecc9f29804", - issuer: "", - name: "Salesforce", - realm: "", - self: "/api/server/v1/applications/142fbbc0-69b8-4f3d-a647-adecc9f29804", - templateId: "salesforce" - } - ], - count: 1, - links: [], - startIndex: 1, - totalResults: 1 -}; - export const TEMPLATE_NAMES: { [key: string]: string } = { salesforce: "Salesforce", spa: "Single-Page Application" @@ -654,202 +544,6 @@ export const dynamicApplicationEditTabMetadataMockObject: ApplicationEditTabMeta id: "salesforce-settings" }; -export const applicationMockResponse: ApplicationInterface = { - access: ApplicationAccessTypes.WRITE, - advancedConfigurations: { - additionalSpProperties: [ - { - displayName: "Is B2B Self Service Application", - name: "isB2BSelfServiceApp", - value: "false" - } - ], - attestationMetaData: { - androidPackageName: "", - appleAppId: "", - enableClientAttestation: false - }, - discoverableByEndUsers: false, - enableAPIBasedAuthentication: false, - enableAuthorization: false, - fragment: false, - returnAuthenticatedIdpList: false, - saas: false, - skipLoginConsent: false, - skipLogoutConsent: true - }, - associatedRoles: { - allowedAudience: RoleAudienceTypes.ORGANIZATION, - roles: [] - }, - authenticationSequence: { - attributeStepId: 1, - requestPathAuthenticators: [], - steps: [ - { - id: 1, - options: [ - { - authenticator: "BasicAuthenticator", - idp: "LOCAL" - } - ] - } - ], - subjectStepId: 1, - type: "DEFAULT" - }, - claimConfiguration: { - claimMappings: [ - { - applicationClaim: "http://wso2.org/claims/username", - localClaim: { - uri: "http://wso2.org/claims/username" - } - } - ], - dialect: "LOCAL", - requestedClaims: [ - { - claim: { - uri: "http://wso2.org/claims/username" - }, - mandatory: false - } - ], - role: { - claim: { - uri: "http://wso2.org/claims/role" - }, - includeUserDomain: true, - mappings: [] - }, - subject: { - claim: { - uri: "http://wso2.org/claims/userid" - }, - includeTenantDomain: false, - includeUserDomain: false, - mappedLocalSubjectMandatory: false, - useMappedLocalSubject: false - } - }, - clientId: "kcn1kuV1yfZbaDofF2Xfg4jUpsUa", - id: "142fbbc0-69b8-4f3d-a6a7-adecc9f29804", - inboundProtocols: [ - { - self: "/api/server/v1/applications/142fbbc0-69b8-4f3d-a6a7-adecc9f29804/inbound-protocols/oidc", - type: "oauth2" - } - ], - isManagementApp: false, - issuer: "", - name: "Salesforce", - provisioningConfigurations: { - outboundProvisioningIdps: [] - }, - realm: "", - templateId: "salesforce" -}; - -export const spaApplicationMockResponse: ApplicationInterface = { - access: ApplicationAccessTypes.WRITE, - advancedConfigurations: { - additionalSpProperties: [ - { - displayName: "Is B2B Self Service Application", - name: "isB2BSelfServiceApp", - value: "false" - } - ], - attestationMetaData: { - androidPackageName: "", - appleAppId: "", - enableClientAttestation: false - }, - discoverableByEndUsers: false, - enableAPIBasedAuthentication: false, - enableAuthorization: false, - fragment: false, - returnAuthenticatedIdpList: false, - saas: false, - skipLoginConsent: true, - skipLogoutConsent: true - }, - associatedRoles: { - allowedAudience: RoleAudienceTypes.ORGANIZATION, - roles: [] - }, - authenticationSequence: { - attributeStepId: 1, - requestPathAuthenticators: [], - steps: [ - { - id: 1, - options: [ - { - authenticator: "BasicAuthenticator", - idp: "LOCAL" - } - ] - } - ], - subjectStepId: 1, - type: "DEFAULT" - }, - claimConfiguration: { - claimMappings: [ - { - applicationClaim: "http://wso2.org/claims/username", - localClaim: { - uri: "http://wso2.org/claims/username" - } - } - ], - dialect: "LOCAL", - requestedClaims: [ - { - claim: { - uri: "http://wso2.org/claims/username" - }, - mandatory: false - } - ], - role: { - claim: { - uri: "http://wso2.org/claims/role" - }, - includeUserDomain: true, - mappings: [] - }, - subject: { - claim: { - uri: "http://wso2.org/claims/userid" - }, - includeTenantDomain: false, - includeUserDomain: false, - mappedLocalSubjectMandatory: false, - useMappedLocalSubject: false - } - }, - clientId: "Y4LmFp5bwqvylgjALgOCYPGvlTMa", - id: "c3a3d3ce-4166-4e6a-963a-94e1c1c8de5f", - inboundProtocols: [ - { - self: "/api/server/v1/applications/c3a3d3ce-4166-4e6a-963a-94e1c1c8de5f/inbound-protocols/oidc", - type: "oauth2" - } - ], - isManagementApp: false, - issuer: "", - name: "SPA", - provisioningConfigurations: { - outboundProvisioningIdps: [] - }, - realm: "", - templateId: "6a90e4b0-fbff-42d7-bfde-1efd98f07cd7" -}; - export const applicationNameDynamicFormFieldMock: DynamicFieldInterface = { "aria-label": "Application Name", dataComponentId: "application-name", diff --git a/features/admin.applications.v1/__tests__/__mocks__/application.ts b/features/admin.applications.v1/__tests__/__mocks__/application.ts new file mode 100644 index 00000000000..f68ffe9db62 --- /dev/null +++ b/features/admin.applications.v1/__tests__/__mocks__/application.ts @@ -0,0 +1,324 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { RoleAudienceTypes } from "@wso2is/admin.roles.v2/constants"; +import { ApplicationAccessTypes, ApplicationInterface, ApplicationListInterface } from "../../models"; + +export const applicationListMockResponse: ApplicationListInterface = { + applications: [ + { + access: ApplicationAccessTypes.WRITE, + advancedConfigurations: { + additionalSpProperties: [ + { + displayName: "Is B2B Self Service Application", + name: "isB2BSelfServiceApp", + value: "false" + } + ], + attestationMetaData: { + enableClientAttestation: false + }, + discoverableByEndUsers: false, + enableAPIBasedAuthentication: false, + enableAuthorization: false, + fragment: false, + returnAuthenticatedIdpList: false, + saas: false, + skipLoginConsent: false, + skipLogoutConsent: true + }, + clientId: "kcn1kuV1yiZbaDofF2Xfg4jUpsUa", + id: "142fbbc0-69b8-4f3d-a647-adecc9f29804", + issuer: "", + name: "Sample salesforce SSO app", + realm: "", + self: "/api/server/v1/applications/142fbbc0-69b8-4f3d-a647-adecc9f29804", + templateId: "salesforce" + }, + { + access: ApplicationAccessTypes.WRITE, + advancedConfigurations: { + additionalSpProperties: [ + { + displayName: "Is B2B Self Service Application", + name: "isB2BSelfServiceApp", + value: "false" + } + ], + attestationMetaData: { + enableClientAttestation: false + }, + discoverableByEndUsers: false, + enableAPIBasedAuthentication: false, + enableAuthorization: false, + fragment: false, + returnAuthenticatedIdpList: false, + saas: false, + skipLoginConsent: true, + skipLogoutConsent: true + }, + clientId: "Y4LmFp5bwqvylijALgOCYPGvlTMa", + id: "c3a3d3ce-4166-416a-963a-94e1c1c8de5f", + issuer: "", + name: "SPA", + realm: "", + self: "/api/server/v1/applications/c3a3d3ce-4166-416a-963a-94e1c1c8de5f", + templateId: "6a90e4b0-fbff-42d7-bfde-1efd98f07cd7" + } + ], + count: 2, + links: [], + startIndex: 1, + totalResults: 2 +}; + +export const applicationSearchListMockResponse: ApplicationListInterface = { + applications: [ + { + access: ApplicationAccessTypes.WRITE, + advancedConfigurations: { + additionalSpProperties: [ + { + displayName: "Is B2B Self Service Application", + name: "isB2BSelfServiceApp", + value: "false" + } + ], + attestationMetaData: { + enableClientAttestation: false + }, + discoverableByEndUsers: false, + enableAPIBasedAuthentication: false, + enableAuthorization: false, + fragment: false, + returnAuthenticatedIdpList: false, + saas: false, + skipLoginConsent: false, + skipLogoutConsent: true + }, + clientId: "kcn1kuV1yiZbaDofF2Xfg4jUpsUa", + id: "142fbbc0-69b8-4f3d-a647-adecc9f29804", + issuer: "", + name: "Salesforce", + realm: "", + self: "/api/server/v1/applications/142fbbc0-69b8-4f3d-a647-adecc9f29804", + templateId: "salesforce" + } + ], + count: 1, + links: [], + startIndex: 1, + totalResults: 1 +}; + +export const applicationMockResponse: ApplicationInterface = { + access: ApplicationAccessTypes.WRITE, + advancedConfigurations: { + additionalSpProperties: [ + { + displayName: "Is B2B Self Service Application", + name: "isB2BSelfServiceApp", + value: "false" + } + ], + attestationMetaData: { + androidPackageName: "", + appleAppId: "", + enableClientAttestation: false + }, + discoverableByEndUsers: false, + enableAPIBasedAuthentication: false, + enableAuthorization: false, + fragment: false, + returnAuthenticatedIdpList: false, + saas: false, + skipLoginConsent: false, + skipLogoutConsent: true + }, + associatedRoles: { + allowedAudience: RoleAudienceTypes.ORGANIZATION, + roles: [] + }, + authenticationSequence: { + attributeStepId: 1, + requestPathAuthenticators: [], + steps: [ + { + id: 1, + options: [ + { + authenticator: "BasicAuthenticator", + idp: "LOCAL" + } + ] + } + ], + subjectStepId: 1, + type: "DEFAULT" + }, + claimConfiguration: { + claimMappings: [ + { + applicationClaim: "http://wso2.org/claims/username", + localClaim: { + uri: "http://wso2.org/claims/username" + } + } + ], + dialect: "LOCAL", + requestedClaims: [ + { + claim: { + uri: "http://wso2.org/claims/username" + }, + mandatory: false + } + ], + role: { + claim: { + uri: "http://wso2.org/claims/role" + }, + includeUserDomain: true, + mappings: [] + }, + subject: { + claim: { + uri: "http://wso2.org/claims/userid" + }, + includeTenantDomain: false, + includeUserDomain: false, + mappedLocalSubjectMandatory: false, + useMappedLocalSubject: false + } + }, + clientId: "kcn1kuV1yfZbaDofF2Xfg4jUpsUa", + id: "142fbbc0-69b8-4f3d-a6a7-adecc9f29804", + inboundProtocols: [ + { + self: "/api/server/v1/applications/142fbbc0-69b8-4f3d-a6a7-adecc9f29804/inbound-protocols/oidc", + type: "oauth2" + } + ], + isManagementApp: false, + issuer: "", + name: "Salesforce", + provisioningConfigurations: { + outboundProvisioningIdps: [] + }, + realm: "", + templateId: "salesforce" +}; + +export const spaApplicationMockResponse: ApplicationInterface = { + access: ApplicationAccessTypes.WRITE, + advancedConfigurations: { + additionalSpProperties: [ + { + displayName: "Is B2B Self Service Application", + name: "isB2BSelfServiceApp", + value: "false" + } + ], + attestationMetaData: { + androidPackageName: "", + appleAppId: "", + enableClientAttestation: false + }, + discoverableByEndUsers: false, + enableAPIBasedAuthentication: false, + enableAuthorization: false, + fragment: false, + returnAuthenticatedIdpList: false, + saas: false, + skipLoginConsent: true, + skipLogoutConsent: true + }, + associatedRoles: { + allowedAudience: RoleAudienceTypes.ORGANIZATION, + roles: [] + }, + authenticationSequence: { + attributeStepId: 1, + requestPathAuthenticators: [], + steps: [ + { + id: 1, + options: [ + { + authenticator: "BasicAuthenticator", + idp: "LOCAL" + } + ] + } + ], + subjectStepId: 1, + type: "DEFAULT" + }, + claimConfiguration: { + claimMappings: [ + { + applicationClaim: "http://wso2.org/claims/username", + localClaim: { + uri: "http://wso2.org/claims/username" + } + } + ], + dialect: "LOCAL", + requestedClaims: [ + { + claim: { + uri: "http://wso2.org/claims/username" + }, + mandatory: false + } + ], + role: { + claim: { + uri: "http://wso2.org/claims/role" + }, + includeUserDomain: true, + mappings: [] + }, + subject: { + claim: { + uri: "http://wso2.org/claims/userid" + }, + includeTenantDomain: false, + includeUserDomain: false, + mappedLocalSubjectMandatory: false, + useMappedLocalSubject: false + } + }, + clientId: "Y4LmFp5bwqvylgjALgOCYPGvlTMa", + id: "c3a3d3ce-4166-4e6a-963a-94e1c1c8de5f", + inboundProtocols: [ + { + self: "/api/server/v1/applications/c3a3d3ce-4166-4e6a-963a-94e1c1c8de5f/inbound-protocols/oidc", + type: "oauth2" + } + ], + isManagementApp: false, + issuer: "", + name: "SPA", + provisioningConfigurations: { + outboundProvisioningIdps: [] + }, + realm: "", + templateId: "6a90e4b0-fbff-42d7-bfde-1efd98f07cd7" +}; diff --git a/features/admin.applications.v1/__tests__/__mocks__/permissions.ts b/features/admin.applications.v1/__tests__/__mocks__/permissions.ts deleted file mode 100644 index 6407a87d082..00000000000 --- a/features/admin.applications.v1/__tests__/__mocks__/permissions.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -export const fullPermissions: string = [ - "internal_login", - ...window[ "AppUtils" ]?.getConfig()?.ui?.features?.applications?.scopes?.create, - ...window[ "AppUtils" ]?.getConfig()?.ui?.features?.applications?.scopes?.delete, - ...window[ "AppUtils" ]?.getConfig()?.ui?.features?.applications?.scopes?.read, - ...window[ "AppUtils" ]?.getConfig()?.ui?.features?.applications?.scopes?.update -].join(" "); diff --git a/features/admin.applications.v1/__tests__/components/application-list.test.tsx b/features/admin.applications.v1/__tests__/components/application-list.test.tsx index acb1a3e9d6f..fe9b9c0ad85 100644 --- a/features/admin.applications.v1/__tests__/components/application-list.test.tsx +++ b/features/admin.applications.v1/__tests__/components/application-list.test.tsx @@ -22,9 +22,9 @@ import { render, screen, waitFor } from "../../../test-configs"; import * as useGetApplicationTemplates from "../../api/use-get-application-templates"; import { ApplicationList, ApplicationListPropsInterface } from "../../components/application-list"; import ApplicationTemplatesProvider from "../../provider/application-templates-provider"; +import { applicationListMockResponse } from "../__mocks__/application"; import { TEMPLATE_NAMES, - applicationListMockResponse, applicationTemplatesListMockResponse } from "../__mocks__/application-template"; import "@testing-library/jest-dom"; diff --git a/features/admin.applications.v1/__tests__/components/dynamic-forms/application-create-wizard.test.tsx b/features/admin.applications.v1/__tests__/components/dynamic-forms/application-create-wizard.test.tsx index 984c44117e3..f99a5ba0972 100644 --- a/features/admin.applications.v1/__tests__/components/dynamic-forms/application-create-wizard.test.tsx +++ b/features/admin.applications.v1/__tests__/components/dynamic-forms/application-create-wizard.test.tsx @@ -32,8 +32,8 @@ import { import * as useApplicationSharingEligibility from "../../../hooks/use-application-sharing-eligibility"; import { MainApplicationInterface } from "../../../models"; import { ApplicationTemplateMetadataInterface } from "../../../models/application-templates"; +import { applicationSearchListMockResponse } from "../../__mocks__/application"; import { - applicationSearchListMockResponse, applicationTemplateMetadataMockResponse, applicationTemplateMockResponse, applicationTemplatesListMockResponse diff --git a/features/admin.applications.v1/__tests__/components/dynamic-forms/application-edit-form.test.tsx b/features/admin.applications.v1/__tests__/components/dynamic-forms/application-edit-form.test.tsx index 68657831b57..b7fbbbf2089 100644 --- a/features/admin.applications.v1/__tests__/components/dynamic-forms/application-edit-form.test.tsx +++ b/features/admin.applications.v1/__tests__/components/dynamic-forms/application-edit-form.test.tsx @@ -29,11 +29,8 @@ import { } from "../../../components/dynamic-forms/application-edit-form"; import { MainApplicationInterface } from "../../../models"; import { ApplicationEditTabMetadataInterface } from "../../../models/application-templates"; -import { - applicationMockResponse, - applicationSearchListMockResponse, - dynamicApplicationEditTabMetadataMockObject -} from "../../__mocks__/application-template"; +import { applicationMockResponse, applicationSearchListMockResponse } from "../../__mocks__/application"; +import { dynamicApplicationEditTabMetadataMockObject } from "../../__mocks__/application-template"; import "@testing-library/jest-dom"; describe("[Applications Management Feature] - ApplicationEditForm", () => { diff --git a/features/admin.applications.v1/__tests__/hooks/use-dynamic-field-validation.test.tsx b/features/admin.applications.v1/__tests__/hooks/use-dynamic-field-validation.test.tsx index 1cd86ad83b9..0d86f3cbfb8 100644 --- a/features/admin.applications.v1/__tests__/hooks/use-dynamic-field-validation.test.tsx +++ b/features/admin.applications.v1/__tests__/hooks/use-dynamic-field-validation.test.tsx @@ -21,9 +21,9 @@ import React from "react"; import { render, screen, waitFor } from "../../../test-configs"; import * as api from "../../api/application"; import { ApplicationManagementConstants } from "../../constants"; +import { applicationSearchListMockResponse } from "../__mocks__/application"; import { applicationNameDynamicFormFieldMock, - applicationSearchListMockResponse, domainNameDynamicFormFieldMock } from "../__mocks__/application-template"; import "@testing-library/jest-dom"; diff --git a/features/admin.applications.v1/__tests__/pages/application-edit.test.tsx b/features/admin.applications.v1/__tests__/pages/application-edit.test.tsx index 79511b0489f..aa6bcc7f6d0 100644 --- a/features/admin.applications.v1/__tests__/pages/application-edit.test.tsx +++ b/features/admin.applications.v1/__tests__/pages/application-edit.test.tsx @@ -32,9 +32,11 @@ import { ApplicationManagementUtils } from "../../utils/application-management-u import { applicationMockResponse, applicationSearchListMockResponse, - applicationTemplateMetadataMockResponse, - applicationTemplatesListMockResponse, spaApplicationMockResponse +} from "../__mocks__/application"; +import { + applicationTemplateMetadataMockResponse, + applicationTemplatesListMockResponse } from "../__mocks__/application-template"; import "@testing-library/jest-dom"; From 8ad14299d92ec8f601f23c141602b08ee2c2ab63 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Sun, 26 May 2024 16:11:39 +0530 Subject: [PATCH 042/114] refactor the code --- .../application-creation-adapter.test.tsx | 2 +- .../application-template-grid.test.tsx | 4 +- .../__tests__/pages/application-edit.test.tsx | 4 +- .../pages/application-template.test.tsx | 2 +- .../use-get-application-template-metadata.ts | 6 +-- .../api/use-get-application-template.ts | 6 +-- .../api/use-get-application-templates.ts | 6 +-- .../components/application-list.tsx | 4 +- .../application-creation-adapter.tsx | 38 +++++++------- .../application-template-card.tsx | 6 +-- .../application-templates-grid.tsx | 14 +++--- .../application-create-wizard.tsx | 28 +++++------ .../dynamic-forms/application-edit-form.tsx | 10 ++-- .../application-form-dynamic-field.tsx | 50 +++++++++---------- 14 files changed, 90 insertions(+), 90 deletions(-) diff --git a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx index 0d89fc1c5d6..2430ae0df19 100644 --- a/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx +++ b/features/admin.applications.v1/__tests__/components/application-templates/application-creation-adapter.test.tsx @@ -16,8 +16,8 @@ * under the License. */ +import * as getCORSOrigins from "@wso2is/admin.core.v1/api/cors-configurations"; import React from "react"; -import * as getCORSOrigins from "../../../../admin.core.v1/api/cors-configurations"; import { render, screen, waitFor } from "../../../../test-configs"; import ApplicationCreationAdapter, { ApplicationCreationAdapterPropsInterface diff --git a/features/admin.applications.v1/__tests__/components/application-templates/application-template-grid.test.tsx b/features/admin.applications.v1/__tests__/components/application-templates/application-template-grid.test.tsx index f1a2b1a513f..84a9924e248 100644 --- a/features/admin.applications.v1/__tests__/components/application-templates/application-template-grid.test.tsx +++ b/features/admin.applications.v1/__tests__/components/application-templates/application-template-grid.test.tsx @@ -31,8 +31,8 @@ import { } from "../../__mocks__/application-template"; import "@testing-library/jest-dom"; -jest.mock("../../../../admin.core.v1", () => { - const adminCore: Record = jest.requireActual("../../../../admin.core.v1"); +jest.mock("@wso2is/admin.core.v1", () => { + const adminCore: Record = jest.requireActual("@wso2is/admin.core.v1"); return { ...adminCore, diff --git a/features/admin.applications.v1/__tests__/pages/application-edit.test.tsx b/features/admin.applications.v1/__tests__/pages/application-edit.test.tsx index aa6bcc7f6d0..f1647f41e36 100644 --- a/features/admin.applications.v1/__tests__/pages/application-edit.test.tsx +++ b/features/admin.applications.v1/__tests__/pages/application-edit.test.tsx @@ -16,11 +16,11 @@ * under the License. */ +import * as getCORSOrigins from "@wso2is/admin.core.v1/api/cors-configurations"; +import * as useUIConfig from "@wso2is/admin.core.v1/hooks/use-ui-configs"; import { I18n } from "@wso2is/i18n"; import { createMemoryHistory } from "history"; import React from "react"; -import * as getCORSOrigins from "../../../admin.core.v1/api/cors-configurations"; -import * as useUIConfig from "../../../admin.core.v1/hooks/use-ui-configs"; import { render, screen, waitFor, within } from "../../../test-configs"; import * as api from "../../api/application"; import * as useGetApplication from "../../api/use-get-application"; diff --git a/features/admin.applications.v1/__tests__/pages/application-template.test.tsx b/features/admin.applications.v1/__tests__/pages/application-template.test.tsx index cbbdee5d8d9..4006d8abf5e 100644 --- a/features/admin.applications.v1/__tests__/pages/application-template.test.tsx +++ b/features/admin.applications.v1/__tests__/pages/application-template.test.tsx @@ -17,8 +17,8 @@ */ import * as Card from "@oxygen-ui/react/Card"; +import * as getCORSOrigins from "@wso2is/admin.core.v1/api/cors-configurations"; import React, { PropsWithChildren } from "react"; -import * as getCORSOrigins from "../../../admin.core.v1/api/cors-configurations"; import { fireEvent, render, screen, waitFor, within } from "../../../test-configs"; import * as useGetApplicationTemplates from "../../api/use-get-application-templates"; import { diff --git a/features/admin.applications.v1/api/use-get-application-template-metadata.ts b/features/admin.applications.v1/api/use-get-application-template-metadata.ts index 70d7e5eb0a5..3ebd92d5631 100644 --- a/features/admin.applications.v1/api/use-get-application-template-metadata.ts +++ b/features/admin.applications.v1/api/use-get-application-template-metadata.ts @@ -16,13 +16,13 @@ * under the License. */ -import { HttpMethods } from "@wso2is/core/models"; import useRequest, { RequestConfigInterface, RequestErrorInterface, RequestResultInterface -} from "../../admin.core.v1/hooks/use-request"; -import { store } from "../../admin.core.v1/store"; +} from "@wso2is/admin.core.v1/hooks/use-request"; +import { store } from "@wso2is/admin.core.v1/store"; +import { HttpMethods } from "@wso2is/core/models"; import { ApplicationTemplateMetadataInterface } from "../models/application-templates"; diff --git a/features/admin.applications.v1/api/use-get-application-template.ts b/features/admin.applications.v1/api/use-get-application-template.ts index 9ab0b195a81..7a1eb7d1e26 100644 --- a/features/admin.applications.v1/api/use-get-application-template.ts +++ b/features/admin.applications.v1/api/use-get-application-template.ts @@ -16,13 +16,13 @@ * under the License. */ -import { HttpMethods } from "@wso2is/core/models"; import useRequest, { RequestConfigInterface, RequestErrorInterface, RequestResultInterface -} from "../../admin.core.v1/hooks/use-request"; -import { store } from "../../admin.core.v1/store"; +} from "@wso2is/admin.core.v1/hooks/use-request"; +import { store } from "@wso2is/admin.core.v1/store"; +import { HttpMethods } from "@wso2is/core/models"; import { ApplicationTemplateInterface } from "../models/application-templates"; /** diff --git a/features/admin.applications.v1/api/use-get-application-templates.ts b/features/admin.applications.v1/api/use-get-application-templates.ts index 2a08f194899..1c6de08faa4 100644 --- a/features/admin.applications.v1/api/use-get-application-templates.ts +++ b/features/admin.applications.v1/api/use-get-application-templates.ts @@ -16,13 +16,13 @@ * under the License. */ -import { HttpMethods } from "@wso2is/core/models"; import useRequest, { RequestConfigInterface, RequestErrorInterface, RequestResultInterface -} from "../../admin.core.v1/hooks/use-request"; -import { store } from "../../admin.core.v1/store"; +} from "@wso2is/admin.core.v1/hooks/use-request"; +import { store } from "@wso2is/admin.core.v1/store"; +import { HttpMethods } from "@wso2is/core/models"; import { ApplicationTemplateListInterface } from "../models/application-templates"; /** diff --git a/features/admin.applications.v1/components/application-list.tsx b/features/admin.applications.v1/components/application-list.tsx index 3e6bac7d455..2974a1f4cca 100644 --- a/features/admin.applications.v1/components/application-list.tsx +++ b/features/admin.applications.v1/components/application-list.tsx @@ -1,5 +1,5 @@ /** - * Copyright (c) 2023, WSO2 LLC. (https://www.wso2.com). + * Copyright (c) 2023-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except @@ -361,7 +361,7 @@ export const ApplicationList: FunctionComponent = * on the extensions management API side. */ if (!templateDisplayName) { - templateDisplayName = extensionApplicationTemplates.find( + templateDisplayName = extensionApplicationTemplates?.find( (template: ApplicationTemplateListInterface) => { return template?.id === app?.templateId; } diff --git a/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx b/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx index b5926a9d368..dae7f1275f8 100644 --- a/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx +++ b/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx @@ -16,20 +16,20 @@ * under the License. */ +import { AppState } from "@wso2is/admin.core.v1"; import { IdentifiableComponentInterface } from "@wso2is/core/models"; import { ContentLoader } from "@wso2is/react-components"; import React, { FunctionComponent, ReactElement, useEffect, useState } from "react"; import { useSelector } from "react-redux"; -import { ApplicationTemplateManagementUtils } from "../..//utils/application-template-management-utils"; -import { AppState } from "../../../admin.core.v1"; import { ApplicationManagementConstants } from "../../constants"; import { ApplicationTemplateListItemInterface } from "../../models"; import { ApplicationTemplateCategories, ApplicationTemplateListInterface } from "../../models/application-templates"; +import { ApplicationTemplateManagementUtils } from "../../utils/application-template-management-utils"; import { ApplicationCreateWizard } from "../dynamic-forms/application-create-wizard"; import { MinimalAppCreateWizard } from "../wizard/minimal-application-create-wizard"; /** - * Props for the Application templates grid page. + * Props for the Application creation adapter component. */ export interface ApplicationCreationAdapterPropsInterface extends IdentifiableComponentInterface { /** @@ -62,29 +62,29 @@ const ApplicationCreationAdapter: FunctionComponent state?.application?.groupedTemplates); const [ - isLegacyApplicationTemplateRequestLoading, - setLegacyApplicationTemplateRequestLoadingStatus + isOldApplicationTemplateRequestLoading, + setOldApplicationTemplateRequestLoadingStatus ] = useState(false); /** - * Get legacy Application templates. + * Get old Application templates. */ useEffect(() => { - if (legacyApplicationTemplates !== undefined) { + if (oldApplicationTemplates !== undefined) { return; } - setLegacyApplicationTemplateRequestLoadingStatus(true); + setOldApplicationTemplateRequestLoadingStatus(true); ApplicationTemplateManagementUtils.getApplicationTemplates() .finally(() => { - setLegacyApplicationTemplateRequestLoadingStatus(false); + setOldApplicationTemplateRequestLoadingStatus(false); }); - }, [ legacyApplicationTemplates ]); + }, [ oldApplicationTemplates ]); /** * Render the appropriate Application Creation Wizard based on the template category. @@ -96,20 +96,20 @@ const ApplicationCreationAdapter: FunctionComponent legacyTemplate?.templateId === template?.id); + const oldApplicationTemplate: ApplicationTemplateListItemInterface = oldApplicationTemplates?.find( + (oldTemplate: ApplicationTemplateListItemInterface) => oldTemplate?.templateId === template?.id); switch(template?.category) { case ApplicationTemplateCategories.DEFAULT: return ( onClose() } - template={ legacyApplicationTemplate } + template={ oldApplicationTemplate } showHelpPanel={ true } - subTemplates={ legacyApplicationTemplate?.subTemplates } - subTemplatesSectionTitle={ legacyApplicationTemplate?.subTemplatesSectionTitle } + subTemplates={ oldApplicationTemplate?.subTemplates } + subTemplatesSectionTitle={ oldApplicationTemplate?.subTemplatesSectionTitle } addProtocol={ false } templateLoadingStrategy={ ApplicationManagementConstants.DEFAULT_APP_TEMPLATE_LOADING_STRATEGY } /> @@ -126,7 +126,7 @@ const ApplicationCreationAdapter: FunctionComponent : renderApplicationCreationWizard() : null diff --git a/features/admin.applications.v1/components/application-templates/application-template-card.tsx b/features/admin.applications.v1/components/application-templates/application-template-card.tsx index b83d90a72cb..f29728e57aa 100644 --- a/features/admin.applications.v1/components/application-templates/application-template-card.tsx +++ b/features/admin.applications.v1/components/application-templates/application-template-card.tsx @@ -103,7 +103,7 @@ const ApplicationTemplateCard: FunctionComponent property?.key === ApplicationTemplateConstants.COMING_SOON_ATTRIBUTE_KEY ); @@ -143,7 +143,7 @@ const ApplicationTemplateCard: FunctionComponent
- { template.name } + { template?.name }
@@ -151,7 +151,7 @@ const ApplicationTemplateCard: FunctionComponent
- { template.description } + { template?.description }
diff --git a/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx b/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx index a1e76caab93..049501adddd 100644 --- a/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx +++ b/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx @@ -17,6 +17,7 @@ */ import { Typography } from "@mui/material"; +import { AppState, EventPublisher, getEmptyPlaceholderIllustrations } from "@wso2is/admin.core.v1"; import { IdentifiableComponentInterface, LoadableComponentInterface } from "@wso2is/core/models"; import { ContentLoader, @@ -32,7 +33,6 @@ import React, { FunctionComponent, MouseEvent, ReactElement, useEffect, useMemo, import { useTranslation } from "react-i18next"; import { useSelector } from "react-redux"; import ApplicationTemplateCard from "./application-template-card"; -import { AppState, EventPublisher, getEmptyPlaceholderIllustrations } from "../../../admin.core.v1"; import { ApplicationTemplateConstants } from "../../constants/application-templates"; import useApplicationTemplates from "../../hooks/use-application-templates"; import { AuthProtocolMetaListItemInterface } from "../../models"; @@ -93,10 +93,10 @@ const ApplicationTemplateGrid: FunctionComponent { - setShowCustomProtocolApplicationTemplate(customInboundProtocols.length > 0); + setShowCustomProtocolApplicationTemplate(customInboundProtocols?.length > 0); }, [ customInboundProtocols ]); /** @@ -139,17 +139,17 @@ const ApplicationTemplateGrid: FunctionComponent filterLabels.includes(tagLabel)); + ?.some((tagLabel: string) => filterLabels.includes(tagLabel)); }; - return templates.filter((template: ApplicationTemplateListInterface) => { + return templates?.filter((template: ApplicationTemplateListInterface) => { if (!query) { return isFiltersMatched(template); } const name: string = template?.name?.toLocaleLowerCase(); - if (name.includes(query.toLocaleLowerCase()) + if (name?.includes(query.toLocaleLowerCase()) || template?.tags?.some( (tag: string) => tag?.toLocaleLowerCase()?.includes(query.toLocaleLowerCase())) ) { @@ -176,7 +176,7 @@ const ApplicationTemplateGrid: FunctionComponent
); }; From 46e789cd7d92838eb49cbe0794f55b7eb0369b56 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Sun, 26 May 2024 17:43:24 +0530 Subject: [PATCH 043/114] refactor the code --- .../components/edit-application.tsx | 32 +++++++++---------- .../configs/endpoints.ts | 2 +- .../use-application-sharing-eligibility.ts | 10 +++--- .../hooks/use-dynamic-field-validation.ts | 24 ++++++++------ .../pages/application-edit.tsx | 18 +++++------ .../application-templates-provider.tsx | 4 +-- .../application-template-management-utils.ts | 2 +- .../utils/build-callback-urls-with-regexp.ts | 4 +-- .../edit/settings/connected-apps.tsx | 2 +- .../components/common-feature-provider.tsx | 2 +- .../configs/documentation.ts | 2 +- .../configs/models/common.ts | 2 +- .../configs/models/documentation.ts | 2 +- .../test-configs/__mocks__/window.ts | 2 +- .../components/settings/connected-apps.tsx | 4 +-- .../pages/identity-provider-edit.tsx | 2 +- .../__mocks__/window/app-utils.ts | 2 +- features/test-configs/utils.tsx | 4 +-- .../tab/resource-tab/resource-tab.tsx | 14 ++++---- 19 files changed, 70 insertions(+), 64 deletions(-) diff --git a/features/admin.applications.v1/components/edit-application.tsx b/features/admin.applications.v1/components/edit-application.tsx index bf8727d1188..3b1babe66ac 100644 --- a/features/admin.applications.v1/components/edit-application.tsx +++ b/features/admin.applications.v1/components/edit-application.tsx @@ -231,7 +231,7 @@ export const EditApplication: FunctionComponent = if (extensionTemplateMetadataFetchRequestError?.response?.data?.description) { dispatch(addAlert({ - description: extensionTemplateMetadataFetchRequestError?.response?.data?.description, + description: extensionTemplateMetadataFetchRequestError.response.data.description, level: AlertLevels.ERROR, message: t("applications:notifications.fetchTemplateMetadata.error.message") })); @@ -338,9 +338,9 @@ export const EditApplication: FunctionComponent = return; } - if (error?.response && error?.response?.data && error?.response?.data?.description) { + if (error?.response?.data?.description) { dispatch(addAlert({ - description: error.response?.data?.description, + description: error.response.data.description, level: AlertLevels.ERROR, message: t("applications:notifications.getInboundProtocolConfig" + ".error.message") @@ -425,10 +425,10 @@ export const EditApplication: FunctionComponent = onUpdate={ handleApplicationUpdate } featureConfig={ featureConfig } template={ template } - readOnly={ readOnly || applicationConfig.editApplication.getTabPanelReadOnlyStatus( + readOnly={ readOnly || applicationConfig?.editApplication?.getTabPanelReadOnlyStatus( "APPLICATION_EDIT_GENERAL_SETTINGS", application) } data-componentid={ `${ componentId }-general-settings` } - isManagementApp={ application.isManagementApp } + isManagementApp={ application?.isManagementApp } /> ); @@ -611,7 +611,7 @@ export const EditApplication: FunctionComponent = return []; } - if (tabPaneExtensions && tabPaneExtensions.length > 0) { + if (tabPaneExtensions && tabPaneExtensions?.length > 0) { extensionPanes.push(...cloneDeep(tabPaneExtensions)); } @@ -802,7 +802,7 @@ export const EditApplication: FunctionComponent = extensionPanes.forEach( (extensionPane: ResourceTabPaneInterface) => { - panes.splice(extensionPane.index, 0, extensionPane); + panes.splice(extensionPane?.index, 0, extensionPane); } ); @@ -867,7 +867,7 @@ export const EditApplication: FunctionComponent = /** * Filter the available tabs based on metadata defined in the extension template. * - * @param tabs - All available templates. + * @param tabs - All available tabs. * @returns Filtered tabs list. */ const filterTabsBasedOnExtensionTemplateMetadata = ( @@ -883,7 +883,7 @@ export const EditApplication: FunctionComponent = */ const addPredefineTab = (currentTab: ApplicationEditTabMetadataInterface) => { const predefineTab: ResourceTabPaneInterface = - tabs.find((item: ResourceTabPaneInterface) => item?.["data-tabid"] === currentTab?.id); + tabs?.find((item: ResourceTabPaneInterface) => item?.["data-tabid"] === currentTab?.id); if (predefineTab) { if (currentTab?.displayName) { @@ -894,7 +894,7 @@ export const EditApplication: FunctionComponent = } }; - extensionTemplateMetadata?.edit?.tabs.forEach((tab: ApplicationEditTabMetadataInterface) => { + extensionTemplateMetadata?.edit?.tabs?.forEach((tab: ApplicationEditTabMetadataInterface) => { switch (tab?.contentType) { case ApplicationEditTabContentTypes.GUIDE: if (tab?.guide) { @@ -1002,8 +1002,8 @@ export const EditApplication: FunctionComponent = if (isSuperOrganization()) { getCORSOrigins() .then((response: CORSOriginsListInterface[]) => { - response.map((origin: CORSOriginsListInterface) => { - allowedCORSOrigins.push(origin.url); + response?.map((origin: CORSOriginsListInterface) => { + allowedCORSOrigins.push(origin?.url); }); setAllowedOrigins(allowedCORSOrigins); }) @@ -1090,10 +1090,10 @@ export const EditApplication: FunctionComponent = return; } - if (inboundProtocolConfig && samlConfigurations && samlConfigurations.certificate) { - inboundProtocolConfig.certificate = samlConfigurations.certificate; - inboundProtocolConfig.ssoUrl = samlConfigurations.ssoUrl; - inboundProtocolConfig.issuer = samlConfigurations.issuer; + if (inboundProtocolConfig && samlConfigurations && samlConfigurations?.certificate) { + inboundProtocolConfig.certificate = samlConfigurations?.certificate; + inboundProtocolConfig.ssoUrl = samlConfigurations?.ssoUrl; + inboundProtocolConfig.issuer = samlConfigurations?.issuer; } const extensions: ResourceTabPaneInterface[] = applicationConfig.editApplication.getTabExtensions( diff --git a/features/admin.applications.v1/configs/endpoints.ts b/features/admin.applications.v1/configs/endpoints.ts index da76b6b237d..f3630d2f0ad 100644 --- a/features/admin.applications.v1/configs/endpoints.ts +++ b/features/admin.applications.v1/configs/endpoints.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). + * Copyright (c) 2020-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except diff --git a/features/admin.applications.v1/hooks/use-application-sharing-eligibility.ts b/features/admin.applications.v1/hooks/use-application-sharing-eligibility.ts index 9b64a6a02a9..86bf5b9a251 100644 --- a/features/admin.applications.v1/hooks/use-application-sharing-eligibility.ts +++ b/features/admin.applications.v1/hooks/use-application-sharing-eligibility.ts @@ -16,13 +16,13 @@ * under the License. */ +import useGlobalVariables from "@wso2is/admin.core.v1/hooks/use-global-variables"; +import { AppState } from "@wso2is/admin.core.v1/store"; +import { applicationConfig } from "@wso2is/admin.extensions.v1/configs/application"; +import { useGetCurrentOrganizationType } from "@wso2is/admin.organizations.v1/hooks/use-get-organization-type"; import { hasRequiredScopes } from "@wso2is/core/helpers"; import { FeatureAccessConfigInterface } from "@wso2is/core/models"; import { useSelector } from "react-redux"; -import useGlobalVariables from "../../admin.core.v1/hooks/use-global-variables"; -import { AppState } from "../../admin.core.v1/store"; -import { applicationConfig } from "../../admin.extensions.v1/configs/application"; -import { useGetCurrentOrganizationType } from "../../admin.organizations.v1/hooks/use-get-organization-type"; /** * Custom hook to determine whether the application sharing feature is eligible. @@ -43,7 +43,7 @@ const useApplicationSharingEligibility = (): boolean => { return (isOrganizationManagementEnabled && organizationEnabled - && applicationConfig?.editApplication?.showApplicationShare + && applicationConfig.editApplication.showApplicationShare && hasRequiredScopes( applicationFeatureAccessConfig, applicationFeatureAccessConfig?.scopes?.update, allowedScopes ) diff --git a/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts b/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts index 125411f4d5d..44ecfcb3ac9 100644 --- a/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts +++ b/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts @@ -16,6 +16,7 @@ * under the License. */ +import { AppState } from "@wso2is/admin.core.v1"; import { AlertLevels } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; import { AxiosError } from "axios"; @@ -26,7 +27,6 @@ import { MutableRefObject, useRef, useState } from "react"; import { useTranslation } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; import { Dispatch } from "redux"; -import { AppState } from "../../admin.core.v1"; import { getApplicationList } from "../api/application"; import { ApplicationManagementConstants } from "../constants"; import { ApplicationListInterface, MainApplicationInterface } from "../models"; @@ -51,7 +51,7 @@ const useDynamicFieldValidations = (): { const dispatch: Dispatch = useDispatch(); const reservedAppNamePattern: string = useSelector((state: AppState) => { - return state.config?.deployment?.extensions?.asgardeoReservedAppRegex as string; + return state?.config?.deployment?.extensions?.asgardeoReservedAppRegex as string; }); const previouslyValidatedApplicationName: MutableRefObject = useRef(null); @@ -68,12 +68,12 @@ const useDynamicFieldValidations = (): { */ const getApplications = (appName: string): Promise => { - return getApplicationList(null, null, "name eq " + appName.trim()) + return getApplicationList(null, null, "name eq " + appName?.trim()) .then((response: ApplicationListInterface) => response) .catch((error: AxiosError) => { if (error?.response?.data?.description) { dispatch(addAlert({ - description: error?.response?.data?.description, + description: error.response.data.description, level: AlertLevels.ERROR, message: t("applications:notifications.fetchApplications.error.message") })); @@ -123,6 +123,7 @@ const useDynamicFieldValidations = (): { * Validates a field based on its validation rules. * * @param values - The form values to be validated. + * @param field - Metadata of the form field. * @param validations - An array of validation rules for the field. * @returns An error message if validation fails, or `null` if validation succeeds. */ @@ -180,7 +181,7 @@ const useDynamicFieldValidations = (): { let validations: ValidationRule[] = []; if (field?.validations && Array.isArray(field?.validations) && field?.validations?.length > 0) { - validations = [ ...field?.validations ]; + validations = [ ...field.validations ]; } if (field?.required) { @@ -202,7 +203,8 @@ const useDynamicFieldValidations = (): { /** * Check if the field is filled with a value. * - * value - The value needs validation. + * @param values - The values need to be validated. + * @param field - Metadata of the form field. * @returns Whether the provided value is a non empty value. */ const requiredField = ( @@ -221,7 +223,8 @@ const useDynamicFieldValidations = (): { /** * Verify if the provided value is a domain name. * - * value - The value needs validation. + * @param values - The values need to be validated. + * @param field - Metadata of the form field. * @returns Whether the provided value is a valid domain name or not. */ const validateDomainName = ( @@ -262,13 +265,14 @@ const useDynamicFieldValidations = (): { * @param name - Name of the application. */ const isNameValid = (name: string) => { - return name && !!name.match(ApplicationManagementConstants.FORM_FIELD_CONSTRAINTS.APP_NAME_PATTERN); + return name && !!name?.match(ApplicationManagementConstants.FORM_FIELD_CONSTRAINTS.APP_NAME_PATTERN); }; /** * Check if there is any application with the given name. * * @param name - Name of the application. + * @param appId - application id. */ const isApplicationNameAlreadyExist: DebouncedFunc<(name: string, appId: string) => Promise> = debounce( async (name: string, appId: string) => { @@ -287,7 +291,9 @@ const useDynamicFieldValidations = (): { /** * Checks whether the application name is valid. * - * @param name - Application name. + * @param values - The values need to be validated. + * @param field - Metadata of the form field. + * @returns Whether the provided value is a valid application name. */ const validateApplicationName = async ( values: MainApplicationInterface, diff --git a/features/admin.applications.v1/pages/application-edit.tsx b/features/admin.applications.v1/pages/application-edit.tsx index dbb149295e2..e82f541c1d3 100755 --- a/features/admin.applications.v1/pages/application-edit.tsx +++ b/features/admin.applications.v1/pages/application-edit.tsx @@ -1,5 +1,5 @@ /** - * Copyright (c) 2023, WSO2 LLC. (https://www.wso2.com). + * Copyright (c) 2023-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except @@ -164,7 +164,7 @@ const ApplicationEditPage: FunctionComponent = ( * Fetch the application details on initial component load. */ useEffect(() => { - const path: string[] = history.location.pathname?.split("/"); + const path: string[] = history?.location?.pathname?.split("/"); const id: string = path[ path?.length - 1 ]; setApplicationId(id); @@ -177,12 +177,12 @@ const ApplicationEditPage: FunctionComponent = ( || templateId === ApplicationManagementConstants.CUSTOM_APPLICATION_SAML || templateId === ApplicationManagementConstants.CUSTOM_APPLICATION_PASSIVE_STS) { return applicationTemplates?.find((template: ApplicationTemplateListItemInterface) => - template.id === CustomApplicationTemplate.id); + template?.id === CustomApplicationTemplate.id); } return applicationTemplates?.find( (template: ApplicationTemplateListItemInterface) => { - return template.id === templateId; + return template?.id === templateId; }); }; @@ -202,13 +202,13 @@ const ApplicationEditPage: FunctionComponent = ( if (extensionTemplate) { setExtensionApplicationTemplate(extensionTemplate); - const relatedLegacyTemplateId: string = InboundProtocolDefaultFallbackTemplates.get( - applicationData.inboundProtocols[ 0 /*We pick the first*/ ].type + const relatedOldTemplateId: string = InboundProtocolDefaultFallbackTemplates.get( + applicationData?.inboundProtocols?.[ 0 /*We pick the first*/ ]?.type ) ?? ApplicationManagementConstants.CUSTOM_APPLICATION_OIDC; - applicationData.templateId = relatedLegacyTemplateId; + applicationData.templateId = relatedOldTemplateId; - template = getTemplate(relatedLegacyTemplateId); + template = getTemplate(relatedOldTemplateId); } } @@ -249,7 +249,7 @@ const ApplicationEditPage: FunctionComponent = ( if (!clonedApplication?.advancedConfigurations?.fragment && !clonedApplication?.templateId) { if (clonedApplication?.inboundProtocols?.length > 0) { clonedApplication.templateId = InboundProtocolDefaultFallbackTemplates.get( - clonedApplication.inboundProtocols[ 0 /*We pick the first*/ ].type + clonedApplication?.inboundProtocols?.[ 0 /*We pick the first*/ ]?.type ) ?? ApplicationManagementConstants.CUSTOM_APPLICATION_OIDC; return determineApplicationTemplate(clonedApplication); diff --git a/features/admin.applications.v1/provider/application-templates-provider.tsx b/features/admin.applications.v1/provider/application-templates-provider.tsx index ed9d8208f3c..7bb73611182 100644 --- a/features/admin.applications.v1/provider/application-templates-provider.tsx +++ b/features/admin.applications.v1/provider/application-templates-provider.tsx @@ -79,7 +79,7 @@ const ApplicationTemplatesProvider = (props: ApplicationTemplatesProviderProps): (category: ApplicationTemplateCategoryInterface) => { const categoryData: CategorizedApplicationTemplatesInterface = { ...category, templates: [] }; - categoryData.templates = applicationTemplates.filter( + categoryData.templates = applicationTemplates?.filter( (template: ApplicationTemplateListInterface) => template?.category === category?.id); categoryMap.push(categoryData); @@ -92,7 +92,7 @@ const ApplicationTemplatesProvider = (props: ApplicationTemplatesProviderProps): categoryMap.push({ ...ApplicationTemplateConstants.OTHER_CATEGORY_INFO, - templates: applicationTemplates.filter( + templates: applicationTemplates?.filter( (template: ApplicationTemplateListInterface) => !supportedCategories.includes(template?.category)) }); diff --git a/features/admin.applications.v1/utils/application-template-management-utils.ts b/features/admin.applications.v1/utils/application-template-management-utils.ts index 530c7778b35..036cfbb4658 100644 --- a/features/admin.applications.v1/utils/application-template-management-utils.ts +++ b/features/admin.applications.v1/utils/application-template-management-utils.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). + * Copyright (c) 2020-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except diff --git a/features/admin.applications.v1/utils/build-callback-urls-with-regexp.ts b/features/admin.applications.v1/utils/build-callback-urls-with-regexp.ts index 8b8afb3a185..7d33eb44505 100644 --- a/features/admin.applications.v1/utils/build-callback-urls-with-regexp.ts +++ b/features/admin.applications.v1/utils/build-callback-urls-with-regexp.ts @@ -32,9 +32,9 @@ * // Result: ["regexp=(https://example.com/login|https://app.example.com/login)"] */ const buildCallBackUrlsWithRegExp = (urls: string[]): string[] => { - const sanitizedURLs: string[] = urls?.map((url: string) => url.replace(/['"]+/g, "")); + const sanitizedURLs: string[] = urls?.map((url: string) => url?.replace(/['"]+/g, "")); - if (sanitizedURLs.length > 1) { + if (sanitizedURLs?.length > 1) { return [ `regexp=(${sanitizedURLs.join("|")})` ]; } diff --git a/features/admin.connections.v1/components/edit/settings/connected-apps.tsx b/features/admin.connections.v1/components/edit/settings/connected-apps.tsx index 3d30a9ba9b0..0b20057a1a7 100644 --- a/features/admin.connections.v1/components/edit/settings/connected-apps.tsx +++ b/features/admin.connections.v1/components/edit/settings/connected-apps.tsx @@ -308,7 +308,7 @@ export const ConnectedApps: FunctionComponent = ( * on the extensions management API side. */ if (!templateDisplayName) { - templateDisplayName = extensionApplicationTemplates.find( + templateDisplayName = extensionApplicationTemplates?.find( (template: ApplicationTemplateListInterface) => { return template?.id === app?.templateId; } diff --git a/features/admin.core.v1/components/common-feature-provider.tsx b/features/admin.core.v1/components/common-feature-provider.tsx index 2818f810d31..1ce51cb5045 100644 --- a/features/admin.core.v1/components/common-feature-provider.tsx +++ b/features/admin.core.v1/components/common-feature-provider.tsx @@ -16,8 +16,8 @@ * under the License. */ +import ApplicationTemplatesProvider from "@wso2is/admin.applications.v1/provider/application-templates-provider"; import React, { PropsWithChildren, ReactElement } from "react"; -import ApplicationTemplatesProvider from "../../admin.applications.v1/provider/application-templates-provider"; /** * Props interface for the `CommonFeatureProviders` component. diff --git a/features/admin.extensions.v1/configs/documentation.ts b/features/admin.extensions.v1/configs/documentation.ts index 3f465bc573d..345dd6f051b 100644 --- a/features/admin.extensions.v1/configs/documentation.ts +++ b/features/admin.extensions.v1/configs/documentation.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2021-2023, WSO2 LLC. (https://www.wso2.com). + * Copyright (c) 2021-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except diff --git a/features/admin.extensions.v1/configs/models/common.ts b/features/admin.extensions.v1/configs/models/common.ts index 90f660edffb..9f3368eab47 100644 --- a/features/admin.extensions.v1/configs/models/common.ts +++ b/features/admin.extensions.v1/configs/models/common.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2021-2023, WSO2 LLC. (https://www.wso2.com). + * Copyright (c) 2021-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except diff --git a/features/admin.extensions.v1/configs/models/documentation.ts b/features/admin.extensions.v1/configs/models/documentation.ts index 936b2bf7c75..a2acbd54a29 100644 --- a/features/admin.extensions.v1/configs/models/documentation.ts +++ b/features/admin.extensions.v1/configs/models/documentation.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2023, WSO2 LLC. (https://www.wso2.com). + * Copyright (c) 2023-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except diff --git a/features/admin.extensions.v1/test-configs/__mocks__/window.ts b/features/admin.extensions.v1/test-configs/__mocks__/window.ts index 624a91d54b2..880e2564d17 100644 --- a/features/admin.extensions.v1/test-configs/__mocks__/window.ts +++ b/features/admin.extensions.v1/test-configs/__mocks__/window.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2022-2023, WSO2 LLC. (https://www.wso2.com). + * Copyright (c) 2022-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except diff --git a/features/admin.identity-providers.v1/components/settings/connected-apps.tsx b/features/admin.identity-providers.v1/components/settings/connected-apps.tsx index f59c395937c..c16fc237055 100644 --- a/features/admin.identity-providers.v1/components/settings/connected-apps.tsx +++ b/features/admin.identity-providers.v1/components/settings/connected-apps.tsx @@ -1,5 +1,5 @@ /** - * Copyright (c) 2023, WSO2 LLC. (https://www.wso2.com). + * Copyright (c) 2023-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except @@ -300,7 +300,7 @@ export const ConnectedApps: FunctionComponent = ( * on the extensions management API side. */ if (!templateDisplayName) { - templateDisplayName = extensionApplicationTemplates.find( + templateDisplayName = extensionApplicationTemplates?.find( (template: ApplicationTemplateListInterface) => { return template?.id === app?.templateId; } diff --git a/features/admin.identity-providers.v1/pages/identity-provider-edit.tsx b/features/admin.identity-providers.v1/pages/identity-provider-edit.tsx index 626ff8db252..3744f70ce01 100644 --- a/features/admin.identity-providers.v1/pages/identity-provider-edit.tsx +++ b/features/admin.identity-providers.v1/pages/identity-provider-edit.tsx @@ -1,5 +1,5 @@ /** - * Copyright (c) 2023, WSO2 LLC. (https://www.wso2.com). + * Copyright (c) 2023-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except diff --git a/features/test-configs/__mocks__/window/app-utils.ts b/features/test-configs/__mocks__/window/app-utils.ts index 2c2bc48a215..8201b55e166 100644 --- a/features/test-configs/__mocks__/window/app-utils.ts +++ b/features/test-configs/__mocks__/window/app-utils.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2022-2023, WSO2 LLC. (https://www.wso2.com). + * Copyright (c) 2022-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except diff --git a/features/test-configs/utils.tsx b/features/test-configs/utils.tsx index 74e2ed6e008..5a51d0b9af2 100644 --- a/features/test-configs/utils.tsx +++ b/features/test-configs/utils.tsx @@ -19,14 +19,14 @@ // import { AuthProvider } from "@asgardeo/auth-react"; import { RenderResult, render as rtlRender } from "@testing-library/react"; import { AccessControlProvider } from "@wso2is/access-control"; +import { AppConfigProvider } from "@wso2is/admin.core.v1/providers/app-config-provider"; +import GlobalVariablesProvider from "@wso2is/admin.core.v1/providers/global-variables-provider"; import React, { PropsWithChildren, ReactElement } from "react"; import { Provider } from "react-redux"; import { mockStore } from "./__mocks__/redux/redux-store"; import ReduxStoreStateMock from "./__mocks__/redux/redux-store-state"; // import { AuthenticateUtils } from "../src/features/authentication/utils/authenticate-utils"; // import { PreLoader } from "../src/features/core/components/pre-loader/pre-loader"; -import { AppConfigProvider } from "../admin.core.v1/providers/app-config-provider"; -import GlobalVariablesProvider from "../admin.core.v1/providers/global-variables-provider"; /** * Custom render method to includes things like global context providers, data stores, etc. diff --git a/modules/react-components/src/components/tab/resource-tab/resource-tab.tsx b/modules/react-components/src/components/tab/resource-tab/resource-tab.tsx index 34bee647571..0477074e2f4 100644 --- a/modules/react-components/src/components/tab/resource-tab/resource-tab.tsx +++ b/modules/react-components/src/components/tab/resource-tab/resource-tab.tsx @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). + * Copyright (c) 2020-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except @@ -202,12 +202,12 @@ export const ResourceTab: FunctionComponent & Resourc return; } - const hashComponents: string[] = window.location.hash.split(TAB_URL_HASH_FRAGMENT); + const hashComponents: string[] = window?.location?.hash?.split(TAB_URL_HASH_FRAGMENT); let tabId: string; let tabIndex: number; // Verify if the hash contains the redirecting tab's ID or index. - if (hashComponents.length == 2) { + if (hashComponents?.length == 2) { const hashTabValue: string = hashComponents[1]; const hashTabIndex: number = parseInt(hashTabValue); @@ -220,7 +220,7 @@ export const ResourceTab: FunctionComponent & Resourc } if (tabId) { - tabIndex = panes?.findIndex((pane: ResourceTabPaneInterface) => pane["data-tabid"] === tabId); + tabIndex = panes?.findIndex((pane: ResourceTabPaneInterface) => pane?.["data-tabid"] === tabId); } if (tabIndex >= 0 && tabIndex < panes?.length) { @@ -231,7 +231,7 @@ export const ResourceTab: FunctionComponent & Resourc } else { if (typeof defaultActiveTab === "string") { tabIndex = panes?.findIndex( - (pane: ResourceTabPaneInterface) => pane["data-tabid"] === defaultActiveTab); + (pane: ResourceTabPaneInterface) => pane?.["data-tabid"] === defaultActiveTab); } else if (typeof defaultActiveTab === "number") { tabIndex = defaultActiveTab; } @@ -242,7 +242,7 @@ export const ResourceTab: FunctionComponent & Resourc setActiveIndex(0); } } - }, [ window.location.hash, defaultActiveTab, panes ]); + }, [ window?.location?.hash, defaultActiveTab, panes ]); /** * Called to set the panes list length initially. @@ -312,7 +312,7 @@ export const ResourceTab: FunctionComponent & Resourc render?: () => ReactNode } = panes[data.activeIndex]; - handleTabChange(e, data.activeIndex, activeTab["data-tabid"]); + handleTabChange(e, data.activeIndex, activeTab?.["data-tabid"]); onTabChange && typeof onTabChange === "function" && onTabChange(e, data, { "data-tabid": activeTab["data-tabid"], index: data.activeIndex From 1d4d81ec14cf05e7658198b947fba7464e661ada Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Sun, 26 May 2024 17:54:32 +0530 Subject: [PATCH 044/114] =?UTF-8?q?Add=20changeset=20=F0=9F=A6=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .changeset/tough-queens-love.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .changeset/tough-queens-love.md diff --git a/.changeset/tough-queens-love.md b/.changeset/tough-queens-love.md new file mode 100644 index 00000000000..629ab53b4f4 --- /dev/null +++ b/.changeset/tough-queens-love.md @@ -0,0 +1,14 @@ +--- +"@wso2is/admin.identity-providers.v1": minor +"@wso2is/admin.applications.v1": minor +"@wso2is/admin.connections.v1": minor +"@wso2is/admin.extensions.v1": minor +"@wso2is/react-components": minor +"@wso2is/admin.core.v1": minor +"@wso2is/console": minor +"@wso2is/form": minor +"@wso2is/i18n": minor +"@wso2is/features": minor +--- + +Update the application section to support SSO integration templates From b546698cff841a5aa21205b0eaca0cd41751ae4a Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Sun, 26 May 2024 21:32:21 +0530 Subject: [PATCH 045/114] change the import in test configs --- features/test-configs/utils.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/test-configs/utils.tsx b/features/test-configs/utils.tsx index 5a51d0b9af2..5b910a30b7d 100644 --- a/features/test-configs/utils.tsx +++ b/features/test-configs/utils.tsx @@ -19,12 +19,12 @@ // import { AuthProvider } from "@asgardeo/auth-react"; import { RenderResult, render as rtlRender } from "@testing-library/react"; import { AccessControlProvider } from "@wso2is/access-control"; -import { AppConfigProvider } from "@wso2is/admin.core.v1/providers/app-config-provider"; -import GlobalVariablesProvider from "@wso2is/admin.core.v1/providers/global-variables-provider"; import React, { PropsWithChildren, ReactElement } from "react"; import { Provider } from "react-redux"; import { mockStore } from "./__mocks__/redux/redux-store"; import ReduxStoreStateMock from "./__mocks__/redux/redux-store-state"; +import { AppConfigProvider } from "../admin.core.v1/providers/app-config-provider"; +import GlobalVariablesProvider from "../admin.core.v1/providers/global-variables-provider"; // import { AuthenticateUtils } from "../src/features/authentication/utils/authenticate-utils"; // import { PreLoader } from "../src/features/core/components/pre-loader/pre-loader"; From b706ee41e3452dbde54212acd76acd8f4a560a93 Mon Sep 17 00:00:00 2001 From: Dilshan Senarath Date: Mon, 27 May 2024 11:17:57 +0530 Subject: [PATCH 046/114] add templateId when creating apps --- .../components/dynamic-forms/application-create-wizard.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx b/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx index 38c9f29801d..8b386088bc8 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx +++ b/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx @@ -161,6 +161,13 @@ export const ApplicationCreateWizard: FunctionComponent Date: Mon, 27 May 2024 11:44:19 +0530 Subject: [PATCH 047/114] update unit test --- .../dynamic-forms/application-create-wizard.test.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/features/admin.applications.v1/__tests__/components/dynamic-forms/application-create-wizard.test.tsx b/features/admin.applications.v1/__tests__/components/dynamic-forms/application-create-wizard.test.tsx index f99a5ba0972..7db7ee1c475 100644 --- a/features/admin.applications.v1/__tests__/components/dynamic-forms/application-create-wizard.test.tsx +++ b/features/admin.applications.v1/__tests__/components/dynamic-forms/application-create-wizard.test.tsx @@ -137,7 +137,8 @@ describe("[Applications Management Feature] - ApplicationCreateWizard", () => { await waitFor(() => { expect(createApplicationMock).toHaveBeenCalledWith({ - name: "Salesforce 2" + name: "Salesforce 2", + templateId: "salesforce" }); }); }); From 8218d14cb115e9df4b76a7b06169dd195c3070be Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Thu, 4 Jul 2024 12:01:48 +0530 Subject: [PATCH 048/114] add the poc solution implementation --- .../assets/images/illustrations/dropbox.png | Bin 0 -> 3352 bytes .../admin.applications.v1/api/application.ts | 2 +- .../api/use-get-application-template.ts | 5 +- .../api/use-get-blob-resource.ts | 53 + .../application-create-wizard.tsx | 87 +- .../dynamic-forms/application-edit-form.tsx | 253 +- .../application-form-dynamic-field.tsx | 74 +- ...application-inbound-protocol-edit-form.tsx | 429 + .../application-main-edit-form.tsx | 311 + .../application-sync-wizard.scss | 25 + .../dynamic-forms/application-sync-wizard.tsx | 594 + .../application-certificate-adapter.tsx | 151 + .../components/edit-application.tsx | 5 +- .../components/help-panel/markdown-guide.tsx | 75 - .../markdown/components/blockquote.tsx | 120 + .../help-panel/markdown/components/code.tsx | 51 + .../markdown/components/divider.scss | 22 + .../markdown/components/divider.tsx | 47 + .../markdown/components/heading.scss | 56 + .../markdown/components/heading1.tsx | 114 + .../markdown/components/heading2.tsx | 114 + .../markdown/components/heading3.tsx | 114 + .../markdown/components/heading4.tsx | 114 + .../markdown/components/heading5.tsx | 61 + .../markdown/components/heading6.tsx | 61 + .../help-panel/markdown/components/image.scss | 25 + .../help-panel/markdown/components/image.tsx | 78 + .../help-panel/markdown/components/index.ts | 36 + .../help-panel/markdown/components/italic.tsx | 51 + .../markdown/components/list-item.tsx | 54 + .../markdown/components/markdown-link.tsx | 204 + .../markdown/components/ordered-list.tsx | 54 + .../markdown/components/paragraph.tsx | 61 + .../help-panel/markdown/components/pre.tsx | 94 + .../help-panel/markdown/components/strong.tsx | 51 + .../markdown/components/unordered-list.tsx | 54 + .../help-panel/markdown/components/utils.tsx | 55 + .../markdown/global-markdown-context.tsx | 45 + .../markdown/global-markdown-provider.tsx | 48 + .../help-panel/markdown/markdown-guide.scss | 22 + .../help-panel/markdown/markdown-guide.tsx | 311 + .../markdown/use-global-markdown.ts | 41 + .../application-certificate-wrapper.tsx | 12 +- .../constants/application-templates.ts | 2 +- .../models/application-templates.ts | 13 +- .../models/dynamic-fields.ts | 67 +- features/admin.applications.v1/package.json | 1 + .../pages/application-edit.tsx | 75 +- .../src/models/namespaces/applications-ns.ts | 14 + .../i18n/src/models/namespaces/common-ns.ts | 1 + .../src/translations/de-DE/portals/common.ts | 1 + .../en-US/portals/applications.ts | 14 + .../src/translations/en-US/portals/common.ts | 1 + .../src/translations/es-ES/portals/common.ts | 1 + .../src/translations/fr-FR/portals/common.ts | 1 + .../src/translations/ja-JP/portals/common.ts | 1 + .../src/translations/pt-BR/portals/common.ts | 1 + .../src/translations/pt-PT/portals/common.ts | 1 + .../src/translations/si-LK/portals/common.ts | 1 + .../src/translations/ta-IN/portals/common.ts | 1 + .../src/translations/zh-CN/portals/common.ts | 1 + modules/react-components/package.json | 3 +- .../src/components/links/link.tsx | 8 +- .../src/components/renderer/markdown.tsx | 28 +- package.json | 1 - pnpm-lock.yaml | 35124 +++++++++------- 66 files changed, 24151 insertions(+), 15444 deletions(-) create mode 100644 apps/console/src/public/resources/applications/assets/images/illustrations/dropbox.png create mode 100644 features/admin.applications.v1/api/use-get-blob-resource.ts create mode 100644 features/admin.applications.v1/components/dynamic-forms/application-inbound-protocol-edit-form.tsx create mode 100644 features/admin.applications.v1/components/dynamic-forms/application-main-edit-form.tsx create mode 100644 features/admin.applications.v1/components/dynamic-forms/application-sync-wizard.scss create mode 100644 features/admin.applications.v1/components/dynamic-forms/application-sync-wizard.tsx create mode 100644 features/admin.applications.v1/components/dynamic-forms/custom-fields/application-certificate-adapter.tsx delete mode 100644 features/admin.applications.v1/components/help-panel/markdown-guide.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/blockquote.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/code.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/divider.scss create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/divider.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/heading.scss create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/heading1.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/heading2.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/heading3.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/heading4.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/heading5.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/heading6.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/image.scss create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/image.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/index.ts create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/italic.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/list-item.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/markdown-link.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/ordered-list.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/paragraph.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/pre.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/strong.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/unordered-list.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/components/utils.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/global-markdown-context.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/global-markdown-provider.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/markdown-guide.scss create mode 100644 features/admin.applications.v1/components/help-panel/markdown/markdown-guide.tsx create mode 100644 features/admin.applications.v1/components/help-panel/markdown/use-global-markdown.ts diff --git a/apps/console/src/public/resources/applications/assets/images/illustrations/dropbox.png b/apps/console/src/public/resources/applications/assets/images/illustrations/dropbox.png new file mode 100644 index 0000000000000000000000000000000000000000..6358aeac3654801377e5973f554c370e33d12a2f GIT binary patch literal 3352 zcmbVPYgiL!8Vw36Iv|3VQNT#+wN;Z?Me#ObpnzK)6s;i80I3UFxfKM(nvqfysmP>S zOR01t6~q-+v|bPth7d?pS`w=?Dnh^;C`yt7W=JM8`wi;z?C!5^e|&l8oV@Ru^Gz}* zncUEIK`x`GjOK7SE+N4I8#tU{;BXjc)NoK#C#PQr#WCK0tv`oz9v?%+IsxpEwjpRW z=WMgrGXR`Zf+Ny6oG~8ka^U<>1Oswi=tmm^8HOSB%&G&-zH`j9os8RO%(Qfd6U!KS z7~=pFQ^era40etY6*0#fn3R)@LdEbUjJ%qu_?1aM$y78m+D?X#F`ei3P2d=;I^E)?|WXG(2#xMyXM|@*E&oouNsL@9m_kO>A=kh%N zq$z4xoG18`FULN#9<|&x61R9)Qx{+BwFMJTpXpr){Vm>=S4}4771F)gW?*_uNwRMw z^C&3(cD;NT!=sAOk-~>|%#>D}FA-2tML9_KB$amXCvk8MUV0l~@ z=${r$%5?(BP>-eqWKg3!0Me?^D7I+Oj{wP2q5%N$8qtL;(x7tzs!*X`Y|)?)Ad{7- zBS6WGcqWT9crrj`N?gPi6^;V3tN{;Vks4pjA`Q+1s7r}+*`mV70SU#1+@T<+Eff zzJUL@M|d9TEaQH0_JjyR{P>TniK8mfb})y$%IQl~$#)SbRl*h#Ricz<5%E+>9YC4X zjz)PFBSsus7XWoloi>XtO6^iG8dR^H0#J}jyJ1L3Xxf|aW2V0+3vp1ckcBdz0s1;w zm;+EZS+yS^jl`{W519F^qe~1*Pe<2M=^fiqQ<{tLxji$dzqiG9%v}CCbGxLSXP;u~ zd3i32>B&DlXixn~MDEqKa&yZqM6dq~uNTHCRs-ffbANGJuA~zco@L_lvIt1p{!k{V zF&rRY6o^}FPW<#-uJtItf8i}2wdYnJ9k8wjnJZnX8f!NTE-Lp&<9S0e zv!S_Z9b(#RdyZp5?3Ls;d=oT9 z$8;|Vu~-_diE*<(khEKv(zawb;h5#rtav-nb(H3N*gyPuxbUc1h($v!nz8mpg7ojZ7gv4`FUa9q%fX3m zC8y8ee+nV}1*luqOh1SEY;GM@`%F)@l2Sohs&|%2*f3V>K^2cy&RSnT2 zTiydg@NN85riIopcg7aRdxD_cZF6StSMI zSN*eo%)&m9Z0f}(x7b9Y;Zti*JvFvUX@xNx|G|!W*qNHK?$?|%v@UimW7aEFXIRuv zFw;L8E#$pxpLAQP!^mRh#qe?Cpc)Vy@m1Khu zWu-K!Lq^|)s}FIl?~1#(mSE zy8bFNqp|Nxdt8FSw|~sa_YnsWF?exwt4@*B&cEo5^zTvYl1h+4Dkfp27%YLgHvX`-AAyHixAu~=Q?~&pSKF**p^=KA3*6b@TgzYp!dKG!|R)3i9C zuA?^b^e>~Ompiq{h%pbf??`3`z;Z9fv|64a~ zzTir-r$_nz;)`UTO!+l=VPElMGEJ(CZVlhE4ce+yybJxV5k*5=>lL2R4|Spy(AEaU z7^t^Z{di66Y##kWtaGEc$IM)ffWY2ks;eU0c7Xj8pnGE`kBS_#do z6ZI+@H!8u#qUN`>oH|HY;qpk&b^LEssY>oc zZDNO3?|9jAen0UCoSsLFhZo3*dN8!MWL~2@gqqNB9HYSR?|N#2DrOY*FO58wnlLn! z)Z6m&A%cRTuZTskHOU(*6kPf2*!8RXeI}7j2b8|O zue+`L`Cz>$3mTy|ctKSvQ5+;m_ALETe0>J(8)Ld#-f2vO{2E0Ipfw#vG32KfxkJrH zJlEeqM&e5IC$5;D|9C3qDVQxK#z28}hKW%7qF)f&*K63^5%m1_7Ch?WS9{XQ8NJ>G z^CnNo%+b8WQl1?yqN9-|ZP|JU0hR5)`_0<h1#Z7Y2#~YS#A%r zy^h!<;%u2uSF8xGb@i&UGhV|)Pv$fEnH=M*GdoB1FQ2$-N=^sLF3&ghKac+;$9q|1 zcNj|kztx?yE^8}e*(id: string, status: boolean): Promise = * @returns A promise containing the response. */ export const updateApplicationDetails = ( - app: ApplicationInterface, + app: Partial, skipEmptyPayloads?: boolean ): Promise => { const { id, ...rest } = app; diff --git a/features/admin.applications.v1/api/use-get-application-template.ts b/features/admin.applications.v1/api/use-get-application-template.ts index 7a1eb7d1e26..951ed4eff1c 100644 --- a/features/admin.applications.v1/api/use-get-application-template.ts +++ b/features/admin.applications.v1/api/use-get-application-template.ts @@ -32,7 +32,8 @@ import { ApplicationTemplateInterface } from "../models/application-templates"; * @returns A promise containing the response. */ const useGetApplicationTemplate = ( - id: string + id: string, + shouldFetch: boolean = true ): RequestResultInterface => { const requestConfig: RequestConfigInterface = { headers: { @@ -43,7 +44,7 @@ const useGetApplicationTemplate = (requestConfig); + const { data, error, isValidating, mutate } = useRequest(shouldFetch ? requestConfig : null); return { data, diff --git a/features/admin.applications.v1/api/use-get-blob-resource.ts b/features/admin.applications.v1/api/use-get-blob-resource.ts new file mode 100644 index 00000000000..b5dff238b36 --- /dev/null +++ b/features/admin.applications.v1/api/use-get-blob-resource.ts @@ -0,0 +1,53 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import useRequest, { RequestErrorInterface, RequestResultInterface } from "@wso2is/admin.core.v1/hooks/use-request"; +import { HttpMethods } from "@wso2is/core/models"; +import { AxiosRequestConfig } from "axios"; + +/** + * Hook to get a blob resource. + * + * @param url - Url of the resource. + * @param shouldFetch - Condition to check if data should be fetched. + * @returns Response as a promise. + */ +export const useGetBlobResource = ( + url: string, + shouldFetch: boolean = true +): RequestResultInterface => { + + const requestConfig: AxiosRequestConfig = { + headers: { + "Accept": "application/*,image/*" + }, + method: HttpMethods.GET, + responseType: "blob", + url + }; + + const { data, error, isValidating, mutate } = useRequest(shouldFetch ? requestConfig : null); + + return { + data, + error, + isLoading: shouldFetch && !error && !data, + isValidating, + mutate + }; +}; diff --git a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx b/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx index 8b386088bc8..2b4f71ba2df 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx +++ b/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx @@ -44,11 +44,13 @@ import get from "lodash-es/get"; import has from "lodash-es/has"; import pick from "lodash-es/pick"; import set from "lodash-es/set"; +import unset from "lodash-es/unset"; import React, { ChangeEvent, FunctionComponent, MouseEvent, ReactElement, useEffect, useMemo, useState } from "react"; import { useTranslation } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; import { Dispatch } from "redux"; import { Grid, ModalProps } from "semantic-ui-react"; +import { v4 as uuidv4 } from "uuid"; import { ApplicationFormDynamicField } from "./application-form-dynamic-field"; import { createApplication, useApplicationList } from "../../api"; import useGetApplicationTemplate from "../../api/use-get-application-template"; @@ -58,7 +60,7 @@ import useApplicationSharingEligibility from "../../hooks/use-application-sharin import useDynamicFieldValidations from "../../hooks/use-dynamic-field-validation"; import { ApplicationListItemInterface, MainApplicationInterface, URLFragmentTypes } from "../../models"; import { ApplicationTemplateListInterface } from "../../models/application-templates"; -import { DynamicFieldAutoSubmitPropertyInterface, DynamicFieldInterface } from "../../models/dynamic-fields"; +import { DynamicFieldInterface, FieldValueGenerators } from "../../models/dynamic-fields"; import buildCallBackUrlsWithRegExp from "../../utils/build-callback-urls-with-regexp"; import { ApplicationShareModal } from "../modals/application-share-modal"; import "./application-create-wizard.scss"; @@ -118,6 +120,11 @@ export const ApplicationCreateWizard: FunctionComponent state?.config?.ui?.isClientSecretHashEnabled); + const tenantDomain: string = useSelector((state: AppState) => state?.auth?.tenantDomain); + const clientOrigin: string = useSelector((state: AppState) => state?.config?.deployment?.clientOrigin); + const serverOrigin: string = useSelector((state: AppState) => state?.config?.deployment?.idpConfigs?.serverOrigin); + const appBaseNameWithoutTenant: string = useSelector((state: AppState) => + state?.config?.deployment?.appBaseNameWithoutTenant); const eventPublisher: EventPublisher = EventPublisher.getInstance(); @@ -280,7 +287,7 @@ export const ApplicationCreateWizard: FunctionComponent { // The created resource's id is sent as a location header. // If that's available, navigate to the edit page. - if (!createdAppId) { + if (createdAppId) { let searchParams: string = "?"; const defaultTabIndex: number = 0; @@ -309,6 +316,21 @@ export const ApplicationCreateWizard: FunctionComponent { + switch(property) { + case "tenantDomain": + return tenantDomain; + case "clientOrigin": + return clientOrigin; + case "serverOrigin": + return serverOrigin; + case "appBaseNameWithoutTenant": + return appBaseNameWithoutTenant; + default: + return ""; + } + }; + /** * Callback function triggered when clicking the form submit button. * @@ -331,13 +353,56 @@ export const ApplicationCreateWizard: FunctionComponent 0) { - field.meta.autoSubmitProperties.forEach( - (property: DynamicFieldAutoSubmitPropertyInterface) => - set(formValues, property?.path, property?.value) - ); + if (field?.meta?.generator === FieldValueGenerators.UUID) { + set(formValues, field?.name, uuidv4()); + } + + if (field?.meta?.dependentProperties + && Array.isArray(field?.meta?.dependentProperties) + && field?.meta?.dependentProperties?.length > 0) { + const fieldValue: string = get(formValues, field?.name); + + if (typeof fieldValue === "string") { + field.meta.dependentProperties.forEach( + (property: string) => { + const propertyValue: string = get(formValues, property); + + if (propertyValue && typeof propertyValue === "string") { + set(formValues, property, propertyValue.replace(`\${${field?.name}}`, fieldValue)); + } + } + ); + } + } + + if (field?.meta?.templatedPlaceholders + && Array.isArray(field?.meta?.templatedPlaceholders) + && field?.meta?.templatedPlaceholders?.length > 0) { + let fieldValue: string = get(formValues, field?.name); + + if (typeof fieldValue === "string") { + field.meta.templatedPlaceholders.forEach( + (property: string) => { + let propertyValue: string = get(formValues, property); + + if (!propertyValue) { + propertyValue = getTemplatedValues(property); + } + + if (propertyValue && typeof propertyValue === "string") { + fieldValue = fieldValue.replace(`\${${property}}`, propertyValue); + } + } + ); + + set(formValues, field?.name, fieldValue); + } + } + }); + + templateMetadata?.create?.form?.fields?.forEach((field: DynamicFieldInterface) => { + if (field?.disable) { + unset(formValues, field?.name); } }); @@ -528,6 +593,10 @@ export const ApplicationCreateWizard: FunctionComponent { templateMetadata?.create?.form?.fields.map( (field: DynamicFieldInterface) => { + if (field?.hidden) { + return null; + } + return ( ) => void) }> = {}; const { t } = useTranslation(); - const dispatch: Dispatch = useDispatch(); - const { UIConfig } = useUIConfig(); - const allowedScopes: string = useSelector((state: AppState) => state?.auth?.allowedScopes); - const [ isSubmitting, setIsSubmitting ] = useState(false); - - /** - * Callback function triggered when clicking the form submit button. - * - * @param values - Submission values from the form fields. - */ - const onSubmit = (values: ApplicationInterface): void => { - setIsSubmitting(true); - const formValues: ApplicationInterface = cloneDeep(values); - - /** - * Make sure that cleared text fields are set to an empty string. - * Additionally, include the auto-submit properties in the form submission. - */ - tab?.form?.fields?.forEach((field: DynamicFieldInterface) => { - if (!has(formValues, field?.name)) { - const initialValue: any = get(application, field?.name); - if (initialValue && typeof initialValue === "string") { - set(formValues, field?.name, ""); - } - } - - if (field?.meta?.autoSubmitProperties - && Array.isArray(field?.meta?.autoSubmitProperties) - && field?.meta?.autoSubmitProperties?.length > 0) { - field.meta.autoSubmitProperties.forEach( - (property: DynamicFieldAutoSubmitPropertyInterface) => - set(formValues, property?.path, property?.value) - ); + const renderForms = () => { + return tab?.forms?.map((form: DynamicFormInterface) => { + switch(form?.api) { + case SupportedAPIList.APPLICATION_PATCH: + return ( + ) => void) => + formSubmissions[form?.api] = submissionFunction + } + /> + ); + case SupportedAPIList.APPLICATION_SAML_INBOUND_PROTOCOL_PUT: + return ( + ) => void) => + formSubmissions[form?.api] = submissionFunction + } + /> + ); } }); - - updateApplicationDetails(formValues) - .then(() => { - dispatch(addAlert({ - description: t("applications:notifications.updateApplication.success" + - ".description"), - level: AlertLevels.SUCCESS, - message: t("applications:notifications.updateApplication.success.message") - })); - - onUpdate(application?.id); - }) - .catch((error: AxiosError) => { - if (error?.response?.data?.description) { - dispatch(addAlert({ - description: error.response.data.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.updateApplication.error" + - ".message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.updateApplication" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications.updateApplication.genericError" + - ".message") - })); - }) - .finally(() => setIsSubmitting(false)); - }; - - /** - * Prepare the initial values before assigning them to the form fields. - * - * @param application - application data. - * @returns Moderated initial values. - */ - const moderateInitialValues = (application: ApplicationInterface): Partial => { - if (!tab?.form?.submitDefinedFieldsOnly) { - return application; - } - - const paths: string[] = tab?.form?.fields?.map((field: DynamicFieldInterface) => field?.name); - - // The ID needs to be submitted to perform the update operation. - paths.push("id"); - - return pick(application, paths); }; return ( + { renderForms() } { - isLoading - ? - : ( - <> - , - Partial - >, - { changeValue }: Tools< - Partial, - Partial - > - ) => { - changeValue(state, fieldName, () => fieldVal); - } - } } - validate={ - (formValues: ApplicationInterface) => - validate(formValues, tab?.form?.fields) - } - render={ ({ form, handleSubmit }: FormRenderProps) => { - return ( -
- - { tab?.form?.fields?.map( - (field: DynamicFieldInterface) => { - return ( - - - - - - ); - }) - } - - - - { t("common:update") } - - - - -
- ); - } } - /> - - ) + tab?.singleForm && ( + + + + ) => Object.values( + formSubmissions).forEach( + (func: (e: MouseEvent) => void) => func(e)) } + > + { t("common:update") } + + + + + ) }
); diff --git a/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx b/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx index a53a54bd248..41abe363481 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx +++ b/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx @@ -18,7 +18,10 @@ import { IdentifiableComponentInterface } from "@wso2is/core/models"; import { CheckboxFieldAdapter, FinalFormField, FormApi, TextFieldAdapter } from "@wso2is/form"; +import { Hint } from "@wso2is/react-components"; import React, { FunctionComponent, PropsWithChildren, ReactElement } from "react"; +import ApplicationCertificateAdapter from "./custom-fields/application-certificate-adapter"; +import { ApplicationInterface } from "../../models"; import { DynamicFieldInterface, DynamicInputFieldTypes } from "../../models/dynamic-fields"; /** @@ -37,6 +40,14 @@ export interface ApplicationFormDynamicFieldPropsInterface extends IdentifiableC * Whether the form field is read only or not. */ readOnly?: boolean; + /** + * Data of the current application. + */ + application?: ApplicationInterface; + /** + * Callback to trigger when the application update occurs. + */ + onApplicationUpdate?: (id: string) => void; } /** @@ -47,7 +58,14 @@ export interface ApplicationFormDynamicFieldPropsInterface extends IdentifiableC export const ApplicationFormDynamicField: FunctionComponent> = (props: PropsWithChildren): ReactElement => { - const { ["data-componentid"]: componentId, field, form: _form, readOnly, ...rest } = props; + const { + field, + form: _form, + readOnly, + application, + onApplicationUpdate, + ["data-componentid"]: componentId, ...rest + } = props; const getDynamicFieldAdapter = (type: DynamicInputFieldTypes): ReactElement => { switch (type) { @@ -61,12 +79,18 @@ export const ApplicationFormDynamicField: FunctionComponent + { field?.helperText } + + ) : null + } /> ); case DynamicInputFieldTypes.TEXT: @@ -83,8 +107,15 @@ export const ApplicationFormDynamicField: FunctionComponent + { field?.helperText } + + ) : null + } /> ); case DynamicInputFieldTypes.TEXTAREA: @@ -101,10 +132,34 @@ export const ApplicationFormDynamicField: FunctionComponent + { field?.helperText } + + ) : null + } + /> + ); + case DynamicInputFieldTypes.APPLICATION_CERTIFICATE: + if (!application || !onApplicationUpdate) { + return null; + } + + return ( + ); default: @@ -121,8 +176,15 @@ export const ApplicationFormDynamicField: FunctionComponent + { field?.helperText } + + ) : null + } /> ); } diff --git a/features/admin.applications.v1/components/dynamic-forms/application-inbound-protocol-edit-form.tsx b/features/admin.applications.v1/components/dynamic-forms/application-inbound-protocol-edit-form.tsx new file mode 100644 index 00000000000..d553f3b55c2 --- /dev/null +++ b/features/admin.applications.v1/components/dynamic-forms/application-inbound-protocol-edit-form.tsx @@ -0,0 +1,429 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { AppState } from "@wso2is/admin.core.v1"; +import useUIConfig from "@wso2is/admin.core.v1/hooks/use-ui-configs"; +import { hasRequiredScopes } from "@wso2is/core/helpers"; +import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; +import { addAlert } from "@wso2is/core/store"; +import { FinalForm, FormApi, FormRenderProps, MutableState, Tools } from "@wso2is/form"; +import { + ContentLoader, + PrimaryButton +} from "@wso2is/react-components"; +import { AxiosError } from "axios"; +import cloneDeep from "lodash-es/cloneDeep"; +import get from "lodash-es/get"; +import has from "lodash-es/has"; +import set from "lodash-es/set"; +import unset from "lodash-es/unset"; +import React, { FunctionComponent, MouseEvent, ReactElement, useEffect, useMemo, useState } from "react"; +import { useTranslation } from "react-i18next"; +import { useDispatch, useSelector } from "react-redux"; +import { Dispatch } from "redux"; +import { Grid } from "semantic-ui-react"; +import { ApplicationFormDynamicField } from "./application-form-dynamic-field"; +import { updateAuthProtocolConfig } from "../../api"; +import useGetApplicationInboundConfigs from "../../api/use-get-application-inbound-configs"; +import useGetApplicationTemplate from "../../api/use-get-application-template"; +import { + ApplicationInterface, + SAML2ConfigurationInterface, + SAML2ServiceProviderInterface, + SupportedAuthProtocolTypes +} from "../../models"; +import { DynamicFieldInterface, DynamicFormInterface } from "../../models/dynamic-fields"; + +/** + * Prop types of the `ApplicationEditForm` component. + */ +export interface ApplicationEditFormPropsInterface extends IdentifiableComponentInterface { + /** + * The tab metadata to be used for the application edit form generation. + */ + formMetadata: DynamicFormInterface + /** + * Current editing application data. + */ + application: ApplicationInterface; + /** + * Is the application info request loading. + */ + isLoading?: boolean; + /** + * Callback to update the application details. + */ + onUpdate: (id: string) => void; + /** + * Make the form read only. + */ + readOnly?: boolean; + /** + * Exposing the function to trigger form submission. + */ + formSubmission?: (submissionFunction: (e: MouseEvent) => void) => void; + /** + * Flag to check whether the internal submit button should be hidden. + */ + hideSubmitBtn?: boolean; +} + +/** + * Dynamic application edit form component. + * + * @param Props - Props to be injected into the component. + */ +export const ApplicationEditForm: FunctionComponent = ( + props: ApplicationEditFormPropsInterface +): ReactElement => { + const { + formMetadata, + application, + isLoading, + onUpdate, + readOnly, + formSubmission, + hideSubmitBtn, + ["data-componentid"]: componentId + } = props; + + const { + data: templateData, + isLoading: isTemplateDataFetchRequestLoading, + error: templateDataFetchRequestError + } = useGetApplicationTemplate("salesforce"); + const { + data: SAML2Configurations, + error: SAML2ConfigurationFetchError, + isLoading: isLoadingSAML2Configuration + } = useGetApplicationInboundConfigs(application?.id, SupportedAuthProtocolTypes.SAML); + + const { t } = useTranslation(); + const dispatch: Dispatch = useDispatch(); + const { UIConfig } = useUIConfig(); + const allowedScopes: string = useSelector((state: AppState) => state?.auth?.allowedScopes); + const [ isSubmitting, setIsSubmitting ] = useState(false); + + /** + * Prepare the initial values before assigning them to the form fields. + * + * @param application - application data. + * @returns Moderated initial values. + */ + const moderateInitialValues = (samlConfig: SAML2ServiceProviderInterface): SAML2ServiceProviderInterface => { + const templateToRegex = (template: string): RegExp => { + // Escape special regex characters in the template + const escapedTemplate: string = template.replace(/[-\\^$*+?.,()|[\]{}]/g, "\\$&"); + + // Replace ${variable} with a named capturing group pattern + const regexString: string = escapedTemplate.replace(/\\\$\\\{([^}]+)\\\}/g, "(?<$1>.+)"); + + // Create and return the regular expression object + return new RegExp("^" + regexString + "$"); + }; + + formMetadata?.fields?.forEach((field: DynamicFieldInterface) => { + if (field?.meta?.dependentProperties + && Array.isArray(field?.meta?.dependentProperties) + && field?.meta?.dependentProperties?.length > 0 + ) { + for(const path of field.meta.dependentProperties) { + const dependentPropertyValue: string = get(samlConfig, path); + const templateValue: string = get( + templateData?.payload?.inboundProtocolConfiguration?.saml?.manualConfiguration, path); + + if (typeof dependentPropertyValue === "string" + && templateValue && typeof templateValue === "string") { + const regex: RegExp = templateToRegex(templateValue); + + const match: RegExpMatchArray = dependentPropertyValue.match(regex); + + if (match?.groups?.[field?.name]) { + if (samlConfig[field?.name]) { + if (samlConfig[field?.name] === match?.groups?.[field?.name]) { + continue; + } + } else { + samlConfig[field?.name] = match?.groups?.[field?.name]; + + continue; + } + + samlConfig[field?.name] = ""; + + break; + } + } + } + } + }); + + return samlConfig; + }; + + const initialValues: SAML2ServiceProviderInterface = useMemo( + () => { + if (!SAML2Configurations && !templateData) { + return null; + } + + return moderateInitialValues(cloneDeep(SAML2Configurations) as SAML2ServiceProviderInterface); + }, + [ SAML2Configurations, templateData ] + ); + + /** + * Handle errors that occur during the application template data fetch request. + */ + useEffect(() => { + if (!templateDataFetchRequestError) { + return; + } + + if (templateDataFetchRequestError?.response?.data?.description) { + dispatch(addAlert({ + description: templateDataFetchRequestError?.response?.data?.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.fetchTemplate.error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.fetchTemplate" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications." + + "fetchTemplate.genericError.message") + })); + }, [ templateDataFetchRequestError ]); + + /** + * Handle errors that occur during the application template meta data fetch request. + * TODO: Need to change the error message. + */ + useEffect(() => { + if (!SAML2ConfigurationFetchError) { + return; + } + + if (SAML2ConfigurationFetchError?.response?.data?.description) { + dispatch(addAlert({ + description: SAML2ConfigurationFetchError.response.data.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.fetchTemplateMetadata.error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.fetchTemplateMetadata" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications." + + "fetchTemplateMetadata.genericError.message") + })); + }, [ SAML2ConfigurationFetchError ]); + + /** + * Callback function triggered when clicking the form submit button. + * + * @param values - Submission values from the form fields. + */ + const onSubmit = (values: SAML2ServiceProviderInterface, form: FormApi): void => { + if (!form?.getState()?.dirty) { + return; + } + + setIsSubmitting(true); + const formValues: SAML2ServiceProviderInterface = cloneDeep(values); + + /** + * Make sure that cleared text fields are set to an empty string. + * Additionally, include the auto-submit properties in the form submission. + */ + formMetadata?.fields?.forEach((field: DynamicFieldInterface) => { + if (!has(formValues, field?.name)) { + const initialValue: any = get(initialValues, field?.name); + + if (initialValue && typeof initialValue === "string") { + set(formValues, field?.name, ""); + } + } + + if (field?.meta?.dependentProperties + && Array.isArray(field?.meta?.dependentProperties) + && field?.meta?.dependentProperties?.length > 0) { + const fieldValue: string = get(formValues, field?.name); + + if (typeof fieldValue === "string") { + field.meta.dependentProperties.forEach( + (property: string) => { + if (!get(formValues, property).includes(`\${${ field?.name }}`)) { + set(formValues, property, get( + templateData?.payload?.inboundProtocolConfiguration?.saml?.manualConfiguration, + property)); + } + const propertyValue: string = get(formValues, property); + + if (propertyValue && typeof propertyValue === "string") { + set(formValues, property, propertyValue.replace(`\${${field?.name}}`, fieldValue)); + } + } + ); + } + } + + if (field?.disable) { + unset(formValues, field?.name); + } + }); + + updateAuthProtocolConfig( + application?.id, + { + manualConfiguration: formValues + }, + SupportedAuthProtocolTypes.SAML + ).then(() => { + dispatch(addAlert({ + description: t("applications:notifications.updateInboundProtocolConfig" + + ".success.description"), + level: AlertLevels.SUCCESS, + message: t("applications:notifications.updateInboundProtocolConfig" + + ".success.message") + })); + + onUpdate(application?.id); + }).catch((error: AxiosError) => { + if (error?.response?.data?.description) { + dispatch(addAlert({ + description: error.response.data.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.updateInboundProtocolConfig" + + ".error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.updateInboundProtocolConfig" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications.updateInboundProtocolConfig" + + ".genericError.message") + })); + }).finally(() => setIsSubmitting(false)); + }; + + return isLoading || isLoadingSAML2Configuration || isTemplateDataFetchRequestLoading + ? + : ( + , + Partial + >, + { changeValue }: Tools< + Partial, + Partial + > + ) => { + changeValue(state, fieldName, () => fieldVal); + } + } } + render={ ({ form, handleSubmit }: FormRenderProps) => { + formSubmission(handleSubmit); + + return ( +
+ + { formMetadata?.fields?.map( + (field: DynamicFieldInterface) => { + if (field?.hidden) { + return null; + } + + return ( + + + + + + ); + }) + } + { + !hideSubmitBtn && ( + + + + { t("common:update") } + + + + ) + } + +
+ ); + } } + /> + ); +}; + +/** + * Default props for the application edit form component. + */ +ApplicationEditForm.defaultProps = { + "data-componentid": "application-edit-form" +}; diff --git a/features/admin.applications.v1/components/dynamic-forms/application-main-edit-form.tsx b/features/admin.applications.v1/components/dynamic-forms/application-main-edit-form.tsx new file mode 100644 index 00000000000..466328c1166 --- /dev/null +++ b/features/admin.applications.v1/components/dynamic-forms/application-main-edit-form.tsx @@ -0,0 +1,311 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { AppState } from "@wso2is/admin.core.v1"; +import useUIConfig from "@wso2is/admin.core.v1/hooks/use-ui-configs"; +import { hasRequiredScopes } from "@wso2is/core/helpers"; +import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; +import { addAlert } from "@wso2is/core/store"; +import { FinalForm, FormApi, FormRenderProps, MutableState, Tools } from "@wso2is/form"; +import { + ContentLoader, + PrimaryButton +} from "@wso2is/react-components"; +import { AxiosError } from "axios"; +import cloneDeep from "lodash-es/cloneDeep"; +import get from "lodash-es/get"; +import pick from "lodash-es/pick"; +import set from "lodash-es/set"; +import unset from "lodash-es/unset"; +import React, { FunctionComponent, MouseEvent, ReactElement, useState } from "react"; +import { useTranslation } from "react-i18next"; +import { useDispatch, useSelector } from "react-redux"; +import { Dispatch } from "redux"; +import { Grid } from "semantic-ui-react"; +import { ApplicationFormDynamicField } from "./application-form-dynamic-field"; +import { updateApplicationDetails } from "../../api"; +import useDynamicFieldValidations from "../../hooks/use-dynamic-field-validation"; +import { + ApplicationInterface +} from "../../models"; +import { DynamicFieldInterface, DynamicFormInterface } from "../../models/dynamic-fields"; + +/** + * Prop types of the `ApplicationEditForm` component. + */ +export interface ApplicationEditFormPropsInterface extends IdentifiableComponentInterface { + /** + * The tab metadata to be used for the application edit form generation. + */ + formMetadata: DynamicFormInterface + /** + * Current editing application data. + */ + application: ApplicationInterface; + /** + * Is the application info request loading. + */ + isLoading?: boolean; + /** + * Callback to update the application details. + */ + onUpdate: (id: string) => void; + /** + * Make the form read only. + */ + readOnly?: boolean; + /** + * Exposing the function to trigger form submission. + */ + formSubmission?: (submissionFunction: (e: MouseEvent) => void) => void; + /** + * Flag to check whether the internal submit button should be hidden. + */ + hideSubmitBtn?: boolean; +} + +/** + * Dynamic application edit form component. + * + * @param Props - Props to be injected into the component. + */ +export const ApplicationEditForm: FunctionComponent = ( + props: ApplicationEditFormPropsInterface +): ReactElement => { + const { + formMetadata, + application, + isLoading, + onUpdate, + readOnly, + formSubmission, + hideSubmitBtn, + ["data-componentid"]: componentId + } = props; + + const { validate } = useDynamicFieldValidations(); + + const { t } = useTranslation(); + const dispatch: Dispatch = useDispatch(); + const { UIConfig } = useUIConfig(); + const allowedScopes: string = useSelector((state: AppState) => state?.auth?.allowedScopes); + const [ isSubmitting, setIsSubmitting ] = useState(false); + + /** + * Callback function triggered when clicking the form submit button. + * + * @param values - Submission values from the form fields. + */ + const onSubmit = (values: ApplicationInterface, form: FormApi): void => { + if (!form?.getState()?.dirty) { + return; + } + + setIsSubmitting(true); + const formValues: ApplicationInterface = cloneDeep(values); + + formMetadata?.fields?.forEach((field: DynamicFieldInterface) => { + if (!form?.getFieldState(field?.name)?.dirty) { + unset(formValues, field?.name); + } + }); + + /** + * Make sure that cleared text fields are set to an empty string. + * Additionally, include the auto-submit properties in the form submission. + */ + formMetadata?.fields?.forEach((field: DynamicFieldInterface) => { + // TODO: Need to modify this. Conflict with above logic. + // if (!has(formValues, field?.name)) { + // const initialValue: any = get(application, field?.name); + // if (initialValue && typeof initialValue === "string") { + // set(formValues, field?.name, ""); + // } + // } + + if (field?.meta?.dependentProperties + && Array.isArray(field?.meta?.dependentProperties) + && field?.meta?.dependentProperties?.length > 0) { + const fieldValue: string = get(formValues, field?.name); + + if (typeof fieldValue === "string") { + field.meta.dependentProperties.forEach( + (property: string) => { + const propertyValue: string = get(formValues, property); + + if (propertyValue && typeof propertyValue === "string") { + set(formValues, property, propertyValue.replace(`\${${field?.name}}`, fieldValue)); + } + } + ); + } + } + + if (field?.disable) { + unset(formValues, field?.name); + } + }); + + updateApplicationDetails(formValues) + .then(() => { + dispatch(addAlert({ + description: t("applications:notifications.updateApplication.success" + + ".description"), + level: AlertLevels.SUCCESS, + message: t("applications:notifications.updateApplication.success.message") + })); + + onUpdate(application?.id); + }) + .catch((error: AxiosError) => { + if (error?.response?.data?.description) { + dispatch(addAlert({ + description: error.response.data.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.updateApplication.error" + + ".message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.updateApplication" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications.updateApplication.genericError" + + ".message") + })); + }) + .finally(() => setIsSubmitting(false)); + }; + + /** + * Prepare the initial values before assigning them to the form fields. + * + * @param application - application data. + * @returns Moderated initial values. + */ + const moderateInitialValues = (application: ApplicationInterface): Partial => { + if (!formMetadata?.submitDefinedFieldsOnly) { + return application; + } + + const paths: string[] = formMetadata?.fields?.map((field: DynamicFieldInterface) => field?.name); + + // The ID needs to be submitted to perform the update operation. + paths.push("id"); + + return pick(application, paths); + }; + + return isLoading + ? + : ( + , + Partial + >, + { changeValue }: Tools< + Partial, + Partial + > + ) => { + changeValue(state, fieldName, () => fieldVal); + } + } } + validate={ + (formValues: ApplicationInterface) => + validate(formValues, formMetadata?.fields) + } + render={ ({ form, handleSubmit }: FormRenderProps) => { + formSubmission(handleSubmit); + + return ( +
+ + { formMetadata?.fields?.map( + (field: DynamicFieldInterface) => { + return ( + + + + + + ); + }) + } + { + !hideSubmitBtn && ( + + + + { t("common:update") } + + + + ) + } + +
+ ); + } } + /> + ); +}; + +/** + * Default props for the application edit form component. + */ +ApplicationEditForm.defaultProps = { + "data-componentid": "application-edit-form" +}; diff --git a/features/admin.applications.v1/components/dynamic-forms/application-sync-wizard.scss b/features/admin.applications.v1/components/dynamic-forms/application-sync-wizard.scss new file mode 100644 index 00000000000..7835834666f --- /dev/null +++ b/features/admin.applications.v1/components/dynamic-forms/application-sync-wizard.scss @@ -0,0 +1,25 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + .application-sync-wizard { + .application-sync-wizard-dynamic-fields { + &:not(:first-child) { + padding-top: 0; + } + } +} diff --git a/features/admin.applications.v1/components/dynamic-forms/application-sync-wizard.tsx b/features/admin.applications.v1/components/dynamic-forms/application-sync-wizard.tsx new file mode 100644 index 00000000000..46628b732a4 --- /dev/null +++ b/features/admin.applications.v1/components/dynamic-forms/application-sync-wizard.tsx @@ -0,0 +1,594 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + +import { ModalWithSidePanel } from "@wso2is/admin.core.v1/components/modals/modal-with-side-panel"; +import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; +import { addAlert } from "@wso2is/core/store"; +import { FinalForm, FormRenderProps, MutableState, Tools } from "@wso2is/form"; +import { + Heading, + LinkButton, + PrimaryButton +} from "@wso2is/react-components"; +import Ajv, { ErrorObject, ValidateFunction } from "ajv"; +import { AxiosError } from "axios"; +import cloneDeep from "lodash-es/cloneDeep"; +import get from "lodash-es/get"; +import merge from "lodash-es/merge"; +import omit from "lodash-es/omit"; +import set from "lodash-es/set"; +import unset from "lodash-es/unset"; +import React, { FunctionComponent, MouseEvent, ReactElement, useEffect, useMemo, useState } from "react"; +import { useTranslation } from "react-i18next"; +import { useDispatch } from "react-redux"; +import { Dispatch } from "redux"; +import { Grid, ModalProps } from "semantic-ui-react"; +import { ApplicationFormDynamicField } from "./application-form-dynamic-field"; +import { updateApplicationDetails, updateAuthProtocolConfig } from "../../api"; +import { useGetApplication } from "../../api/use-get-application"; +import useGetApplicationInboundConfigs from "../../api/use-get-application-inbound-configs"; +import useGetApplicationTemplate from "../../api/use-get-application-template"; +import useGetApplicationTemplateMetadata from "../../api/use-get-application-template-metadata"; +import useDynamicFieldValidations from "../../hooks/use-dynamic-field-validation"; +import { + ApplicationInterface, + MainApplicationInterface, + SAML2ConfigurationInterface, + SAML2ServiceProviderInterface, + SupportedAuthProtocolTypes +} from "../../models"; +import { DynamicFieldInterface } from "../../models/dynamic-fields"; +import buildCallBackUrlsWithRegExp from "../../utils/build-callback-urls-with-regexp"; +import "./application-sync-wizard.scss"; + +/** + * Prop types of the `ApplicationSyncWizard` component. + */ +export interface ApplicationSyncWizardPropsInterface extends ModalProps, IdentifiableComponentInterface { + /** + * Application id. + */ + applicationId: string; + /** + * Application template id. + */ + applicationTemplateId: string; + /** + * Callback triggered when changing the application outdate status. + */ + onApplicationOutdateStatusChange: (isApplicationOutdated: boolean) => void; + /** + * Flag to determine whether the sync wizard should be opened. + */ + showWizard: boolean; + /** + * Callback triggered when closing the application creation wizard. + */ + onClose: () => void; +} + +/** + * Dynamic application sync wizard component. + * + * @param Props - Props to be injected into the component. + */ +export const ApplicationSyncWizard: FunctionComponent = ( + props: ApplicationSyncWizardPropsInterface +): ReactElement => { + const { + applicationId, + applicationTemplateId, + onApplicationOutdateStatusChange, + showWizard, + onClose, + ["data-componentid"]: componentId, + ...rest + } = props; + + const { validate } = useDynamicFieldValidations(); + + const { t } = useTranslation(); + + const dispatch: Dispatch = useDispatch(); + + const { + data: templateData, + error: templateDataFetchRequestError + } = useGetApplicationTemplate(applicationTemplateId, !!applicationTemplateId); + const { + data: templateMetadata, + error: templateMetadataFetchRequestError + } = useGetApplicationTemplateMetadata(applicationTemplateId, !!applicationTemplateId); + const { + data: application, + mutate: mutateApplicationGetRequest, + error: applicationGetRequestError + } = useGetApplication(applicationId, !!applicationId); + const { + data: SAML2Configurations, + mutate: mutateSAML2ConfigData, + error: SAML2ConfigurationFetchError + } = useGetApplicationInboundConfigs(applicationId, SupportedAuthProtocolTypes.SAML, !!applicationId); + + const [ isSyncing, setIsSyncing ] = useState(false); + + /** + * Handle errors that occur during the application template data fetch request. + */ + useEffect(() => { + if (!templateDataFetchRequestError) { + return; + } + + if (templateDataFetchRequestError?.response?.data?.description) { + dispatch(addAlert({ + description: templateDataFetchRequestError?.response?.data?.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.fetchTemplate.error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.fetchTemplate" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications." + + "fetchTemplate.genericError.message") + })); + }, [ templateDataFetchRequestError ]); + + /** + * Handle errors that occur during the application template meta data fetch request. + */ + useEffect(() => { + if (!templateMetadataFetchRequestError) { + return; + } + + if (templateMetadataFetchRequestError?.response?.data?.description) { + dispatch(addAlert({ + description: templateMetadataFetchRequestError?.response?.data?.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.fetchTemplateMetadata.error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.fetchTemplateMetadata" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications." + + "fetchTemplateMetadata.genericError.message") + })); + }, [ templateMetadataFetchRequestError ]); + + /** + * Handles the application get request error. + */ + useEffect(() => { + if (!applicationGetRequestError) { + return; + } + + if (applicationGetRequestError.response?.data?.description) { + dispatch(addAlert({ + description: applicationGetRequestError.response.data.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.fetchApplication.error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.fetchApplication" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications.fetchApplication.genericError." + + "message") + })); + }, [ applicationGetRequestError ]); + + /** + * Handle errors that occur during the application inbound protocol data fetch request. + */ + useEffect(() => { + if (!SAML2ConfigurationFetchError) { + return; + } + + if (SAML2ConfigurationFetchError?.response?.data?.description) { + dispatch(addAlert({ + description: SAML2ConfigurationFetchError.response.data.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.getInboundProtocolConfig.error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.getInboundProtocolConfig" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications.getInboundProtocolConfig" + + ".genericError.message") + })); + }, [ SAML2ConfigurationFetchError ]); + + const validateSchema: ValidateFunction = useMemo(() => { + if (!templateData?.schema) { + return null; + } + + return new Ajv().compile(templateData?.schema); + }, [ templateData ]); + + const initialValues: MainApplicationInterface = useMemo(() => { + if (!application || !SAML2Configurations) { + return null; + } + + const applicationData: MainApplicationInterface = cloneDeep(application); + + applicationData.inboundProtocolConfiguration = { + saml: { + manualConfiguration: cloneDeep(SAML2Configurations) as SAML2ServiceProviderInterface + } + }; + + return applicationData; + }, [ application, SAML2Configurations ]); + + const applicationOutdateStatus: boolean = useMemo(() => { + let status: boolean = true; + + if (initialValues && validateSchema) { + status = validateSchema(initialValues); + } + + onApplicationOutdateStatusChange(!status); + + return !status; + }, [ initialValues, validateSchema ]); + + const handelSyncResult = (isError: boolean, error?: AxiosError) => { + if (!isError) { + dispatch(addAlert({ + description: t("applications:notifications.syncApplication.success" + + ".description"), + level: AlertLevels.SUCCESS, + message: t("applications:notifications.syncApplication.success.message") + })); + + return; + } + + if (error?.response?.data?.description) { + dispatch(addAlert({ + description: error.response.data.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.syncApplication.error" + + ".message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.syncApplication" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications.syncApplication.genericError" + + ".message") + })); + }; + + const syncOutdatedApplication = (data: Partial) => { + const updateMainApplicationData = ( + data: Partial + ): Promise => { + if (Object.keys(data).length === 0) { + return Promise.resolve(); + } + + return updateApplicationDetails(data); + }; + + if (!data) { + return; + } + + setIsSyncing(true); + + // Moderate Values to match API restrictions. + if (data?.inboundProtocolConfiguration?.oidc?.callbackURLs) { + data.inboundProtocolConfiguration.oidc.callbackURLs = buildCallBackUrlsWithRegExp( + data.inboundProtocolConfiguration.oidc.callbackURLs + ); + } + + const applicationData: Partial = omit(data, [ "inboundProtocolConfiguration" ]); + const applicationInboundProtocolData: SAML2ServiceProviderInterface = merge( + initialValues?.inboundProtocolConfiguration?.saml?.manualConfiguration, + data?.inboundProtocolConfiguration?.saml?.manualConfiguration + ); + + updateMainApplicationData(applicationData) + .then((response: ApplicationInterface) => { + const shouldUpdateInboundProtocol: boolean = + applicationInboundProtocolData && Object.keys(applicationInboundProtocolData).length > 0; + + if (response) { + mutateApplicationGetRequest(); + + if (!shouldUpdateInboundProtocol) { + handelSyncResult(false); + } + } + + if (shouldUpdateInboundProtocol) { + updateAuthProtocolConfig( + applicationId, + { + manualConfiguration: applicationInboundProtocolData + }, + SupportedAuthProtocolTypes.SAML + ).then(() => { + handelSyncResult(false); + mutateSAML2ConfigData(); + }).catch((error: AxiosError) => { + handelSyncResult(true, error); + }); + } + }) + .catch((error: AxiosError) => { + handelSyncResult(true, error); + }) + .finally(() => { + setIsSyncing(false); + onClose(); + }); + }; + + const formData: { + fields: DynamicFieldInterface[], + formInitialData: Partial + } = useMemo(() => { + if (!showWizard + || !applicationOutdateStatus + || !validateSchema?.errors + || !Array.isArray(validateSchema?.errors) + || validateSchema?.errors?.length == 0 + || !templateData?.payload) { + return { + fields: [], + formInitialData: null + }; + } + + const formInitialData: Partial = {}; + const fields: Set = new Set([]); + + validateSchema?.errors?.forEach((error: ErrorObject) => { + let lodashPath: string = ""; + const instancePath: string = error?.instancePath?.substring(1); + const pathKeys: string[] = instancePath?.split("/"); + const value: unknown = pathKeys?.reduce( + (obj: unknown, key: string) => { + let modifiedKey: string = key; + + if (!isNaN(Number(key))) { + modifiedKey = `[${key}]`; + } + + if (lodashPath === "") { + lodashPath += modifiedKey; + } else { + lodashPath += `.${modifiedKey}`; + } + + return obj[key]; + }, + templateData?.payload + ); + + if (value) { + if (typeof value === "string") { + const placeholderRegex: RegExp = /\${[^}]+}/g; + + const matches: string[] = value.match(placeholderRegex) || []; + + matches.forEach((match: string) => fields.add(match.substring(2, match.length - 1))); + } + + set(formInitialData, lodashPath, value); + } + }); + + if (fields?.size == 0) { + syncOutdatedApplication(formInitialData); + + return { + fields: [], + formInitialData: null + }; + } + + return { + fields: templateMetadata?.create?.form?.fields?.filter( + (field: DynamicFieldInterface) => fields.has(field?.name)), + formInitialData + }; + }, [ showWizard ]); + + /** + * Callback function triggered when clicking the form sync button. + * + * @param values - Submission values from the form fields. + */ + const onSubmit = (values: Partial): void => { + const formValues: Partial = cloneDeep(values); + + /** + * Make sure that cleared text fields are set to an empty string. + * Additionally, include the auto-submit properties in the form submission. + */ + formData?.fields?.forEach((field: DynamicFieldInterface) => { + if (field?.meta?.dependentProperties + && Array.isArray(field?.meta?.dependentProperties) + && field?.meta?.dependentProperties?.length > 0) { + const fieldValue: string = get(formValues, field?.name); + + if (typeof fieldValue === "string") { + field.meta.dependentProperties.forEach( + (property: string) => { + const propertyValue: string = get(formValues, property); + + if (propertyValue && typeof propertyValue === "string") { + set(formValues, property, propertyValue.replace(`\${${field?.name}}`, fieldValue)); + } + } + ); + } + } + + if (field?.disable) { + unset(formValues, field?.name); + } + }); + + syncOutdatedApplication(formValues); + }; + + let formSubmit: (e: MouseEvent) => void; + + return ( + 0 && !!formData?.formInitialData } + className="wizard application-sync-wizard" + dimmer="blurring" + closeOnDimmerClick={ false } + closeOnEscape + onClose={ onClose } + data-componentid={ componentId } + { ...rest } + > + + + { templateData?.name } + { templateData?.description } + + + { + , + Partial + >, + { changeValue }: Tools< + Partial, + Partial + > + ) => { + changeValue(state, fieldName, () => fieldVal); + } + } } + validate={ + (formValues: MainApplicationInterface) => + validate(formValues, formData?.fields) + } + render={ ({ form, handleSubmit }: FormRenderProps) => { + formSubmit = handleSubmit; + + return ( +
+ + { formData?.fields?.map( + (field: DynamicFieldInterface) => { + return ( + + + + + + ); + }) + } + +
+ ); + } } + /> + } +
+ + + + + + { t("common:cancel") } + + + + ) => formSubmit(e) } + floated="right" + data-componentid={ `${componentId}-sync-button` } + loading={ isSyncing } + disabled={ isSyncing } + > + { t("common:sync") } + + + + + +
+
+ ); +}; + +/** + * Default props for the application sync wizard. + */ +ApplicationSyncWizard.defaultProps = { + "data-componentid": "application-sync-wizard" +}; diff --git a/features/admin.applications.v1/components/dynamic-forms/custom-fields/application-certificate-adapter.tsx b/features/admin.applications.v1/components/dynamic-forms/custom-fields/application-certificate-adapter.tsx new file mode 100644 index 00000000000..9ef25f97e03 --- /dev/null +++ b/features/admin.applications.v1/components/dynamic-forms/custom-fields/application-certificate-adapter.tsx @@ -0,0 +1,151 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Code } from "@wso2is/react-components"; +import React, { Fragment, FunctionComponent, ReactElement } from "react"; +import { FieldRenderProps, useFormState } from "react-final-form"; +import { Trans, useTranslation } from "react-i18next"; +import { + ApplicationInterface, + CertificateInterface, + CertificateTypeInterface, + SupportedAuthProtocolTypes +} from "../../../models"; +import { ApplicationCertificateWrapper } from "../../settings/certificate"; + +/** + * Props for the ApplicationCertificateAdapter component. + */ +export interface ApplicationCertificateAdapterPropsInterface extends + FieldRenderProps { + /** + * The type of protocol to which the certificate belongs. + */ + protocol: SupportedAuthProtocolTypes; + /** + * Data of the current application. + */ + application: ApplicationInterface; + /** + * Callback to trigger when the application update occurs. + */ + onApplicationUpdate: (id: string) => void; + /** + * Determine whether to hide the JWKS certificate option. + */ + hideJWKS: boolean; + /** + * Indicates whether the field is required. + */ + required: boolean; + /** + * Indicates whether the field is a read-only field. + */ + readonly: boolean; +} + +/** + * Application certificate adapter for use with React Final Form. + * This adapter wraps the ApplicationCertificateWrapper component and integrates it with React Final Form. + * + * @param props - The component props. + * @returns The ApplicationCertificateWrapper component. + */ +const ApplicationCertificateAdapter: FunctionComponent = ( + props: ApplicationCertificateAdapterPropsInterface +): ReactElement => { + const { + input, + protocol, + application, + onApplicationUpdate, + hideJWKS, + required, + readOnly + } = props; + + const { t } = useTranslation(); + const { values, submitting } = useFormState(); + + const checkDeleteAllowed = () => { + if (protocol === SupportedAuthProtocolTypes.SAML) { + return !values?.requestValidation?.enableSignatureValidation && + !values?.singleSignOnProfile?.assertion?.encryption?.enabled; + } else if (protocol === SupportedAuthProtocolTypes.OIDC) { + return !(values.idToken?.encryption?.enabled); + } + + return true; + }; + + const getDeleteIsNotAllowedTooltip = () => { + if (protocol === SupportedAuthProtocolTypes.SAML) { + return t("applications:forms." + + "inboundSAML.sections.certificates.disabledPopup"); + } else if (protocol === SupportedAuthProtocolTypes.OIDC) { + return ( + + + This certificate is used to encrypt the id_token. + First, you need to disable id_token encryption to proceed. + + + ); + } + + return null; + }; + + const canDiscardCertificate = () => { + if (protocol === SupportedAuthProtocolTypes.SAML) { + return !values?.requestValidation?.enableSignatureValidation; + } + + return false; + }; + + return ( + <> + input?.onChange({ ...input?.value, value }) } + updateCertType={ (certType: CertificateTypeInterface) => + input?.onChange({ ...input?.value, type: certType }) } + canDiscardCertificate = { (): boolean => canDiscardCertificate() } + certificate={ input?.value } + readOnly={ readOnly } + hidden={ false } + isRequired={ required } + hideJWKS={ hideJWKS } + triggerSubmit={ submitting } + hideDivider={ true } + /> + + ); +}; + +export default ApplicationCertificateAdapter; diff --git a/features/admin.applications.v1/components/edit-application.tsx b/features/admin.applications.v1/components/edit-application.tsx index 2b32da382af..64824d7ddf0 100644 --- a/features/admin.applications.v1/components/edit-application.tsx +++ b/features/admin.applications.v1/components/edit-application.tsx @@ -52,7 +52,7 @@ import { useDispatch, useSelector } from "react-redux"; import { Dispatch } from "redux"; import { CheckboxProps, Divider, Form, Grid, Menu, TabProps } from "semantic-ui-react"; import { ApplicationEditForm } from "./dynamic-forms/application-edit-form"; -import { MarkdownGuide } from "./help-panel/markdown-guide"; +import { MarkdownGuide } from "./help-panel/markdown/markdown-guide"; import { InboundProtocolsMeta } from "./meta"; import { AccessConfiguration, @@ -714,6 +714,7 @@ export const EditApplication: FunctionComponent = const MarkdownGuideTabPane = (guideContent: string): ReactElement => ( @@ -1033,7 +1034,7 @@ export const EditApplication: FunctionComponent = break; case ApplicationEditTabContentTypes.FORM: - if (tab?.form?.fields && Array.isArray(tab?.form?.fields) && tab?.form?.fields?.length > 0) { + if (tab?.forms && Array.isArray(tab?.forms) && tab?.forms.length > 0) { filteredTabs.push({ componentId: tab?.id, "data-tabid": tab?.id, diff --git a/features/admin.applications.v1/components/help-panel/markdown-guide.tsx b/features/admin.applications.v1/components/help-panel/markdown-guide.tsx deleted file mode 100644 index 0cfc47bdf19..00000000000 --- a/features/admin.applications.v1/components/help-panel/markdown-guide.tsx +++ /dev/null @@ -1,75 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import { IdentifiableComponentInterface } from "@wso2is/core/models"; -import { - ContentLoader, - EmphasizedSegment, - Markdown -} from "@wso2is/react-components"; -import React, { FunctionComponent, ReactElement } from "react"; - -/** - * Prop types of the `MarkdownGuide` component. - */ -export interface MarkdownGuidePropsInterface extends IdentifiableComponentInterface { - /** - * Content to be displayed in Markdown format. - */ - content: string; - /** - * Is the application info request loading. - */ - isLoading?: boolean; -} - -/** - * Markdown guide generation component. - * - * @param Props - Props to be injected into the component. - */ -export const MarkdownGuide: FunctionComponent = ( - props: MarkdownGuidePropsInterface -): ReactElement => { - const { - content, - isLoading, - ["data-componentid"]: componentId - } = props; - - return ( - - { - isLoading - ? - : ( - - ) - } - - ); -}; - -/** - * Default props for the `MarkdownGuide` guide. - */ -MarkdownGuide.defaultProps = { - "data-componentid": "markdown-guide" -}; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/blockquote.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/blockquote.tsx new file mode 100644 index 00000000000..c4992cf1c3d --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/blockquote.tsx @@ -0,0 +1,120 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import Alert, { AlertProps } from "@oxygen-ui/react/Alert"; +import AlertTitle from "@oxygen-ui/react/AlertTitle"; +import { MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import React, { FunctionComponent, ReactElement } from "react"; +import { childRenderer } from "./utils"; + +/** + * Custom blockquote component types. + */ +enum CustomBlockquoteTypes { + WRAPPER = "wrapper" +} + +/** + * Props interface for the `Blockquote` component. + */ +interface BlockquoteProps extends MarkdownCustomComponentPropsInterface<"blockquote"> { + /** + * Custom attributes supplied by the 'rehype-attr' plugin. + */ + "data-config"?: { + /** + * Type of the alert message. + */ + type?: AlertProps["severity"] | CustomBlockquoteTypes; + /** + * Title of the alert message. + */ + title?: string; + /** + * Variant of the alert box. + * filled or outlined + */ + variant?: AlertProps["variant"]; + /** + * Boolean flag to determine if the icon should be displayed. + */ + icon?: boolean; + /** + * If the component type is wrapper how much indentation is needed. + * 1 Indent = 5px + */ + indent?: number; + }; +} + +/** + * Markdown custom component for the blockquote element. + * + * @param Props - Props to be injected into the component. + */ +const Blockquote: FunctionComponent = (props: BlockquoteProps): ReactElement => { + const { + children, + "data-config": dataConfig, + "data-componentid": componentId + } = props; + + if (!children || !Array.isArray(children)) { + return null; + } + + return ( + dataConfig?.type === CustomBlockquoteTypes.WRAPPER || !dataConfig?.type + ? ( +
+ { childRenderer(props) } +
+ ) + : ( + + { + dataConfig?.title ? ( + { dataConfig?.title } + ) : null + } + { childRenderer(props) } + + ) + ); +}; + +/** + * Default props for the `Blockquote` component. + */ +Blockquote.defaultProps = { + "data-componentid": "custom-markdown-blockquote" +}; + +export { Blockquote as blockquote }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/code.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/code.tsx new file mode 100644 index 00000000000..10705e0482c --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/code.tsx @@ -0,0 +1,51 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Code, MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import React, { FunctionComponent, ReactElement } from "react"; + +/** + * Markdown custom component for the code element. + * + * @param Props - Props to be injected into the component. + */ +const MarkdownCode: FunctionComponent< + MarkdownCustomComponentPropsInterface<"code"> +> = (props: MarkdownCustomComponentPropsInterface<"code">): ReactElement => { + const { + children, + "data-componentid": componentId + } = props; + + if (typeof children !== "string") { + return null; + } + + return ( + { children } + ); +}; + +/** + * Default props for the `MarkdownCode` component. + */ +MarkdownCode.defaultProps = { + "data-componentid": "custom-markdown-code" +}; + +export { MarkdownCode as code }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/divider.scss b/features/admin.applications.v1/components/help-panel/markdown/components/divider.scss new file mode 100644 index 00000000000..e7769d9627c --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/divider.scss @@ -0,0 +1,22 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + .markdown-divider { + padding-top: 0.25rem; + padding-bottom: 0.25rem; +} diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/divider.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/divider.tsx new file mode 100644 index 00000000000..9fa5f58347e --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/divider.tsx @@ -0,0 +1,47 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import React, { FunctionComponent, ReactElement } from "react"; +import "./divider.scss"; + +/** + * Markdown custom component for the hr element. + * + * @param Props - Props to be injected into the component. + */ +const MarkdownDivider: FunctionComponent< + MarkdownCustomComponentPropsInterface<"hr"> +> = (props: MarkdownCustomComponentPropsInterface<"hr">): ReactElement => { + const { + "data-componentid": componentId + } = props; + + return ( +
+ ); +}; + +/** + * Default props for the `MarkdownDivider` component. + */ +MarkdownDivider.defaultProps = { + "data-componentid": "custom-markdown-divider" +}; + +export { MarkdownDivider as hr }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/heading.scss b/features/admin.applications.v1/components/help-panel/markdown/components/heading.scss new file mode 100644 index 00000000000..a5197cadc89 --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/heading.scss @@ -0,0 +1,56 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + .markdown-heading-container { + display: flex; + align-items: center; + + .markdown-heading-number { + background-color: #969696; + border-radius: 100%; + color: #fff; + margin: 0 15px 0 0; + display: flex; + align-items: center; + justify-content: center; + + &.markdown-heading1-number { + height: 40px; + width: 40px; + font-size: 20px; + } + + &.markdown-heading2-number { + height: 35px; + width: 35px; + font-size: 17.5px; + } + + &.markdown-heading3-number { + height: 30px; + width: 30px; + font-size: 15px; + } + + &.markdown-heading4-number { + height: 25px; + width: 25px; + font-size: 12.5px; + } + } +} diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/heading1.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/heading1.tsx new file mode 100644 index 00000000000..12deb2d16c6 --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/heading1.tsx @@ -0,0 +1,114 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import Typography from "@oxygen-ui/react/Typography"; +import { MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import classNames from "classnames"; +import React, { FunctionComponent, ReactElement } from "react"; +import { childRenderer } from "./utils"; +import "./heading.scss"; + +/** + * Props interface for the `Heading1` component. + */ +interface Heading1Props extends MarkdownCustomComponentPropsInterface<"h1"> { + /** + * Custom attributes supplied by the 'rehype-attr' plugin. + */ + "data-config"?: { + /** + * Flag to determine if the heading includes a number. + */ + numbered?: boolean; + /** + * Content of the number element. + */ + content?: string; + }; +} + +/** + * Markdown custom component for the h1 element. + * + * @param Props - Props to be injected into the component. + */ +const Heading1: FunctionComponent = (props: Heading1Props): ReactElement => { + const { + children, + "data-config": dataConfig, + "data-componentid": componentId + } = props; + + if (!children) { + return null; + } + + const resolveContent = (): ReactElement => { + if (dataConfig?.numbered) { + return ( + <> + + { + dataConfig?.content?.toString()?.length > 2 + ? dataConfig?.content?.toString()?.substring(0,2) + : dataConfig?.content + } + + + { + typeof children === "string" ? ( + children + ): ( + childRenderer(props) + ) + } + + + ); + } else { + return ( + <> + { + typeof children === "string" ? ( + children + ): ( + childRenderer(props) + ) + } + + ); + } + }; + + const classes: string = classNames({ "markdown-heading-container": dataConfig?.numbered }); + + return ( + + { resolveContent() } + + ); +}; + +/** + * Default props for the `Heading1` component. + */ +Heading1.defaultProps = { + "data-componentid": "custom-markdown-heading1" +}; + +export { Heading1 as h1 }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/heading2.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/heading2.tsx new file mode 100644 index 00000000000..ea2e520ee3d --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/heading2.tsx @@ -0,0 +1,114 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import Typography from "@oxygen-ui/react/Typography"; +import { MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import classNames from "classnames"; +import React, { FunctionComponent, ReactElement } from "react"; +import { childRenderer } from "./utils"; +import "./heading.scss"; + +/** + * Props interface for the `Heading2` component. + */ +interface Heading2Props extends MarkdownCustomComponentPropsInterface<"h2"> { + /** + * Custom attributes supplied by the 'rehype-attr' plugin. + */ + "data-config"?: { + /** + * Flag to determine if the heading includes a number. + */ + numbered?: boolean; + /** + * Content of the number element. + */ + content?: string; + }; +} + +/** + * Markdown custom component for the h2 element. + * + * @param Props - Props to be injected into the component. + */ +const Heading2: FunctionComponent = (props: Heading2Props): ReactElement => { + const { + children, + "data-config": dataConfig, + "data-componentid": componentId + } = props; + + if (!children) { + return null; + } + + const resolveContent = (): ReactElement => { + if (dataConfig?.numbered) { + return ( + <> + + { + dataConfig?.content?.toString()?.length > 2 + ? dataConfig?.content?.toString()?.substring(0,2) + : dataConfig?.content + } + + + { + typeof children === "string" ? ( + children + ): ( + childRenderer(props) + ) + } + + + ); + } else { + return ( + <> + { + typeof children === "string" ? ( + children + ): ( + childRenderer(props) + ) + } + + ); + } + }; + + const classes: string = classNames({ "markdown-heading-container": dataConfig?.numbered }); + + return ( + + { resolveContent() } + + ); +}; + +/** + * Default props for the `Heading2` component. + */ +Heading2.defaultProps = { + "data-componentid": "custom-markdown-heading2" +}; + +export { Heading2 as h2 }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/heading3.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/heading3.tsx new file mode 100644 index 00000000000..5565d832b33 --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/heading3.tsx @@ -0,0 +1,114 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import Typography from "@oxygen-ui/react/Typography"; +import { MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import classNames from "classnames"; +import React, { FunctionComponent, ReactElement } from "react"; +import { childRenderer } from "./utils"; +import "./heading.scss"; + +/** + * Props interface for the `Heading3` component. + */ +interface Heading3Props extends MarkdownCustomComponentPropsInterface<"h3"> { + /** + * Custom attributes supplied by the 'rehype-attr' plugin. + */ + "data-config"?: { + /** + * Flag to determine if the heading includes a number. + */ + numbered?: boolean; + /** + * Content of the number element. + */ + content?: string; + }; +} + +/** + * Markdown custom component for the h3 element. + * + * @param Props - Props to be injected into the component. + */ +const Heading3: FunctionComponent = (props: Heading3Props): ReactElement => { + const { + children, + "data-config": dataConfig, + "data-componentid": componentId + } = props; + + if (!children) { + return null; + } + + const resolveContent = (): ReactElement => { + if (dataConfig?.numbered) { + return ( + <> + + { + dataConfig?.content?.toString()?.length > 2 + ? dataConfig?.content?.toString()?.substring(0,2) + : dataConfig?.content + } + + + { + typeof children === "string" ? ( + children + ): ( + childRenderer(props) + ) + } + + + ); + } else { + return ( + <> + { + typeof children === "string" ? ( + children + ): ( + childRenderer(props) + ) + } + + ); + } + }; + + const classes: string = classNames({ "markdown-heading-container": dataConfig?.numbered }); + + return ( + + { resolveContent() } + + ); +}; + +/** + * Default props for the `Heading3` component. + */ +Heading3.defaultProps = { + "data-componentid": "custom-markdown-heading3" +}; + +export { Heading3 as h3 }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/heading4.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/heading4.tsx new file mode 100644 index 00000000000..d16849d025e --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/heading4.tsx @@ -0,0 +1,114 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import Typography from "@oxygen-ui/react/Typography"; +import { MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import classNames from "classnames"; +import React, { FunctionComponent, ReactElement } from "react"; +import { childRenderer } from "./utils"; +import "./heading.scss"; + +/** + * Props interface for the `Heading4` component. + */ +interface Heading4Props extends MarkdownCustomComponentPropsInterface<"h4"> { + /** + * Custom attributes supplied by the 'rehype-attr' plugin. + */ + "data-config"?: { + /** + * Flag to determine if the heading includes a number. + */ + numbered?: boolean; + /** + * Content of the number element. + */ + content?: string; + }; +} + +/** + * Markdown custom component for the h4 element. + * + * @param Props - Props to be injected into the component. + */ +const Heading4: FunctionComponent = (props: Heading4Props): ReactElement => { + const { + children, + "data-config": dataConfig, + "data-componentid": componentId + } = props; + + if (!children) { + return null; + } + + const resolveContent = (): ReactElement => { + if (dataConfig?.numbered) { + return ( + <> + + { + dataConfig?.content?.toString()?.length > 2 + ? dataConfig?.content?.toString()?.substring(0,2) + : dataConfig?.content + } + + + { + typeof children === "string" ? ( + children + ): ( + childRenderer(props) + ) + } + + + ); + } else { + return ( + <> + { + typeof children === "string" ? ( + children + ): ( + childRenderer(props) + ) + } + + ); + } + }; + + const classes: string = classNames({ "markdown-heading-container": dataConfig?.numbered }); + + return ( + + { resolveContent() } + + ); +}; + +/** + * Default props for the `Heading4` component. + */ +Heading4.defaultProps = { + "data-componentid": "custom-markdown-heading4" +}; + +export { Heading4 as h4 }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/heading5.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/heading5.tsx new file mode 100644 index 00000000000..9d0a43e904f --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/heading5.tsx @@ -0,0 +1,61 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import Typography from "@oxygen-ui/react/Typography"; +import { MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import React, { FunctionComponent, ReactElement } from "react"; +import { childRenderer } from "./utils"; + +/** + * Markdown custom component for the h5 element. + * + * @param Props - Props to be injected into the component. + */ +const Heading5: FunctionComponent< + MarkdownCustomComponentPropsInterface<"h5"> +> = (props: MarkdownCustomComponentPropsInterface<"h5">): ReactElement => { + const { + children, + "data-componentid": componentId + } = props; + + if (!children) { + return null; + } + + return ( + + { + typeof children === "string" ? ( + children + ): ( + childRenderer(props) + ) + } + + ); +}; + +/** + * Default props for the `Heading5` component. + */ +Heading5.defaultProps = { + "data-componentid": "custom-markdown-heading5" +}; + +export { Heading5 as h5 }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/heading6.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/heading6.tsx new file mode 100644 index 00000000000..bb8ca2657f7 --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/heading6.tsx @@ -0,0 +1,61 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import Typography from "@oxygen-ui/react/Typography"; +import { MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import React, { FunctionComponent, ReactElement } from "react"; +import { childRenderer } from "./utils"; + +/** + * Markdown custom component for the h6 element. + * + * @param Props - Props to be injected into the component. + */ +const Heading6: FunctionComponent< + MarkdownCustomComponentPropsInterface<"h6"> +> = (props: MarkdownCustomComponentPropsInterface<"h6">): ReactElement => { + const { + children, + "data-componentid": componentId + } = props; + + if (!children) { + return null; + } + + return ( + + { + typeof children === "string" ? ( + children + ): ( + childRenderer(props) + ) + } + + ); +}; + +/** + * Default props for the `Heading6` component. + */ +Heading6.defaultProps = { + "data-componentid": "custom-markdown-heading6" +}; + +export { Heading6 as h6 }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/image.scss b/features/admin.applications.v1/components/help-panel/markdown/components/image.scss new file mode 100644 index 00000000000..4f32fa1d7ce --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/image.scss @@ -0,0 +1,25 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + .markdown-image { + border: 1px solid rgba(34,36,38,.15) !important; + + &.full-width { + width: 100%; + } +} diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/image.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/image.tsx new file mode 100644 index 00000000000..03c6d62204b --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/image.tsx @@ -0,0 +1,78 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import Box from "@oxygen-ui/react/Box"; +import { MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import classNames from "classnames"; +import React, { FunctionComponent, ReactElement } from "react"; +import "./image.scss"; + +/** + * Props interface for the `MarkdownImage` component. + */ +interface MarkdownImageProps extends MarkdownCustomComponentPropsInterface<"img"> { + /** + * Custom attributes supplied by the 'rehype-attr' plugin. + */ + "data-config"?: { + /** + * Flag to determine whether the image should get the full width. + */ + fullWidth?: boolean; + }; +} + +/** + * Markdown custom component for the img element. + * + * @param Props - Props to be injected into the component. + */ +const MarkdownImage: FunctionComponent = (props: MarkdownImageProps): ReactElement => { + const { + src, + alt, + "data-config": dataConfig, + "data-componentid": componentId + } = props; + + const classes: string = classNames( + "markdown-image", + { + "full-width": dataConfig?.fullWidth + } + ); + + return ( + + ); +}; + +/** + * Default props for the `MarkdownImage` component. + */ +MarkdownImage.defaultProps = { + "data-componentid": "custom-markdown-image" +}; + +export { MarkdownImage as img }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/index.ts b/features/admin.applications.v1/components/help-panel/markdown/components/index.ts new file mode 100644 index 00000000000..8eaa7d3f5e0 --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/index.ts @@ -0,0 +1,36 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export * from "./markdown-link"; +export * from "./blockquote"; +export * from "./paragraph"; +export * from "./heading1"; +export * from "./heading2"; +export * from "./heading3"; +export * from "./heading4"; +export * from "./heading5"; +export * from "./heading6"; +export * from "./code"; +export * from "./italic"; +export * from "./divider"; +export * from "./unordered-list"; +export * from "./ordered-list"; +export * from "./list-item"; +export * from "./strong"; +export * from "./pre"; +export * from "./image"; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/italic.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/italic.tsx new file mode 100644 index 00000000000..89aa2dcb69c --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/italic.tsx @@ -0,0 +1,51 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import React, { FunctionComponent, ReactElement } from "react"; + +/** + * Markdown custom component for the em element. + * + * @param Props - Props to be injected into the component. + */ +const MarkdownEM: FunctionComponent< + MarkdownCustomComponentPropsInterface<"em"> +> = (props: MarkdownCustomComponentPropsInterface<"em">): ReactElement => { + const { + children, + "data-componentid": componentId + } = props; + + if (typeof children !== "string") { + return null; + } + + return ( + { children } + ); +}; + +/** + * Default props for the `MarkdownEM` component. + */ +MarkdownEM.defaultProps = { + "data-componentid": "custom-markdown-em" +}; + +export { MarkdownEM as em }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/list-item.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/list-item.tsx new file mode 100644 index 00000000000..1493d134a70 --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/list-item.tsx @@ -0,0 +1,54 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import React, { FunctionComponent, ReactElement } from "react"; +import { childRenderer } from "./utils"; + +/** + * Markdown custom component for the li element. + * + * @param Props - Props to be injected into the component. + */ +const ListItem: FunctionComponent< + MarkdownCustomComponentPropsInterface<"li"> +> = (props: MarkdownCustomComponentPropsInterface<"li">): ReactElement => { + const { + children, + "data-componentid": componentId + } = props; + + return ( +
  • + { + typeof children === "string" + ? children + : childRenderer(props) + } +
  • + ); +}; + +/** + * Default props for the `ListItem` component. + */ +ListItem.defaultProps = { + "data-componentid": "custom-markdown-li" +}; + +export { ListItem as li }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/markdown-link.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/markdown-link.tsx new file mode 100644 index 00000000000..e602dc2c46a --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/markdown-link.tsx @@ -0,0 +1,204 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { AlertLevels } from "@wso2is/core/models"; +import { addAlert } from "@wso2is/core/store"; +import { URLUtils } from "@wso2is/core/utils"; +import { + Link, + MarkdownCustomComponentPropsInterface +} from "@wso2is/react-components"; +import { saveAs } from "file-saver"; +import React, { FunctionComponent, ReactElement, useEffect, useMemo, useState } from "react"; +import { useTranslation } from "react-i18next"; +import { useDispatch } from "react-redux"; +import { Dispatch } from "redux"; +import { useGetBlobResource } from "../../../../api/use-get-blob-resource"; +import useGlobalMarkdown from "../use-global-markdown"; + +const DEFAULT_DOWNLOAD_FILE_NAME: string = "download"; + +/** + * Props interface for the `MarkdownLink` component. + */ +interface MarkdownLinkProps extends MarkdownCustomComponentPropsInterface<"a"> { + /** + * Custom attributes supplied by the 'rehype-attr' plugin. + */ + "data-config"?: { + /** + * Flag to determine whether the link is an external link. + */ + external?: boolean; + /** + * Flag to determine whether the link is a download link. + */ + download?: boolean; + /** + * If the link is a download link, specify the name for the downloaded file. + */ + fileName?: string; + /** + * Download the string content as a file. + * This will take precedence over href. + * Content should have a Base64 encoded string. + */ + content?: string; + /** + * The type that should be assigned to the above content file. + */ + type?: string; + }; +} + +/** + * Markdown custom component for the link element. + * + * @param Props - Props to be injected into the component. + */ +const MarkdownLink: FunctionComponent = (props: MarkdownLinkProps): ReactElement => { + const { + href, + title, + children, + "data-config": dataConfig, + "data-componentid": componentId + } = props; + + const dispatch: Dispatch = useDispatch(); + const { t } = useTranslation(); + + const { onHandleInternalUrl } = useGlobalMarkdown(); + + const [ downloadLink, setDownloadLink ] = useState(""); + + const { + data: blobData, + isLoading: blobFetchRequestIsLoading, + error: blobFetchRequestError + } = useGetBlobResource(downloadLink, !!downloadLink); + + /** + * Initiate the download when the blob resource becomes available. + */ + useEffect(() => { + if (blobData) { + if (dataConfig?.fileName) { + saveAs(blobData, dataConfig?.fileName); + } else { + saveAs(blobData, DEFAULT_DOWNLOAD_FILE_NAME); + } + + setDownloadLink(""); + } + }, [ blobData ]); + + /** + * Handles the blob resource fetch request error. + */ + useEffect(() => { + if (!blobFetchRequestError) { + return; + } + + if (blobFetchRequestError.response?.data?.description) { + dispatch(addAlert({ + description: blobFetchRequestError.response.data.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.fetchApplication.error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.fetchApplication" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications.fetchApplication.genericError." + + "message") + })); + }, [ blobFetchRequestError ]); + + /** + * Initiate the download process. + */ + const initDownload = (): void => { + if (dataConfig?.content && dataConfig?.type) { + const blob: Blob = new Blob([ atob(dataConfig?.content) ], { + type: dataConfig?.type + }); + + if (dataConfig?.fileName) { + saveAs(blob, dataConfig?.fileName); + } else { + saveAs(blob, DEFAULT_DOWNLOAD_FILE_NAME); + } + + return; + } + + if (blobFetchRequestIsLoading) { + return; + } + + setDownloadLink(href); + }; + + /** + * Verify if the provided URL is relative. + */ + const isInternalUrl: boolean = useMemo(() => { + if (href && (URLUtils.isHttpsOrHttpUrl(href) || href.startsWith("#"))) { + return false; + } + + return true; + }, [ href ]); + + if (typeof children !== "string") { + return null; + } + + return ( + onHandleInternalUrl(href) + : dataConfig?.download && initDownload + } + external={ !(dataConfig?.external === false) } + target={ (dataConfig?.external === false) ? "_self" : "_blank" } + data-componentid={ componentId } + title={ title } + icon={ dataConfig?.download ? "arrow alternate circle down outline" : undefined } + > + { children } + + ); +}; + +/** + * Default props for the `MarkdownLink` component. + */ +MarkdownLink.defaultProps = { + "data-componentid": "custom-markdown-link" +}; + +export { MarkdownLink as a }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/ordered-list.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/ordered-list.tsx new file mode 100644 index 00000000000..2441fda623e --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/ordered-list.tsx @@ -0,0 +1,54 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import React, { FunctionComponent, ReactElement } from "react"; +import { childRenderer } from "./utils"; + +/** + * Markdown custom component for the ol element. + * + * @param Props - Props to be injected into the component. + */ +const OrderedList: FunctionComponent< + MarkdownCustomComponentPropsInterface<"ol"> +> = (props: MarkdownCustomComponentPropsInterface<"ol">): ReactElement => { + const { + children, + "data-componentid": componentId + } = props; + + if (!Array.isArray(children)) { + return null; + } + + return ( +
      + { childRenderer(props) } +
    + ); +}; + +/** + * Default props for the `OrderedList` component. + */ +OrderedList.defaultProps = { + "data-componentid": "custom-markdown-ul" +}; + +export { OrderedList as ol }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/paragraph.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/paragraph.tsx new file mode 100644 index 00000000000..a85115b7005 --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/paragraph.tsx @@ -0,0 +1,61 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import Typography from "@oxygen-ui/react/Typography"; +import { MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import React, { FunctionComponent, ReactElement } from "react"; +import { childRenderer } from "./utils"; + +/** + * Markdown custom component for the paragraph element. + * + * @param Props - Props to be injected into the component. + */ +const Paragraph: FunctionComponent< + MarkdownCustomComponentPropsInterface<"p"> +> = (props: MarkdownCustomComponentPropsInterface<"p">): ReactElement => { + const { + children, + "data-componentid": componentId + } = props; + + if (!children) { + return null; + } + + return ( + + { + typeof children === "string" ? ( + children + ): ( + childRenderer(props) + ) + } + + ); +}; + +/** + * Default props for the `Paragraph` component. + */ +Paragraph.defaultProps = { + "data-componentid": "custom-markdown-paragraph" +}; + +export { Paragraph as p }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/pre.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/pre.tsx new file mode 100644 index 00000000000..db74b922781 --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/pre.tsx @@ -0,0 +1,94 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { CodeEditor, MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import React, { FunctionComponent, ReactElement } from "react"; + +/** + * Props interface for the `MarkdownPre` component. + */ +interface MarkdownPreProps extends MarkdownCustomComponentPropsInterface<"pre"> { + /** + * Custom attributes supplied by the 'rehype-attr' plugin. + */ + "data-config"?: { + /** + * Flag to determine whether the content is multiline. + */ + multiline?: boolean; + /** + * If the component type is wrapper how much indentation is needed. + * 1 Indent = 5px + */ + indent?: number; + }; +} + +/** + * Markdown custom component for the pre element. + * + * @param Props - Props to be injected into the component. + */ +const MarkdownPre: FunctionComponent = (props: MarkdownPreProps): ReactElement => { + const { + children, + "data-config": dataConfig, + "data-componentid": componentId + } = props; + + let content: string = children?.["props"]?.["children"]; + const language: string = children?.["props"]?.["className"]?.split("language-")?.[1]; + + if (content?.endsWith("\n")) { + content = content.substring(0, content.length - 1); + } + + if (typeof content !== "string") { + return null; + } + + return ( +
    + +
    + ); +}; + +/** + * Default props for the `MarkdownPre` component. + */ +MarkdownPre.defaultProps = { + "data-componentid": "custom-markdown-pre" +}; + +export { MarkdownPre as pre }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/strong.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/strong.tsx new file mode 100644 index 00000000000..2b5f5ccae73 --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/strong.tsx @@ -0,0 +1,51 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import React, { FunctionComponent, ReactElement } from "react"; + +/** + * Markdown custom component for the strong element. + * + * @param Props - Props to be injected into the component. + */ +const Strong: FunctionComponent< + MarkdownCustomComponentPropsInterface<"strong"> +> = (props: MarkdownCustomComponentPropsInterface<"strong">): ReactElement => { + const { + children, + "data-componentid": componentId + } = props; + + if (typeof children !== "string") { + return null; + } + + return ( + { children } + ); +}; + +/** + * Default props for the `Strong` component. + */ +Strong.defaultProps = { + "data-componentid": "custom-markdown-strong" +}; + +export { Strong as strong }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/unordered-list.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/unordered-list.tsx new file mode 100644 index 00000000000..ae87a4ef338 --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/unordered-list.tsx @@ -0,0 +1,54 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import React, { FunctionComponent, ReactElement } from "react"; +import { childRenderer } from "./utils"; + +/** + * Markdown custom component for the ul element. + * + * @param Props - Props to be injected into the component. + */ +const UnorderedList: FunctionComponent< + MarkdownCustomComponentPropsInterface<"ul"> +> = (props: MarkdownCustomComponentPropsInterface<"ul">): ReactElement => { + const { + children, + "data-componentid": componentId + } = props; + + if (!Array.isArray(children)) { + return null; + } + + return ( +
      + { childRenderer(props) } +
    + ); +}; + +/** + * Default props for the `UnorderedList` component. + */ +UnorderedList.defaultProps = { + "data-componentid": "custom-markdown-ul" +}; + +export { UnorderedList as ul }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/utils.tsx b/features/admin.applications.v1/components/help-panel/markdown/components/utils.tsx new file mode 100644 index 00000000000..f780a3116e0 --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/components/utils.tsx @@ -0,0 +1,55 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import React, { FunctionComponent, ReactElement } from "react"; +import * as CustomMarkdownComponents from "."; + +export const childRenderer = < + TagName extends keyof JSX.IntrinsicElements +>(props: MarkdownCustomComponentPropsInterface): ReactElement[] | ReactElement => { + if (!props?.children) { + return null; + } + + if (Array.isArray(props.children)) { + return props.children.map((child: any, index: number) => { + if (typeof child === "string") { + return <>{ child }; + } + + const CustomComponent: FunctionComponent> = + CustomMarkdownComponents?.[child?.props?.node?.tagName]; + + if (CustomComponent) { + return ; + } + }); + } + + if (props.children?.["props"]?.node?.tagName) { + const CustomComponent: FunctionComponent> = + CustomMarkdownComponents?.[props.children?.["props"]?.node?.tagName]; + + if (CustomComponent) { + return ; + } + } + + return null; +}; diff --git a/features/admin.applications.v1/components/help-panel/markdown/global-markdown-context.tsx b/features/admin.applications.v1/components/help-panel/markdown/global-markdown-context.tsx new file mode 100644 index 00000000000..22b9eef21f8 --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/global-markdown-context.tsx @@ -0,0 +1,45 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Context, createContext } from "react"; + +/** + * Props interface for GlobalMarkdownContext. + */ +export interface GlobalMarkdownContextProps { + /** + * When the navigation URL is relative, this function defines + * how it should be handled. + * + * @param path - href value. + */ + onHandleInternalUrl: (path: string) => void; +} + +/** + * Context object for managing global markdown props. + */ +const GlobalMarkdownContext: Context = + createContext(null); + +/** + * Display name for the GlobalMarkdownContext. + */ +GlobalMarkdownContext.displayName = "GlobalMarkdownContext"; + +export default GlobalMarkdownContext; diff --git a/features/admin.applications.v1/components/help-panel/markdown/global-markdown-provider.tsx b/features/admin.applications.v1/components/help-panel/markdown/global-markdown-provider.tsx new file mode 100644 index 00000000000..a0ebbfa1a23 --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/global-markdown-provider.tsx @@ -0,0 +1,48 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import React, { PropsWithChildren, ReactElement } from "react"; +import GlobalMarkdownContext, { GlobalMarkdownContextProps } from "./global-markdown-context"; + +/** + * Props interface for the global markdown provider. + */ +export type GlobalMarkdownProviderProps = PropsWithChildren & GlobalMarkdownContextProps; + +/** + * Global markdown provider. + * + * @param props - Props for the provider. + * @returns Global markdown provider. + */ +const GlobalMarkdownProvider = (props: GlobalMarkdownProviderProps): ReactElement => { + const { + children, + ...rest + } = props; + + return ( + + { children } + + ); +}; + +export default GlobalMarkdownProvider; diff --git a/features/admin.applications.v1/components/help-panel/markdown/markdown-guide.scss b/features/admin.applications.v1/components/help-panel/markdown/markdown-guide.scss new file mode 100644 index 00000000000..c538d7bd0b0 --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/markdown-guide.scss @@ -0,0 +1,22 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + .markdown-guide { + margin-left: 0 !important; + margin-right: 0 !important; +} diff --git a/features/admin.applications.v1/components/help-panel/markdown/markdown-guide.tsx b/features/admin.applications.v1/components/help-panel/markdown/markdown-guide.tsx new file mode 100644 index 00000000000..d6a47c6af14 --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/markdown-guide.tsx @@ -0,0 +1,311 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { AppState, history } from "@wso2is/admin.core.v1"; +import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; +import { addAlert } from "@wso2is/core/store"; +import { + ContentLoader, + Markdown +} from "@wso2is/react-components"; +import get from "lodash-es/get"; +import set from "lodash-es/set"; +import React, { FunctionComponent, ReactElement, useEffect, useMemo } from "react"; +import { useTranslation } from "react-i18next"; +import { useDispatch, useSelector } from "react-redux"; +import { Dispatch } from "redux"; +import { Grid } from "semantic-ui-react"; +import * as CustomMarkdownComponents from "./components"; +import GlobalMarkdownProvider from "./global-markdown-provider"; +import { useGetApplication } from "../../../api/use-get-application"; +import useGetApplicationInboundConfigs from "../../../api/use-get-application-inbound-configs"; +import { + ApplicationInterface, + SAML2ServiceProviderInterface, + SAMLApplicationConfigurationInterface, + SupportedAuthProtocolTypes +} from "../../../models"; +import "./markdown-guide.scss"; + +/** + * Prop types of the `MarkdownGuide` component. + */ +export interface MarkdownGuidePropsInterface extends IdentifiableComponentInterface { + /** + * Id of the current application. + */ + applicationId: string; + /** + * Content to be displayed in Markdown format. + */ + content: string; + /** + * Is the application info request loading. + */ + isLoading?: boolean; +} + +/** + * An interface that includes all the moderated data types using initial data. + */ +interface ModeratedData { + pemCertificate?: string; +} + +/** + * An interface that includes all the data types which can be used in the markdown guide. + */ +interface MarkdownGuideDataInterface { + general?: ApplicationInterface; + protocol?: { + saml?: SAML2ServiceProviderInterface; + }; + metadata?: { + saml?: SAMLApplicationConfigurationInterface; + } + tenantDomain?: string; + clientOrigin?: string; + serverOrigin?: string; + moderatedData?: ModeratedData; +} + +/** + * Markdown guide generation component. + * + * @param Props - Props to be injected into the component. + */ +export const MarkdownGuide: FunctionComponent = ( + props: MarkdownGuidePropsInterface +): ReactElement => { + const { + applicationId, + content, + isLoading, + ["data-componentid"]: componentId + } = props; + + const { t } = useTranslation(); + + const dispatch: Dispatch = useDispatch(); + + const { + data: application, + isLoading: applicationLoading, + error: applicationFetchRequestError + } = useGetApplication(applicationId, !!applicationId); + const { + data: applicationInboundProtocol, + isLoading: applicationInboundProtocolLoading, + error: applicationInboundProtocolFetchRequestError + } = useGetApplicationInboundConfigs(applicationId, SupportedAuthProtocolTypes.SAML, !!applicationId); + const samlConfigurations: SAMLApplicationConfigurationInterface = useSelector( + (state: AppState) => state?.application?.samlConfigurations); + const tenantDomain: string = useSelector((state: AppState) => state?.auth?.tenantDomain); + const clientOrigin: string = useSelector((state: AppState) => state?.config?.deployment?.clientOrigin); + const serverOrigin: string = useSelector((state: AppState) => state?.config?.deployment?.idpConfigs?.serverOrigin); + const appBaseName: string = useSelector((state: AppState) => + state?.config?.deployment?.appBaseName); + + /** + * Handles the application get request error. + */ + useEffect(() => { + if (!applicationFetchRequestError) { + return; + } + + if (applicationFetchRequestError.response?.data?.description) { + dispatch(addAlert({ + description: applicationFetchRequestError.response.data.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.fetchApplication.error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.fetchApplication" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications.fetchApplication.genericError." + + "message") + })); + }, [ applicationFetchRequestError ]); + + /** + * Handle errors that occur during the application inbound protocol data fetch request. + */ + useEffect(() => { + if (!applicationInboundProtocolFetchRequestError) { + return; + } + + if (applicationInboundProtocolFetchRequestError?.response?.data?.description) { + dispatch(addAlert({ + description: applicationInboundProtocolFetchRequestError.response.data.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.getInboundProtocolConfig.error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.getInboundProtocolConfig" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications.getInboundProtocolConfig" + + ".genericError.message") + })); + }, [ applicationInboundProtocolFetchRequestError ]); + + /** + * Convert certificate into the pem format. + * + * @param cert - Certificate in string format. + * @returns Pem format certificate content. + */ + function getPemFormatCertificate(cert: string): string { + const header: string = "-----BEGIN CERTIFICATE-----"; + const footer: string = "-----END CERTIFICATE-----"; + const lineLength: number = 64; + + // Insert line breaks every `lineLength` characters. + const formattedCert: string = cert.match(new RegExp(".{1," + lineLength + "}", "g"))?.join("\n") || ""; + + return `${header}\n${formattedCert}\n${footer}`; + } + + /** + * Prepare moderated data using the initial API response data. + */ + const getModeratedData = (): ModeratedData => { + const data: ModeratedData = {}; + + if (samlConfigurations?.certificate) { + data.pemCertificate = btoa(getPemFormatCertificate(samlConfigurations?.certificate)); + } + + return data; + }; + + /** + * Create a unified data object for the current application + * by combining multiple API responses. + */ + const data: MarkdownGuideDataInterface = useMemo(() => { + const markdownDataObject: MarkdownGuideDataInterface = {}; + + if (application) { + markdownDataObject.general = application; + } + if (applicationInboundProtocol) { + set(markdownDataObject, "protocol.saml", applicationInboundProtocol); + } + if (samlConfigurations) { + set(markdownDataObject, "metadata.saml", samlConfigurations); + } + if (tenantDomain) { + markdownDataObject.tenantDomain = tenantDomain; + } + if (clientOrigin) { + markdownDataObject.clientOrigin = clientOrigin; + } + if (serverOrigin) { + markdownDataObject.serverOrigin = serverOrigin; + } + if (application) { + markdownDataObject.moderatedData = getModeratedData(); + } + + return markdownDataObject; + }, [ + application, + applicationInboundProtocol, + samlConfigurations, + tenantDomain, + clientOrigin + ]); + + /** + * Create the final markdown content to render by replacing the possible + * included placeholders. + */ + const moderatedContent: string = useMemo(() => { + return content.replace(/\${([^}]+?)}/g, (match: string, key: string) => { + const propertyValue: unknown = get(data, key); + + if (propertyValue && typeof propertyValue === "string") { + return propertyValue; + } + + return match; + }); + }, [ content, data ]); + + /** + * Manage internal navigation for relative URLs. + * + * @param path - Relative pathname. + */ + const handleInternalUrl = (path: string) => { + let pathname: string = path; + + if (!pathname?.startsWith("/")) { + pathname = "/" + pathname; + } + + if (!pathname?.startsWith(appBaseName)) { + pathname = appBaseName + pathname; + } + + history.push({ pathname }); + }; + + return ( + + + + { + isLoading || applicationLoading || applicationInboundProtocolLoading || !moderatedContent + ? + : ( + + + + ) + } + + + + ); +}; + +/** + * Default props for the `MarkdownGuide` guide. + */ +MarkdownGuide.defaultProps = { + "data-componentid": "markdown-guide" +}; diff --git a/features/admin.applications.v1/components/help-panel/markdown/use-global-markdown.ts b/features/admin.applications.v1/components/help-panel/markdown/use-global-markdown.ts new file mode 100644 index 00000000000..8f8ead4fe3d --- /dev/null +++ b/features/admin.applications.v1/components/help-panel/markdown/use-global-markdown.ts @@ -0,0 +1,41 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { useContext } from "react"; +import GlobalMarkdownContext, { GlobalMarkdownContextProps } from "./global-markdown-context"; + +/** + * Interface for the return type of the `useGlobalMarkdown` hook. + */ +export type UseGlobalMarkdownInterface = GlobalMarkdownContextProps; + +/** + * Hook that provides access to the global markdown context. + * @returns An object containing the data related to the global markdown context. + */ +const useGlobalMarkdown = (): UseGlobalMarkdownInterface => { + const context: GlobalMarkdownContextProps = useContext(GlobalMarkdownContext); + + if (context === undefined) { + throw new Error("useGlobalMarkdown hook must be used within a GlobalMarkdownProvider"); + } + + return context; +}; + +export default useGlobalMarkdown; diff --git a/features/admin.applications.v1/components/settings/certificate/application-certificate-wrapper.tsx b/features/admin.applications.v1/components/settings/certificate/application-certificate-wrapper.tsx index 0f8c1c55d49..fef658b9cad 100644 --- a/features/admin.applications.v1/components/settings/certificate/application-certificate-wrapper.tsx +++ b/features/admin.applications.v1/components/settings/certificate/application-certificate-wrapper.tsx @@ -79,6 +79,7 @@ interface ApplicationWrapperCertificatesPropsInterface extends TestableComponent readOnly: boolean; triggerSubmit?: boolean; canDiscardCertificate?: () => boolean; + hideDivider?: boolean; } /** @@ -106,6 +107,7 @@ export const ApplicationCertificateWrapper: FunctionComponent - - - + { + !hideDivider && ( + + + + ) + } { diff --git a/features/admin.applications.v1/constants/application-templates.ts b/features/admin.applications.v1/constants/application-templates.ts index 3feb085bffa..30ba0c4a3ca 100644 --- a/features/admin.applications.v1/constants/application-templates.ts +++ b/features/admin.applications.v1/constants/application-templates.ts @@ -22,7 +22,7 @@ import { ApplicationTemplateCategoryInterface } from "../models/application-temp * Class containing application templates management constants. */ export class ApplicationTemplateConstants { - public static readonly CONSOLE_BASE_URL_PLACEHOLDER: string = "{{CONSOLE_BASE_URL}}"; + public static readonly CONSOLE_BASE_URL_PLACEHOLDER: string = "${CONSOLE_BASE_URL}"; public static readonly COMING_SOON_ATTRIBUTE_KEY: string = "comingSoon"; diff --git a/features/admin.applications.v1/models/application-templates.ts b/features/admin.applications.v1/models/application-templates.ts index 87ba9e94926..2799da0779d 100644 --- a/features/admin.applications.v1/models/application-templates.ts +++ b/features/admin.applications.v1/models/application-templates.ts @@ -16,6 +16,7 @@ * under the License. */ +import { Schema } from "ajv"; import { MainApplicationInterface } from "./application"; import { DynamicFormInterface } from "./dynamic-fields"; @@ -76,6 +77,10 @@ export interface ApplicationTemplateInterface extends ApplicationTemplateCommonI * Create form payload parameters. */ payload: MainApplicationInterface; + /** + * Data validation schema for application API. + */ + schema?: Schema } /** @@ -139,9 +144,13 @@ export interface ApplicationEditTabMetadataInterface { */ contentType?: ApplicationEditTabContentTypes; /** - * Dynamic input fields should be rendered in the current tab. + * Dynamic input fields which should be rendered in the current tab. + */ + forms?: DynamicFormInterface[]; + /** + * Flag to determine if a single update button is sufficient when multiple forms are present. */ - form?: DynamicFormInterface; + singleForm?: boolean; /** * Guide content for application editing section. */ diff --git a/features/admin.applications.v1/models/dynamic-fields.ts b/features/admin.applications.v1/models/dynamic-fields.ts index 84baa4df4ac..bee89d6842c 100644 --- a/features/admin.applications.v1/models/dynamic-fields.ts +++ b/features/admin.applications.v1/models/dynamic-fields.ts @@ -28,6 +28,10 @@ export interface DynamicFormInterface { * Should the form only submit the fields defined above. */ submitDefinedFieldsOnly?: boolean; + /** + * API to which the form values should be submitted. + */ + api?: SupportedAPIList; } /** @@ -62,10 +66,26 @@ export interface DynamicFieldInterface { * Placeholder for the input field. */ placeholder: string; + /** + * Helper text for the input field. + */ + helperText: string; /** * The data component id for the input field. */ dataComponentId: string; + /** + * Indicates if the field is disabled (Value will not be submitted). + */ + disable?: boolean; + /** + * Indicates whether the field is read only. + */ + readOnly?: boolean; + /** + * Indicates whether the field is hidden. + */ + hidden?: boolean; /** * Array of validation rules for the field's input. */ @@ -81,23 +101,25 @@ export interface DynamicFieldInterface { */ export interface DynamicFieldMetadataInterface { /** - * Properties that should automatically submit along with the current property. + * Names of the properties that should be templated using the current field value. */ - autoSubmitProperties?: DynamicFieldAutoSubmitPropertyInterface[]; -} - -/** - * Interface for defining an auto-submitting property. - */ -export interface DynamicFieldAutoSubmitPropertyInterface { + dependentProperties?: string[]; /** - * The path for the property that should be included in the final form submit payload. + * Names of placeholder strings included as templated strings in the current field. */ - path: string; + templatedPlaceholders?: string[]; /** - * The value to be assigned to the specified path. + * Names of the properties that should be templated using the current field value. */ - value: any; + dependent?: string[]; + /** + * Whether the current field value should be a generated value. + */ + generator: "uuid" + /** + * Custom props need to be provided into the field component. + */ + customFieldProps: Record } /** @@ -115,7 +137,11 @@ export enum DynamicInputFieldTypes { /** * Text Area. */ - TEXTAREA = "textarea" + TEXTAREA = "textarea", + /** + * Application certificate field. + */ + APPLICATION_CERTIFICATE = "application-certificate" } /** @@ -140,3 +166,18 @@ export enum ValidationRuleTypes { APPLICATION_NAME = "applicationName", REQUIRED = "required" } + +/** + * List of supported APIs to which the form values can be submitted. + */ +export enum SupportedAPIList { + APPLICATION_PATCH = "PATCH:/api/server/v1/applications", + APPLICATION_SAML_INBOUND_PROTOCOL_PUT = "PUT:/api/server/v1/applications/{application-id}/inbound-protocols/saml" +} + +/** + * List of field value generators. + */ +export enum FieldValueGenerators { + UUID = "uuid" +} diff --git a/features/admin.applications.v1/package.json b/features/admin.applications.v1/package.json index 9cde2fe32a2..81d98c44906 100644 --- a/features/admin.applications.v1/package.json +++ b/features/admin.applications.v1/package.json @@ -41,6 +41,7 @@ "@wso2is/admin.userstores.v1": "^2.20.39", "@wso2is/admin.wsfed-configuration.v1": "^2.20.39", "classnames": "^2.2.6", + "ajv": "^8.16.0", "axios": "^0.19.2", "codemirror": "^5.52.0", "file-saver": "^2.0.5", diff --git a/features/admin.applications.v1/pages/application-edit.tsx b/features/admin.applications.v1/pages/application-edit.tsx index e82f541c1d3..01744a9ddb7 100755 --- a/features/admin.applications.v1/pages/application-edit.tsx +++ b/features/admin.applications.v1/pages/application-edit.tsx @@ -31,6 +31,7 @@ import { AnimatedAvatar, AppAvatar, LabelWithPopup, + Link, Popup, TabPageLayout } from "@wso2is/react-components"; @@ -40,8 +41,9 @@ import { useTranslation } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; import { RouteComponentProps } from "react-router"; import { Dispatch } from "redux"; -import { Label } from "semantic-ui-react"; +import { Icon, Label } from "semantic-ui-react"; import { useGetApplication } from "../api/use-get-application"; +import { ApplicationSyncWizard } from "../components/dynamic-forms/application-sync-wizard"; import { EditApplication } from "../components/edit-application"; import { InboundProtocolDefaultFallbackTemplates } from "../components/meta/inbound-protocols.meta"; import { ApplicationManagementConstants } from "../constants"; @@ -56,7 +58,7 @@ import { SupportedAuthProtocolTypes, idpInfoTypeInterface } from "../models"; -import { ApplicationTemplateListInterface } from "../models/application-templates"; +import { ApplicationTemplateCategories, ApplicationTemplateListInterface } from "../models/application-templates"; import { ApplicationManagementUtils } from "../utils/application-management-utils"; import { ApplicationTemplateManagementUtils } from "../utils/application-template-management-utils"; @@ -116,6 +118,9 @@ const ApplicationEditPage: FunctionComponent = ( const [ callBackIdpName, setcallBackIdpName ] = useState(); const [ callBackRedirect, setcallBackRedirect ] = useState(); + const [ showSyncStatus, setShowSyncStatus ] = useState(false); + const [ showWizard, setShowWizard ] = useState(false); + const { data: application, mutate: mutateApplicationGetRequest, @@ -488,7 +493,7 @@ const ApplicationEditPage: FunctionComponent = ( } if (extensionApplicationTemplate?.name) { - return ; + return ; } if (applicationTemplate?.name) { @@ -504,6 +509,55 @@ const ApplicationEditPage: FunctionComponent = ( title={ ( <> { moderatedApplicationData?.name } + { + extensionApplicationTemplate && + extensionApplicationTemplate?.category === + ApplicationTemplateCategories.SSO_INTEGRATION && + showSyncStatus + ? ( + + { + "Your application's essential configurations " + + "may be outdated due to recent changes " + + `by ${extensionApplicationTemplate?.name} or ` + + "updates via the API. Click " + } + setShowWizard(true) } + > + here + + { + " to sync the configurations." + } + ) + } + labelColor="orange" + popupOptions={ + { + hoverable: true + } + } + trigger={ ( + + ) } + /> + ) + : null + } { /*TODO - Application status is not shown until the backend support for disabling is given @link https://github.com/wso2/product-is/issues/11453 { resolveApplicationStatusLabel() }*/ } @@ -603,6 +657,21 @@ const ApplicationEditPage: FunctionComponent = ( } } readOnly={ resolveReadOnlyState() } /> + { + extensionApplicationTemplate && + extensionApplicationTemplate?.category === ApplicationTemplateCategories.SSO_INTEGRATION && + ( + setShowSyncStatus(isApplicationOutdated) + } + showWizard={ showWizard } + onClose={ () => setShowWizard(false) } + /> + ) + } ); }; diff --git a/modules/i18n/src/models/namespaces/applications-ns.ts b/modules/i18n/src/models/namespaces/applications-ns.ts index 1c3017115b5..b3cbc23b062 100644 --- a/modules/i18n/src/models/namespaces/applications-ns.ts +++ b/modules/i18n/src/models/namespaces/applications-ns.ts @@ -2438,6 +2438,20 @@ export interface ApplicationsNS { description: string; }; }; + syncApplication: { + error: { + message: string; + description: string; + }; + genericError: { + message: string; + description: string; + }; + success: { + message: string; + description: string; + }; + }; disableApplication: { error: { message: string; diff --git a/modules/i18n/src/models/namespaces/common-ns.ts b/modules/i18n/src/models/namespaces/common-ns.ts index 66fbdcd98ed..9c9548b8968 100644 --- a/modules/i18n/src/models/namespaces/common-ns.ts +++ b/modules/i18n/src/models/namespaces/common-ns.ts @@ -151,6 +151,7 @@ export interface CommonNS { showMore: string; showPassword: string; skip: string; + sync: string; generatePassword: string; startsWith: string; step: string; diff --git a/modules/i18n/src/translations/de-DE/portals/common.ts b/modules/i18n/src/translations/de-DE/portals/common.ts index 22f024916ae..6652a0136a6 100644 --- a/modules/i18n/src/translations/de-DE/portals/common.ts +++ b/modules/i18n/src/translations/de-DE/portals/common.ts @@ -174,6 +174,7 @@ export const common: CommonNS = { "strong": "stark", "submit": "einreichen", "switch": "Schalter", + "sync": "Synchronisieren", "technologies": "Technologien", "terminate": "Beenden", "terminateAll": "Alle beenden", diff --git a/modules/i18n/src/translations/en-US/portals/applications.ts b/modules/i18n/src/translations/en-US/portals/applications.ts index ed6c3282e8d..db9fceb3f4d 100644 --- a/modules/i18n/src/translations/en-US/portals/applications.ts +++ b/modules/i18n/src/translations/en-US/portals/applications.ts @@ -2807,6 +2807,20 @@ export const applications: ApplicationsNS = { message: "Update successful" } }, + syncApplication: { + error: { + description: "{{description}}", + message: "Sync error" + }, + genericError: { + description: "Failed to sync the application.", + message: "Something went wrong" + }, + success: { + description: "Successfully synced the application.", + message: "Sync successful" + } + }, disableApplication: { error: { description: "{{description}}", diff --git a/modules/i18n/src/translations/en-US/portals/common.ts b/modules/i18n/src/translations/en-US/portals/common.ts index 966656a16a5..bee3c279713 100755 --- a/modules/i18n/src/translations/en-US/portals/common.ts +++ b/modules/i18n/src/translations/en-US/portals/common.ts @@ -174,6 +174,7 @@ export const common: CommonNS = { strong: "Strong", submit: "Submit", switch: "Switch", + sync: "Sync", technologies: "Technologies", terminate: "Terminate", terminateAll: "Terminate all", diff --git a/modules/i18n/src/translations/es-ES/portals/common.ts b/modules/i18n/src/translations/es-ES/portals/common.ts index f126bf26453..a3cab38ef8b 100644 --- a/modules/i18n/src/translations/es-ES/portals/common.ts +++ b/modules/i18n/src/translations/es-ES/portals/common.ts @@ -174,6 +174,7 @@ export const common: CommonNS = { strong: "Fuerte", submit: "Enviar", switch: "Cambiar", + sync: "Sincronizar", technologies: "Tecnologías", terminate: "Terminar", terminateAll: "Terminar todo", diff --git a/modules/i18n/src/translations/fr-FR/portals/common.ts b/modules/i18n/src/translations/fr-FR/portals/common.ts index c5d39412419..57858c459e0 100755 --- a/modules/i18n/src/translations/fr-FR/portals/common.ts +++ b/modules/i18n/src/translations/fr-FR/portals/common.ts @@ -175,6 +175,7 @@ export const common: CommonNS = { strong: "Fort", submit: "Valider", switch: "Changer", + sync: "Synchroniser", technologies: "Technologies", terminate: "Terminer", terminateAll: "Tout terminer", diff --git a/modules/i18n/src/translations/ja-JP/portals/common.ts b/modules/i18n/src/translations/ja-JP/portals/common.ts index 34538f08064..0dc7a99dfd7 100644 --- a/modules/i18n/src/translations/ja-JP/portals/common.ts +++ b/modules/i18n/src/translations/ja-JP/portals/common.ts @@ -174,6 +174,7 @@ export const common: CommonNS = { "strong": "強い", "submit": "提出する", "switch": "スイッチ", + "sync": "同期", "technologies": "テクノロジー", "terminate": "終了します", "terminateAll": "すべてを終了します", diff --git a/modules/i18n/src/translations/pt-BR/portals/common.ts b/modules/i18n/src/translations/pt-BR/portals/common.ts index ab071f6349b..5bf268b8046 100755 --- a/modules/i18n/src/translations/pt-BR/portals/common.ts +++ b/modules/i18n/src/translations/pt-BR/portals/common.ts @@ -174,6 +174,7 @@ export const common: CommonNS = { strong: "Forte", submit: "Enviar", switch: "Alternar", + sync: "Sincronizar", technologies: "Tecnologias", terminate: "Encerrar", terminateAll: "Encerrar todos", diff --git a/modules/i18n/src/translations/pt-PT/portals/common.ts b/modules/i18n/src/translations/pt-PT/portals/common.ts index f1042c6b17e..e1ac91079fa 100755 --- a/modules/i18n/src/translations/pt-PT/portals/common.ts +++ b/modules/i18n/src/translations/pt-PT/portals/common.ts @@ -174,6 +174,7 @@ export const common: CommonNS = { strong: "Forte", submit: "Enviar", switch: "Interruptor", + sync: "Sincronizar", technologies: "Tecnologias", terminate: "Terminar", terminateAll: "Terminar tudo", diff --git a/modules/i18n/src/translations/si-LK/portals/common.ts b/modules/i18n/src/translations/si-LK/portals/common.ts index 01fa09c9e6c..26ce23d6187 100755 --- a/modules/i18n/src/translations/si-LK/portals/common.ts +++ b/modules/i18n/src/translations/si-LK/portals/common.ts @@ -174,6 +174,7 @@ export const common: CommonNS = { strong: "ශක්තිමත්", submit: "ඉදිරිපත් කරන්න", switch: "මාරු කරන්න", + sync: "සමමුහුර්ත කරන්න", technologies: "තාක්ෂණයන්", terminate: "අවසන් කරන්න", terminateAll: "සියල්ල අවසන් කරන්න", diff --git a/modules/i18n/src/translations/ta-IN/portals/common.ts b/modules/i18n/src/translations/ta-IN/portals/common.ts index a7ece5ef710..19e6b9467fa 100755 --- a/modules/i18n/src/translations/ta-IN/portals/common.ts +++ b/modules/i18n/src/translations/ta-IN/portals/common.ts @@ -175,6 +175,7 @@ export const common: CommonNS = { strong: "வலுவான", submit: "சமர்ப்பி", switch: "மாற்று", + sync: "ஒத்திசை", technologies: "தொழில்நுட்பங்கள்", terminate: "முடி", terminateAll: "அனைத்தையும் முடி", diff --git a/modules/i18n/src/translations/zh-CN/portals/common.ts b/modules/i18n/src/translations/zh-CN/portals/common.ts index a0b60b1a48a..11f9b8ba898 100755 --- a/modules/i18n/src/translations/zh-CN/portals/common.ts +++ b/modules/i18n/src/translations/zh-CN/portals/common.ts @@ -174,6 +174,7 @@ export const common: CommonNS = { "strong": "强的", "submit": "提交", "switch": "转变", + "sync": "同步", "technologies": "技术", "terminate": "终止", "terminateAll": "终止所有", diff --git a/modules/react-components/package.json b/modules/react-components/package.json index f5c70f2f8e1..02fa40bc29a 100644 --- a/modules/react-components/package.json +++ b/modules/react-components/package.json @@ -57,11 +57,12 @@ "react-codemirror2": "^6.0.0", "react-color": "^2.19.3", "react-i18next": "^11.18.5", - "react-markdown": "^4.3.1", + "react-markdown": "^9.0.1", "react-notification-system": "^0.4.0", "react-router-dom": "^4.3.1", "react-top-loading-bar": "^1.2.0", "react-transition-group": "^4.4.1", + "rehype-attr": "^3.0.3", "semantic-ui-react": "^2.1.3", "storybook": "^6.5.9", "tinycolor": "0.0.1", diff --git a/modules/react-components/src/components/links/link.tsx b/modules/react-components/src/components/links/link.tsx index da4610edd24..0c874c90a0e 100644 --- a/modules/react-components/src/components/links/link.tsx +++ b/modules/react-components/src/components/links/link.tsx @@ -1,5 +1,5 @@ /** - * Copyright (c) 2021, WSO2 LLC. (https://www.wso2.com). All Rights Reserved. + * Copyright (c) 2021-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except @@ -54,6 +54,10 @@ interface LinkPropsInterface extends IdentifiableComponentInterface { * Documentation URL target property. Opens in a new window by default. */ target?: string; + /** + * Title attribute for the anchor element. + */ + title?: string; } /** @@ -75,6 +79,7 @@ export const Link: FunctionComponent> = ( link, onClick, target, + title, [ "data-componentid" ]: componentId } = props; @@ -106,6 +111,7 @@ export const Link: FunctionComponent> = ( onClick(e); } } data-componentid={ componentId } + title={ title } > { external && icon && iconPosition === "left" && } { children } diff --git a/modules/react-components/src/components/renderer/markdown.tsx b/modules/react-components/src/components/renderer/markdown.tsx index a85cf28b02c..bb4082dd188 100644 --- a/modules/react-components/src/components/renderer/markdown.tsx +++ b/modules/react-components/src/components/renderer/markdown.tsx @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). All Rights Reserved. + * Copyright (c) 2020-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except @@ -19,15 +19,25 @@ import { IdentifiableComponentInterface, TestableComponentInterface } from "@wso2is/core/models"; import classNames from "classnames"; import React, { FunctionComponent, ReactElement } from "react"; -import { ReactMarkdownProps } from "react-markdown"; -import ReactMarkdown from "react-markdown/with-html"; +import ReactMarkdown, { ExtraProps, Options } from "react-markdown"; +import rehypeAttrs from "rehype-attr"; + +/** + * Props interface for the Markdown custom component. + */ +export type MarkdownCustomComponentPropsInterface< + TagName extends keyof JSX.IntrinsicElements +> = JSX.IntrinsicElements[TagName] & ExtraProps & IdentifiableComponentInterface; /** * Proptypes for the placeholder component. */ -export interface MarkdownPropsInterface extends ReactMarkdownProps, IdentifiableComponentInterface, +export interface MarkdownPropsInterface extends Options, IdentifiableComponentInterface, TestableComponentInterface { - + /** + * Content written in Markdown format to be displayed. + */ + source: string; /** * Text alignment. */ @@ -44,6 +54,7 @@ export interface MarkdownPropsInterface extends ReactMarkdownProps, Identifiable export const Markdown: FunctionComponent = (props: MarkdownPropsInterface): ReactElement => { const { + source, className, textAlign, [ "data-componentid" ]: componentId, @@ -62,11 +73,14 @@ export const Markdown: FunctionComponent = (props: Markd return ( + > + { source } + ); }; diff --git a/package.json b/package.json index 57968b399ce..58327f0bdef 100755 --- a/package.json +++ b/package.json @@ -63,7 +63,6 @@ "react-final-form": "^6.5.3", "react-head": "^3.3.0", "react-helmet": "^5.2.1", - "react-markdown": "^4.3.1", "react-notification-system": "^0.4.0", "react-password-strength-bar": "^0.3.2", "react-redux": "^7.2.9", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d304d53cca0..5e43fed5dfa 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: '6.0' +lockfileVersion: '9.0' settings: autoInstallPeers: true @@ -69,7 +69,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-app-polyfill: specifier: ^1.0.4 version: 1.0.6 @@ -82,24 +82,21 @@ importers: react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) - react-markdown: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@16.14.0)(react@16.14.0) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-password-strength-bar: specifier: ^0.3.2 version: 0.3.5 react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) react-top-loading-bar: specifier: ^1.2.0 - version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1) + version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 @@ -142,76 +139,76 @@ importers: version: 7.24.7 '@changesets/changelog-github': specifier: ^0.4.8 - version: 0.4.8 + version: 0.4.8(encoding@0.1.13) '@changesets/cli': specifier: ^2.26.1 version: 2.27.5 '@nrwl/cli': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5) + version: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)) '@nrwl/cypress': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@nrwl/devkit': specifier: 14.8.8 - version: 14.8.8(nx@14.8.8)(typescript@4.9.5) + version: 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) '@nrwl/eslint-plugin-nx': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(@typescript-eslint/parser@4.33.0)(eslint-config-prettier@8.1.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5) + version: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint-config-prettier@8.1.0(eslint@7.32.0))(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) '@nrwl/jest': specifier: 14.8.8 - version: 14.8.8(@types/node@13.13.52)(nx@14.8.8)(ts-node@10.9.2)(typescript@4.9.5) + version: 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) '@nrwl/js': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5) + version: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) '@nrwl/linter': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.2)(typescript@4.9.5) + version: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) '@nrwl/nx-plugin': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5) + version: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) '@nrwl/react': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(file-loader@2.0.0)(html-webpack-plugin@5.6.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3) + version: 14.8.8(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/babel__core@7.20.5)(@types/node@13.13.52)(@types/webpack@4.41.38)(cypress@9.7.0)(eslint@7.32.0)(file-loader@2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(sockjs-client@1.6.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(type-fest@4.20.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1) '@nrwl/storybook': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@nrwl/web': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(html-webpack-plugin@5.6.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 14.8.8(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/babel__core@7.20.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@nrwl/workspace': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5) + version: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.5.4 - version: 0.5.15(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.5.15(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@storybook/builder-webpack5': specifier: ~6.4.12 - version: 6.4.22(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/core-server': specifier: ~6.4.12 - version: 6.4.22(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 6.4.22(@storybook/builder-webpack5@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(encoding@0.1.13)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(encoding@0.1.13)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/manager-webpack5': specifier: ~6.4.12 - version: 6.4.22(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(encoding@0.1.13)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/react': specifier: ~6.4.12 - version: 6.4.22(@babel/core@7.24.7)(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3) + version: 6.4.22(@babel/core@7.24.7)(@storybook/builder-webpack5@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(encoding@0.1.13)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(@types/webpack@4.41.38)(encoding@0.1.13)(eslint@7.32.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1) '@swc-node/register': specifier: ^1.4.2 - version: 1.9.2(@swc/core@1.6.5)(@swc/types@0.1.9)(typescript@4.9.5) + version: 1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5) '@swc/cli': specifier: ~0.1.55 - version: 0.1.65(@swc/core@1.6.5) + version: 0.1.65(@swc/core@1.6.5(@swc/helpers@0.3.17))(chokidar@3.6.0) '@swc/core': specifier: ^1.2.173 version: 1.6.5(@swc/helpers@0.3.17) '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1)(react@18.3.1) + version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/user-event': specifier: ^14.5.2 version: 14.5.2(@testing-library/dom@9.3.4) @@ -262,7 +259,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -271,25 +268,25 @@ importers: version: 9.8.8 babel-loader: specifier: ^8.1.0 - version: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + version: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) babel-plugin-rename-jsx-attribute: specifier: ^0.2.4 - version: 0.2.4(babel-core@6.26.3) + version: 0.2.4(babel-core@7.0.0-bridge.0(@babel/core@7.24.7)) child_process: specifier: ^1.0.2 version: 1.0.2 compression-webpack-plugin: specifier: ^7.1.2 - version: 7.1.2(webpack@5.84.1) + version: 7.1.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) core-js: specifier: ^3.6.5 version: 3.37.1 css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) cypress: specifier: ^9.1.0 version: 9.7.0 @@ -307,10 +304,10 @@ importers: version: 2.15.2(eslint@7.32.0) eslint-plugin-header: specifier: jeradrutnam/eslint-plugin-header#main - version: github.com/jeradrutnam/eslint-plugin-header/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3(eslint@7.32.0) + version: https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3(eslint@7.32.0) eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jsx-a11y: specifier: 6.5.1 version: 6.5.1(eslint@7.32.0) @@ -325,19 +322,19 @@ importers: version: 0.2.17 eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) extract-text-webpack-plugin: specifier: ^4.0.0-beta.0 - version: 4.0.0-beta.0(webpack@5.84.1) + version: 4.0.0-beta.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fast-xml-parser: specifier: ^3.15.0 version: 3.21.1 file-loader: specifier: ^2.0.0 - version: 2.0.0(webpack@5.84.1) + version: 2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fs-extra: specifier: ^9.0.1 version: 9.1.0 @@ -346,22 +343,22 @@ importers: version: 7.2.3 html-webpack-plugin: specifier: ^5.2.0 - version: 5.6.0(webpack@5.84.1) + version: 5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) identity-obj-proxy: specifier: ^3.0.0 version: 3.0.0 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@10.9.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jsonc-eslint-parser: specifier: ^2.1.0 version: 2.4.0 lerna: specifier: ^5.1.2 - version: 5.6.2(@swc-node/register@1.9.2)(@swc/core@1.6.5) + version: 5.6.2(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13) less-loader: specifier: ^5.0.0 - version: 5.0.0(less@3.13.1)(webpack@5.84.1) + version: 5.0.0(less@3.12.2)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) less-plugin-inline-urls: specifier: ^1.2.0 version: 1.2.0 @@ -379,10 +376,10 @@ importers: version: 4.17.21 mini-css-extract-plugin: specifier: ^0.4.3 - version: 0.4.5(webpack@5.84.1) + version: 0.4.5(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) nx: specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5) + version: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)) nyc: specifier: ^15.1.0 version: 15.1.0 @@ -400,10 +397,10 @@ importers: version: 15.8.1 raw-loader: specifier: ^4.0.2 - version: 4.0.2(webpack@5.84.1) + version: 4.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) react-hot-loader: specifier: ^4.13.0 - version: 4.13.1 + version: 4.13.1(@types/react@18.0.18) react-refresh: specifier: ^0.9.0 version: 0.9.0 @@ -424,31 +421,31 @@ importers: version: 0.23.1 terser-webpack-plugin: specifier: ^5.1.1 - version: 5.3.10(@swc/core@1.6.5)(webpack@5.84.1) + version: 5.3.10(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-loader: specifier: ^6.0.1 version: 6.2.2(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 url-loader: specifier: ^2.1.0 - version: 2.3.0(file-loader@2.0.0)(webpack@5.84.1) + version: 2.3.0(file-loader@2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) watch: specifier: ^1.0.2 version: 1.0.2 webpack: specifier: 5.84.1 - version: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + version: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) webpack-bundle-analyzer: specifier: ^4.4.0 version: 4.10.2 @@ -457,10 +454,10 @@ importers: version: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) webpack-dev-server: specifier: ^3.11.2 - version: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) + version: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) worker-loader: specifier: ^2.0.0 - version: 2.0.0(webpack@5.84.1) + version: 2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) write-file-webpack-plugin: specifier: ^4.5.1 version: 4.5.1 @@ -469,13 +466,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -487,28 +484,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -598,7 +595,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -607,31 +604,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: 11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -640,7 +637,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -652,13 +649,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -668,7 +665,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@svgr/webpack': specifier: 4.3.2 version: 4.3.2 @@ -677,10 +674,10 @@ importers: version: 9.3.4 '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1)(react@18.3.1) + version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/user-event': specifier: ^14.5.2 version: 14.5.2(@testing-library/dom@9.3.4) @@ -737,7 +734,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -746,16 +743,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -773,13 +770,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@10.9.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^29.7.0 version: 29.7.0 @@ -788,10 +785,10 @@ importers: version: 4.0.0(jest-environment-jsdom@29.7.0) json-minimizer-webpack-plugin: specifier: ^5.0.0 - version: 5.0.0(webpack@5.84.1) + version: 5.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -809,13 +806,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -824,7 +821,7 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@babel/polyfill': specifier: ^7.0.0 version: 7.12.1 @@ -839,16 +836,16 @@ importers: version: 3.2.2(tslib@2.6.3) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -917,19 +914,19 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) react-top-loading-bar: specifier: ^1.2.0 - version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1) + version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 @@ -941,7 +938,7 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -951,7 +948,7 @@ importers: devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))) '@types/history': specifier: ^4.7.3 version: 4.7.11 @@ -993,7 +990,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -1002,16 +999,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -1029,10 +1026,10 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^3.1.1 - version: 3.2.0(eslint@7.32.0)(webpack@5.84.1) + version: 3.2.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@10.9.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -1041,10 +1038,10 @@ importers: version: 4.0.0(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^5.0.0 - version: 5.0.0(webpack@5.84.1) + version: 5.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -1062,13 +1059,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -1077,13 +1074,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -1095,28 +1092,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../modules/access-control @@ -1161,7 +1158,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -1194,7 +1191,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -1203,31 +1200,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: 11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -1236,7 +1233,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -1248,13 +1245,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -1264,7 +1261,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -1351,7 +1348,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -1360,16 +1357,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -1384,13 +1381,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -1399,10 +1396,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -1441,13 +1438,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -1456,31 +1453,31 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -1519,10 +1516,10 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) @@ -1531,7 +1528,7 @@ importers: version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@rollup/plugin-commonjs': specifier: ^25.0.7 @@ -1589,34 +1586,34 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -1655,10 +1652,10 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) @@ -1667,7 +1664,7 @@ importers: version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@rollup/plugin-commonjs': specifier: ^25.0.7 @@ -1776,16 +1773,16 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@rollup/plugin-commonjs': specifier: ^25.0.7 @@ -1849,34 +1846,34 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -1949,6 +1946,9 @@ importers: '@wso2is/validation': specifier: ^2.0.5 version: link:../../modules/validation + ajv: + specifier: ^8.16.0 + version: 8.16.0 axios: specifier: ^0.19.2 version: 0.19.2 @@ -1987,13 +1987,13 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) @@ -2002,7 +2002,7 @@ importers: version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 @@ -2078,31 +2078,31 @@ importers: version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.applications.v1': specifier: ^2.21.9 version: link:../admin.applications.v1 @@ -2162,19 +2162,19 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@rollup/plugin-commonjs': specifier: ^25.0.7 @@ -2241,7 +2241,7 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@wso2is/admin.authorization.v1': specifier: ^2.20.14 version: link:../admin.authorization.v1 @@ -2277,7 +2277,7 @@ importers: version: 18.3.1(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) @@ -2344,13 +2344,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -2362,28 +2362,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -2428,7 +2428,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -2461,7 +2461,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -2470,31 +2470,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -2503,7 +2503,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -2515,13 +2515,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -2531,7 +2531,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -2618,7 +2618,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -2627,16 +2627,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -2651,13 +2651,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -2666,10 +2666,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -2708,13 +2708,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -2781,13 +2781,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -2799,28 +2799,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -2880,7 +2880,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -2913,7 +2913,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -2922,31 +2922,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -2955,7 +2955,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -2967,13 +2967,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -2983,7 +2983,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -3070,7 +3070,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -3079,16 +3079,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -3103,13 +3103,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -3118,10 +3118,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -3160,13 +3160,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -3175,13 +3175,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -3193,28 +3193,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -3280,7 +3280,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -3313,7 +3313,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -3322,31 +3322,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -3355,7 +3355,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -3367,13 +3367,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -3383,7 +3383,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -3470,7 +3470,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -3479,16 +3479,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -3503,13 +3503,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -3518,10 +3518,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -3560,13 +3560,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -3575,13 +3575,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -3593,28 +3593,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -3662,7 +3662,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -3698,7 +3698,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -3707,31 +3707,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -3740,7 +3740,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -3752,13 +3752,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -3768,7 +3768,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -3855,7 +3855,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -3864,16 +3864,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -3888,13 +3888,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -3903,10 +3903,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -3945,13 +3945,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -3960,13 +3960,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -3978,28 +3978,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -4065,7 +4065,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -4098,7 +4098,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -4107,31 +4107,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -4140,7 +4140,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -4152,13 +4152,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -4168,7 +4168,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -4255,7 +4255,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -4264,16 +4264,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -4288,13 +4288,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -4303,10 +4303,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -4345,13 +4345,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -4360,13 +4360,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -4378,28 +4378,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -4474,7 +4474,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -4507,7 +4507,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -4516,31 +4516,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -4549,7 +4549,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -4561,13 +4561,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -4577,7 +4577,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -4664,7 +4664,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -4673,16 +4673,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -4697,13 +4697,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -4712,10 +4712,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -4754,13 +4754,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -4769,13 +4769,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -4787,28 +4787,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -4886,7 +4886,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -4919,7 +4919,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -4928,31 +4928,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -4961,7 +4961,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -4973,13 +4973,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -4989,7 +4989,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -5076,7 +5076,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -5085,16 +5085,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -5109,13 +5109,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -5124,10 +5124,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -5166,13 +5166,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -5181,34 +5181,34 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -5373,7 +5373,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -5382,31 +5382,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -5415,7 +5415,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -5427,20 +5427,20 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -5527,7 +5527,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -5536,16 +5536,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -5560,13 +5560,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -5575,10 +5575,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -5617,13 +5617,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -5632,13 +5632,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -5650,28 +5650,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -5722,7 +5722,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -5755,7 +5755,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -5764,31 +5764,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -5797,7 +5797,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -5809,13 +5809,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -5825,7 +5825,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -5912,7 +5912,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -5921,16 +5921,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -5945,13 +5945,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -5960,10 +5960,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -6002,13 +6002,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -6017,13 +6017,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -6035,28 +6035,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -6110,7 +6110,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -6143,7 +6143,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -6152,31 +6152,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -6185,7 +6185,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -6197,13 +6197,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -6213,7 +6213,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -6300,7 +6300,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -6309,16 +6309,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -6333,13 +6333,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -6348,10 +6348,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -6390,13 +6390,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -6405,13 +6405,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -6423,28 +6423,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -6492,7 +6492,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -6525,7 +6525,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -6534,31 +6534,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -6567,7 +6567,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -6579,13 +6579,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -6595,7 +6595,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -6682,7 +6682,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -6691,16 +6691,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -6715,13 +6715,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -6730,10 +6730,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -6772,13 +6772,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -6787,13 +6787,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -6805,28 +6805,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -6877,7 +6877,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -6910,7 +6910,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -6919,31 +6919,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -6952,7 +6952,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -6964,13 +6964,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -6980,7 +6980,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -7067,7 +7067,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -7076,16 +7076,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -7100,13 +7100,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -7115,10 +7115,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -7157,13 +7157,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -7172,13 +7172,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -7190,28 +7190,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -7313,7 +7313,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -7346,7 +7346,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -7355,31 +7355,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -7388,7 +7388,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -7400,13 +7400,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -7416,7 +7416,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -7503,7 +7503,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -7512,16 +7512,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -7536,13 +7536,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -7551,10 +7551,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -7593,13 +7593,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -7608,13 +7608,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -7626,28 +7626,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -7698,7 +7698,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -7731,7 +7731,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -7740,31 +7740,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -7773,7 +7773,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -7785,13 +7785,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -7801,7 +7801,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -7888,7 +7888,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -7897,16 +7897,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -7921,13 +7921,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -7936,10 +7936,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -7978,13 +7978,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -7993,13 +7993,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -8011,28 +8011,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -8098,7 +8098,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -8131,7 +8131,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -8140,31 +8140,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -8173,7 +8173,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -8185,13 +8185,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -8201,7 +8201,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -8288,7 +8288,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -8297,16 +8297,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -8321,13 +8321,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -8336,10 +8336,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -8378,13 +8378,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -8393,13 +8393,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -8411,28 +8411,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -8507,7 +8507,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -8540,7 +8540,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -8549,31 +8549,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -8582,7 +8582,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -8594,13 +8594,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -8610,7 +8610,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -8697,7 +8697,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -8706,16 +8706,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -8730,13 +8730,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -8745,10 +8745,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -8787,13 +8787,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -8802,13 +8802,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -8820,28 +8820,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -8892,7 +8892,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -8925,7 +8925,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -8934,31 +8934,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -8967,7 +8967,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -8979,13 +8979,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -8995,7 +8995,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -9082,7 +9082,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -9091,16 +9091,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -9115,13 +9115,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -9130,10 +9130,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -9172,13 +9172,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -9187,13 +9187,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -9205,28 +9205,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -9274,7 +9274,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -9307,7 +9307,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -9316,31 +9316,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -9349,7 +9349,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -9361,13 +9361,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -9377,7 +9377,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -9464,7 +9464,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -9473,16 +9473,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -9497,13 +9497,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -9512,10 +9512,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -9554,13 +9554,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -9569,13 +9569,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -9587,28 +9587,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -9671,7 +9671,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -9704,7 +9704,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -9713,31 +9713,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -9746,7 +9746,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -9758,13 +9758,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -9774,7 +9774,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -9861,7 +9861,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -9870,16 +9870,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -9894,13 +9894,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -9909,10 +9909,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -9951,13 +9951,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -9966,13 +9966,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -9984,28 +9984,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -10059,7 +10059,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -10092,7 +10092,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -10101,31 +10101,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -10134,7 +10134,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -10146,13 +10146,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -10162,7 +10162,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -10249,7 +10249,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -10258,16 +10258,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -10282,13 +10282,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -10297,10 +10297,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -10339,13 +10339,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -10354,13 +10354,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -10372,28 +10372,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -10441,7 +10441,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -10474,7 +10474,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -10483,31 +10483,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -10516,7 +10516,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -10528,13 +10528,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -10544,7 +10544,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -10631,7 +10631,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -10640,16 +10640,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -10664,13 +10664,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -10679,10 +10679,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -10721,13 +10721,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -10736,13 +10736,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -10754,28 +10754,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -10826,7 +10826,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -10859,7 +10859,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -10868,31 +10868,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -10901,7 +10901,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -10913,13 +10913,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -10929,7 +10929,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -11016,7 +11016,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -11025,16 +11025,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -11049,13 +11049,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -11064,10 +11064,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -11106,13 +11106,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -11121,13 +11121,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -11139,28 +11139,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -11241,7 +11241,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -11274,7 +11274,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -11283,31 +11283,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -11316,7 +11316,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -11328,13 +11328,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -11344,7 +11344,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -11431,7 +11431,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -11440,16 +11440,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -11464,13 +11464,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -11479,10 +11479,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -11521,13 +11521,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -11536,13 +11536,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -11554,28 +11554,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -11626,7 +11626,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -11659,7 +11659,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -11668,31 +11668,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -11701,7 +11701,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -11713,13 +11713,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -11729,7 +11729,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -11816,7 +11816,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -11825,16 +11825,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -11849,13 +11849,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -11864,10 +11864,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -11906,13 +11906,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -11921,13 +11921,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -11939,28 +11939,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -12011,7 +12011,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -12044,7 +12044,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -12053,31 +12053,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -12086,7 +12086,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -12098,13 +12098,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -12114,7 +12114,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -12201,7 +12201,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -12210,16 +12210,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -12234,13 +12234,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -12249,10 +12249,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -12291,13 +12291,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -12306,13 +12306,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -12324,28 +12324,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -12402,7 +12402,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -12435,7 +12435,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -12444,31 +12444,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -12477,7 +12477,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -12489,13 +12489,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -12505,7 +12505,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -12592,7 +12592,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -12601,16 +12601,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -12625,13 +12625,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -12640,10 +12640,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -12682,13 +12682,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -12697,13 +12697,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -12715,28 +12715,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -12784,7 +12784,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -12817,7 +12817,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -12826,31 +12826,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -12859,7 +12859,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -12871,13 +12871,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -12887,7 +12887,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -12974,7 +12974,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -12983,16 +12983,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -13007,13 +13007,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -13022,10 +13022,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -13064,13 +13064,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -13079,13 +13079,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -13097,28 +13097,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -13181,7 +13181,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -13214,7 +13214,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -13223,31 +13223,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -13256,7 +13256,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -13268,13 +13268,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -13284,7 +13284,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -13371,7 +13371,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -13380,16 +13380,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -13404,13 +13404,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -13419,10 +13419,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -13461,13 +13461,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -13476,13 +13476,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -13494,28 +13494,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -13596,7 +13596,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -13629,7 +13629,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -13638,31 +13638,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -13671,7 +13671,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -13683,13 +13683,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -13699,7 +13699,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -13786,7 +13786,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -13795,16 +13795,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -13819,13 +13819,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -13834,10 +13834,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -13876,13 +13876,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -13891,13 +13891,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -13909,28 +13909,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -13978,7 +13978,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -14011,7 +14011,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -14020,31 +14020,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -14053,7 +14053,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -14065,13 +14065,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -14081,7 +14081,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -14168,7 +14168,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -14177,16 +14177,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -14201,13 +14201,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -14216,10 +14216,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -14258,13 +14258,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -14273,13 +14273,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -14291,28 +14291,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -14360,7 +14360,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -14393,7 +14393,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -14402,31 +14402,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -14435,7 +14435,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -14447,13 +14447,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -14463,7 +14463,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -14550,7 +14550,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -14559,16 +14559,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -14583,13 +14583,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -14598,10 +14598,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -14640,13 +14640,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -14655,13 +14655,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -14673,28 +14673,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -14757,7 +14757,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -14790,7 +14790,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -14799,31 +14799,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -14832,7 +14832,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -14844,13 +14844,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -14860,7 +14860,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -14947,7 +14947,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -14956,16 +14956,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -14980,13 +14980,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -14995,10 +14995,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -15037,13 +15037,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -15052,13 +15052,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -15070,28 +15070,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -15142,7 +15142,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -15175,7 +15175,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -15184,31 +15184,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -15217,7 +15217,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -15229,13 +15229,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -15245,7 +15245,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -15332,7 +15332,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -15341,16 +15341,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -15365,13 +15365,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -15380,10 +15380,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -15422,13 +15422,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -15437,13 +15437,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -15455,28 +15455,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -15524,7 +15524,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -15557,7 +15557,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -15566,31 +15566,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -15599,7 +15599,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -15611,13 +15611,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -15627,7 +15627,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -15714,7 +15714,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -15723,16 +15723,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -15747,13 +15747,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -15762,10 +15762,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -15804,13 +15804,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -15819,13 +15819,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -15837,28 +15837,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -15912,7 +15912,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -15945,7 +15945,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -15954,31 +15954,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -15987,7 +15987,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -15999,13 +15999,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -16015,7 +16015,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -16102,7 +16102,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -16111,16 +16111,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -16135,13 +16135,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -16150,10 +16150,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -16192,13 +16192,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -16207,13 +16207,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -16225,28 +16225,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -16300,7 +16300,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -16333,7 +16333,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -16342,31 +16342,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -16375,7 +16375,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -16387,13 +16387,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -16403,7 +16403,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -16490,7 +16490,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -16499,16 +16499,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -16523,13 +16523,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -16538,10 +16538,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -16580,13 +16580,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -16595,13 +16595,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -16613,28 +16613,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -16718,7 +16718,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -16751,7 +16751,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -16760,31 +16760,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -16793,7 +16793,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -16805,13 +16805,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -16821,7 +16821,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -16908,7 +16908,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -16917,16 +16917,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -16941,13 +16941,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -16956,10 +16956,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -16998,13 +16998,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -17013,13 +17013,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -17031,28 +17031,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -17103,7 +17103,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -17136,7 +17136,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -17145,31 +17145,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -17178,7 +17178,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -17190,13 +17190,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -17206,7 +17206,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -17293,7 +17293,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -17302,16 +17302,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -17326,13 +17326,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -17341,10 +17341,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -17383,13 +17383,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -17398,13 +17398,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -17416,28 +17416,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -17497,7 +17497,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -17530,7 +17530,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -17539,31 +17539,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -17572,7 +17572,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -17584,13 +17584,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -17600,7 +17600,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -17687,7 +17687,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -17696,16 +17696,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -17720,13 +17720,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -17735,10 +17735,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -17777,13 +17777,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -17792,13 +17792,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -17810,28 +17810,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -17885,7 +17885,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -17918,7 +17918,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -17927,31 +17927,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -17960,7 +17960,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -17972,13 +17972,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -17988,7 +17988,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -18075,7 +18075,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -18084,16 +18084,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -18108,13 +18108,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -18123,10 +18123,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -18165,13 +18165,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -18180,13 +18180,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -18198,28 +18198,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -18267,7 +18267,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -18300,7 +18300,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -18309,31 +18309,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -18342,7 +18342,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -18354,13 +18354,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -18370,7 +18370,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -18457,7 +18457,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -18466,16 +18466,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -18490,13 +18490,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -18505,10 +18505,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -18547,13 +18547,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -18562,13 +18562,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -18580,28 +18580,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -18649,7 +18649,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -18682,7 +18682,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -18691,31 +18691,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -18724,7 +18724,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -18736,13 +18736,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -18752,7 +18752,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -18839,7 +18839,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -18848,16 +18848,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -18872,13 +18872,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -18887,10 +18887,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -18929,13 +18929,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -18944,13 +18944,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.2(tslib@2.6.3) @@ -18962,28 +18962,28 @@ importers: version: 3.2.2(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.10 version: link:../../modules/access-control @@ -19031,7 +19031,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -19064,7 +19064,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -19073,31 +19073,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -19106,7 +19106,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -19118,13 +19118,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -19134,7 +19134,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.0) @@ -19221,7 +19221,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19230,16 +19230,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -19254,13 +19254,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@10.9.2) + version: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -19269,10 +19269,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -19311,13 +19311,13 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19329,25 +19329,25 @@ importers: version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.core.v1': specifier: ^2.21.9 version: link:../admin.core.v1 @@ -19441,7 +19441,7 @@ importers: version: link:../core jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@10.9.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) react: specifier: '*' version: 18.3.1 @@ -19450,14 +19450,14 @@ importers: version: 18.3.1(react@18.3.1) ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) devDependencies: '@types/react': specifier: 18.0.18 version: 18.0.18 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19466,7 +19466,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19484,7 +19484,7 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@16.14.0)(react-router-dom@6.23.1)(react@16.14.0) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.23.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) '@braintree/sanitize-url': specifier: ^5.0.0 version: 5.0.2 @@ -19508,7 +19508,7 @@ importers: version: 2.0.5 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@10.9.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) js-yaml: specifier: 3.13.1 version: 3.13.1 @@ -19523,10 +19523,10 @@ importers: version: 0.10.0 react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@16.14.0)(react@16.14.0) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ua-parser-js: specifier: 0.7.28 version: 0.7.28 @@ -19557,7 +19557,7 @@ importers: version: 0.7.36 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19566,7 +19566,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19578,7 +19578,7 @@ importers: version: 3.0.2 ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19587,10 +19587,10 @@ importers: dependencies: '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/core': specifier: ^2.0.50 version: link:../core @@ -19617,14 +19617,14 @@ importers: version: 6.5.9(final-form@4.20.10)(react@18.3.1) semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1)(react@18.3.1) + version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/jest': specifier: ^29.5.12 version: 29.5.12 @@ -19639,7 +19639,7 @@ importers: version: 5.14.9 '@typescript-eslint/eslint-plugin': specifier: ^4.17.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.17.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19651,7 +19651,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19660,16 +19660,16 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@10.9.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19678,7 +19678,7 @@ importers: dependencies: '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/core': specifier: ^2.0.50 version: link:../core @@ -19702,14 +19702,14 @@ importers: version: 6.5.9(final-form@4.20.10)(react@18.3.1) semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1)(react@18.3.1) + version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/jest': specifier: ^29.5.12 version: 29.5.12 @@ -19721,7 +19721,7 @@ importers: version: 18.0.18 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19730,7 +19730,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19739,16 +19739,16 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@10.9.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19766,14 +19766,14 @@ importers: version: 4.17.21 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1)(react@18.3.1) + version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/jest': specifier: ^29.5.12 version: 29.5.12 @@ -19788,7 +19788,7 @@ importers: version: 5.14.9 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19800,7 +19800,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19809,16 +19809,16 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@10.9.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19848,7 +19848,7 @@ importers: version: 4.17.21 react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@types/i18next': specifier: 8.4.3 @@ -19864,7 +19864,7 @@ importers: version: 13.13.52 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19873,7 +19873,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19882,16 +19882,16 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@10.9.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19903,28 +19903,28 @@ importers: version: 6.2.1(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@storybook/addons': specifier: ^6.5.9 - version: 6.5.16(react-dom@18.3.1)(react@18.3.1) + version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/builder-webpack5': specifier: ^6.5.9 - version: 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/core-server': specifier: ^6.5.9 - version: 6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/manager-webpack5': specifier: ^6.5.9 - version: 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/react': specifier: ^6.5.9 - version: 6.5.16(@babel/core@7.24.7)(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(require-from-string@2.0.2)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3) + version: 6.5.16(@babel/core@7.24.7)(@storybook/builder-webpack5@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/webpack@4.41.38)(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(require-from-string@2.0.2)(sockjs-client@1.6.1)(type-fest@4.20.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1) '@storybook/theming': specifier: ^6.5.9 - version: 6.5.16(react-dom@18.3.1)(react@18.3.1) + version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@wso2is/core': specifier: ^2.0.50 version: link:../core @@ -19966,28 +19966,31 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-markdown: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) + specifier: ^9.0.1 + version: 9.0.1(@types/react@18.0.18)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) react-top-loading-bar: specifier: ^1.2.0 - version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1) + version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-transition-group: specifier: ^4.4.1 - version: 4.4.5(react-dom@18.3.1)(react@18.3.1) + version: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rehype-attr: + specifier: ^3.0.3 + version: 3.0.3 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) storybook: specifier: ^6.5.9 - version: 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) tinycolor: specifier: 0.0.1 version: 0.0.1 @@ -20000,34 +20003,34 @@ importers: version: 7.24.7 '@rollup/plugin-url': specifier: ^7.0.0 - version: 7.0.0(rollup@2.79.1) + version: 7.0.0(rollup@4.18.0) '@storybook/addon-actions': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1)(react@18.3.1) + version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-backgrounds': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1)(react@18.3.1) + version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-controls': specifier: ^6.5.12 - version: 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/addon-docs': specifier: ^6.5.12 - version: 6.5.16(@babel/core@7.24.7)(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1) + version: 6.5.16(@babel/core@7.24.7)(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@storybook/addon-links': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1)(react@18.3.1) + version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-measure': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1)(react@18.3.1) + version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-outline': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1)(react@18.3.1) + version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-toolbars': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1)(react@18.3.1) + version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-viewport': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1)(react@18.3.1) + version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@svgr/rollup': specifier: ^6.2.1 version: 6.5.1 @@ -20066,25 +20069,25 @@ importers: version: 5.3.3 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) babel-loader: specifier: ^8.1.0 - version: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + version: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) babel-plugin-rename-jsx-attribute: specifier: ^0.2.4 - version: 0.2.4(babel-core@6.26.3) + version: 0.2.4(babel-core@7.0.0-bridge.0(@babel/core@7.24.7)) copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -20093,16 +20096,16 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) postcss-import: specifier: ^14.1.0 - version: 14.1.0(postcss@8.4.38) + version: 14.1.0(postcss@7.0.39) postcss-import-ext-glob: specifier: ^2.0.1 - version: 2.1.1(postcss@8.4.38) + version: 2.1.1(postcss@7.0.39) react-docgen-typescript-loader: specifier: ^3.6.0 - version: 3.7.2(typescript@4.9.5)(webpack@5.84.1) + version: 3.7.2(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) react-dom: specifier: ^18.2.0 version: 18.3.1(react@18.3.1) @@ -20111,7 +20114,7 @@ importers: version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^8.5.4 version: 8.10.2(typescript@4.9.5) @@ -20135,7 +20138,7 @@ importers: version: 29.5.12 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -20150,7 +20153,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -20162,7 +20165,7 @@ importers: version: 9.1.0 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@10.9.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) less: specifier: ^3.10.3 version: 3.13.1 @@ -20177,7 +20180,7 @@ importers: version: 0.1.2 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) replace: specifier: ^1.1.5 version: 1.2.2 @@ -20192,10 +20195,10 @@ importers: version: 2.5.0 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) watch: specifier: ^1.0.2 version: 1.0.2 @@ -20217,7 +20220,7 @@ importers: version: 29.5.12 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -20226,7 +20229,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -20235,1096 +20238,14315 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@10.9.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.8.1 - version: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + version: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 packages: - /@adobe/css-tools@4.4.0: + '@adobe/css-tools@4.4.0': resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==} - dev: true - /@ampproject/remapping@2.3.0: + '@ampproject/remapping@2.3.0': resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - /@artsy/fresnel@6.2.1(react@18.3.1): + '@artsy/fresnel@6.2.1': resolution: {integrity: sha512-UAyHZU64Vie3sLDdL3qD+7pODGzKNu9pSpxGKpDOCaiBvCDZnFXIfJEEfV9v9i+QiJJwzO+lqsFwvw6YiJeXFQ==} engines: {node: '>=12.20.2', yarn: 1.x.x} peerDependencies: react: '>=16.3.0' - dependencies: - react: 18.3.1 - dev: false - /@asgardeo/auth-js@5.0.1: + '@asgardeo/auth-js@5.0.1': resolution: {integrity: sha512-XTb/+jPPBAnNGlZYeHVz2Ut5hI8DeJiMmX5YcAijiAvtW4Ove82lT4aLXm+FL8XmCYc+61hFNG1QLf8q2nMfSQ==} - dev: false - - /@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@16.14.0)(react-router-dom@6.23.1)(react@16.14.0): - resolution: {integrity: sha512-PltiGPAUVyekEOun9BMte3H2AmFsihiLisobjax5NxdkpDurvrgUR9xCUh7qKkoQQHq4N1Y5crc8UpCg+hkLmQ==} - peerDependencies: - '@babel/runtime-corejs3': ^7.11.2 - react: '>=16.8' - react-dom: '>=16.8' - react-router-dom: ^6.3.0 - dependencies: - '@asgardeo/auth-spa': 3.0.3 - '@babel/runtime-corejs3': 7.24.7 - react: 16.14.0 - react-dom: 16.14.0(react@16.14.0) - react-router-dom: 6.23.1(react-dom@16.14.0)(react@16.14.0) - transitivePeerDependencies: - - debug - dev: false - /@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1): + '@asgardeo/auth-react@4.0.4': resolution: {integrity: sha512-PltiGPAUVyekEOun9BMte3H2AmFsihiLisobjax5NxdkpDurvrgUR9xCUh7qKkoQQHq4N1Y5crc8UpCg+hkLmQ==} peerDependencies: '@babel/runtime-corejs3': ^7.11.2 react: '>=16.8' react-dom: '>=16.8' react-router-dom: ^6.3.0 - dependencies: - '@asgardeo/auth-spa': 3.0.3 - '@babel/runtime-corejs3': 7.24.7 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-router-dom: 4.3.1(react@18.3.1) - transitivePeerDependencies: - - debug - dev: false - /@asgardeo/auth-spa@3.0.3: + '@asgardeo/auth-spa@3.0.3': resolution: {integrity: sha512-2iRy6Si/xl68EsUV92IuMz0s9/8nFq/a+63Ui0Xr2Ysjc3YsWIO0zVmdpqevZ1J9yzGb9Fyy7uqlKE0QY7m8pA==} - dependencies: - '@asgardeo/auth-js': 5.0.1 - await-semaphore: 0.1.3 - axios: 0.26.1 - base64url: 3.0.1 - buffer: 6.0.3 - fast-sha256: 1.3.0 - jose: 4.15.7 - randombytes: 2.1.0 - transitivePeerDependencies: - - debug - dev: false - /@babel/cli@7.24.7(@babel/core@7.24.7): + '@babel/cli@7.24.7': resolution: {integrity: sha512-8dfPprJgV4O14WTx+AQyEA+opgUKPrsIXX/MdL50J1n06EQJ6m1T+CdsJe0qEC0B/Xl85i+Un5KVAxd/PACX9A==} engines: {node: '>=6.9.0'} hasBin: true peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@jridgewell/trace-mapping': 0.3.25 - commander: 6.2.1 - convert-source-map: 2.0.0 - fs-readdir-recursive: 1.1.0 - glob: 7.2.3 - make-dir: 2.1.0 - slash: 2.0.0 - optionalDependencies: - '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3 - chokidar: 3.6.0 - dev: true - /@babel/code-frame@7.12.11: + '@babel/code-frame@7.12.11': resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} - dependencies: - '@babel/highlight': 7.24.7 - /@babel/code-frame@7.24.7: + '@babel/code-frame@7.24.7': resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/highlight': 7.24.7 - picocolors: 1.0.1 - /@babel/compat-data@7.24.7: + '@babel/compat-data@7.24.7': resolution: {integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==} engines: {node: '>=6.9.0'} - /@babel/core@7.12.9: + '@babel/core@7.12.9': resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.24.7 - '@babel/generator': 7.24.7 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.12.9) - '@babel/helpers': 7.24.7 - '@babel/parser': 7.24.7 - '@babel/template': 7.24.7 - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - convert-source-map: 1.9.0 - debug: 4.3.5(supports-color@6.1.0) - gensync: 1.0.0-beta.2 - json5: 2.2.3 - lodash: 4.17.21 - resolve: 1.22.8 - semver: 5.7.2 - source-map: 0.5.7 - transitivePeerDependencies: - - supports-color - /@babel/core@7.24.7: + '@babel/core@7.24.7': resolution: {integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==} engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.24.7 - '@babel/generator': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) - '@babel/helpers': 7.24.7 - '@babel/parser': 7.24.7 - '@babel/template': 7.24.7 - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - convert-source-map: 2.0.0 - debug: 4.3.5(supports-color@6.1.0) - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - /@babel/generator@7.24.7: + '@babel/generator@7.24.7': resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.24.7 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 2.5.2 - /@babel/helper-annotate-as-pure@7.24.7: + '@babel/helper-annotate-as-pure@7.24.7': resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.24.7 - /@babel/helper-builder-binary-assignment-operator-visitor@7.24.7: + '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7': resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-compilation-targets@7.24.7: + '@babel/helper-compilation-targets@7.24.7': resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/compat-data': 7.24.7 - '@babel/helper-validator-option': 7.24.7 - browserslist: 4.23.1 - lru-cache: 5.1.1 - semver: 6.3.1 - /@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.7): + '@babel/helper-create-class-features-plugin@7.24.7': resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.24.7 - '@babel/helper-optimise-call-expression': 7.24.7 - '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7) - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - /@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.7): + '@babel/helper-create-regexp-features-plugin@7.24.7': resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - regexpu-core: 5.3.2 - semver: 6.3.1 - /@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.24.7): + '@babel/helper-define-polyfill-provider@0.1.5': resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: '@babel/core': ^7.4.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/traverse': 7.24.7 - debug: 4.3.5(supports-color@6.1.0) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - /@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.7): + '@babel/helper-define-polyfill-provider@0.6.2': resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - debug: 4.3.5(supports-color@6.1.0) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - /@babel/helper-environment-visitor@7.24.7: + '@babel/helper-environment-visitor@7.24.7': resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.24.7 - /@babel/helper-function-name@7.24.7: + '@babel/helper-function-name@7.24.7': resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.24.7 - '@babel/types': 7.24.7 - /@babel/helper-hoist-variables@7.24.7: + '@babel/helper-hoist-variables@7.24.7': resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.24.7 - /@babel/helper-member-expression-to-functions@7.24.7: + '@babel/helper-member-expression-to-functions@7.24.7': resolution: {integrity: sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - - /@babel/helper-module-imports@7.24.7: - resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-module-imports@7.24.7(supports-color@5.5.0): + '@babel/helper-module-imports@7.24.7': resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.24.7(supports-color@5.5.0) - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/helper-module-transforms@7.24.7(@babel/core@7.12.9): - resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-simple-access': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/helper-validator-identifier': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7): + '@babel/helper-module-transforms@7.24.7': resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-simple-access': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/helper-validator-identifier': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-optimise-call-expression@7.24.7: + '@babel/helper-optimise-call-expression@7.24.7': resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.24.7 - /@babel/helper-plugin-utils@7.10.4: + '@babel/helper-plugin-utils@7.10.4': resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} - /@babel/helper-plugin-utils@7.24.7: + '@babel/helper-plugin-utils@7.24.7': resolution: {integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==} engines: {node: '>=6.9.0'} - /@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.7): + '@babel/helper-remap-async-to-generator@7.24.7': resolution: {integrity: sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-wrap-function': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-replace-supers@7.24.7(@babel/core@7.24.7): + '@babel/helper-replace-supers@7.24.7': resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.24.7 - '@babel/helper-optimise-call-expression': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-simple-access@7.24.7: + '@babel/helper-simple-access@7.24.7': resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-skip-transparent-expression-wrappers@7.24.7: + '@babel/helper-skip-transparent-expression-wrappers@7.24.7': resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-split-export-declaration@7.24.7: + '@babel/helper-split-export-declaration@7.24.7': resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.24.7 - /@babel/helper-string-parser@7.24.7: + '@babel/helper-string-parser@7.24.7': resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-identifier@7.24.7: + '@babel/helper-validator-identifier@7.24.7': resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-option@7.24.7: + '@babel/helper-validator-option@7.24.7': resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==} engines: {node: '>=6.9.0'} - /@babel/helper-wrap-function@7.24.7: + '@babel/helper-wrap-function@7.24.7': resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-function-name': 7.24.7 - '@babel/template': 7.24.7 - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helpers@7.24.7: + '@babel/helpers@7.24.7': resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.24.7 - '@babel/types': 7.24.7 - /@babel/highlight@7.24.7: + '@babel/highlight@7.24.7': resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.24.7 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.0.1 - /@babel/parser@7.24.7: + '@babel/parser@7.24.7': resolution: {integrity: sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==} engines: {node: '>=6.0.0'} hasBin: true - dependencies: - '@babel/types': 7.24.7 - /@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.7): + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7': resolution: {integrity: sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.7): + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7': resolution: {integrity: sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.7): + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7': resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.7): + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7': resolution: {integrity: sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.7): + '@babel/plugin-proposal-class-properties@7.18.6': 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: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.24.7): + '@babel/plugin-proposal-decorators@7.24.7': resolution: {integrity: sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - /@babel/plugin-proposal-export-default-from@7.24.7(@babel/core@7.24.7): + '@babel/plugin-proposal-export-default-from@7.24.7': resolution: {integrity: sha512-CcmFwUJ3tKhLjPdt4NP+SHMshebytF8ZTYOv5ZDpkzq2sin80Wb5vJrGt8fhPrORQCfoSa0LAxC/DW+GAC5+Hw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.24.7) - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.7): + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6': resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} 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-nullish-coalescing-operator instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) - /@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9): + '@babel/plugin-proposal-object-rest-spread@7.12.1': resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.12.9) - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.7): + '@babel/plugin-proposal-object-rest-spread@7.20.7': resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} 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-object-rest-spread instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.24.7 - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7) - /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.7): + '@babel/plugin-proposal-optional-chaining@7.21.0': resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} 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-optional-chaining instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.24.7): + '@babel/plugin-proposal-private-methods@7.18.6': resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} 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-private-methods instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7): + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.24.7): + '@babel/plugin-proposal-private-property-in-object@7.21.11': resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} 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-private-property-in-object instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7): + '@babel/plugin-syntax-async-generators@7.8.4': resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.7): + '@babel/plugin-syntax-bigint@7.8.3': resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.7): + '@babel/plugin-syntax-class-properties@7.12.13': resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.7): + '@babel/plugin-syntax-class-static-block@7.14.5': resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.24.7): + '@babel/plugin-syntax-decorators@7.24.7': resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.7): + '@babel/plugin-syntax-dynamic-import@7.8.3': resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-export-default-from@7.24.7(@babel/core@7.24.7): + '@babel/plugin-syntax-export-default-from@7.24.7': resolution: {integrity: sha512-bTPz4/635WQ9WhwsyPdxUJDVpsi/X9BMmy/8Rf/UAlOO4jSql4CxUCjWI5PiM+jG+c4LVPTScoTw80geFj9+Bw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.7): + '@babel/plugin-syntax-export-namespace-from@7.8.3': resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-flow@7.24.7(@babel/core@7.24.7): + '@babel/plugin-syntax-flow@7.24.7': resolution: {integrity: sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.7): + '@babel/plugin-syntax-import-assertions@7.24.7': resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.7): + '@babel/plugin-syntax-import-attributes@7.24.7': resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7): + '@babel/plugin-syntax-import-meta@7.10.4': resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7): + '@babel/plugin-syntax-json-strings@7.8.3': resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9): + '@babel/plugin-syntax-jsx@7.12.1': resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7): + '@babel/plugin-syntax-jsx@7.24.7': resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.7): + '@babel/plugin-syntax-logical-assignment-operators@7.10.4': resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7): + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7): + '@babel/plugin-syntax-numeric-separator@7.10.4': resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7): + '@babel/plugin-syntax-object-rest-spread@7.8.3': resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7): + '@babel/plugin-syntax-optional-catch-binding@7.8.3': resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7): + '@babel/plugin-syntax-optional-chaining@7.8.3': resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.7): + '@babel/plugin-syntax-private-property-in-object@7.14.5': resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7): + '@babel/plugin-syntax-top-level-await@7.14.5': resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7): + '@babel/plugin-syntax-typescript@7.24.7': resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.7): + '@babel/plugin-syntax-unicode-sets-regex@7.18.6': resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-arrow-functions@7.24.7': resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-async-generator-functions@7.24.7': resolution: {integrity: sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-async-to-generator@7.24.7': resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-block-scoped-functions@7.24.7': resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-block-scoping@7.24.7': resolution: {integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-class-properties@7.24.7': resolution: {integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-class-static-block@7.24.7': resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-classes@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-classes@7.24.7': resolution: {integrity: sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7) - '@babel/helper-split-export-declaration': 7.24.7 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-computed-properties@7.24.7': resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/template': 7.24.7 - /@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-destructuring@7.24.7': resolution: {integrity: sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-dotall-regex@7.24.7': resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-duplicate-keys@7.24.7': resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-dynamic-import@7.24.7': resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7) - /@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-exponentiation-operator@7.24.7': resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-export-namespace-from@7.24.7': resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7) - /@babel/plugin-transform-flow-strip-types@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-flow-strip-types@7.24.7': resolution: {integrity: sha512-cjRKJ7FobOH2eakx7Ja+KpJRj8+y+/SiB3ooYm/n2UJfxu0oEaOoxOinitkJcPqv9KxS0kxTGPUaR7L2XcXDXA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.7) - /@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-for-of@7.24.7': resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-function-name@7.24.7': resolution: {integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-json-strings@7.24.7': resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7) - /@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-literals@7.24.7': resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-logical-assignment-operators@7.24.7': resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7) - /@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-member-expression-literals@7.24.7': resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-modules-amd@7.24.7': resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: + + '@babel/plugin-transform-modules-commonjs@7.24.7': + resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-systemjs@7.24.7': + resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-umd@7.24.7': + resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-named-capturing-groups-regex@7.24.7': + resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-new-target@7.24.7': + resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-nullish-coalescing-operator@7.24.7': + resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-numeric-separator@7.24.7': + resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-object-rest-spread@7.24.7': + resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-object-super@7.24.7': + resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-optional-catch-binding@7.24.7': + resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-optional-chaining@7.24.7': + resolution: {integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-parameters@7.24.7': + resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-private-methods@7.24.7': + resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-private-property-in-object@7.24.7': + resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-property-literals@7.24.7': + resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-constant-elements@7.24.7': + resolution: {integrity: sha512-7LidzZfUXyfZ8/buRW6qIIHBY8wAZ1OrY9c/wTr8YhZ6vMPo+Uc/CVFLYY1spZrEQlD4w5u8wjqk5NQ3OVqQKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-display-name@7.24.7': + resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-development@7.24.7': + resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx@7.24.7': + resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-pure-annotations@7.24.7': + resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-regenerator@7.24.7': + resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-reserved-words@7.24.7': + resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-runtime@7.24.7': + resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-shorthand-properties@7.24.7': + resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-spread@7.24.7': + resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-sticky-regex@7.24.7': + resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-template-literals@7.24.7': + resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typeof-symbol@7.24.7': + resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typescript@7.24.7': + resolution: {integrity: sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-escapes@7.24.7': + resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-property-regex@7.24.7': + resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-regex@7.24.7': + resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-sets-regex@7.24.7': + resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/polyfill@7.12.1': + resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==} + deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information. + + '@babel/preset-env@7.24.7': + resolution: {integrity: sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-flow@7.24.7': + resolution: {integrity: sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-modules@0.1.6-no-external-plugins': + resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 + + '@babel/preset-react@7.24.7': + resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-typescript@7.24.7': + resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/register@7.24.6': + resolution: {integrity: sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/regjsgen@0.8.0': + resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} + + '@babel/runtime-corejs3@7.24.7': + resolution: {integrity: sha512-eytSX6JLBY6PVAeQa2bFlDx/7Mmln/gaEpsit5a3WEvjGfiIytEsgAwuIXCPM0xvw0v0cJn3ilq0/TvXrW0kgA==} + engines: {node: '>=6.9.0'} + + '@babel/runtime@7.24.7': + resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==} + engines: {node: '>=6.9.0'} + + '@babel/template@7.24.7': + resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.24.7': + resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.24.7': + resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==} + engines: {node: '>=6.9.0'} + + '@base2/pretty-print-object@1.0.1': + resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} + + '@bcoe/v8-coverage@0.2.3': + resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + + '@braintree/sanitize-url@5.0.2': + resolution: {integrity: sha512-NBEJlHWrhQucLhZGHtSxM2loSaNUMajC7KOYJLyfcdW/6goVoff2HoYI3bz8YCDN0wKGbxtUL0gx2dvHpvnWlw==} + deprecated: Potential XSS vulnerability patched in v6.0.0. + + '@changesets/apply-release-plan@7.0.3': + resolution: {integrity: sha512-klL6LCdmfbEe9oyfLxnidIf/stFXmrbFO/3gT5LU5pcyoZytzJe4gWpTBx3BPmyNPl16dZ1xrkcW7b98e3tYkA==} + + '@changesets/assemble-release-plan@6.0.2': + resolution: {integrity: sha512-n9/Tdq+ze+iUtjmq0mZO3pEhJTKkku9hUxtUadW30jlN7kONqJG3O6ALeXrmc6gsi/nvoCuKjqEJ68Hk8RbMTQ==} + + '@changesets/changelog-git@0.2.0': + resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} + + '@changesets/changelog-github@0.4.8': + resolution: {integrity: sha512-jR1DHibkMAb5v/8ym77E4AMNWZKB5NPzw5a5Wtqm1JepAuIF+hrKp2u04NKM14oBZhHglkCfrla9uq8ORnK/dw==} + + '@changesets/cli@2.27.5': + resolution: {integrity: sha512-UVppOvzCjjylBenFcwcZNG5IaZ8jsIaEVraV/pbXgukYNb0Oqa0d8UWb0LkYzA1Bf1HmUrOfccFcRLheRuA7pA==} + hasBin: true + + '@changesets/config@3.0.1': + resolution: {integrity: sha512-nCr8pOemUjvGJ8aUu8TYVjqnUL+++bFOQHBVmtNbLvKzIDkN/uiP/Z4RKmr7NNaiujIURHySDEGFPftR4GbTUA==} + + '@changesets/errors@0.2.0': + resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} + + '@changesets/get-dependents-graph@2.1.0': + resolution: {integrity: sha512-QOt6pQq9RVXKGHPVvyKimJDYJumx7p4DO5MO9AhRJYgAPgv0emhNqAqqysSVKHBm4sxKlGN4S1zXOIb5yCFuhQ==} + + '@changesets/get-github-info@0.5.2': + resolution: {integrity: sha512-JppheLu7S114aEs157fOZDjFqUDpm7eHdq5E8SSR0gUBTEK0cNSHsrSR5a66xs0z3RWuo46QvA3vawp8BxDHvg==} + + '@changesets/get-release-plan@4.0.2': + resolution: {integrity: sha512-rOalz7nMuMV2vyeP7KBeAhqEB7FM2GFPO5RQSoOoUKKH9L6wW3QyPA2K+/rG9kBrWl2HckPVES73/AuwPvbH3w==} + + '@changesets/get-version-range-type@0.4.0': + resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} + + '@changesets/git@3.0.0': + resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} + + '@changesets/logger@0.1.0': + resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} + + '@changesets/parse@0.4.0': + resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} + + '@changesets/pre@2.0.0': + resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} + + '@changesets/read@0.6.0': + resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} + + '@changesets/should-skip-package@0.1.0': + resolution: {integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==} + + '@changesets/types@4.1.0': + resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} + + '@changesets/types@5.2.1': + resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==} + + '@changesets/types@6.0.0': + resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} + + '@changesets/write@0.3.1': + resolution: {integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==} + + '@cnakazawa/watch@1.0.4': + resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==} + engines: {node: '>=0.1.95'} + hasBin: true + + '@colors/colors@1.5.0': + resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} + engines: {node: '>=0.1.90'} + + '@cspotcode/source-map-support@0.8.1': + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} + + '@cypress/request@2.88.12': + resolution: {integrity: sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==} + engines: {node: '>= 6'} + + '@cypress/webpack-preprocessor@5.17.1': + resolution: {integrity: sha512-FE/e8ikPc8z4EVopJCaior3RGy0jd2q9Xcp5NtiwNG4XnLfEnUFTZlAGwXe75sEh4fNMPrBJW1KIz77PX5vGAw==} + peerDependencies: + '@babel/core': ^7.0.1 + '@babel/preset-env': ^7.0.0 + babel-loader: ^8.0.2 || ^9 + webpack: 5.84.1 + + '@cypress/xvfb@1.2.4': + resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} + + '@discoveryjs/json-ext@0.5.7': + resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} + engines: {node: '>=10.0.0'} + + '@emotion/babel-plugin@11.11.0': + resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} + + '@emotion/cache@10.0.29': + resolution: {integrity: sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==} + + '@emotion/cache@11.11.0': + resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==} + + '@emotion/core@10.3.1': + resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==} + peerDependencies: + react: '>=16.3.0' + + '@emotion/css@10.0.27': + resolution: {integrity: sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==} + + '@emotion/hash@0.8.0': + resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} + + '@emotion/hash@0.9.1': + resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==} + + '@emotion/is-prop-valid@0.8.8': + resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} + + '@emotion/is-prop-valid@1.2.2': + resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==} + + '@emotion/memoize@0.7.4': + resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} + + '@emotion/memoize@0.8.1': + resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} + + '@emotion/react@11.11.4': + resolution: {integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==} + peerDependencies: + '@types/react': '*' + react: '>=16.8.0' + peerDependenciesMeta: + '@types/react': + optional: true + + '@emotion/serialize@0.11.16': + resolution: {integrity: sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==} + + '@emotion/serialize@1.1.4': + resolution: {integrity: sha512-RIN04MBT8g+FnDwgvIUi8czvr1LU1alUMI05LekWB5DGyTm8cCBMCRpq3GqaiyEDRptEXOyXnvZ58GZYu4kBxQ==} + + '@emotion/sheet@0.9.4': + resolution: {integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==} + + '@emotion/sheet@1.2.2': + resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} + + '@emotion/styled-base@10.3.0': + resolution: {integrity: sha512-PBRqsVKR7QRNkmfH78hTSSwHWcwDpecH9W6heujWAcyp2wdz/64PP73s7fWS1dIPm8/Exc8JAzYS8dEWXjv60w==} + peerDependencies: + '@emotion/core': ^10.0.28 + react: '>=16.3.0' + + '@emotion/styled@10.3.0': + resolution: {integrity: sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ==} + peerDependencies: + '@emotion/core': ^10.0.27 + react: '>=16.3.0' + + '@emotion/styled@11.11.5': + resolution: {integrity: sha512-/ZjjnaNKvuMPxcIiUkf/9SHoG4Q196DRl1w82hQ3WCsjo1IUR8uaGWrC6a87CrYAW0Kb/pK7hk8BnLgLRi9KoQ==} + peerDependencies: + '@emotion/react': ^11.0.0-rc.0 + '@types/react': '*' + react: '>=16.8.0' + peerDependenciesMeta: + '@types/react': + optional: true + + '@emotion/stylis@0.8.5': + resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==} + + '@emotion/unitless@0.7.5': + resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==} + + '@emotion/unitless@0.8.1': + resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} + + '@emotion/use-insertion-effect-with-fallbacks@1.0.1': + resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} + peerDependencies: + react: '>=16.8.0' + + '@emotion/utils@0.11.3': + resolution: {integrity: sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==} + + '@emotion/utils@1.2.1': + resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} + + '@emotion/weak-memoize@0.2.5': + resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==} + + '@emotion/weak-memoize@0.3.1': + resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==} + + '@eslint-community/eslint-utils@4.4.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 + + '@eslint/eslintrc@0.4.3': + resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} + engines: {node: ^10.12.0 || >=12.0.0} + + '@fluentui/react-component-event-listener@0.63.1': + resolution: {integrity: sha512-gSMdOh6tI3IJKZFqxfQwbTpskpME0CvxdxGM2tdglmf6ZPVDi0L4+KKIm+2dN8nzb8Ya1A8ZT+Ddq0KmZtwVQg==} + peerDependencies: + react: ^16.8.0 || ^17 || ^18 + react-dom: ^16.8.0 || ^17 || ^18 + + '@fluentui/react-component-ref@0.63.1': + resolution: {integrity: sha512-8MkXX4+R3i80msdbD4rFpEB4WWq2UDvGwG386g3ckIWbekdvN9z2kWAd9OXhRGqB7QeOsoAGWocp6gAMCivRlw==} + peerDependencies: + react: ^16.8.0 || ^17 || ^18 + react-dom: ^16.8.0 || ^17 || ^18 + + '@gar/promisify@1.1.3': + resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} + + '@gilbarbara/deep-equal@0.1.2': + resolution: {integrity: sha512-jk+qzItoEb0D0xSSmrKDDzf9sheQj/BAPxlgNxgmOaA3mxpUa6ndJLYGZKsJnIVEQSD8zcTbyILz7I0HcnBCRA==} + + '@gilbarbara/deep-equal@0.3.1': + resolution: {integrity: sha512-I7xWjLs2YSVMc5gGx1Z3ZG1lgFpITPndpi8Ku55GeEIKpACCPQNS/OTqQbxgTCfq0Ncvcc+CrFov96itVh6Qvw==} + + '@hapi/hoek@9.3.0': + resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} + + '@hapi/topo@5.1.0': + resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} + + '@humanwhocodes/config-array@0.5.0': + resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} + engines: {node: '>=10.10.0'} + deprecated: Use @eslint/config-array instead + + '@humanwhocodes/object-schema@1.2.1': + resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + deprecated: Use @eslint/object-schema instead + + '@hutson/parse-repository-url@3.0.2': + resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} + engines: {node: '>=6.9.0'} + + '@icons/material@0.2.4': + resolution: {integrity: sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==} + peerDependencies: + react: '*' + + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + + '@isaacs/string-locale-compare@1.1.0': + resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==} + + '@istanbuljs/load-nyc-config@1.1.0': + resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} + engines: {node: '>=8'} + + '@istanbuljs/schema@0.1.3': + resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + engines: {node: '>=8'} + + '@jest/console@26.6.2': + resolution: {integrity: sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==} + engines: {node: '>= 10.14.2'} + + '@jest/console@28.1.3': + resolution: {integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/console@29.7.0': + resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/core@26.6.3': + resolution: {integrity: sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==} + engines: {node: '>= 10.14.2'} + + '@jest/core@29.7.0': + resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + '@jest/environment@26.6.2': + resolution: {integrity: sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==} + engines: {node: '>= 10.14.2'} + + '@jest/environment@28.1.3': + resolution: {integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/environment@29.7.0': + resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/expect-utils@28.1.3': + resolution: {integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/expect-utils@29.7.0': + resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/expect@28.1.3': + resolution: {integrity: sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/expect@29.7.0': + resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/fake-timers@26.6.2': + resolution: {integrity: sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==} + engines: {node: '>= 10.14.2'} + + '@jest/fake-timers@28.1.3': + resolution: {integrity: sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/fake-timers@29.7.0': + resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/globals@26.6.2': + resolution: {integrity: sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==} + engines: {node: '>= 10.14.2'} + + '@jest/globals@28.1.3': + resolution: {integrity: sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/globals@29.7.0': + resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/reporters@26.6.2': + resolution: {integrity: sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==} + engines: {node: '>= 10.14.2'} + + '@jest/reporters@28.1.1': + resolution: {integrity: sha512-597Zj4D4d88sZrzM4atEGLuO7SdA/YrOv9SRXHXRNC+/FwPCWxZhBAEzhXoiJzfRwn8zes/EjS8Lo6DouGN5Gg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + '@jest/reporters@29.7.0': + resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + '@jest/schemas@28.1.3': + resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/schemas@29.6.3': + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/source-map@26.6.2': + resolution: {integrity: sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==} + engines: {node: '>= 10.14.2'} + + '@jest/source-map@28.1.2': + resolution: {integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/source-map@29.6.3': + resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/test-result@26.6.2': + resolution: {integrity: sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==} + engines: {node: '>= 10.14.2'} + + '@jest/test-result@28.1.1': + resolution: {integrity: sha512-hPmkugBktqL6rRzwWAtp1JtYT4VHwv8OQ+9lE5Gymj6dHzubI/oJHMUpPOt8NrdVWSrz9S7bHjJUmv2ggFoUNQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/test-result@28.1.3': + resolution: {integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/test-result@29.7.0': + resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/test-sequencer@26.6.3': + resolution: {integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==} + engines: {node: '>= 10.14.2'} + + '@jest/test-sequencer@28.1.3': + resolution: {integrity: sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/test-sequencer@29.7.0': + resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/transform@26.6.2': + resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} + engines: {node: '>= 10.14.2'} + + '@jest/transform@28.1.3': + resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/transform@29.7.0': + resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/types@26.6.2': + resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} + engines: {node: '>= 10.14.2'} + + '@jest/types@28.1.3': + resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/types@29.6.3': + resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jridgewell/gen-mapping@0.3.5': + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} + engines: {node: '>=6.0.0'} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + + '@jridgewell/source-map@0.3.6': + resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} + + '@jridgewell/sourcemap-codec@1.4.15': + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + + '@jridgewell/trace-mapping@0.3.9': + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + + '@leichtgewicht/ip-codec@2.0.5': + resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} + + '@lerna/add@5.6.2': + resolution: {integrity: sha512-NHrm7kYiqP+EviguY7/NltJ3G9vGmJW6v2BASUOhP9FZDhYbq3O+rCDlFdoVRNtcyrSg90rZFMOWHph4KOoCQQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/bootstrap@5.6.2': + resolution: {integrity: sha512-S2fMOEXbef7nrybQhzBywIGSLhuiQ5huPp1sU+v9Y6XEBsy/2IA+lb0gsZosvPqlRfMtiaFstL+QunaBhlWECA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/changed@5.6.2': + resolution: {integrity: sha512-uUgrkdj1eYJHQGsXXlpH5oEAfu3x0qzeTjgvpdNrxHEdQWi7zWiW59hRadmiImc14uJJYIwVK5q/QLugrsdGFQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/check-working-tree@5.6.2': + resolution: {integrity: sha512-6Vf3IB6p+iNIubwVgr8A/KOmGh5xb4SyRmhFtAVqe33yWl2p3yc+mU5nGoz4ET3JLF1T9MhsePj0hNt6qyOTLQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/child-process@5.6.2': + resolution: {integrity: sha512-QIOQ3jIbWdduHd5892fbo3u7/dQgbhzEBB7cvf+Ys/iCPP8UQrBECi1lfRgA4kcTKC2MyMz0SoyXZz/lFcXc3A==} + engines: {node: ^14.15.0 || >=16.0.0} + + '@lerna/clean@5.6.2': + resolution: {integrity: sha512-A7j8r0Hk2pGyLUyaCmx4keNHen1L/KdcOjb4nR6X8GtTJR5AeA47a8rRKOCz9wwdyMPlo2Dau7d3RV9viv7a5g==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/cli@5.6.2': + resolution: {integrity: sha512-w0NRIEqDOmYKlA5t0iyqx0hbY7zcozvApmfvwF0lhkuhf3k6LRAFSamtimGQWicC779a7J2NXw4ASuBV47Fs1Q==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/collect-uncommitted@5.6.2': + resolution: {integrity: sha512-i0jhxpypyOsW2PpPwIw4xg6EPh7/N3YuiI6P2yL7PynZ8nOv8DkIdoyMkhUP4gALjBfckH8Bj94eIaKMviqW4w==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/collect-updates@5.6.2': + resolution: {integrity: sha512-DdTK13X6PIsh9HINiMniFeiivAizR/1FBB+hDVe6tOhsXFBfjHMw1xZhXlE+mYIoFmDm1UFK7zvQSexoaxRqFA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/command@5.6.2': + resolution: {integrity: sha512-eLVGI9TmxcaGt1M7TXGhhBZoeWOtOedMiH7NuCGHtL6TMJ9k+SCExyx+KpNmE6ImyNOzws6EvYLPLjftiqmoaA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/conventional-commits@5.6.2': + resolution: {integrity: sha512-fPrJpYJhxCgY2uyOCTcAAC6+T6lUAtpEGxLbjWHWTb13oKKEygp9THoFpe6SbAD0fYMb3jeZCZCqNofM62rmuA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/create-symlink@5.6.2': + resolution: {integrity: sha512-0WIs3P6ohPVh2+t5axrLZDE5Dt7fe3Kv0Auj0sBiBd6MmKZ2oS76apIl0Bspdbv8jX8+TRKGv6ib0280D0dtEw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/create@5.6.2': + resolution: {integrity: sha512-+Y5cMUxMNXjTTU9IHpgRYIwKo39w+blui1P+s+qYlZUSCUAew0xNpOBG8iN0Nc5X9op4U094oIdHxv7Dyz6tWQ==} + engines: {node: ^14.15.0 || >=16.0.0} + + '@lerna/describe-ref@5.6.2': + resolution: {integrity: sha512-UqU0N77aT1W8duYGir7R+Sk3jsY/c4lhcCEcnayMpFScMbAp0ETGsW04cYsHK29sgg+ZCc5zEwebBqabWhMhnA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/diff@5.6.2': + resolution: {integrity: sha512-aHKzKvUvUI8vOcshC2Za/bdz+plM3r/ycqUrPqaERzp+kc1pYHyPeXezydVdEmgmmwmyKI5hx4+2QNnzOnun2A==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/exec@5.6.2': + resolution: {integrity: sha512-meZozok5stK7S0oAVn+kdbTmU+kHj9GTXjW7V8kgwG9ld+JJMTH3nKK1L3mEKyk9TFu9vFWyEOF7HNK6yEOoVg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/filter-options@5.6.2': + resolution: {integrity: sha512-4Z0HIhPak2TabTsUqEBQaQeOqgqEt0qyskvsY0oviYvqP/nrJfJBZh4H93jIiNQF59LJCn5Ce3KJJrLExxjlzw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/filter-packages@5.6.2': + resolution: {integrity: sha512-el9V2lTEG0Bbz+Omo45hATkRVnChCTJhcTpth19cMJ6mQ4M5H4IgbWCJdFMBi/RpTnOhz9BhJxDbj95kuIvvzw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/get-npm-exec-opts@5.6.2': + resolution: {integrity: sha512-0RbSDJ+QC9D5UWZJh3DN7mBIU1NhBmdHOE289oHSkjDY+uEjdzMPkEUy+wZ8fCzMLFnnNQkAEqNaOAzZ7dmFLA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/get-packed@5.6.2': + resolution: {integrity: sha512-pp5nNDmtrtd21aKHjwwOY5CS7XNIHxINzGa+Jholn1jMDYUtdskpN++ZqYbATGpW831++NJuiuBVyqAWi9xbXg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/github-client@5.6.2': + resolution: {integrity: sha512-pjALazZoRZtKqfwLBwmW3HPptVhQm54PvA8s3qhCQ+3JkqrZiIFwkkxNZxs3jwzr+aaSOzfhSzCndg0urb0GXA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/gitlab-client@5.6.2': + resolution: {integrity: sha512-TInJmbrsmYIwUyrRxytjO82KjJbRwm67F7LoZs1shAq6rMvNqi4NxSY9j+hT/939alFmEq1zssoy/caeLXHRfQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/global-options@5.6.2': + resolution: {integrity: sha512-kaKELURXTlczthNJskdOvh6GGMyt24qat0xMoJZ8plYMdofJfhz24h1OFcvB/EwCUwP/XV1+ohE5P+vdktbrEg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/has-npm-version@5.6.2': + resolution: {integrity: sha512-kXCnSzffmTWsaK0ol30coyCfO8WH26HFbmJjRBzKv7VGkuAIcB6gX2gqRRgNLLlvI+Yrp+JSlpVNVnu15SEH2g==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/import@5.6.2': + resolution: {integrity: sha512-xQUE49mtcP0z3KUdXBsyvp8rGDz6phuYUoQbhcFRJ7WPcQKzMvtm0XYrER6c2YWEX7QOuDac6tU82P8zTrTBaA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/info@5.6.2': + resolution: {integrity: sha512-MPjY5Olj+fiZHgfEdwXUFRKamdEuLr9Ob/qut8JsB/oQSQ4ALdQfnrOcMT8lJIcC2R67EA5yav2lHPBIkezm8A==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/init@5.6.2': + resolution: {integrity: sha512-ahU3/lgF+J8kdJAQysihFJROHthkIDXfHmvhw7AYnzf94HjxGNXj7nz6i3At1/dM/1nQhR+4/uNR1/OU4tTYYQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/link@5.6.2': + resolution: {integrity: sha512-hXxQ4R3z6rUF1v2x62oIzLyeHL96u7ZBhxqYMJrm763D1VMSDcHKF9CjJfc6J9vH5Z2ZbL6CQg50Hw5mUpJbjg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/list@5.6.2': + resolution: {integrity: sha512-WjE5O2tQ3TcS+8LqXUaxi0YdldhxUhNihT5+Gg4vzGdIlrPDioO50Zjo9d8jOU7i3LMIk6EzCma0sZr2CVfEGg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/listable@5.6.2': + resolution: {integrity: sha512-8Yp49BwkY/5XqVru38Zko+6Wj/sgbwzJfIGEPy3Qu575r1NA/b9eI1gX22aMsEeXUeGOybR7nWT5ewnPQHjqvA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/log-packed@5.6.2': + resolution: {integrity: sha512-O9GODG7tMtWk+2fufn2MOkIDBYMRoKBhYMHshO5Aw/VIsH76DIxpX1koMzWfUngM/C70R4uNAKcVWineX4qzIw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/npm-conf@5.6.2': + resolution: {integrity: sha512-gWDPhw1wjXYXphk/PAghTLexO5T6abVFhXb+KOMCeem366mY0F5bM88PiorL73aErTNUoR8n+V4X29NTZzDZpQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/npm-dist-tag@5.6.2': + resolution: {integrity: sha512-t2RmxV6Eog4acXkUI+EzWuYVbeVVY139pANIWS9qtdajfgp4GVXZi1S8mAIb70yeHdNpCp1mhK0xpCrFH9LvGQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/npm-install@5.6.2': + resolution: {integrity: sha512-AT226zdEo+uGENd37jwYgdALKJAIJK4pNOfmXWZWzVb9oMOr8I2YSjPYvSYUNG7gOo2YJQU8x5Zd7OShv2924Q==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/npm-publish@5.6.2': + resolution: {integrity: sha512-ldSyewCfv9fAeC5xNjL0HKGSUxcC048EJoe/B+KRUmd+IPidvZxMEzRu08lSC/q3V9YeUv9ZvRnxATXOM8CffA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/npm-run-script@5.6.2': + resolution: {integrity: sha512-MOQoWNcAyJivM8SYp0zELM7vg/Dj07j4YMdxZkey+S1UO0T4/vKBxb575o16hH4WeNzC3Pd7WBlb7C8dLOfNwQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/otplease@5.6.2': + resolution: {integrity: sha512-dGS4lzkEQVTMAgji82jp8RK6UK32wlzrBAO4P4iiVHCUTuwNLsY9oeBXvVXSMrosJnl6Hbe0NOvi43mqSucGoA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/output@5.6.2': + resolution: {integrity: sha512-++d+bfOQwY66yo7q1XuAvRcqtRHCG45e/awP5xQomTZ6R1rhWiZ3whWdc9Z6lF7+UtBB9toSYYffKU/xc3L0yQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/pack-directory@5.6.2': + resolution: {integrity: sha512-w5Jk5fo+HkN4Le7WMOudTcmAymcf0xPd302TqAQncjXpk0cb8tZbj+5bbNHsGb58GRjOIm5icQbHXooQUxbHhA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/package-graph@5.6.2': + resolution: {integrity: sha512-TmL61qBBvA3Tc4qICDirZzdFFwWOA6qicIXUruLiE2PblRowRmCO1bKrrP6XbDOspzwrkPef6N2F2/5gHQAnkQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/package@5.6.2': + resolution: {integrity: sha512-LaOC8moyM5J9WnRiWZkedjOninSclBOJyPqhif6mHb2kCFX6jAroNYzE8KM4cphu8CunHuhI6Ixzswtv+Dultw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/prerelease-id-from-version@5.6.2': + resolution: {integrity: sha512-7gIm9fecWFVNy2kpj/KbH11bRcpyANAwpsft3X5m6J7y7A6FTUscCbEvl3ZNdpQKHNuvnHgCtkm3A5PMSCEgkA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/profiler@5.6.2': + resolution: {integrity: sha512-okwkagP5zyRIOYTceu/9/esW7UZFt7lyL6q6ZgpSG3TYC5Ay+FXLtS6Xiha/FQdVdumFqKULDWTGovzUlxcwaw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/project@5.6.2': + resolution: {integrity: sha512-kPIMcIy/0DVWM91FPMMFmXyAnCuuLm3NdhnA8NusE//VuY9wC6QC/3OwuCY39b2dbko/fPZheqKeAZkkMH6sGg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/prompt@5.6.2': + resolution: {integrity: sha512-4hTNmVYADEr0GJTMegWV+GW6n+dzKx1vN9v2ISqyle283Myv930WxuyO0PeYGqTrkneJsyPreCMovuEGCvZ0iQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/publish@5.6.2': + resolution: {integrity: sha512-QaW0GjMJMuWlRNjeDCjmY/vjriGSWgkLS23yu8VKNtV5U3dt5yIKA3DNGV3HgZACuu45kQxzMDsfLzgzbGNtYA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/pulse-till-done@5.6.2': + resolution: {integrity: sha512-eA/X1RCxU5YGMNZmbgPi+Kyfx1Q3bn4P9jo/LZy+/NRRr1po3ASXP2GJZ1auBh/9A2ELDvvKTOXCVHqczKC6rA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/query-graph@5.6.2': + resolution: {integrity: sha512-KRngr96yBP8XYDi9/U62fnGO+ZXqm04Qk6a2HtoTr/ha8QvO1s7Tgm0xs/G7qWXDQHZgunWIbmK/LhxM7eFQrw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/resolve-symlink@5.6.2': + resolution: {integrity: sha512-PDQy+7M8JEFtwIVHJgWvSxHkxJf9zXCENkvIWDB+SsoDPhw9+caewt46bTeP5iGm9pOMu3oZukaWo/TvF7sNjg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/rimraf-dir@5.6.2': + resolution: {integrity: sha512-jgEfzz7uBUiQKteq3G8MtJiA2D2VoKmZSSY3VSiW/tPOSXYxxSHxEsClQdCeNa6+sYrDNDT8fP6MJ3lPLjDeLA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/run-lifecycle@5.6.2': + resolution: {integrity: sha512-u9gGgq/50Fm8dvfcc/TSHOCAQvzLD7poVanDMhHYWOAqRDnellJEEmA1K/Yka4vZmySrzluahkry9G6jcREt+g==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/run-topologically@5.6.2': + resolution: {integrity: sha512-QQ/jGOIsVvUg3izShWsd67RlWYh9UOH2yw97Ol1zySX9+JspCMVQrn9eKq1Pk8twQOFhT87LpT/aaxbTBgREPw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/run@5.6.2': + resolution: {integrity: sha512-c2kJxdFrNg5KOkrhmgwKKUOsfSrGNlFCe26EttufOJ3xfY0VnXlEw9rHOkTgwtu7969rfCdyaVP1qckMrF1Dgw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/symlink-binary@5.6.2': + resolution: {integrity: sha512-Cth+miwYyO81WAmrQbPBrLHuF+F0UUc0el5kRXLH6j5zzaRS3kMM68r40M7MmfH8m3GPi7691UARoWFEotW5jw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/symlink-dependencies@5.6.2': + resolution: {integrity: sha512-dUVNQLEcjVOIQiT9OlSAKt0ykjyJPy8l9i4NJDe2/0XYaUjo8PWsxJ0vrutz27jzi2aZUy07ASmowQZEmnLHAw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/temp-write@5.6.2': + resolution: {integrity: sha512-S5ZNVTurSwWBmc9kh5alfSjmO3+BnRT6shYtOlmVIUYqWeYVYA5C1Htj322bbU4CSNCMFK6NQl4qGKL17HMuig==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/timer@5.6.2': + resolution: {integrity: sha512-AjMOiLc2B+5Nzdd9hNORetAdZ/WK8YNGX/+2ypzM68TMAPfIT5C40hMlSva9Yg4RsBz22REopXgM5s2zQd5ZQA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/validation-error@5.6.2': + resolution: {integrity: sha512-4WlDUHaa+RSJNyJRtX3gVIAPVzjZD2tle8AJ0ZYBfdZnZmG0VlB2pD1FIbOQPK8sY2h5m0cHLRvfLoLncqHvdQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/version@5.6.2': + resolution: {integrity: sha512-odNSR2rTbHW++xMZSQKu/F6Syrd/sUvwDLPaMKktoOSPKmycHt/eWcuQQyACdtc43Iqeu4uQd7PCLsniqOVFrw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/write-log-file@5.6.2': + resolution: {integrity: sha512-J09l18QnWQ3sXIRwuJkjXY3+KwPR2uO5NgbZGE3GXJK1V/LzOBRMvjGAIbuQHXw25uqe7vpLUpB8drtnFrubCQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@manypkg/find-root@1.1.0': + resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} + + '@manypkg/get-packages@1.1.3': + resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} + + '@mdx-js/mdx@1.6.22': + resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==} + + '@mdx-js/react@1.6.22': + resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} + peerDependencies: + react: ^16.13.1 || ^17.0.0 + + '@mdx-js/util@1.6.22': + resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==} + + '@microsoft/applicationinsights-analytics-js@3.2.2': + resolution: {integrity: sha512-i6/7hYO7lFPE1rMARG6c4bGTuUJUiPb9GRfwMhzArpG39fqduCWpH6y2PdlwZzjyDQAxIOgBiSfLddgsAVoYOA==} + peerDependencies: + tslib: '*' + + '@microsoft/applicationinsights-cfgsync-js@3.2.2': + resolution: {integrity: sha512-W4sQmQC9ZXN8ETYHcXQZl7kMACDkiC/a26OYx9IW8CzgZUI0U3hfDRonaj/1AMkM6zZbC2Zuto4vqpex7abJEg==} + peerDependencies: + tslib: '*' + + '@microsoft/applicationinsights-channel-js@3.2.2': + resolution: {integrity: sha512-4ruoKxgZYYa+K8JJu8RMY0egKazS8xClbx70NQHa/rJ7JYFgN3OIEIBZtFoMcHR8Vg7MEsNE5/wV6o7WWJkVIA==} + peerDependencies: + tslib: '*' + + '@microsoft/applicationinsights-common@2.8.18': + resolution: {integrity: sha512-/PBRmRL6rFCoO3vWpIEHuFnu+TinEYRKWOj+I+XVUH5myZpv+nYvaRdwryVTkmCYxLyL9kxtNn7hQx8DBlhdSw==} + peerDependencies: + tslib: '*' + + '@microsoft/applicationinsights-common@3.2.2': + resolution: {integrity: sha512-e1C35gdkFSzWyUUR1S8FvisXW3nT3p6wWsLNs+vUKLOTQzsvW3XpNMVtNCq4MfHWiYDuz1lPSzo2eENaij1fVA==} + peerDependencies: + tslib: '*' + + '@microsoft/applicationinsights-core-js@2.8.18': + resolution: {integrity: sha512-yPHRZFLpnEO0uSgFPM1BLMRRwjoten9YBbn4pJRbCT4PigLnj748knmWsMwXIdcehtkRTYz78kPYa/LWP7nvmA==} + peerDependencies: + tslib: '*' + + '@microsoft/applicationinsights-core-js@3.2.2': + resolution: {integrity: sha512-dF6LZ4ahdhoHufw+N7OXRDzWT8QN193Dvpd8GLqEZdR/KtCTofPSI63yumu+ZkzKYadf1S3w2xg0OmbdyXexoQ==} + peerDependencies: + tslib: '*' + + '@microsoft/applicationinsights-dependencies-js@3.2.2': + resolution: {integrity: sha512-15EUVU6Kh0B400i/2YNy+V9xMhOwnpzAMTAiyFo90Q1SC5rJIsmzqjAWQnFmxAeq5YQoZ2FuQQpD2qsUajVEQQ==} + peerDependencies: + tslib: '*' + + '@microsoft/applicationinsights-properties-js@3.2.2': + resolution: {integrity: sha512-ovT123foF4WquHdk6f51YpRacx7ZgST7iwqRA/jshy/7NVqlu05JbrVB8IlrxNausdaRwX5CvSCca+SQbOW0ZA==} + peerDependencies: + tslib: '*' + + '@microsoft/applicationinsights-react-js@3.4.3': + resolution: {integrity: sha512-+IIPDYU7DKBwByN7lK/mkMGrnWMGdyIsEZfDzBh/fKDZgGGGgH9B3WHej+vIpdwBcVaPbYx++lonTshn56C9/A==} + peerDependencies: + history: '>= 4.10.1' + react: '>= 17.0.1' + tslib: '*' + + '@microsoft/applicationinsights-shims@2.0.2': + resolution: {integrity: sha512-PoHEgsnmcqruLNHZ/amACqdJ6YYQpED0KSRe6J7gIJTtpZC1FfFU9b1fmDKDKtFoUSrPzEh1qzO3kmRZP0betg==} + + '@microsoft/applicationinsights-shims@3.0.1': + resolution: {integrity: sha512-DKwboF47H1nb33rSUfjqI6ryX29v+2QWcTrRvcQDA32AZr5Ilkr7whOOSsD1aBzwqX0RJEIP1Z81jfE3NBm/Lg==} + + '@microsoft/applicationinsights-web@3.2.2': + resolution: {integrity: sha512-DBJ83Fe7nHzH7QgMKFQrBN/Gbhoo5JgMQkBzJeTb5hMfNZUFOBEHWjytBdU9MEZVpa+Vk+RPQ72IOc0txbnJYw==} + peerDependencies: + tslib: '*' + + '@microsoft/dynamicproto-js@1.1.11': + resolution: {integrity: sha512-gNw9z9LbqLV+WadZ6/MMrWwO3e0LuoUH1wve/1iPsBNbgqeVCiB0EZFNNj2lysxS2gkqoF9hmyVaG3MoM1BkxA==} + + '@microsoft/dynamicproto-js@2.0.3': + resolution: {integrity: sha512-JTWTU80rMy3mdxOjjpaiDQsTLZ6YSGGqsjURsY6AUQtIj0udlF/jYmhdLZu8693ZIC0T1IwYnFa0+QeiMnziBA==} + + '@microsoft/tsdoc-config@0.16.2': + resolution: {integrity: sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==} + + '@microsoft/tsdoc@0.14.2': + resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==} + + '@mole-inc/bin-wrapper@8.0.1': + resolution: {integrity: sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + '@monaco-editor/loader@1.4.0': + resolution: {integrity: sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==} + peerDependencies: + monaco-editor: '>= 0.21.0 < 1' + + '@monaco-editor/react@4.6.0': + resolution: {integrity: sha512-RFkU9/i7cN2bsq/iTkurMWOEErmYcY6JiQI3Jn+WeR/FGISH8JbHERjpS9oRuSOPvDMJI0Z8nJeKkbOs9sBYQw==} + peerDependencies: + monaco-editor: '>= 0.25.0 < 1' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@mrmlnc/readdir-enhanced@2.2.1': + resolution: {integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==} + engines: {node: '>=4'} + + '@mswjs/cookies@0.1.7': + resolution: {integrity: sha512-bDg1ReMBx+PYDB4Pk7y1Q07Zz1iKIEUWQpkEXiA2lEWg9gvOZ8UBmGXilCEUvyYoRFlmr/9iXTRR69TrgSwX/Q==} + + '@mswjs/interceptors@0.12.7': + resolution: {integrity: sha512-eGjZ3JRAt0Fzi5FgXiV/P3bJGj0NqsN7vBS0J0FO2AQRQ0jCKQS4lEFm4wvlSgKQNfeuc/Vz6d81VtU3Gkx/zg==} + + '@mui/base@5.0.0-alpha.128': + resolution: {integrity: sha512-wub3wxNN+hUp8hzilMlXX3sZrPo75vsy1cXEQpqdTfIFlE9HprP1jlulFiPg5tfPst2OKmygXr2hhmgvAKRrzQ==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + '@mui/base@5.0.0-beta.0': + resolution: {integrity: sha512-ap+juKvt8R8n3cBqd/pGtZydQ4v2I/hgJKnvJRGjpSh3RvsvnDHO4rXov8MHQlH6VqpOekwgilFLGxMZjNTucA==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + '@mui/core-downloads-tracker@5.15.20': + resolution: {integrity: sha512-DoL2ppgldL16utL8nNyj/P12f8mCNdx/Hb/AJnX9rLY4b52hCMIx1kH83pbXQ6uMy6n54M3StmEbvSGoj2OFuA==} + + '@mui/icons-material@5.15.20': + resolution: {integrity: sha512-oGcKmCuHaYbAAoLN67WKSXtHmEgyWcJToT1uRtmPyxMj9N5uqwc/mRtEnst4Wj/eGr+zYH2FiZQ79v9k7kSk1Q==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@mui/material': 5.13.0 + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + '@mui/lab@5.0.0-alpha.129': + resolution: {integrity: sha512-niv2mFgSTgdrRJXbWoX9pIivhe80BaFXfdWajXe1bS8VYH3Y5WyJpk8KiU3rbHyJswbFEGd8N6EBBrq11X8yMA==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@emotion/react': ^11.5.0 + '@emotion/styled': ^11.3.0 + '@mui/material': 5.13.0 + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + '@types/react': + optional: true + + '@mui/material@5.13.0': + resolution: {integrity: sha512-ckS+9tCpAzpdJdaTF+btF0b6mF9wbXg/EVKtnoAWYi0UKXoXBAVvEUMNpLGA5xdpCdf+A6fPbVUEHs9TsfU+Yw==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@emotion/react': ^11.5.0 + '@emotion/styled': ^11.3.0 + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + '@types/react': + optional: true + + '@mui/private-theming@5.15.20': + resolution: {integrity: sha512-BK8F94AIqSrnaPYXf2KAOjGZJgWfvqAVQ2gVR3EryvQFtuBnG6RwodxrCvd3B48VuMy6Wsk897+lQMUxJyk+6g==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + '@mui/styled-engine@5.15.14': + resolution: {integrity: sha512-RILkuVD8gY6PvjZjqnWhz8fu68dVkqhM5+jYWfB5yhlSQKg+2rHkmEwm75XIeAqI3qwOndK6zELK5H6Zxn4NHw==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@emotion/react': ^11.4.1 + '@emotion/styled': ^11.3.0 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + + '@mui/system@5.15.20': + resolution: {integrity: sha512-LoMq4IlAAhxzL2VNUDBTQxAb4chnBe8JvRINVNDiMtHE2PiPOoHlhOPutSxEbaL5mkECPVWSv6p8JEV+uykwIA==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@emotion/react': ^11.5.0 + '@emotion/styled': ^11.3.0 + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + '@types/react': + optional: true + + '@mui/types@7.2.14': + resolution: {integrity: sha512-MZsBZ4q4HfzBsywtXgM1Ksj6HDThtiwmOKUXH1pKYISI9gAVXCNHNpo7TlGoGrBaYWZTdNoirIN7JsQcQUjmQQ==} + peerDependencies: + '@types/react': 18.0.18 + peerDependenciesMeta: + '@types/react': + optional: true + + '@mui/utils@5.15.20': + resolution: {integrity: sha512-mAbYx0sovrnpAu1zHc3MDIhPqL8RPVC5W5xcO1b7PiSCJPtckIZmBkp8hefamAvUiAV8gpfMOM6Zb+eSisbI2A==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + '@mui/x-data-grid@6.20.1': + resolution: {integrity: sha512-x1muWWIG9otkk4FuvoTxH3I4foyA1caFu8ZC9TvMQ+7NSBKcfy/JeLQfKkZk8ACUUosvENdrRIkhqU2xdIqIVg==} + engines: {node: '>=14.0.0'} + peerDependencies: + '@mui/material': 5.13.0 + '@mui/system': ^5.4.1 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + + '@nevware21/ts-async@0.5.1': + resolution: {integrity: sha512-O2kN8n2HpDWJ7Oji+oTMnhITrCndmrNvrHbGDwAIBydx+FWvLE/vrw4QwnRRMvSCa2AJrcP59Ryklxv30KfkWQ==} + + '@nevware21/ts-utils@0.11.2': + resolution: {integrity: sha512-80W8BkS09kkGuUHJX50Fqq+QqAslxUaOQytH+3JhRacXs1EpEt2JOOkYKytqFZAYir3SeH9fahniEaDzIBxlUw==} + + '@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3': + resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@1.1.3': + resolution: {integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==} + engines: {node: '>= 6'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@npmcli/arborist@5.3.0': + resolution: {integrity: sha512-+rZ9zgL1lnbl8Xbb1NQdMjveOMwj4lIYfcDtyJHHi5x4X8jtR6m8SXooJMZy5vmFVZ8w7A2Bnd/oX9eTuU8w5A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true + + '@npmcli/fs@1.1.1': + resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} + + '@npmcli/fs@2.1.2': + resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@npmcli/git@3.0.2': + resolution: {integrity: sha512-CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@npmcli/installed-package-contents@1.0.7': + resolution: {integrity: sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==} + engines: {node: '>= 10'} + hasBin: true + + '@npmcli/map-workspaces@2.0.4': + resolution: {integrity: sha512-bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@npmcli/metavuln-calculator@3.1.1': + resolution: {integrity: sha512-n69ygIaqAedecLeVH3KnO39M6ZHiJ2dEv5A7DGvcqCB8q17BGUgW8QaanIkbWUo2aYGZqJaOORTLAlIvKjNDKA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@npmcli/move-file@1.1.2': + resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} + engines: {node: '>=10'} + deprecated: This functionality has been moved to @npmcli/fs + + '@npmcli/move-file@2.0.1': + resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This functionality has been moved to @npmcli/fs + + '@npmcli/name-from-folder@1.0.1': + resolution: {integrity: sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA==} + + '@npmcli/node-gyp@2.0.0': + resolution: {integrity: sha512-doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@npmcli/package-json@2.0.0': + resolution: {integrity: sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@npmcli/promise-spawn@3.0.0': + resolution: {integrity: sha512-s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@npmcli/run-script@4.2.1': + resolution: {integrity: sha512-7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@nrwl/cli@14.8.8': + resolution: {integrity: sha512-xV1Mu93w5e1Vsd3Pgy9eFC1MHjuLxAAHta5cNgQGxjev+XpnNrGb0x978zpenX7dJ0Pww3Vvi/vdcsaDNg6z4Q==} + + '@nrwl/cypress@14.8.8': + resolution: {integrity: sha512-CSrs4YPZnDFcwyt2zKtyxVNdJH+UMRyg0L3h5lCpSJIOYYr2fUuVKUmq3Z4BzCt1/+q8sA2x4HjRMLhtn6ZbGg==} + peerDependencies: + cypress: '>= 3 < 11' + peerDependenciesMeta: + cypress: + optional: true + + '@nrwl/devkit@14.8.8': + resolution: {integrity: sha512-NLgLRfGyv9aMHxGi+rrVRPLYbuqYoGcRVVr0bo3PP1cVSry1THBoLivvPzqf/tniM1S4EzJdrOSau7dfPVGNFA==} + peerDependencies: + nx: '>= 13.10 <= 15' + + '@nrwl/eslint-plugin-nx@14.8.8': + resolution: {integrity: sha512-adML8IqZTRroEJXQiol65Zwe531ryu1Ayhk0N28ZhBGq2T4IFLNaZwHkZtOWSfOpAFFkYIL6N+LfIHlRKHLUYg==} + peerDependencies: + '@typescript-eslint/parser': ^5.29.0 + eslint-config-prettier: ^8.1.0 + peerDependenciesMeta: + eslint-config-prettier: + optional: true + + '@nrwl/jest@14.8.8': + resolution: {integrity: sha512-zyUKxKmd6joaSPOniKzvHNp2U4kilrFXAeLDsuKbxcXQSQjO7hy7/rFZbU5jfB82Es41HrrL86W8gLAgLN421w==} + + '@nrwl/js@14.8.8': + resolution: {integrity: sha512-U9gAREO0ZOu/pMDrO05f2Z88gxhIyulqlhlbe05PgFYkPXFR712bSKZX2dIH9P1Buk7QYzQWz5vpnGrX0kV8VQ==} + + '@nrwl/linter@14.8.8': + resolution: {integrity: sha512-Siu4KogGRJpESVgWqv1mXM28aqs7e/Uerb4miaSflCfXAhJo7kbsALfDOomhqubvGyE5r4dyorLMtVPbZA5iFg==} + peerDependencies: + eslint: ^8.0.0 + peerDependenciesMeta: + eslint: + optional: true + + '@nrwl/nx-plugin@14.8.8': + resolution: {integrity: sha512-A+clJVUMXC1W0JS3W4hTQ5HI1khQrljVuQRIkjWBNNMnRh7CGcgZIfRt2lx9OrbtoU4uX89oT5DaAtcOVsab0Q==} + + '@nrwl/react@14.8.8': + resolution: {integrity: sha512-VzUJGty9lIBi6VbGB8vSA0jnHlE1dPQj4+W6Vhgpdd2bLQCIBXQZQgX895dFQk6KZ3r1MtuikNPsi4YjJbNJ0w==} + + '@nrwl/rollup@14.8.8': + resolution: {integrity: sha512-l9RSwMjBVi1Qz6Uf5g6za7vtRD5VYPcKV+fUn6sUvglCGUcxH0bP+RARbgNK0NpibfoCp+vo2qmMMhVmqbuHpQ==} + + '@nrwl/storybook@14.8.8': + resolution: {integrity: sha512-N/ZEfmxqujgxJvF0jXu7UBlZmJpeNITqbXlghx3vuzr2XOh8PmQXFQWa3UYtzSgFbb+T2KwX6Wii83zBnSWJMA==} + + '@nrwl/tao@14.8.8': + resolution: {integrity: sha512-cfTNM2cgI1miKLkGemU09v72EEYiRxyRw1jdHJ/zShcvcvt8CZI9mUtcV578Cx1K2yNFLseFkUS0rGh+fbcmrA==} + hasBin: true + + '@nrwl/web@14.8.8': + resolution: {integrity: sha512-wsnE9nACCbkSPKHsIhNFI1vVytNAwG8mo0ig6MDbo7y55Lg9zkRhdHxAchCViL12An8l+Qt/hjoQbOdsOuUBaA==} + + '@nrwl/webpack@14.8.8': + resolution: {integrity: sha512-1uKRuP4aMJAFlHnY16J6CpAjkGFzmt+q4hAGDLxtqPDDdk9cDm5Kiiw0yT+xehgE/HCAa9/iRk3VwlTbjs6GzA==} + + '@nrwl/workspace@14.8.8': + resolution: {integrity: sha512-wxrc8k9XF2Dlq/TujgLWh1bYm4gX5yCooZIQ1EIPvSnnpTl080KKEJ+6YJExQtqE6tOF0W9zVvpkmtVGdS63Ig==} + peerDependencies: + prettier: ^2.6.2 + peerDependenciesMeta: + prettier: + optional: true + + '@octokit/auth-token@3.0.4': + resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==} + engines: {node: '>= 14'} + + '@octokit/core@4.2.4': + resolution: {integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==} + engines: {node: '>= 14'} + + '@octokit/endpoint@7.0.6': + resolution: {integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==} + engines: {node: '>= 14'} + + '@octokit/graphql@5.0.6': + resolution: {integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==} + engines: {node: '>= 14'} + + '@octokit/openapi-types@18.1.1': + resolution: {integrity: sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==} + + '@octokit/plugin-enterprise-rest@6.0.1': + resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==} + + '@octokit/plugin-paginate-rest@6.1.2': + resolution: {integrity: sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==} + engines: {node: '>= 14'} + peerDependencies: + '@octokit/core': '>=4' + + '@octokit/plugin-request-log@1.0.4': + resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} + peerDependencies: + '@octokit/core': '>=3' + + '@octokit/plugin-rest-endpoint-methods@7.2.3': + resolution: {integrity: sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==} + engines: {node: '>= 14'} + peerDependencies: + '@octokit/core': '>=3' + + '@octokit/request-error@3.0.3': + resolution: {integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==} + engines: {node: '>= 14'} + + '@octokit/request@6.2.8': + resolution: {integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==} + engines: {node: '>= 14'} + + '@octokit/rest@19.0.13': + resolution: {integrity: sha512-/EzVox5V9gYGdbAI+ovYj3nXQT1TtTHRT+0eZPcuC05UFSWO3mdO9UY1C0i2eLF9Un1ONJkAk+IEtYGAC+TahA==} + engines: {node: '>= 14'} + + '@octokit/tsconfig@1.0.2': + resolution: {integrity: sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==} + + '@octokit/types@10.0.0': + resolution: {integrity: sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==} + + '@octokit/types@9.3.2': + resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==} + + '@one-ini/wasm@0.1.1': + resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} + + '@open-draft/until@1.0.3': + resolution: {integrity: sha512-Aq58f5HiWdyDlFffbbSjAlv596h/cOnt2DO1w3DOC7OJ5EHs0hd/nycJfiu9RJbT6Yk6F1knnRRXNSpxoIVZ9Q==} + + '@oxygen-ui/primitives@1.11.0': + resolution: {integrity: sha512-z1d75MVfkYYrLiBRFPJJNvcMc1/j5qd9eZZGMXH04Ipg1VbVHj3DGl6BvqRGIHeBdNtm3NgjBwx8VfqHQ/i6HA==} + + '@oxygen-ui/react-icons@1.11.0': + resolution: {integrity: sha512-qb1bCzC6c0xecRHneQy6T0LlGNLMvqomw1kuExubstn1kcebF7Y+TH8hjlrr4F3tp+upTBRXNEsVAUeq24Xnpw==} + peerDependencies: + react: '>=18.0.0' + react-dom: '>=18.0.0' + typescript: '>=4.0.0' + peerDependenciesMeta: + typescript: + optional: true + + '@oxygen-ui/react@1.11.0': + resolution: {integrity: sha512-Ij9E3CvX/fNGQkWbH6ic9LNsldFHeuy/2adksNsJLQgVsbvPct/coXyPYF8duH17dPEu6nksEHJwIfxoz9ekww==} + peerDependencies: + '@emotion/react': ^11.10.5 + '@emotion/styled': ^11.10.5 + '@mui/icons-material': ^5.10.16 + '@mui/lab': 5.0.0-alpha.110 + '@mui/material': 5.13.0 + '@mui/system': ^5.10.16 + '@mui/utils': ^5.10.16 + react: '>=18.0.0' + react-dom: '>=18.0.0' + typescript: '>=4.0.0' + peerDependenciesMeta: + typescript: + optional: true + + '@parcel/watcher@2.0.4': + resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==} + engines: {node: '>= 10.0.0'} + + '@phenomnomnominal/tsquery@4.1.1': + resolution: {integrity: sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==} + peerDependencies: + typescript: ^3 || ^4 + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@pmmmwh/react-refresh-webpack-plugin@0.4.3': + resolution: {integrity: sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==} + engines: {node: '>= 10.x'} + peerDependencies: + '@types/webpack': 4.x + react-refresh: '>=0.8.3 <0.10.0' + sockjs-client: ^1.4.0 + type-fest: ^0.13.1 + webpack: 5.84.1 + webpack-dev-server: 3.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + '@types/webpack': + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true + + '@pmmmwh/react-refresh-webpack-plugin@0.5.15': + resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==} + engines: {node: '>= 10.13'} + peerDependencies: + '@types/webpack': 4.x || 5.x + react-refresh: '>=0.10.0 <1.0.0' + sockjs-client: ^1.4.0 + type-fest: '>=0.17.0 <5.0.0' + webpack: 5.84.1 + webpack-dev-server: 3.x || 4.x || 5.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + '@types/webpack': + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true + + '@polka/url@1.0.0-next.25': + resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} + + '@popperjs/core@2.11.8': + resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} + + '@reactflow/background@11.2.2': + resolution: {integrity: sha512-gOtae79Zx1zOs9tD4tmKfuiQQOyG0O81BWBCHqlAQgemKlYExElFKOC67lgTDZ4GGFK+4sXrgrWQ5h14hzaFgg==} + peerDependencies: + react: '>=17' + react-dom: '>=17' + + '@reactflow/controls@11.1.13': + resolution: {integrity: sha512-rA74+mbt2bnz9Fba6JL1JsKHNNEK6Nl70+ssfOLKMpRFIg512IroayBWufgPJB82X9dgMIzZfx/UcEFFUFJQ8Q==} + peerDependencies: + react: '>=17' + react-dom: '>=17' + + '@reactflow/core@11.7.2': + resolution: {integrity: sha512-AhszxILp1RNk3SwrnC/eYh1XsOil5yzthYG5k+oTpvLH5H3BtIWIVkeLEJwmL611lPKL3JuScfjliUxBm9128w==} + peerDependencies: + react: '>=17' + react-dom: '>=17' + + '@reactflow/minimap@11.5.2': + resolution: {integrity: sha512-564gP/GMZKaJjVRGIrVLv2gIjgc89+qvNwuZzHnQLXjBw5+nS/QkW57Qx/M33MxVAaM+Z5rJ8gKknMSnxekwvQ==} + peerDependencies: + react: '>=17' + react-dom: '>=17' + + '@reactflow/node-resizer@2.1.0': + resolution: {integrity: sha512-DVL8nnWsltP8/iANadAcTaDB4wsEkx2mOLlBEPNE3yc5loSm3u9l5m4enXRcBym61MiMuTtDPzZMyYYQUjuYIg==} + peerDependencies: + react: '>=17' + react-dom: '>=17' + + '@reactflow/node-toolbar@1.2.1': + resolution: {integrity: sha512-EcMUMzJGAACYQTiUaBm3zxeiiKCPwU2MaoDeZdnEMbvq+2SfohKOur6JklANjv30kL+Pf3xj8QopEtyKTS4XrA==} + peerDependencies: + react: '>=17' + react-dom: '>=17' + + '@remix-run/router@1.16.1': + resolution: {integrity: sha512-es2g3dq6Nb07iFxGk5GuHN20RwBZOsuDQN7izWIisUcv9r+d2C5jQxqmgkdebXgReWfiyUabcki6Fg77mSNrig==} + engines: {node: '>=14.0.0'} + + '@rollup/plugin-babel@5.3.1': + resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} + engines: {node: '>= 10.0.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@types/babel__core': ^7.1.9 + rollup: ^1.20.0||^2.0.0 + peerDependenciesMeta: + '@types/babel__core': + optional: true + + '@rollup/plugin-commonjs@20.0.0': + resolution: {integrity: sha512-5K0g5W2Ol8hAcTHqcTBHiA7M58tfmYi1o9KxeJuuRNpGaTa5iLjcyemBitCBcKXaHamOBBEH2dGom6v6Unmqjg==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^2.38.3 + + '@rollup/plugin-commonjs@25.0.8': + resolution: {integrity: sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.68.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-dynamic-import-vars@2.1.2': + resolution: {integrity: sha512-4lr2oXxs9hcxtGGaK8s0i9evfjzDrAs7ngw28TqruWKTEm0+U4Eljb+F6HXGYdFv8xRojQlrQwV7M/yxeh3yzQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-image@2.1.1': + resolution: {integrity: sha512-AgP4U85zuQJdUopLUCM+hTf45RepgXeTb8EJsleExVy99dIoYpt3ZlDYJdKmAc2KLkNntCDg6BPJvgJU3uGF+g==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 + + '@rollup/plugin-image@3.0.3': + resolution: {integrity: sha512-qXWQwsXpvD4trSb8PeFPFajp8JLpRtqqOeNYRUKnEQNHm7e5UP7fuSRcbjQAJ7wDZBbnJvSdY5ujNBQd9B1iFg==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-inject@5.0.5': + resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-json@4.1.0': + resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 + + '@rollup/plugin-json@6.1.0': + resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-node-resolve@13.3.0': + resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} + engines: {node: '>= 10.0.0'} + peerDependencies: + rollup: ^2.42.0 + + '@rollup/plugin-node-resolve@15.2.3': + resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.78.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-typescript@11.1.6': + resolution: {integrity: sha512-R92yOmIACgYdJ7dJ97p4K69I8gg6IEHt8M7dUBxN3W6nrO8uUxX5ixl0yU/N3aZTi8WhPuICvOHXQvF6FaykAA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.14.0||^3.0.0||^4.0.0 + tslib: '*' + typescript: '>=3.7.0' + peerDependenciesMeta: + rollup: + optional: true + tslib: + optional: true + + '@rollup/plugin-url@7.0.0': + resolution: {integrity: sha512-cIWcEObrmEPAU8q8NluGWlCPlQDuoSKvkyI3eOFO4fx6W02mLNj4ZEiUT0X2mKMIvQzoWL1feEK9d1yr1ICgrw==} + engines: {node: '>=10.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 + + '@rollup/pluginutils@3.1.0': + resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 + + '@rollup/pluginutils@4.2.1': + resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} + engines: {node: '>= 8.0.0'} + + '@rollup/pluginutils@5.1.0': + resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/rollup-android-arm-eabi@4.18.0': + resolution: {integrity: sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.18.0': + resolution: {integrity: sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.18.0': + resolution: {integrity: sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.18.0': + resolution: {integrity: sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-linux-arm-gnueabihf@4.18.0': + resolution: {integrity: sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.18.0': + resolution: {integrity: sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.18.0': + resolution: {integrity: sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.18.0': + resolution: {integrity: sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-powerpc64le-gnu@4.18.0': + resolution: {integrity: sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.18.0': + resolution: {integrity: sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.18.0': + resolution: {integrity: sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.18.0': + resolution: {integrity: sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.18.0': + resolution: {integrity: sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.18.0': + resolution: {integrity: sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.18.0': + resolution: {integrity: sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.18.0': + resolution: {integrity: sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==} + cpu: [x64] + os: [win32] + + '@semantic-ui-react/event-stack@3.1.3': + resolution: {integrity: sha512-FdTmJyWvJaYinHrKRsMLDrz4tTMGdFfds299Qory53hBugiDvGC0tEJf+cHsi5igDwWb/CLOgOiChInHwq8URQ==} + peerDependencies: + react: ^16.0.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 + + '@sideway/address@4.1.5': + resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} + + '@sideway/formula@3.0.1': + resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} + + '@sideway/pinpoint@2.0.0': + resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} + + '@sinclair/typebox@0.24.51': + resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==} + + '@sinclair/typebox@0.27.8': + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + + '@sindresorhus/is@0.14.0': + resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} + engines: {node: '>=6'} + + '@sindresorhus/is@4.6.0': + resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} + engines: {node: '>=10'} + + '@sindresorhus/merge-streams@2.3.0': + resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} + engines: {node: '>=18'} + + '@sinonjs/commons@1.8.6': + resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} + + '@sinonjs/commons@3.0.1': + resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} + + '@sinonjs/fake-timers@10.3.0': + resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} + + '@sinonjs/fake-timers@6.0.1': + resolution: {integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==} + + '@sinonjs/fake-timers@9.1.2': + resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==} + + '@storybook/addon-actions@6.5.16': + resolution: {integrity: sha512-aADjilFmuD6TNGz2CRPSupnyiA/IGkPJHDBTqMpsDXTUr8xnuD122xkIhg6UxmCM2y1c+ncwYXy3WPK2xXK57g==} + 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 + + '@storybook/addon-backgrounds@6.5.16': + resolution: {integrity: sha512-t7qooZ892BruhilFmzYPbysFwpULt/q4zYXNSmKVbAYta8UVvitjcU4F18p8FpWd9WvhiTr0SDlyhNZuzvDfug==} + 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 + + '@storybook/addon-controls@6.5.16': + resolution: {integrity: sha512-kShSGjq1MjmmyL3l8i+uPz6yddtf82mzys0l82VKtcuyjrr5944wYFJ5NTXMfZxrO/U6FeFsfuFZE/k6ex3EMg==} + 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 + + '@storybook/addon-docs@6.5.16': + resolution: {integrity: sha512-QM9WDZG9P02UvbzLu947a8ZngOrQeAKAT8jCibQFM/+RJ39xBlfm8rm+cQy3dm94wgtjmVkA3mKGOV/yrrsddg==} + peerDependencies: + '@storybook/mdx2-csf': ^0.0.3 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@storybook/mdx2-csf': + optional: true + react: + optional: true + react-dom: + optional: true + + '@storybook/addon-links@6.5.16': + resolution: {integrity: sha512-P/mmqK57NGXnR0i3d/T5B0rIt0Lg8Yq+qionRr3LK3AwG/4yGnYt4GNomLEknn/eEwABYq1Q/Z1aOpgIhNdq5A==} + 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 + + '@storybook/addon-measure@6.5.16': + resolution: {integrity: sha512-DMwnXkmM2L6POTh4KaOWvOAtQ2p9Tr1UUNxz6VXiN5cKFohpCs6x0txdLU5WN8eWIq0VFsO7u5ZX34CGCc6gCg==} + 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 + + '@storybook/addon-outline@6.5.16': + resolution: {integrity: sha512-0du96nha4qltexO0Xq1xB7LeRSbqjC9XqtZLflXG7/X3ABoPD2cXgOV97eeaXUodIyb2qYBbHUfftBeA75x0+w==} + 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 + + '@storybook/addon-toolbars@6.5.16': + resolution: {integrity: sha512-y3PuUKiwOWrAvqx1YdUvArg0UaAwmboXFeR2bkrowk1xcT+xnRO3rML4npFeUl26OQ1FzwxX/cw6nknREBBLEA==} + 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 + + '@storybook/addon-viewport@6.5.16': + resolution: {integrity: sha512-1Vyqf1U6Qng6TXlf4SdqUKyizlw1Wn6+qW8YeA2q1lbkJqn3UlnHXIp8Q0t/5q1dK5BFtREox3+jkGwbJrzkmA==} + 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 + + '@storybook/addons@6.4.22': + resolution: {integrity: sha512-P/R+Jsxh7pawKLYo8MtE3QU/ilRFKbtCewV/T1o5U/gm8v7hKQdFz3YdRMAra4QuCY8bQIp7MKd2HrB5aH5a1A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + + '@storybook/addons@6.5.16': + resolution: {integrity: sha512-p3DqQi+8QRL5k7jXhXmJZLsE/GqHqyY6PcoA1oNTJr0try48uhTGUOYkgzmqtDaa/qPFO5LP+xCPzZXckGtquQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/api@6.4.22': + resolution: {integrity: sha512-lAVI3o2hKupYHXFTt+1nqFct942up5dHH6YD7SZZJGyW21dwKC3HK1IzCsTawq3fZAKkgWFgmOO649hKk60yKg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + + '@storybook/api@6.5.16': + resolution: {integrity: sha512-HOsuT8iomqeTMQJrRx5U8nsC7lJTwRr1DhdD0SzlqL4c80S/7uuCy4IZvOt4sYQjOzW5fOo/kamcoBXyLproTA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/builder-webpack4@6.4.22': + resolution: {integrity: sha512-A+GgGtKGnBneRFSFkDarUIgUTI8pYFdLmUVKEAGdh2hL+vLXAz9A46sEY7C8LQ85XWa8TKy3OTDxqR4+4iWj3A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/builder-webpack4@6.5.16': + resolution: {integrity: sha512-YqDIrVNsUo8r9xc6AxsYDLxVYtMgl5Bxk+8/h1adsOko+jAFhdg6hOcAVxEmoSI0TMASOOVMFlT2hr23ppN2rQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/builder-webpack5@6.4.22': + resolution: {integrity: sha512-vvQ0HgkIIVz+cmaCXIRor0UFZbGZqh4aV0ISSof60BjdW5ld+R+XCr/bdTU6Zg8b2fL9CXh7/LE6fImnIMpRIA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/builder-webpack5@6.5.16': + resolution: {integrity: sha512-kh8Sofm1sbijaHDWtm0sXabqACHVFjikU/fIkkW786kpjoPIPIec1a+hrLgDsZxMU3I7XapSOaCFzWt6FjVXjg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/channel-postmessage@6.4.22': + resolution: {integrity: sha512-gt+0VZLszt2XZyQMh8E94TqjHZ8ZFXZ+Lv/Mmzl0Yogsc2H+6VzTTQO4sv0IIx6xLbpgG72g5cr8VHsxW5kuDQ==} + + '@storybook/channel-postmessage@6.5.16': + resolution: {integrity: sha512-fZZSN29dsUArWOx7e7lTdMA9+7zijVwCwbvi2Fo4fqhRLh1DsTb/VXfz1FKMCWAjNlcX7QQvV25tnxbqsD6lyw==} + + '@storybook/channel-websocket@6.4.22': + resolution: {integrity: sha512-Bm/FcZ4Su4SAK5DmhyKKfHkr7HiHBui6PNutmFkASJInrL9wBduBfN8YQYaV7ztr8ezoHqnYRx8sj28jpwa6NA==} + + '@storybook/channel-websocket@6.5.16': + resolution: {integrity: sha512-wJg2lpBjmRC2GJFzmhB9kxlh109VE58r/0WhFtLbwKvPqsvGf82xkBEl6BtBCvIQ4stzYnj/XijjA8qSi2zpOg==} + + '@storybook/channels@6.4.22': + resolution: {integrity: sha512-cfR74tu7MLah1A8Rru5sak71I+kH2e/sY6gkpVmlvBj4hEmdZp4Puj9PTeaKcMXh9DgIDPNA5mb8yvQH6VcyxQ==} + + '@storybook/channels@6.5.16': + resolution: {integrity: sha512-VylzaWQZaMozEwZPJdyJoz+0jpDa8GRyaqu9TGG6QGv+KU5POoZaGLDkRE7TzWkyyP0KQLo80K99MssZCpgSeg==} + + '@storybook/cli@6.5.16': + resolution: {integrity: sha512-6hcIUvoQxmK9OZ/dmt2eXMbdeCJseRjLwIk4y2SdWd3chpjMDUVhIMJHU4qc2+6rbK+iwL7JAsOUEu/ywkgEow==} + hasBin: true + + '@storybook/client-api@6.4.22': + resolution: {integrity: sha512-sO6HJNtrrdit7dNXQcZMdlmmZG1k6TswH3gAyP/DoYajycrTwSJ6ovkarzkO+0QcJ+etgra4TEdTIXiGHBMe/A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + + '@storybook/client-api@6.5.16': + resolution: {integrity: sha512-i3UwkzzUFw8I+E6fOcgB5sc4oU2fhvaKnqC1mpd9IYGJ9JN9MnGIaVl3Ko28DtFItu/QabC9JsLIJVripFLktQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/client-logger@6.4.22': + resolution: {integrity: sha512-LXhxh/lcDsdGnK8kimqfhu3C0+D2ylCSPPQNbU0IsLRmTfbpQYMdyl0XBjPdHiRVwlL7Gkw5OMjYemQgJ02zlw==} + + '@storybook/client-logger@6.5.16': + resolution: {integrity: sha512-pxcNaCj3ItDdicPTXTtmYJE3YC1SjxFrBmHcyrN+nffeNyiMuViJdOOZzzzucTUG0wcOOX8jaSyak+nnHg5H1Q==} + + '@storybook/codemod@6.5.16': + resolution: {integrity: sha512-bYu0QzkWpgILFdQnbIsnICfL08Z4xmLSmL0Rq9WWGRnSnNnGzX5P57gz+fW7+NHFGxdCTCuHJPvwAXGuJQApPQ==} + + '@storybook/components@6.4.22': + resolution: {integrity: sha512-dCbXIJF9orMvH72VtAfCQsYbe57OP7fAADtR6YTwfCw9Sm1jFuZr8JbblQ1HcrXEoJG21nOyad3Hm5EYVb/sBw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + + '@storybook/components@6.5.16': + resolution: {integrity: sha512-LzBOFJKITLtDcbW9jXl0/PaG+4xAz25PK8JxPZpIALbmOpYWOAPcO6V9C2heX6e6NgWFMUxjplkULEk9RCQMNA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/core-client@6.4.22': + resolution: {integrity: sha512-uHg4yfCBeM6eASSVxStWRVTZrAnb4FT6X6v/xDqr4uXCpCttZLlBzrSDwPBLNNLtCa7ntRicHM8eGKIOD5lMYQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + webpack: 5.84.1 + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/core-client@6.5.16': + resolution: {integrity: sha512-14IRaDrVtKrQ+gNWC0wPwkCNfkZOKghYV/swCUnQX3rP99defsZK8Hc7xHIYoAiOP5+sc3sweRAxgmFiJeQ1Ig==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + webpack: 5.84.1 + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/core-common@6.4.22': + resolution: {integrity: sha512-PD3N/FJXPNRHeQS2zdgzYFtqPLdi3MLwAicbnw+U3SokcsspfsAuyYHZOYZgwO8IAEKy6iCc7TpBdiSJZ/vAKQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/core-common@6.5.16': + resolution: {integrity: sha512-2qtnKP3TTOzt2cp6LXKRTh7XrI9z5VanMnMTgeoFcA5ebnndD4V6BExQUdYPClE/QooLx6blUWNgS9dFEpjSqQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/core-events@6.4.22': + resolution: {integrity: sha512-5GYY5+1gd58Gxjqex27RVaX6qbfIQmJxcbzbNpXGNSqwqAuIIepcV1rdCVm6I4C3Yb7/AQ3cN5dVbf33QxRIwA==} + + '@storybook/core-events@6.5.16': + resolution: {integrity: sha512-qMZQwmvzpH5F2uwNUllTPg6eZXr2OaYZQRRN8VZJiuorZzDNdAFmiVWMWdkThwmyLEJuQKXxqCL8lMj/7PPM+g==} + + '@storybook/core-server@6.4.22': + resolution: {integrity: sha512-wFh3e2fa0un1d4+BJP+nd3FVWUO7uHTqv3OGBfOmzQMKp4NU1zaBNdSQG7Hz6mw0fYPBPZgBjPfsJRwIYLLZyw==} + peerDependencies: + '@storybook/builder-webpack5': 6.4.22 + '@storybook/manager-webpack5': 6.4.22 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + '@storybook/builder-webpack5': + optional: true + '@storybook/manager-webpack5': + optional: true + typescript: + optional: true + + '@storybook/core-server@6.5.16': + resolution: {integrity: sha512-/3NPfmNyply395Dm0zaVZ8P9aruwO+tPx4D6/jpw8aqrRSwvAMndPMpoMCm0NXcpSm5rdX+Je4S3JW6JcggFkA==} + peerDependencies: + '@storybook/builder-webpack5': '*' + '@storybook/manager-webpack5': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + '@storybook/builder-webpack5': + optional: true + '@storybook/manager-webpack5': + optional: true + typescript: + optional: true + + '@storybook/core@6.4.22': + resolution: {integrity: sha512-KZYJt7GM5NgKFXbPRZZZPEONZ5u/tE/cRbMdkn/zWN3He8+VP+65/tz8hbriI/6m91AWVWkBKrODSkeq59NgRA==} + peerDependencies: + '@storybook/builder-webpack5': 6.4.22 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + webpack: 5.84.1 + peerDependenciesMeta: + '@storybook/builder-webpack5': + optional: true + typescript: + optional: true + + '@storybook/core@6.5.16': + resolution: {integrity: sha512-CEF3QFTsm/VMnMKtRNr4rRdLeIkIG0g1t26WcmxTdSThNPBd8CsWzQJ7Jqu7CKiut+MU4A1LMOwbwCE5F2gmyA==} + peerDependencies: + '@storybook/builder-webpack5': '*' + '@storybook/manager-webpack5': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + webpack: 5.84.1 + peerDependenciesMeta: + '@storybook/builder-webpack5': + optional: true + '@storybook/manager-webpack5': + optional: true + typescript: + optional: true + + '@storybook/csf-tools@6.4.22': + resolution: {integrity: sha512-LMu8MZAiQspJAtMBLU2zitsIkqQv7jOwX7ih5JrXlyaDticH7l2j6Q+1mCZNWUOiMTizj0ivulmUsSaYbpToSw==} + + '@storybook/csf-tools@6.5.16': + resolution: {integrity: sha512-+WD4sH/OwAfXZX3IN6/LOZ9D9iGEFcN+Vvgv9wOsLRgsAZ10DG/NK6c1unXKDM/ogJtJYccNI8Hd+qNE/GFV6A==} + peerDependencies: + '@storybook/mdx2-csf': ^0.0.3 + peerDependenciesMeta: + '@storybook/mdx2-csf': + optional: true + + '@storybook/csf@0.0.2--canary.4566f4d.1': + resolution: {integrity: sha512-9OVvMVh3t9znYZwb0Svf/YQoxX2gVOeQTGe2bses2yj+a3+OJnCrUF3/hGv6Em7KujtOdL2LL+JnG49oMVGFgQ==} + + '@storybook/csf@0.0.2--canary.87bc651.0': + resolution: {integrity: sha512-ajk1Uxa+rBpFQHKrCcTmJyQBXZ5slfwHVEaKlkuFaW77it8RgbPJp/ccna3sgoi8oZ7FkkOyvv1Ve4SmwFqRqw==} + + '@storybook/docs-tools@6.5.16': + resolution: {integrity: sha512-o+rAWPRGifjBF5xZzTKOqnHN3XQWkl0QFJYVDIiJYJrVll7ExCkpEq/PahOGzIBBV+tpMstJgmKM3lr/lu/jmg==} + + '@storybook/manager-webpack4@6.4.22': + resolution: {integrity: sha512-nzhDMJYg0vXdcG0ctwE6YFZBX71+5NYaTGkxg3xT7gbgnP1YFXn9gVODvgq3tPb3gcRapjyOIxUa20rV+r8edA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/manager-webpack4@6.5.16': + resolution: {integrity: sha512-5VJZwmQU6AgdsBPsYdu886UKBHQ9SJEnFMaeUxKEclXk+iRsmbzlL4GHKyVd6oGX/ZaecZtcHPR6xrzmA4Ziew==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/manager-webpack5@6.4.22': + resolution: {integrity: sha512-BMkOMselT4jOn7EQGt748FurM5ewtDfZtOQPCVK8MZX+HYE2AgjNOzm562TYODIxk12Fkhgj3EIz7GGMe1U3RA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/manager-webpack5@6.5.16': + resolution: {integrity: sha512-OtxXv8JCe0r/0rE5HxaFicsNsXA+fqZxzokxquFFgrYf/1Jg4d7QX6/pG5wINF+5qInJfVkRG6xhPzv1s5bk9Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/mdx1-csf@0.0.1': + resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} + + '@storybook/node-logger@6.4.22': + resolution: {integrity: sha512-sUXYFqPxiqM7gGH7gBXvO89YEO42nA4gBicJKZjj9e+W4QQLrftjF9l+mAw2K0mVE10Bn7r4pfs5oEZ0aruyyA==} + + '@storybook/node-logger@6.5.16': + resolution: {integrity: sha512-YjhBKrclQtjhqFNSO+BZK+RXOx6EQypAELJKoLFaawg331e8VUfvUuRCNB3fcEWp8G9oH13PQQte0OTjLyyOYg==} + + '@storybook/postinstall@6.5.16': + resolution: {integrity: sha512-08K2q+qN6pqyPW7PHLCZ5G5Xa6Wosd6t0F16PQ4abX2ItlJLabVoJN5mZ0gm/aeLTjD8QYr8IDvacu4eXh0SVA==} + + '@storybook/preview-web@6.4.22': + resolution: {integrity: sha512-sWS+sgvwSvcNY83hDtWUUL75O2l2LY/GTAS0Zp2dh3WkObhtuJ/UehftzPZlZmmv7PCwhb4Q3+tZDKzMlFxnKQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + + '@storybook/preview-web@6.5.16': + resolution: {integrity: sha512-IJnvfe2sKCfk7apN9Fu9U8qibbarrPX5JB55ZzK1amSHVmSDuYk5MIMc/U3NnSQNnvd1DO5v/zMcGgj563hrtg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/react-docgen-typescript-plugin@1.0.2-canary.253f8c1.0': + resolution: {integrity: sha512-mmoRG/rNzAiTbh+vGP8d57dfcR2aP+5/Ll03KKFyfy5FqWFm/Gh7u27ikx1I3LmVMI8n6jh5SdWMkMKon7/tDw==} + peerDependencies: + typescript: '>= 3.x' + webpack: 5.84.1 + + '@storybook/react-docgen-typescript-plugin@1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0': + resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==} + peerDependencies: + typescript: '>= 3.x' + webpack: 5.84.1 + + '@storybook/react@6.4.22': + resolution: {integrity: sha512-5BFxtiguOcePS5Ty/UoH7C6odmvBYIZutfiy4R3Ua6FYmtxac5vP9r5KjCz1IzZKT8mCf4X+PuK1YvDrPPROgQ==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + '@babel/core': ^7.11.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + '@babel/core': + optional: true + typescript: + optional: true + + '@storybook/react@6.5.16': + resolution: {integrity: sha512-cBtNlOzf/MySpNLBK22lJ8wFU22HnfTB2xJyBk7W7Zi71Lm7Uxkhv1Pz8HdiQndJ0SlsAAQOWjQYsSZsGkZIaA==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + '@babel/core': ^7.11.5 + '@storybook/builder-webpack4': '*' + '@storybook/builder-webpack5': '*' + '@storybook/manager-webpack4': '*' + '@storybook/manager-webpack5': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + require-from-string: ^2.0.2 + typescript: '*' + peerDependenciesMeta: + '@babel/core': + optional: true + '@storybook/builder-webpack4': + optional: true + '@storybook/builder-webpack5': + optional: true + '@storybook/manager-webpack4': + optional: true + '@storybook/manager-webpack5': + optional: true + typescript: + optional: true + + '@storybook/router@6.4.22': + resolution: {integrity: sha512-zeuE8ZgFhNerQX8sICQYNYL65QEi3okyzw7ynF58Ud6nRw4fMxSOHcj2T+nZCIU5ufozRL4QWD/Rg9P2s/HtLw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + + '@storybook/router@6.5.16': + resolution: {integrity: sha512-ZgeP8a5YV/iuKbv31V8DjPxlV4AzorRiR8OuSt/KqaiYXNXlOoQDz/qMmiNcrshrfLpmkzoq7fSo4T8lWo2UwQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/semver@7.3.2': + resolution: {integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==} + engines: {node: '>=10'} + hasBin: true + + '@storybook/source-loader@6.5.16': + resolution: {integrity: sha512-fyVl4jrM/5JLrb48aqXPu7sTsmySQaVGFp1zfeqvPPlJRFMastDrePm5XGPN7Qjv1wsKmpuBvuweFKOT1pru3g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/store@6.4.22': + resolution: {integrity: sha512-lrmcZtYJLc2emO+1l6AG4Txm9445K6Pyv9cGAuhOJ9Kks0aYe0YtvMkZVVry0RNNAIv6Ypz72zyKc/QK+tZLAQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + + '@storybook/store@6.5.16': + resolution: {integrity: sha512-g+bVL5hmMq/9cM51K04e37OviUPHT0rHHrRm5wj/hrf18Kd9120b3sxdQ5Dc+HZ292yuME0n+cyrQPTYx9Epmw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/telemetry@6.5.16': + resolution: {integrity: sha512-CWr5Uko1l9jJW88yTXsZTj/3GTabPvw0o7pDPOXPp8JRZiJTxv1JFaFCafhK9UzYbgcRuGfCC8kEWPZims7iKA==} + + '@storybook/theming@6.4.22': + resolution: {integrity: sha512-NVMKH/jxSPtnMTO4VCN1k47uztq+u9fWv4GSnzq/eezxdGg9ceGL4/lCrNGoNajht9xbrsZ4QvsJ/V2sVGM8wA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + + '@storybook/theming@6.5.16': + resolution: {integrity: sha512-hNLctkjaYLRdk1+xYTkC1mg4dYz2wSv6SqbLpcKMbkPHTE0ElhddGPHQqB362md/w9emYXNkt1LSMD8Xk9JzVQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/ui@6.4.22': + resolution: {integrity: sha512-UVjMoyVsqPr+mkS1L7m30O/xrdIEgZ5SCWsvqhmyMUok3F3tRB+6M+OA5Yy+cIVfvObpA7MhxirUT1elCGXsWQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + + '@storybook/ui@6.5.16': + resolution: {integrity: sha512-rHn/n12WM8BaXtZ3IApNZCiS+C4Oc5+Lkl4MoctX8V7QSml0SxZBB5hsJ/AiWkgbRxjQpa/L/Nt7/Qw0FjTH/A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@svgr/babel-plugin-add-jsx-attribute@4.2.0': + resolution: {integrity: sha512-j7KnilGyZzYr/jhcrSYS3FGWMZVaqyCG0vzMCwzvei0coIkczuYMcniK07nI0aHJINciujjH11T72ICW5eL5Ig==} + engines: {node: '>=8'} + + '@svgr/babel-plugin-add-jsx-attribute@5.4.0': + resolution: {integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-add-jsx-attribute@6.5.1': + resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-remove-jsx-attribute@4.2.0': + resolution: {integrity: sha512-3XHLtJ+HbRCH4n28S7y/yZoEQnRpl0tvTZQsHqvaeNXPra+6vE5tbRliH3ox1yZYPCxrlqaJT/Mg+75GpDKlvQ==} + engines: {node: '>=8'} + + '@svgr/babel-plugin-remove-jsx-attribute@5.4.0': + resolution: {integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-remove-jsx-attribute@8.0.0': + resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-remove-jsx-empty-expression@4.2.0': + resolution: {integrity: sha512-yTr2iLdf6oEuUE9MsRdvt0NmdpMBAkgK8Bjhl6epb+eQWk6abBaX3d65UZ3E3FWaOwePyUgNyNCMVG61gGCQ7w==} + engines: {node: '>=8'} + + '@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1': + resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0': + resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-replace-jsx-attribute-value@4.2.0': + resolution: {integrity: sha512-U9m870Kqm0ko8beHawRXLGLvSi/ZMrl89gJ5BNcT452fAjtF2p4uRzXkdzvGJJJYBgx7BmqlDjBN/eCp5AAX2w==} + engines: {node: '>=8'} + + '@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1': + resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1': + resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-svg-dynamic-title@4.3.3': + resolution: {integrity: sha512-w3Be6xUNdwgParsvxkkeZb545VhXEwjGMwExMVBIdPQJeyMQHqm9Msnb2a1teHBqUYL66qtwfhNkbj1iarCG7w==} + engines: {node: '>=8'} + + '@svgr/babel-plugin-svg-dynamic-title@5.4.0': + resolution: {integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-svg-dynamic-title@6.5.1': + resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-svg-em-dimensions@4.2.0': + resolution: {integrity: sha512-C0Uy+BHolCHGOZ8Dnr1zXy/KgpBOkEUYY9kI/HseHVPeMbluaX3CijJr7D4C5uR8zrc1T64nnq/k63ydQuGt4w==} + engines: {node: '>=8'} + + '@svgr/babel-plugin-svg-em-dimensions@5.4.0': + resolution: {integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-svg-em-dimensions@6.5.1': + resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-transform-react-native-svg@4.2.0': + resolution: {integrity: sha512-7YvynOpZDpCOUoIVlaaOUU87J4Z6RdD6spYN4eUb5tfPoKGSF9OG2NuhgYnq4jSkAxcpMaXWPf1cePkzmqTPNw==} + engines: {node: '>=8'} + + '@svgr/babel-plugin-transform-react-native-svg@5.4.0': + resolution: {integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-transform-react-native-svg@6.5.1': + resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-transform-svg-component@4.2.0': + resolution: {integrity: sha512-hYfYuZhQPCBVotABsXKSCfel2slf/yvJY8heTVX1PCTaq/IgASq1IyxPPKJ0chWREEKewIU/JMSsIGBtK1KKxw==} + engines: {node: '>=8'} + + '@svgr/babel-plugin-transform-svg-component@5.5.0': + resolution: {integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-transform-svg-component@6.5.1': + resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} + engines: {node: '>=12'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-preset@4.3.3': + resolution: {integrity: sha512-6PG80tdz4eAlYUN3g5GZiUjg2FMcp+Wn6rtnz5WJG9ITGEF1pmFdzq02597Hn0OmnQuCVaBYQE1OVFAnwOl+0A==} + engines: {node: '>=8'} + + '@svgr/babel-preset@5.5.0': + resolution: {integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==} + engines: {node: '>=10'} + + '@svgr/babel-preset@6.5.1': + resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/core@4.3.3': + resolution: {integrity: sha512-qNuGF1QON1626UCaZamWt5yedpgOytvLj5BQZe2j1k1B8DUG4OyugZyfEwBeXozCUwhLEpsrgPrE+eCu4fY17w==} + engines: {node: '>=8'} + + '@svgr/core@5.5.0': + resolution: {integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==} + engines: {node: '>=10'} + + '@svgr/core@6.5.1': + resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} + engines: {node: '>=10'} + + '@svgr/hast-util-to-babel-ast@4.3.2': + resolution: {integrity: sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg==} + engines: {node: '>=8'} + + '@svgr/hast-util-to-babel-ast@5.5.0': + resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} + engines: {node: '>=10'} + + '@svgr/hast-util-to-babel-ast@6.5.1': + resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} + engines: {node: '>=10'} + + '@svgr/plugin-jsx@4.3.3': + resolution: {integrity: sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w==} + engines: {node: '>=8'} + + '@svgr/plugin-jsx@5.5.0': + resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} + engines: {node: '>=10'} + + '@svgr/plugin-jsx@6.5.1': + resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==} + engines: {node: '>=10'} + peerDependencies: + '@svgr/core': ^6.0.0 + + '@svgr/plugin-svgo@4.3.1': + resolution: {integrity: sha512-PrMtEDUWjX3Ea65JsVCwTIXuSqa3CG9px+DluF1/eo9mlDrgrtFE7NE/DjdhjJgSM9wenlVBzkzneSIUgfUI/w==} + engines: {node: '>=8'} + + '@svgr/plugin-svgo@5.5.0': + resolution: {integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==} + engines: {node: '>=10'} + + '@svgr/plugin-svgo@6.5.1': + resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==} + engines: {node: '>=10'} + peerDependencies: + '@svgr/core': '*' + + '@svgr/rollup@6.5.1': + resolution: {integrity: sha512-GeUfq0grJfpcn2jRWRaZ4npn27nnWK21vUj6MqDqknuJnEqGADcZZjO9wrUAaPLr3InAnQi0Z7nwiNUdzkaj6A==} + engines: {node: '>=10'} + + '@svgr/webpack@4.3.2': + resolution: {integrity: sha512-F3VE5OvyOWBEd2bF7BdtFRyI6E9it3mN7teDw0JQTlVtc4HZEYiiLSl+Uf9Uub6IYHVGc+qIrxxDyeedkQru2w==} + engines: {node: '>=8'} + + '@svgr/webpack@5.5.0': + resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==} + engines: {node: '>=10'} + + '@svgr/webpack@6.5.1': + resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==} + engines: {node: '>=10'} + + '@swc-node/core@1.13.1': + resolution: {integrity: sha512-emB5l2nZsXjUEAuusqjYvWnQMLWZp6K039Mv8aq5SX1rsNM/N7DNhw1i4/DX7AyzNZ0tT+ASWyTvqEURldp5HA==} + engines: {node: '>= 10'} + peerDependencies: + '@swc/core': '>= 1.4.13' + '@swc/types': '>= 0.1' + + '@swc-node/register@1.9.2': + resolution: {integrity: sha512-BBjg0QNuEEmJSoU/++JOXhrjWdu3PTyYeJWsvchsI0Aqtj8ICkz/DqlwtXbmZVZ5vuDPpTfFlwDBZe81zgShMA==} + peerDependencies: + '@swc/core': '>= 1.4.13' + typescript: '>= 4.3' + + '@swc-node/sourcemap-support@0.5.0': + resolution: {integrity: sha512-fbhjL5G0YvFoWwNhWleuBUfotiX+USiA9oJqu9STFw+Hb0Cgnddn+HVS/K5fI45mn92e8V+cHD2jgFjk4w2T9Q==} + + '@swc/cli@0.1.65': + resolution: {integrity: sha512-4NcgsvJVHhA7trDnMmkGLLvWMHu2kSy+qHx6QwRhhJhdiYdNUrhdp+ERxen73sYtaeEOYeLJcWrQ60nzKi6rpg==} + engines: {node: '>= 12.13'} + hasBin: true + peerDependencies: + '@swc/core': ^1.2.66 + chokidar: ^3.5.1 + peerDependenciesMeta: + chokidar: + optional: true + + '@swc/core-darwin-arm64@1.6.5': + resolution: {integrity: sha512-RGQhMdni2v1/ANQ/2K+F+QYdzaucekYBewZcX1ogqJ8G5sbPaBdYdDN1qQ4kHLCIkPtGP6qC7c71qPEqL2RidQ==} + engines: {node: '>=10'} + cpu: [arm64] + os: [darwin] + + '@swc/core-darwin-x64@1.6.5': + resolution: {integrity: sha512-/pSN0/Jtcbbb9+ovS9rKxR3qertpFAM3OEJr/+Dh/8yy7jK5G5EFPIrfsw/7Q5987ERPIJIH6BspK2CBB2tgcg==} + engines: {node: '>=10'} + cpu: [x64] + os: [darwin] + + '@swc/core-linux-arm-gnueabihf@1.6.5': + resolution: {integrity: sha512-B0g/dROCE747RRegs/jPHuKJgwXLracDhnqQa80kFdgWEMjlcb7OMCgs5OX86yJGRS4qcYbiMGD0Pp7Kbqn3yw==} + engines: {node: '>=10'} + cpu: [arm] + os: [linux] + + '@swc/core-linux-arm64-gnu@1.6.5': + resolution: {integrity: sha512-W8meapgXTq8AOtSvDG4yKR8ant2WWD++yOjgzAleB5VAC+oC+aa8YJROGxj8HepurU8kurqzcialwoMeq5SZZQ==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + + '@swc/core-linux-arm64-musl@1.6.5': + resolution: {integrity: sha512-jyCKqoX50Fg8rJUQqh4u5PqnE7nqYKXHjVH2WcYr114/MU21zlsI+YL6aOQU1XP8bJQ2gPQ1rnlnGJdEHiKS/w==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + + '@swc/core-linux-x64-gnu@1.6.5': + resolution: {integrity: sha512-G6HmUn/RRIlXC0YYFfBz2qh6OZkHS/KUPkhoG4X9ADcgWXXjOFh6JrefwsYj8VBAJEnr5iewzjNfj+nztwHaeA==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + + '@swc/core-linux-x64-musl@1.6.5': + resolution: {integrity: sha512-AQpBjBnelQDSbeTJA50AXdS6+CP66LsXIMNTwhPSgUfE7Bx1ggZV11Fsi4Q5SGcs6a8Qw1cuYKN57ZfZC5QOuA==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + + '@swc/core-win32-arm64-msvc@1.6.5': + resolution: {integrity: sha512-MZTWM8kUwS30pVrtbzSGEXtek46aXNb/mT9D6rsS7NvOuv2w+qZhjR1rzf4LNbbn5f8VnR4Nac1WIOYZmfC5ng==} + engines: {node: '>=10'} + cpu: [arm64] + os: [win32] + + '@swc/core-win32-ia32-msvc@1.6.5': + resolution: {integrity: sha512-WZdu4gISAr3yOm1fVwKhhk6+MrP7kVX0KMP7+ZQFTN5zXQEiDSDunEJKVgjMVj3vlR+6mnAqa/L0V9Qa8+zKlQ==} + engines: {node: '>=10'} + cpu: [ia32] + os: [win32] + + '@swc/core-win32-x64-msvc@1.6.5': + resolution: {integrity: sha512-ezXgucnMTzlFIxQZw7ls/5r2hseFaRoDL04cuXUOs97E8r+nJSmFsRQm/ygH5jBeXNo59nyZCalrjJAjwfgACA==} + engines: {node: '>=10'} + cpu: [x64] + os: [win32] + + '@swc/core@1.6.5': + resolution: {integrity: sha512-tyVvUK/HDOUUsK6/GmWvnqUtD9oDpPUA4f7f7JCOV8hXxtfjMtAZeBKf93yrB1XZet69TDR7EN0hFC6i4MF0Ig==} + engines: {node: '>=10'} + peerDependencies: + '@swc/helpers': '*' + peerDependenciesMeta: + '@swc/helpers': + optional: true + + '@swc/counter@0.1.3': + resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} + + '@swc/helpers@0.3.17': + resolution: {integrity: sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==} + + '@swc/types@0.1.9': + resolution: {integrity: sha512-qKnCno++jzcJ4lM4NTfYifm1EFSCeIfKiAHAfkENZAV5Kl9PjJIyd2yeeVv6c/2CckuLyv2NmRC5pv6pm2WQBg==} + + '@szmarczak/http-timer@1.1.2': + resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} + engines: {node: '>=6'} + + '@szmarczak/http-timer@4.0.6': + resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} + engines: {node: '>=10'} + + '@testing-library/dom@7.31.2': + resolution: {integrity: sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==} + engines: {node: '>=10'} + + '@testing-library/dom@8.20.1': + resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==} + engines: {node: '>=12'} + + '@testing-library/dom@9.3.4': + resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} + engines: {node: '>=14'} + + '@testing-library/jest-dom@5.17.0': + resolution: {integrity: sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==} + engines: {node: '>=8', npm: '>=6', yarn: '>=1'} + + '@testing-library/jest-dom@6.4.6': + resolution: {integrity: sha512-8qpnGVincVDLEcQXWaHOf6zmlbwTKc6Us6PPu4CRnPXCzo2OGBS5cwgMMOWdxDpEz1mkbvXHpEy99M5Yvt682w==} + engines: {node: '>=14', npm: '>=6', yarn: '>=1'} + peerDependencies: + '@jest/globals': '>= 28' + '@types/bun': latest + '@types/jest': '>= 28' + jest: '>= 28' + vitest: '>= 0.32' + peerDependenciesMeta: + '@jest/globals': + optional: true + '@types/bun': + optional: true + '@types/jest': + optional: true + jest: + optional: true + vitest: + optional: true + + '@testing-library/react@14.3.1': + resolution: {integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==} + engines: {node: '>=14'} + peerDependencies: + react: ^18.0.0 + react-dom: ^18.0.0 + + '@testing-library/user-event@12.8.3': + resolution: {integrity: sha512-IR0iWbFkgd56Bu5ZI/ej8yQwrkCv8Qydx6RzwbKz9faXazR/+5tvYKsZQgyXJiwgpcva127YO6JcWy7YlCfofQ==} + engines: {node: '>=10', npm: '>=6'} + peerDependencies: + '@testing-library/dom': '>=7.21.4' + + '@testing-library/user-event@14.5.2': + resolution: {integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==} + engines: {node: '>=12', npm: '>=6'} + peerDependencies: + '@testing-library/dom': '>=7.21.4' + + '@tokenizer/token@0.3.0': + resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} + + '@tootallnate/once@1.1.2': + resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} + engines: {node: '>= 6'} + + '@tootallnate/once@2.0.0': + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} + + '@trysound/sax@0.2.0': + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + + '@tsconfig/node10@1.0.11': + resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} + + '@tsconfig/node12@1.0.11': + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + + '@tsconfig/node14@1.0.3': + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + + '@tsconfig/node16@1.0.4': + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + + '@types/aria-query@4.2.2': + resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} + + '@types/aria-query@5.0.4': + resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} + + '@types/babel__core@7.20.5': + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + + '@types/babel__generator@7.6.8': + resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} + + '@types/babel__template@7.4.4': + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + + '@types/babel__traverse@7.20.6': + resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} + + '@types/body-parser@1.19.5': + resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} + + '@types/bonjour@3.5.13': + resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} + + '@types/cacheable-request@6.0.3': + resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} + + '@types/color-convert@2.0.3': + resolution: {integrity: sha512-2Q6wzrNiuEvYxVQqhh7sXM2mhIhvZR/Paq4FdsQkOMgWsCIkKvSGj8Le1/XalulrmgOzPMqNa0ix+ePY4hTrfg==} + + '@types/color-name@1.1.4': + resolution: {integrity: sha512-hulKeREDdLFesGQjl96+4aoJSHY5b2GRjagzzcqCfIrWhe5vkCqIvrLbqzBaI1q94Vg8DNJZZqTR5ocdWmWclg==} + + '@types/connect-history-api-fallback@1.5.4': + resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} + + '@types/connect@3.4.38': + resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + + '@types/cookie@0.4.1': + resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==} + + '@types/crypto-js@3.1.47': + resolution: {integrity: sha512-eI6gvpcGHLk3dAuHYnRCAjX+41gMv1nz/VP55wAe5HtmAKDOoPSfr3f6vkMc08ov1S0NsjvUBxDtHHxqQY1LGA==} + + '@types/cssnano@5.1.0': + resolution: {integrity: sha512-ikR+18UpFGgvaWSur4og6SJYF/6QEYHXvrIt36dp81p1MG3cAPTYDMBJGeyWa3LCnqEbgNMHKRb+FP0NrXtoWQ==} + deprecated: This is a stub types definition. cssnano provides its own type definitions, so you do not need this installed. + + '@types/d3-array@3.2.1': + resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==} + + '@types/d3-axis@3.0.6': + resolution: {integrity: sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==} + + '@types/d3-brush@3.0.6': + resolution: {integrity: sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==} + + '@types/d3-chord@3.0.6': + resolution: {integrity: sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==} + + '@types/d3-color@3.1.3': + resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==} + + '@types/d3-contour@3.0.6': + resolution: {integrity: sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==} + + '@types/d3-delaunay@6.0.4': + resolution: {integrity: sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==} + + '@types/d3-dispatch@3.0.6': + resolution: {integrity: sha512-4fvZhzMeeuBJYZXRXrRIQnvUYfyXwYmLsdiN7XXmVNQKKw1cM8a5WdID0g1hVFZDqT9ZqZEY5pD44p24VS7iZQ==} + + '@types/d3-drag@3.0.7': + resolution: {integrity: sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==} + + '@types/d3-dsv@3.0.7': + resolution: {integrity: sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==} + + '@types/d3-ease@3.0.2': + resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==} + + '@types/d3-fetch@3.0.7': + resolution: {integrity: sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==} + + '@types/d3-force@3.0.10': + resolution: {integrity: sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==} + + '@types/d3-format@3.0.4': + resolution: {integrity: sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==} + + '@types/d3-geo@3.1.0': + resolution: {integrity: sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==} + + '@types/d3-hierarchy@3.1.7': + resolution: {integrity: sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==} + + '@types/d3-interpolate@3.0.4': + resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==} + + '@types/d3-path@3.1.0': + resolution: {integrity: sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==} + + '@types/d3-polygon@3.0.2': + resolution: {integrity: sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==} + + '@types/d3-quadtree@3.0.6': + resolution: {integrity: sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==} + + '@types/d3-random@3.0.3': + resolution: {integrity: sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==} + + '@types/d3-scale-chromatic@3.0.3': + resolution: {integrity: sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==} + + '@types/d3-scale@4.0.8': + resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==} + + '@types/d3-selection@3.0.10': + resolution: {integrity: sha512-cuHoUgS/V3hLdjJOLTT691+G2QoqAjCVLmr4kJXR4ha56w1Zdu8UUQ5TxLRqudgNjwXeQxKMq4j+lyf9sWuslg==} + + '@types/d3-shape@3.1.6': + resolution: {integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==} + + '@types/d3-time-format@4.0.3': + resolution: {integrity: sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==} + + '@types/d3-time@3.0.3': + resolution: {integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==} + + '@types/d3-timer@3.0.2': + resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==} + + '@types/d3-transition@3.0.8': + resolution: {integrity: sha512-ew63aJfQ/ms7QQ4X7pk5NxQ9fZH/z+i24ZfJ6tJSfqxJMrYLiK01EAs2/Rtw/JreGUsS3pLPNV644qXFGnoZNQ==} + + '@types/d3-zoom@3.0.8': + resolution: {integrity: sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==} + + '@types/d3@7.4.3': + resolution: {integrity: sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==} + + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + + '@types/eslint-scope@3.7.7': + resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} + + '@types/eslint@7.29.0': + resolution: {integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==} + + '@types/eslint@8.56.10': + resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==} + + '@types/estree-jsx@1.0.5': + resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} + + '@types/estree@0.0.39': + resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} + + '@types/estree@0.0.51': + resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} + + '@types/estree@1.0.5': + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + + '@types/express-serve-static-core@4.19.5': + resolution: {integrity: sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==} + + '@types/express@4.17.21': + resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} + + '@types/file-saver@2.0.7': + resolution: {integrity: sha512-dNKVfHd/jk0SkR/exKGj2ggkB45MAkzvWCaqLUUgkyjITkGNzH8H+yUwr+BLJUBjZOe9w8X3wgmXhZDRg1ED6A==} + + '@types/fs-extra@8.1.5': + resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==} + + '@types/geojson@7946.0.14': + resolution: {integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==} + + '@types/glob@7.2.0': + resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} + + '@types/glob@8.1.0': + resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==} + + '@types/graceful-fs@4.1.9': + resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} + + '@types/hast@2.3.10': + resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} + + '@types/hast@3.0.4': + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + + '@types/history@4.7.11': + resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==} + + '@types/hoist-non-react-statics@3.3.5': + resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==} + + '@types/html-minifier-terser@5.1.2': + resolution: {integrity: sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==} + + '@types/html-minifier-terser@6.1.0': + resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} + + '@types/http-cache-semantics@4.0.4': + resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} + + '@types/http-errors@2.0.4': + resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} + + '@types/http-proxy@1.17.14': + resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} + + '@types/i18next-xhr-backend@1.4.2': + resolution: {integrity: sha512-uykS5BvdSoN+G7j7D19xzR12pEVkWmUrIEIxMsj2brVVzjc3gIthWCQKYqbe/b1q87SLbWb/ZHN9bR4qxi1H6A==} + deprecated: This is a stub types definition. i18next-xhr-backend provides its own type definitions, so you do not need this installed. + + '@types/i18next@8.4.3': + resolution: {integrity: sha512-ayqHEU+i9H7/Fkefnhyvml1ChKEZXcDwmVqo3jmrxy7PoAtTSY1t4/hr58Xz8hkXLPoCGS1hTc6bLJOUaOAjfQ==} + + '@types/inquirer@8.2.10': + resolution: {integrity: sha512-IdD5NmHyVjWM8SHWo/kPBgtzXatwPkfwzyP3fN1jF2g9BWt5WO+8hL2F4o2GKIYsU40PpqeevuUWvkS/roXJkA==} + + '@types/is-function@1.0.3': + resolution: {integrity: sha512-/CLhCW79JUeLKznI6mbVieGbl4QU5Hfn+6udw1YHZoofASjbQ5zaP5LzAUZYDpRYEjS4/P+DhEgyJ/PQmGGTWw==} + + '@types/istanbul-lib-coverage@2.0.6': + resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} + + '@types/istanbul-lib-report@3.0.3': + resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} + + '@types/istanbul-reports@3.0.4': + resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + + '@types/jest@26.0.24': + resolution: {integrity: sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==} + + '@types/jest@29.5.12': + resolution: {integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==} + + '@types/js-beautify@1.14.3': + resolution: {integrity: sha512-FMbQHz+qd9DoGvgLHxeqqVPaNRffpIu5ZjozwV8hf9JAGpIOzuAf4wGbRSo8LNITHqGjmmVjaMggTT5P4v4IHg==} + + '@types/js-levenshtein@1.1.3': + resolution: {integrity: sha512-jd+Q+sD20Qfu9e2aEXogiO3vpOC1PYJOUdyN9gvs4Qrvkg4wF43L5OhqrPeokdv8TL0/mXoYfpkcoGZMNN2pkQ==} + + '@types/js-yaml@3.12.3': + resolution: {integrity: sha512-otRe77JNNWzoVGLKw8TCspKswRoQToys4tuL6XYVBFxjgeM0RUrx7m3jkaTdxILxeGry3zM8mGYkGXMeQ02guA==} + + '@types/jsdom@20.0.1': + resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/json5@0.0.29': + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + + '@types/keyv@3.1.4': + resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} + + '@types/lodash-es@4.17.12': + resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==} + + '@types/lodash@4.17.5': + resolution: {integrity: sha512-MBIOHVZqVqgfro1euRDWX7OO0fBVUUMrN6Pwm8LQsz8cWhEpihlvR70ENj3f40j58TNxZaWv2ndSkInykNBBJw==} + + '@types/mdast@3.0.15': + resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} + + '@types/mdast@4.0.4': + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} + + '@types/mime-types@2.1.4': + resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==} + + '@types/mime@1.3.5': + resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} + + '@types/minimatch@3.0.5': + resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} + + '@types/minimatch@5.1.2': + resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} + + '@types/minimist@1.2.5': + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} + + '@types/ms@0.7.34': + resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} + + '@types/node-fetch@2.6.11': + resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==} + + '@types/node-forge@0.9.10': + resolution: {integrity: sha512-+BbPlhZeYs/WETWftQi2LeRx9VviWSwawNo+Pid5qNrSZHb60loYjpph3OrbwXMMseadu9rE9NeK34r4BHT+QQ==} + + '@types/node-forge@1.3.11': + resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} + + '@types/node@12.20.55': + resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} + + '@types/node@13.13.52': + resolution: {integrity: sha512-s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ==} + + '@types/node@14.18.63': + resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==} + + '@types/node@16.18.101': + resolution: {integrity: sha512-AAsx9Rgz2IzG8KJ6tXd6ndNkVcu+GYB6U/SnFAaokSPNx2N7dcIIfnighYUNumvj6YS2q39Dejz5tT0NCV7CWA==} + + '@types/normalize-package-data@2.4.4': + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + + '@types/npmlog@4.1.6': + resolution: {integrity: sha512-0l3z16vnlJGl2Mi/rgJFrdwfLZ4jfNYgE6ZShEpjqhHuGTqdEzNles03NpYHwUMVYZa+Tj46UxKIEpE78lQ3DQ==} + + '@types/overlayscrollbars@1.12.5': + resolution: {integrity: sha512-1yMmgFrq1DQ3sCHyb3DNfXnE0dB463MjG47ugX3cyade3sOt3U8Fjxk/Com0JJguTLPtw766TSDaO4NC65Wgkw==} + + '@types/parse-json@4.0.2': + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + + '@types/parse5@5.0.3': + resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==} + + '@types/prettier@2.7.3': + resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} + + '@types/pretty-hrtime@1.0.3': + resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==} + + '@types/prop-types@15.7.12': + resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} + + '@types/q@1.5.8': + resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==} + + '@types/qs@6.9.15': + resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==} + + '@types/range-parser@1.2.7': + resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} + + '@types/react-color@3.0.12': + resolution: {integrity: sha512-pr3uKE3lSvf7GFo1Rn2K3QktiZQFFrSgSGJ/3iMvSOYWt2pPAJ97rVdVfhWxYJZ8prAEXzoP2XX//3qGSQgu7Q==} + + '@types/react-dom@18.3.0': + resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} + + '@types/react-notification-system@0.2.39': + resolution: {integrity: sha512-yfptO86dbfW4qaw34CIedfakdKWV3sPM0xb4T5EQZOza80WLvOUUKjdmZTeGyEKk/7n2za8RJa6aZpz/A+2Qbw==} + + '@types/react-redux@7.1.33': + resolution: {integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==} + + '@types/react-router-dom@5.3.3': + resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==} + + '@types/react-router@5.1.20': + resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==} + + '@types/react-syntax-highlighter@11.0.5': + resolution: {integrity: sha512-VIOi9i2Oj5XsmWWoB72p3KlZoEbdRAcechJa8Ztebw7bDl2YmR+odxIqhtJGp1q2EozHs02US+gzxJ9nuf56qg==} + + '@types/react-transition-group@4.4.10': + resolution: {integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==} + + '@types/react@18.0.18': + resolution: {integrity: sha512-6hI08umYs6NaiHFEEGioXnxJ+oEhY3eRz8VCUaudZmGdtvPviCJB8mgaMxaDWAdPSYd4eFavrPk2QIolwbLYrg==} + + '@types/reactcss@1.2.12': + resolution: {integrity: sha512-BrXUQ86/wbbFiZv8h/Q1/Q1XOsaHneYmCb/tHe9+M8XBAAUc2EHfdY0DY22ZZjVSaXr5ix7j+zsqO2eGZub8lQ==} + + '@types/reactour@1.18.5': + resolution: {integrity: sha512-Pl5yh9bXeXaFcioDk6XVmUzdJGZDAKesVmwoh2KvN/1FXSd9saN8pIprLvfspnXANMcgl3AtSlD4zs0cJIhGIw==} + + '@types/redux-mock-store@1.0.6': + resolution: {integrity: sha512-eg5RDfhJTXuoJjOMyXiJbaDb1B8tfTaJixscmu+jOusj6adGC0Krntz09Tf4gJgXeCqCrM5bBMd+B7ez0izcAQ==} + + '@types/resolve@1.17.1': + resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} + + '@types/resolve@1.20.2': + resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} + + '@types/responselike@1.0.3': + resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} + + '@types/retry@0.12.0': + resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} + + '@types/scheduler@0.23.0': + resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==} + + '@types/semver@7.5.8': + resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} + + '@types/send@0.17.4': + resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} + + '@types/serve-index@1.9.4': + resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} + + '@types/serve-static@1.15.7': + resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} + + '@types/set-cookie-parser@2.4.9': + resolution: {integrity: sha512-bCorlULvl0xTdjj4BPUHX4cqs9I+go2TfW/7Do1nnFYWS0CPP429Qr1AY42kiFhCwLpvAkWFr1XIBHd8j6/MCQ==} + + '@types/sinonjs__fake-timers@8.1.1': + resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} + + '@types/sizzle@2.3.8': + resolution: {integrity: sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==} + + '@types/sockjs@0.3.36': + resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} + + '@types/source-list-map@0.1.6': + resolution: {integrity: sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==} + + '@types/stack-utils@2.0.3': + resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} + + '@types/tapable@1.0.12': + resolution: {integrity: sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==} + + '@types/testing-library__jest-dom@5.14.9': + resolution: {integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==} + + '@types/through@0.0.33': + resolution: {integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==} + + '@types/tough-cookie@4.0.5': + resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} + + '@types/ua-parser-js@0.7.36': + resolution: {integrity: sha512-N1rW+njavs70y2cApeIw1vLMYXRwfBy+7trgavGuuTfOd7j1Yh7QTRc/yqsPl6ncokt72ZXuxEU0PiCp9bSwNQ==} + + '@types/uglify-js@3.17.5': + resolution: {integrity: sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==} + + '@types/unist@2.0.10': + resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} + + '@types/unist@3.0.2': + resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} + + '@types/uuid@9.0.8': + resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==} + + '@types/webappsec-credential-management@0.6.8': + resolution: {integrity: sha512-DES/SkK54U7AG8hmMkGCJkOSlywM3R+TzaWT+rBnX3lQTJ3K57jWr+UccWY8ImkuKekC9BjB+AH4zLJB4JKpvQ==} + + '@types/webpack-env@1.18.5': + resolution: {integrity: sha512-wz7kjjRRj8/Lty4B+Kr0LN6Ypc/3SymeCCGSbaXp2leH0ZVg/PriNiOwNj4bD4uphI7A8NXS4b6Gl373sfO5mA==} + + '@types/webpack-sources@3.2.3': + resolution: {integrity: sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==} + + '@types/webpack@4.41.38': + resolution: {integrity: sha512-oOW7E931XJU1mVfCnxCVgv8GLFL768pDO5u2Gzk82i8yTIgX6i7cntyZOkZYb/JtYM8252SN9bQp9tgkVDSsRw==} + + '@types/ws@8.5.10': + resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} + + '@types/yargs-parser@21.0.3': + resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} + + '@types/yargs@15.0.19': + resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} + + '@types/yargs@17.0.32': + resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} + + '@types/yauzl@2.10.3': + resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} + + '@typescript-eslint/eslint-plugin@4.33.0': + resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + '@typescript-eslint/parser': ^4.0.0 + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/experimental-utils@4.33.0': + resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: '*' + + '@typescript-eslint/parser@4.33.0': + resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/scope-manager@4.33.0': + resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + + '@typescript-eslint/scope-manager@5.62.0': + resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@typescript-eslint/types@4.33.0': + resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + + '@typescript-eslint/types@5.62.0': + resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@typescript-eslint/typescript-estree@4.33.0': + resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/typescript-estree@5.62.0': + 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 + + '@typescript-eslint/utils@5.62.0': + resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + + '@typescript-eslint/visitor-keys@4.33.0': + resolution: {integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + + '@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} + + '@ungap/structured-clone@1.2.0': + resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + + '@webassemblyjs/ast@1.12.1': + resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} + + '@webassemblyjs/floating-point-hex-parser@1.11.6': + resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} + + '@webassemblyjs/helper-api-error@1.11.6': + resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} + + '@webassemblyjs/helper-buffer@1.12.1': + resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==} + + '@webassemblyjs/helper-numbers@1.11.6': + resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} + + '@webassemblyjs/helper-wasm-bytecode@1.11.6': + resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} + + '@webassemblyjs/helper-wasm-section@1.12.1': + resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==} + + '@webassemblyjs/ieee754@1.11.6': + resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} + + '@webassemblyjs/leb128@1.11.6': + resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} + + '@webassemblyjs/utf8@1.11.6': + resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} + + '@webassemblyjs/wasm-edit@1.12.1': + resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==} + + '@webassemblyjs/wasm-gen@1.12.1': + resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==} + + '@webassemblyjs/wasm-opt@1.12.1': + resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==} + + '@webassemblyjs/wasm-parser@1.12.1': + resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==} + + '@webassemblyjs/wast-printer@1.12.1': + resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==} + + '@webpack-cli/configtest@1.2.0': + resolution: {integrity: sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==} + peerDependencies: + webpack: 5.84.1 + webpack-cli: 4.x.x + + '@webpack-cli/info@1.5.0': + resolution: {integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==} + peerDependencies: + webpack-cli: 4.x.x + + '@webpack-cli/serve@1.7.0': + resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==} + peerDependencies: + webpack-cli: 4.x.x + webpack-dev-server: '*' + peerDependenciesMeta: + webpack-dev-server: + optional: true + + '@webpack-contrib/schema-utils@1.0.0-beta.0': + resolution: {integrity: sha512-LonryJP+FxQQHsjGBi6W786TQB1Oym+agTpY0c+Kj8alnIw+DLUJb6SI8Y1GHGhLCH1yPRrucjObUmxNICQ1pg==} + engines: {node: '>= 6.9.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 + + '@xmldom/xmldom@0.7.13': + resolution: {integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==} + engines: {node: '>=10.0.0'} + + '@xtuc/ieee754@1.2.0': + resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + + '@xtuc/long@4.2.2': + resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + + '@yarn-tool/resolve-package@1.0.47': + resolution: {integrity: sha512-Zaw58gQxjQceJqhqybJi1oUDaORT8i2GTgwICPs8v/X/Pkx35FXQba69ldHVg5pQZ6YLKpROXgyHvBaCJOFXiA==} + + '@yarnpkg/lockfile@1.1.0': + resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} + + '@yarnpkg/parsers@3.0.2': + resolution: {integrity: sha512-/HcYgtUSiJiot/XWGLOlGxPYUG65+/31V8oqk17vZLW1xlCoR4PampyePljOxY2n8/3jz9+tIFzICsyGujJZoA==} + engines: {node: '>=18.12.0'} + + '@zkochan/js-yaml@0.0.6': + resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} + hasBin: true + + JSONStream@1.3.5: + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + hasBin: true + + abab@2.0.6: + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + deprecated: Use your platform's native atob() and btoa() methods instead + + abbrev@1.1.1: + resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} + + abbrev@2.0.0: + resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + accepts@1.3.8: + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} + + acorn-globals@6.0.0: + resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} + + acorn-globals@7.0.1: + resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} + + acorn-import-assertions@1.9.0: + resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} + peerDependencies: + acorn: ^8 + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn-walk@7.2.0: + resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} + engines: {node: '>=0.4.0'} + + acorn-walk@8.3.3: + resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==} + engines: {node: '>=0.4.0'} + + acorn@7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} + hasBin: true + + acorn@8.12.0: + resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==} + engines: {node: '>=0.4.0'} + hasBin: true + + add-stream@1.0.0: + resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} + + address@1.2.2: + resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} + engines: {node: '>= 10.0.0'} + + agent-base@5.1.1: + resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==} + engines: {node: '>= 6.0.0'} + + agent-base@6.0.2: + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} + + agentkeepalive@4.5.0: + resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} + engines: {node: '>= 8.0.0'} + + aggregate-error@3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} + + airbnb-js-shims@2.2.1: + resolution: {integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==} + + ajv-errors@1.0.1: + resolution: {integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==} + peerDependencies: + ajv: '>=5.0.0' + + ajv-formats@2.1.1: + resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + + ajv-keywords@3.5.2: + resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} + peerDependencies: + ajv: ^6.9.1 + + ajv-keywords@5.1.0: + resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} + peerDependencies: + ajv: ^8.8.2 + + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + ajv@8.16.0: + resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==} + + ansi-align@3.0.1: + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + + ansi-colors@3.2.4: + resolution: {integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==} + engines: {node: '>=6'} + + ansi-colors@4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} + + ansi-escapes@4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} + + ansi-html-community@0.0.8: + resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} + engines: {'0': node >= 0.8.0} + hasBin: true + + ansi-html@0.0.7: + resolution: {integrity: sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA==} + engines: {'0': node >= 0.8.0} + hasBin: true + + ansi-html@0.0.9: + resolution: {integrity: sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==} + engines: {'0': node >= 0.8.0} + hasBin: true + + ansi-regex@2.1.1: + resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} + engines: {node: '>=0.10.0'} + + ansi-regex@3.0.1: + resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} + engines: {node: '>=4'} + + ansi-regex@4.1.1: + resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} + engines: {node: '>=6'} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.0.1: + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + engines: {node: '>=12'} + + ansi-styles@2.2.1: + resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} + engines: {node: '>=0.10.0'} + + ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + + ansi-to-html@0.6.15: + resolution: {integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==} + engines: {node: '>=8.0.0'} + hasBin: true + + anymatch@2.0.0: + resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + app-root-dir@1.0.2: + resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==} + + append-transform@2.0.0: + resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==} + engines: {node: '>=8'} + + aproba@2.0.0: + resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} + + arch@2.2.0: + resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} + + archy@1.0.0: + resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} + + are-we-there-yet@2.0.0: + resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} + engines: {node: '>=10'} + deprecated: This package is no longer supported. + + are-we-there-yet@3.0.1: + resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. + + arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + + argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + aria-query@4.2.2: + resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} + engines: {node: '>=6.0'} + + aria-query@5.1.3: + resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + + aria-query@5.3.0: + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + + arr-diff@4.0.0: + resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} + engines: {node: '>=0.10.0'} + + arr-flatten@1.1.0: + resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} + engines: {node: '>=0.10.0'} + + arr-union@3.1.0: + resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} + engines: {node: '>=0.10.0'} + + array-buffer-byte-length@1.0.1: + resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} + engines: {node: '>= 0.4'} + + array-differ@3.0.0: + resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} + engines: {node: '>=8'} + + array-find-index@1.0.2: + resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} + engines: {node: '>=0.10.0'} + + array-flatten@1.1.1: + resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} + + array-flatten@2.1.2: + resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} + + array-ify@1.0.0: + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + + array-includes@3.1.8: + resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} + engines: {node: '>= 0.4'} + + array-union@1.0.2: + resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==} + engines: {node: '>=0.10.0'} + + array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + + array-union@3.0.1: + resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==} + engines: {node: '>=12'} + + array-uniq@1.0.3: + resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} + engines: {node: '>=0.10.0'} + + array-unique@0.3.2: + resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} + engines: {node: '>=0.10.0'} + + array.prototype.findlast@1.2.5: + resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} + engines: {node: '>= 0.4'} + + array.prototype.findlastindex@1.2.5: + resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} + engines: {node: '>= 0.4'} + + array.prototype.flat@1.3.2: + resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} + engines: {node: '>= 0.4'} + + array.prototype.flatmap@1.3.2: + resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} + engines: {node: '>= 0.4'} + + array.prototype.map@1.0.7: + resolution: {integrity: sha512-XpcFfLoBEAhezrrNw1V+yLXkE7M6uR7xJEsxbG6c/V9v043qurwVJB9r9UTnoSioFDoz1i1VOydpWGmJpfVZbg==} + engines: {node: '>= 0.4'} + + array.prototype.reduce@1.0.7: + resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==} + engines: {node: '>= 0.4'} + + array.prototype.toreversed@1.1.2: + resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==} + + array.prototype.tosorted@1.1.4: + resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} + engines: {node: '>= 0.4'} + + arraybuffer.prototype.slice@1.0.3: + resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} + engines: {node: '>= 0.4'} + + arrify@1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + + arrify@2.0.1: + resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} + engines: {node: '>=8'} + + asap@2.0.6: + resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} + + asn1@0.2.6: + resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} + + assert-plus@1.0.0: + resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} + engines: {node: '>=0.8'} + + assign-symbols@1.0.0: + resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} + engines: {node: '>=0.10.0'} + + ast-types-flow@0.0.7: + resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} + + ast-types@0.13.3: + resolution: {integrity: sha512-XTZ7xGML849LkQP86sWdQzfhwbt3YwIO6MqbX9mUNYY98VKaaVZP7YNNm70IpwecbkkxmfC5IYAzOQ/2p29zRA==} + engines: {node: '>=4'} + + ast-types@0.14.2: + resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==} + engines: {node: '>=4'} + + astral-regex@2.0.0: + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} + engines: {node: '>=8'} + + astring@1.8.6: + resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==} + hasBin: true + + async-each@1.0.6: + resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==} + + async-limiter@1.0.1: + resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} + + async@2.6.4: + resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} + + async@3.2.5: + resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} + + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + + at-least-node@1.0.0: + resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + engines: {node: '>= 4.0.0'} + + atob@2.1.2: + resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} + engines: {node: '>= 4.5.0'} + hasBin: true + + autoprefixer@10.4.19: + resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + + autoprefixer@9.8.8: + resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} + hasBin: true + + available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + + await-semaphore@0.1.3: + resolution: {integrity: sha512-d1W2aNSYcz/sxYO4pMGX9vq65qOTu0P800epMud+6cYYX0QcT7zyqcxec3VWzpgvdXo57UWmVbZpLMjX2m1I7Q==} + + aws-sign2@0.7.0: + resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} + + aws4@1.13.0: + resolution: {integrity: sha512-3AungXC4I8kKsS9PuS4JH2nc+0bVY/mjgrephHTIi8fpEeGsTHBUJeosp0Wc1myYMElmD0B3Oc4XL/HVJ4PV2g==} + + axe-core@4.9.1: + resolution: {integrity: sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==} + engines: {node: '>=4'} + + axios@0.19.2: + resolution: {integrity: sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==} + deprecated: Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410 + + axios@0.21.4: + resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} + + axios@0.26.1: + resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==} + + axios@1.7.2: + resolution: {integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==} + + axobject-query@2.2.0: + resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} + + babel-code-frame@6.26.0: + resolution: {integrity: sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==} + + babel-core@7.0.0-bridge.0: + resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + babel-jest@26.6.3: + resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} + engines: {node: '>= 10.14.2'} + peerDependencies: + '@babel/core': ^7.0.0 + + babel-jest@28.1.3: + resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + '@babel/core': ^7.8.0 + + babel-jest@29.7.0: + resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.8.0 + + babel-loader@8.3.0: + resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} + engines: {node: '>= 8.9'} + peerDependencies: + '@babel/core': ^7.0.0 + webpack: 5.84.1 + + babel-messages@6.23.0: + resolution: {integrity: sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==} + + babel-plugin-add-react-displayname@0.0.5: + resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} + + babel-plugin-apply-mdx-type-prop@1.6.22: + resolution: {integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==} + peerDependencies: + '@babel/core': ^7.11.6 + + babel-plugin-const-enum@1.2.0: + resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + babel-plugin-emotion@10.2.2: + resolution: {integrity: sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==} + + babel-plugin-extract-import-names@1.6.22: + resolution: {integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==} + + babel-plugin-istanbul@6.1.1: + resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} + engines: {node: '>=8'} + + babel-plugin-jest-hoist@26.6.2: + resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==} + engines: {node: '>= 10.14.2'} + + babel-plugin-jest-hoist@28.1.3: + resolution: {integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + babel-plugin-jest-hoist@29.6.3: + resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + babel-plugin-macros@2.8.0: + resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} + + babel-plugin-macros@3.1.0: + resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} + engines: {node: '>=10', npm: '>=6'} + + babel-plugin-named-asset-import@0.3.8: + resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==} + peerDependencies: + '@babel/core': ^7.1.0 + + babel-plugin-named-exports-order@0.0.2: + resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==} + + babel-plugin-polyfill-corejs2@0.4.11: + resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-corejs3@0.1.7: + resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + babel-plugin-polyfill-corejs3@0.10.4: + resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-regenerator@0.6.2: + resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-react-docgen@4.2.1: + resolution: {integrity: sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==} + + babel-plugin-rename-jsx-attribute@0.2.4: + resolution: {integrity: sha512-R3kRggMmkXAd465a2q2Y2IceIUJHoyw9q/c0I7i3JdQDHGbUj59OTOR6QjRuB/bII1yH2Xuy/KM5+NNs9NzCGw==} + peerDependencies: + babel-core: ^6.26.3 + + babel-plugin-styled-components@2.1.4: + resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==} + peerDependencies: + styled-components: '>= 2' + + babel-plugin-syntax-jsx@6.18.0: + resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==} + + babel-plugin-transform-async-to-promises@0.8.18: + resolution: {integrity: sha512-WpOrF76nUHijnNn10eBGOHZmXQC8JYRME9rOLxStOga7Av2VO53ehVFvVNImMksVtQuL2/7ZNxEgxnx7oo/3Hw==} + + babel-plugin-transform-es2015-modules-commonjs@6.26.2: + resolution: {integrity: sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==} + + babel-plugin-transform-strict-mode@6.24.1: + resolution: {integrity: sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw==} + + babel-plugin-transform-typescript-metadata@0.3.2: + resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} + peerDependencies: + '@babel/core': ^7 + '@babel/traverse': ^7 + peerDependenciesMeta: + '@babel/traverse': + optional: true + + babel-polyfill@6.26.0: + resolution: {integrity: sha512-F2rZGQnAdaHWQ8YAoeRbukc7HS9QgdgeyJ0rQDd485v9opwuPvjpPFcOOT/WmkKTdgy9ESgSPXDcTNpzrGr6iQ==} + + babel-preset-current-node-syntax@1.0.1: + resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} + peerDependencies: + '@babel/core': ^7.0.0 + + babel-preset-jest@26.6.2: + resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} + engines: {node: '>= 10.14.2'} + peerDependencies: + '@babel/core': ^7.0.0 + + babel-preset-jest@28.1.3: + resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + '@babel/core': ^7.0.0 + + babel-preset-jest@29.6.3: + resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.0.0 + + babel-runtime@6.26.0: + resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==} + + babel-template@6.26.0: + resolution: {integrity: sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg==} + + babel-traverse@6.26.0: + resolution: {integrity: sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA==} + + babel-types@6.26.0: + resolution: {integrity: sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==} + + babylon@6.18.0: + resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==} + hasBin: true + + bail@1.0.5: + resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} + + bail@2.0.2: + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + base64url@3.0.1: + resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==} + engines: {node: '>=6.0.0'} + + base@0.11.2: + resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} + engines: {node: '>=0.10.0'} + + basic-auth@2.0.1: + resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} + engines: {node: '>= 0.8'} + + batch-processor@1.0.0: + resolution: {integrity: sha512-xoLQD8gmmR32MeuBHgH0Tzd5PuSZx71ZsbhVxOCRbgktZEPe4SQy7s9Z50uPp0F/f7iw2XmkHN2xkgbMfckMDA==} + + batch@0.6.1: + resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} + + bcrypt-pbkdf@1.0.2: + resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} + + before-after-hook@2.2.3: + resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} + + better-opn@2.1.1: + resolution: {integrity: sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==} + engines: {node: '>8.0.0'} + + better-path-resolve@1.0.0: + resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} + engines: {node: '>=4'} + + big-integer@1.6.52: + resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} + engines: {node: '>=0.6'} + + big.js@5.2.2: + resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + + bin-check@4.1.0: + resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==} + engines: {node: '>=4'} + + bin-links@3.0.3: + resolution: {integrity: sha512-zKdnMPWEdh4F5INR07/eBrodC7QrF5JKvqskjz/ZZRXg5YSAZIbn8zGhbhUrElzHBZ2fvEQdOU59RHcTG3GiwA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + bin-version-check@5.1.0: + resolution: {integrity: sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==} + engines: {node: '>=12'} + + bin-version@6.0.0: + resolution: {integrity: sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==} + engines: {node: '>=12'} + + binary-extensions@1.13.1: + resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==} + engines: {node: '>=0.10.0'} + + binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} + + bindings@1.5.0: + resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + + bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + + blob-util@2.0.2: + resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} + + bluebird@3.7.1: + resolution: {integrity: sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg==} + + bluebird@3.7.2: + resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} + + body-parser@1.20.2: + resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + + bonjour-service@1.2.1: + resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==} + + bonjour@3.5.0: + resolution: {integrity: sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==} + + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + + boxen@5.1.2: + resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} + engines: {node: '>=10'} + + bplist-parser@0.1.1: + resolution: {integrity: sha512-2AEM0FXy8ZxVLBuqX0hqt1gDwcnz2zygEkQ6zaD5Wko/sB9paUNwlpawrFtKeHUAQUOzjVy9AO4oeonqIHKA9Q==} + + brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + + brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + + braces@2.3.2: + resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} + engines: {node: '>=0.10.0'} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + breakword@1.0.6: + resolution: {integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==} + + browser-assert@1.2.1: + resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==} + + browser-process-hrtime@1.0.0: + resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} + + browserslist@4.23.1: + resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + bs-logger@0.2.6: + resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} + engines: {node: '>= 6'} + + bser@2.1.1: + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + + buffer-crc32@0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + buffer-indexof@1.1.1: + resolution: {integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==} + + buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + + buffer@6.0.3: + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + + builtin-modules@3.3.0: + resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} + engines: {node: '>=6'} + + builtins@1.0.3: + resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==} + + builtins@5.1.0: + resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==} + + byte-size@7.0.1: + resolution: {integrity: sha512-crQdqyCwhokxwV1UyDzLZanhkugAgft7vt0qbbdt60C6Zf3CAiGmtUCylbtYwrU6loOUw3euGrNtW1J651ot1A==} + engines: {node: '>=10'} + + bytes@3.0.0: + resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} + engines: {node: '>= 0.8'} + + bytes@3.1.2: + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} + + c8@7.14.0: + resolution: {integrity: sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw==} + engines: {node: '>=10.12.0'} + hasBin: true + + cacache@15.3.0: + resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==} + engines: {node: '>= 10'} + + cacache@16.1.3: + resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + cache-base@1.0.1: + resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} + engines: {node: '>=0.10.0'} + + cacheable-lookup@5.0.4: + resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} + engines: {node: '>=10.6.0'} + + cacheable-request@6.1.0: + resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} + engines: {node: '>=8'} + + cacheable-request@7.0.4: + resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} + engines: {node: '>=8'} + + cachedir@2.4.0: + resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==} + engines: {node: '>=6'} + + caching-transform@4.0.0: + resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==} + engines: {node: '>=8'} + + call-bind@1.0.7: + resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} + engines: {node: '>= 0.4'} + + call-me-maybe@1.0.2: + resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} + + caller-callsite@2.0.0: + resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} + engines: {node: '>=4'} + + caller-path@2.0.0: + resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} + engines: {node: '>=4'} + + callsites@2.0.0: + resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} + engines: {node: '>=4'} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + camel-case@4.1.2: + resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} + + camelcase-css@2.0.1: + resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} + engines: {node: '>= 6'} + + camelcase-keys@2.1.0: + resolution: {integrity: sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==} + engines: {node: '>=0.10.0'} + + camelcase-keys@6.2.2: + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} + + camelcase@2.1.1: + resolution: {integrity: sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==} + engines: {node: '>=0.10.0'} + + camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + + camelcase@6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} + + camelize@1.0.1: + resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} + + caniuse-api@3.0.0: + resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} + + caniuse-lite@1.0.30001636: + resolution: {integrity: sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==} + + capture-exit@2.0.0: + resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} + engines: {node: 6.* || 8.* || >= 10.*} + + case-sensitive-paths-webpack-plugin@2.4.0: + resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} + engines: {node: '>=4'} + + caseless@0.12.0: + resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + + ccount@1.1.0: + resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==} + + ccount@2.0.1: + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + + chalk@1.1.3: + resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} + engines: {node: '>=0.10.0'} + + chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + + chalk@3.0.0: + resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} + engines: {node: '>=8'} + + chalk@4.1.0: + resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==} + engines: {node: '>=10'} + + chalk@4.1.1: + resolution: {integrity: sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==} + engines: {node: '>=10'} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + char-regex@1.0.2: + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + engines: {node: '>=10'} + + character-entities-html4@2.1.0: + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} + + character-entities-legacy@1.1.4: + resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} + + character-entities-legacy@3.0.0: + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + + character-entities@1.2.4: + resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} + + character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + + character-reference-invalid@1.1.4: + resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} + + character-reference-invalid@2.0.1: + resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} + + chardet@0.7.0: + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + + check-more-types@2.24.0: + resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} + engines: {node: '>= 0.8.0'} + + child_process@1.0.2: + resolution: {integrity: sha512-Wmza/JzL0SiWz7kl6MhIKT5ceIlnFPJX+lwUGj7Clhy5MMldsSoJR0+uvRzOS5Kv45Mq7t1PoE8TsOA9bzvb6g==} + + chokidar@2.1.8: + resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==} + deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies + + chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} + + chownr@2.0.0: + resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} + engines: {node: '>=10'} + + chrome-trace-event@1.0.4: + resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} + engines: {node: '>=6.0'} + + ci-info@2.0.0: + resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} + + ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} + + cjs-module-lexer@0.6.0: + resolution: {integrity: sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==} + + cjs-module-lexer@1.3.1: + resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==} + + class-utils@0.3.6: + resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} + engines: {node: '>=0.10.0'} + + classcat@5.0.5: + resolution: {integrity: sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==} + + classnames@2.5.1: + resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==} + + clean-css@4.2.4: + resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==} + engines: {node: '>= 4.0'} + + clean-css@5.3.3: + resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} + engines: {node: '>= 10.0'} + + clean-stack@2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} + + cli-boxes@2.2.1: + resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} + engines: {node: '>=6'} + + cli-cursor@3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} + + cli-spinners@2.6.1: + resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} + engines: {node: '>=6'} + + cli-spinners@2.9.2: + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + engines: {node: '>=6'} + + cli-table3@0.6.5: + resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} + engines: {node: 10.* || >= 12.*} + + cli-truncate@2.1.0: + resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} + engines: {node: '>=8'} + + cli-width@3.0.0: + resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} + engines: {node: '>= 10'} + + cli@1.0.1: + resolution: {integrity: sha512-41U72MB56TfUMGndAKK8vJ78eooOD4Z5NOL4xEfjc0c23s+6EYKXlXsmACBVclLP1yOfWCgEganVzddVrSNoTg==} + engines: {node: '>=0.2.5'} + + client-only@0.0.1: + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + + cliui@5.0.0: + resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==} + + cliui@6.0.0: + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + + cliui@7.0.4: + resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + clone-deep@0.2.4: + resolution: {integrity: sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==} + engines: {node: '>=0.10.0'} + + clone-deep@4.0.1: + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} + + clone-response@1.0.3: + resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} + + clone@1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + + clone@2.1.2: + resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} + engines: {node: '>=0.8'} + + clsx@1.2.1: + resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} + engines: {node: '>=6'} + + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} + + cmd-shim@5.0.0: + resolution: {integrity: sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + co@4.6.0: + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + + coa@2.0.2: + resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} + engines: {node: '>= 4.0'} + + codemirror@5.65.16: + resolution: {integrity: sha512-br21LjYmSlVL0vFCPWPfhzUCT34FM/pAdK7rRIZwa0rrtrIdotvP4Oh4GUHsu2E3IrQMCfRkL/fN3ytMNxVQvg==} + + collapse-white-space@1.0.6: + resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==} + + collect-v8-coverage@1.0.2: + resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} + + collection-visit@1.0.0: + resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} + engines: {node: '>=0.10.0'} + + color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + color-support@1.1.3: + resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} + hasBin: true + + colord@2.9.3: + resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} + + colorette@1.4.0: + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} + + colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + + columnify@1.6.0: + resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==} + engines: {node: '>=8.0.0'} + + combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + + comma-separated-tokens@1.0.8: + resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} + + comma-separated-tokens@2.0.3: + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} + + commander@10.0.1: + resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} + engines: {node: '>=14'} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + commander@4.1.1: + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} + + commander@5.1.0: + resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} + engines: {node: '>= 6'} + + commander@6.2.1: + resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} + engines: {node: '>= 6'} + + commander@7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} + + commander@8.3.0: + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + engines: {node: '>= 12'} + + common-ancestor-path@1.0.1: + resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} + + common-tags@1.8.2: + resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} + engines: {node: '>=4.0.0'} + + commondir@1.0.1: + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + + compare-func@2.0.0: + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + + component-emitter@1.3.1: + resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==} + + compressible@2.0.18: + resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} + engines: {node: '>= 0.6'} + + compression-webpack-plugin@7.1.2: + resolution: {integrity: sha512-9DKNW6ILLjx+bNBoviHDgLx6swBhWWH9ApClC9sTH2NoFfQM47BapQfovCm9zjD9v1uZwInF5a925FB9ErGQeQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 + + compression@1.7.4: + resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} + engines: {node: '>= 0.8.0'} + + compute-scroll-into-view@1.0.20: + resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + concat-stream@1.6.2: + resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} + engines: {'0': node >= 0.8} + + concat-stream@2.0.0: + resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} + engines: {'0': node >= 6.0} + + concat-with-sourcemaps@1.1.0: + resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==} + + config-chain@1.1.13: + resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} + + configstore@5.0.1: + resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} + engines: {node: '>=8'} + + confusing-browser-globals@1.0.11: + resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} + + connect-history-api-fallback@1.6.0: + resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==} + engines: {node: '>=0.8'} + + connect-history-api-fallback@2.0.0: + resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} + engines: {node: '>=0.8'} + + console-browserify@1.1.0: + resolution: {integrity: sha512-duS7VP5pvfsNLDvL1O4VOEbw37AI3A4ZUQYemvDlnpGrNu9tprR7BYWpDYwC0Xia0Zxz5ZupdiIrUp0GH1aXfg==} + + console-control-strings@1.1.0: + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + + content-disposition@0.5.4: + resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} + engines: {node: '>= 0.6'} + + content-type@1.0.5: + resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} + engines: {node: '>= 0.6'} + + conventional-changelog-angular@5.0.13: + resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} + engines: {node: '>=10'} + + conventional-changelog-core@4.2.4: + resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==} + engines: {node: '>=10'} + + conventional-changelog-preset-loader@2.3.4: + resolution: {integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==} + engines: {node: '>=10'} + + conventional-changelog-writer@5.0.1: + resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==} + engines: {node: '>=10'} + hasBin: true + + conventional-commits-filter@2.0.7: + resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==} + engines: {node: '>=10'} + + conventional-commits-parser@3.2.4: + resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} + engines: {node: '>=10'} + hasBin: true + + conventional-recommended-bump@6.1.0: + resolution: {integrity: sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==} + engines: {node: '>=10'} + hasBin: true + + convert-source-map@1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + cookie-signature@1.0.6: + resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + + cookie@0.4.2: + resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} + engines: {node: '>= 0.6'} + + cookie@0.6.0: + resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} + engines: {node: '>= 0.6'} + + copy-anything@2.0.6: + resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} + + copy-descriptor@0.1.1: + resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} + engines: {node: '>=0.10.0'} + + copy-to-clipboard@3.3.3: + resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==} + + copy-webpack-plugin@10.2.4: + resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==} + engines: {node: '>= 12.20.0'} + peerDependencies: + webpack: 5.84.1 + + copy-webpack-plugin@12.0.2: + resolution: {integrity: sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==} + engines: {node: '>= 18.12.0'} + peerDependencies: + webpack: 5.84.1 + + core-js-compat@3.37.1: + resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==} + + core-js-pure@3.37.1: + resolution: {integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==} + + core-js@2.6.12: + resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} + deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. + + core-js@3.37.1: + resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==} + + core-util-is@1.0.2: + resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + corser@2.0.1: + resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==} + engines: {node: '>= 0.4.0'} + + cosmiconfig@5.2.1: + resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} + engines: {node: '>=4'} + + cosmiconfig@6.0.0: + resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} + engines: {node: '>=8'} + + cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} + + country-language@0.1.7: + resolution: {integrity: sha512-QH8GvZehR0IsFSR8ZPzteaCq/JjsLKk+tHWSQciXVpredI/2Xaf1VAdCuo/XPFWSrRCkSLaZNqnOcot4zceAIw==} + + cp-file@7.0.0: + resolution: {integrity: sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==} + engines: {node: '>=8'} + + cpy@8.1.2: + resolution: {integrity: sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==} + engines: {node: '>=8'} + + create-jest@29.7.0: + resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + + create-require@1.1.1: + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + + cross-spawn@5.1.0: + resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} + + cross-spawn@6.0.5: + resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} + engines: {node: '>=4.8'} + + cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + + crypto-js@3.3.0: + resolution: {integrity: sha512-DIT51nX0dCfKltpRiXV+/TVZq+Qq2NgF4644+K7Ttnla7zEzqc+kjJyiB96BHNyUTBxyjzRcZYpUdZa+QAqi6Q==} + + crypto-random-string@2.0.0: + resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} + engines: {node: '>=8'} + + css-color-keywords@1.0.0: + resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} + engines: {node: '>=4'} + + css-declaration-sorter@6.4.1: + resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} + engines: {node: ^10 || ^12 || >=14} + peerDependencies: + postcss: ^8.0.9 + + css-loader@1.0.1: + resolution: {integrity: sha512-+ZHAZm/yqvJ2kDtPne3uX0C+Vr3Zn5jFn2N4HywtS5ujwvsVkyg0VArEXpl3BgczDA8anieki1FIzhchX4yrDw==} + engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 + + css-loader@3.6.0: + resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==} + engines: {node: '>= 8.9.0'} + peerDependencies: + webpack: 5.84.1 + + css-loader@5.2.7: + resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 + + css-loader@6.11.0: + resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==} + engines: {node: '>= 12.13.0'} + peerDependencies: + '@rspack/core': 0.x || 1.x + webpack: 5.84.1 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true + + css-minimizer-webpack-plugin@3.4.1: + resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} + engines: {node: '>= 12.13.0'} + peerDependencies: + '@parcel/css': '*' + clean-css: '*' + csso: '*' + esbuild: '*' + webpack: 5.84.1 + peerDependenciesMeta: + '@parcel/css': + optional: true + clean-css: + optional: true + csso: + optional: true + esbuild: + optional: true + + css-select-base-adapter@0.1.1: + resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} + + css-select@2.1.0: + resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==} + + css-select@4.3.0: + resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + + css-select@5.1.0: + resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + + css-selector-tokenizer@0.7.3: + resolution: {integrity: sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==} + + css-to-react-native@2.3.2: + resolution: {integrity: sha512-VOFaeZA053BqvvvqIA8c9n0+9vFppVBAHCp6JgFTtTMU3Mzi+XnelJ9XC9ul3BqFzZyQ5N+H0SnwsWT2Ebchxw==} + + css-tree@1.0.0-alpha.37: + resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} + engines: {node: '>=8.0.0'} + + css-tree@1.1.3: + resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} + engines: {node: '>=8.0.0'} + + css-tree@2.2.1: + resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + + css-tree@2.3.1: + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + + css-what@3.4.2: + resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} + engines: {node: '>= 6'} + + css-what@6.1.0: + resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} + engines: {node: '>= 6'} + + css.escape@1.5.1: + resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} + + css@3.0.0: + resolution: {integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + cssnano-preset-default@5.2.14: + resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + cssnano-utils@3.1.0: + resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + cssnano@5.1.15: + resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + csso@4.2.0: + resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} + engines: {node: '>=8.0.0'} + + csso@5.0.5: + resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + + cssom@0.3.8: + resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + + cssom@0.4.4: + resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} + + cssom@0.5.0: + resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} + + cssstyle@2.3.0: + resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} + engines: {node: '>=8'} + + csstype@2.6.21: + resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==} + + csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + + csv-generate@3.4.3: + resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} + + csv-parse@4.16.3: + resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} + + csv-stringify@5.6.5: + resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} + + csv@5.5.3: + resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} + engines: {node: '>= 0.1.90'} + + currently-unhandled@0.4.1: + resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} + engines: {node: '>=0.10.0'} + + cypress@9.7.0: + resolution: {integrity: sha512-+1EE1nuuuwIt/N1KXRR2iWHU+OiIt7H28jJDyyI4tiUftId/DrXYEwoDa5+kH2pki1zxnA0r6HrUGHV5eLbF5Q==} + engines: {node: '>=12.0.0'} + hasBin: true + + d3-array@3.2.4: + resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} + engines: {node: '>=12'} + + d3-color@3.1.0: + resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} + engines: {node: '>=12'} + + d3-dispatch@3.0.1: + resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} + engines: {node: '>=12'} + + d3-drag@3.0.0: + resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} + engines: {node: '>=12'} + + d3-ease@3.0.1: + resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} + engines: {node: '>=12'} + + d3-format@3.1.0: + resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} + engines: {node: '>=12'} + + d3-interpolate@3.0.1: + resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} + engines: {node: '>=12'} + + d3-path@3.1.0: + resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==} + engines: {node: '>=12'} + + d3-scale@4.0.2: + resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} + engines: {node: '>=12'} + + d3-selection@3.0.0: + resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} + engines: {node: '>=12'} + + d3-shape@3.2.0: + resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==} + engines: {node: '>=12'} + + d3-time-format@4.1.0: + resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} + engines: {node: '>=12'} + + d3-time@3.1.0: + resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} + engines: {node: '>=12'} + + d3-timer@3.0.1: + resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} + engines: {node: '>=12'} + + d3-transition@3.0.1: + resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} + engines: {node: '>=12'} + peerDependencies: + d3-selection: 2 - 3 + + d3-zoom@3.0.0: + resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} + engines: {node: '>=12'} + + d@1.0.2: + resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==} + engines: {node: '>=0.12'} + + damerau-levenshtein@1.0.8: + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + + dargs@7.0.0: + resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} + engines: {node: '>=8'} + + dashdash@1.14.1: + resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} + engines: {node: '>=0.10'} + + data-urls@2.0.0: + resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} + engines: {node: '>=10'} + + data-urls@3.0.2: + resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} + engines: {node: '>=12'} + + data-view-buffer@1.0.1: + resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} + engines: {node: '>= 0.4'} + + data-view-byte-length@1.0.1: + resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} + engines: {node: '>= 0.4'} + + data-view-byte-offset@1.0.0: + resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} + engines: {node: '>= 0.4'} + + dataloader@1.4.0: + resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} + + date-format@2.1.0: + resolution: {integrity: sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==} + engines: {node: '>=4.0'} + deprecated: 2.x is no longer supported. Please upgrade to 4.x or higher. + + date-now@0.1.4: + resolution: {integrity: sha512-AsElvov3LoNB7tf5k37H2jYSB+ZZPMT5sG2QjJCcdlV5chIv6htBUBUui2IKRjgtKAKtCBN7Zbwa+MtwLjSeNw==} + + dateformat@3.0.3: + resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} + + dayjs@1.11.11: + resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==} + + debounce@1.2.1: + resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} + + debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@3.1.0: + resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.3.5: + resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debuglog@1.0.1: + resolution: {integrity: sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + decamelize-keys@1.1.1: + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + engines: {node: '>=0.10.0'} + + decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + + decimal.js-light@2.5.1: + resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==} + + decimal.js@10.4.3: + resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + + decode-named-character-reference@1.0.2: + resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} + + decode-uri-component@0.2.2: + resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} + engines: {node: '>=0.10'} + + decompress-response@3.3.0: + resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} + engines: {node: '>=4'} + + decompress-response@6.0.0: + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} + engines: {node: '>=10'} + + dedent@0.7.0: + resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} + + dedent@1.5.3: + resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} + peerDependencies: + babel-plugin-macros: ^3.1.0 + peerDependenciesMeta: + babel-plugin-macros: + optional: true + + deep-diff@1.0.2: + resolution: {integrity: sha512-aWS3UIVH+NPGCD1kki+DCU9Dua032iSsO43LqQpcs4R3+dVv7tX0qBGjiVHJHjplsoUM2XRO/KB92glqc68awg==} + + deep-equal@1.1.2: + resolution: {integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==} + engines: {node: '>= 0.4'} + + deep-equal@2.2.3: + resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} + engines: {node: '>= 0.4'} + + deep-extend@0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + deep-object-diff@1.1.9: + resolution: {integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==} + + deepmerge@4.3.1: + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} + + default-browser-id@1.0.4: + resolution: {integrity: sha512-qPy925qewwul9Hifs+3sx1ZYn14obHxpkX+mPD369w4Rzg+YkJBgi3SOvwUq81nWSjqGUegIgEPwD8u+HUnxlw==} + engines: {node: '>=0.10.0'} + hasBin: true + + default-gateway@4.2.0: + resolution: {integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==} + engines: {node: '>=6'} + + default-gateway@6.0.3: + resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} + engines: {node: '>= 10'} + + default-require-extensions@3.0.1: + resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==} + engines: {node: '>=8'} + + defaults@1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + + defer-to-connect@1.1.3: + resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} + + defer-to-connect@2.0.1: + resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} + engines: {node: '>=10'} + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + define-lazy-prop@2.0.0: + resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} + engines: {node: '>=8'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + define-property@0.2.5: + resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} + engines: {node: '>=0.10.0'} + + define-property@1.0.0: + resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} + engines: {node: '>=0.10.0'} + + define-property@2.0.2: + resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} + engines: {node: '>=0.10.0'} + + del@4.1.1: + resolution: {integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==} + engines: {node: '>=6'} + + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + + delegates@1.0.0: + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} + + depd@1.1.2: + resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} + engines: {node: '>= 0.6'} + + depd@2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + + deprecation@2.3.1: + resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + destroy@1.2.0: + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + + detab@2.0.4: + resolution: {integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==} + + detect-indent@5.0.0: + resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==} + engines: {node: '>=4'} + + detect-indent@6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} + + detect-newline@3.1.0: + resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} + engines: {node: '>=8'} + + detect-node@2.1.0: + resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} + + detect-package-manager@2.0.1: + resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==} + engines: {node: '>=12'} + + detect-port@1.6.1: + resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==} + engines: {node: '>= 4.0.0'} + hasBin: true + + devlop@1.1.0: + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + + dezalgo@1.0.4: + resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==} + + diff-sequences@26.6.2: + resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==} + engines: {node: '>= 10.14.2'} + + diff-sequences@28.1.1: + resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + diff-sequences@29.6.3: + resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + diff@4.0.2: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} + + dir-glob@2.2.2: + resolution: {integrity: sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==} + engines: {node: '>=4'} + + dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + + dns-equal@1.0.0: + resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} + + dns-packet@1.3.4: + resolution: {integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==} + + dns-packet@5.6.1: + resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} + engines: {node: '>=6'} + + dns-txt@2.0.2: + resolution: {integrity: sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==} + + doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + + doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + + dom-accessibility-api@0.5.16: + resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} + + dom-accessibility-api@0.6.3: + resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} + + dom-converter@0.2.0: + resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} + + dom-helpers@5.2.1: + resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} + + dom-serializer@0.2.2: + resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} + + dom-serializer@1.4.1: + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + + dom-serializer@2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + + dom-walk@0.1.2: + resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==} + + domelementtype@1.3.1: + resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} + + domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + + domexception@2.0.1: + resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} + engines: {node: '>=8'} + deprecated: Use your platform's native DOMException instead + + domexception@4.0.0: + resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} + engines: {node: '>=12'} + deprecated: Use your platform's native DOMException instead + + domhandler@2.3.0: + resolution: {integrity: sha512-q9bUwjfp7Eif8jWxxxPSykdRZAb6GkguBGSgvvCrhI9wB71W2K/Kvv4E61CF/mcCfnVJDeDWx/Vb/uAqbDj6UQ==} + + domhandler@4.3.1: + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} + + domhandler@5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} + + dompurify@3.1.5: + resolution: {integrity: sha512-lwG+n5h8QNpxtyrJW/gJWckL+1/DQiYMX8f7t8Z2AZTPw1esVrqjI63i7Zc2Gz0aKzLVMYC1V1PL/ky+aY/NgA==} + + domutils@1.5.1: + resolution: {integrity: sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==} + + domutils@1.7.0: + resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} + + domutils@2.8.0: + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + + domutils@3.1.0: + resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} + + dot-case@3.0.4: + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + + dot-prop@5.3.0: + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} + + dot-prop@6.0.1: + resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} + engines: {node: '>=10'} + + dotenv-expand@5.1.0: + resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} + + dotenv@10.0.0: + resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} + engines: {node: '>=10'} + + dotenv@16.4.5: + resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} + engines: {node: '>=12'} + + dotenv@8.6.0: + resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} + engines: {node: '>=10'} + + downshift@6.1.12: + resolution: {integrity: sha512-7XB/iaSJVS4T8wGFT3WRXmSF1UlBHAA40DshZtkrIscIN+VC+Lh363skLxFTvJwtNgHxAMDGEHT4xsyQFWL+UA==} + peerDependencies: + react: '>=16.12.0' + + duplexer3@0.1.5: + resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} + + duplexer@0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + + eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + + ecc-jsbn@0.1.2: + resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} + + editorconfig@1.0.4: + resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==} + engines: {node: '>=14'} + hasBin: true + + ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + + ejs@3.1.10: + resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} + engines: {node: '>=0.10.0'} + hasBin: true + + electron-to-chromium@1.4.810: + resolution: {integrity: sha512-Kaxhu4T7SJGpRQx99tq216gCq2nMxJo+uuT6uzz9l8TVN2stL7M06MIIXAtr9jsrLs2Glflgf2vMQRepxawOdQ==} + + element-resize-detector@1.2.4: + resolution: {integrity: sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==} + + emittery@0.10.2: + resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} + engines: {node: '>=12'} + + emittery@0.13.1: + resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} + engines: {node: '>=12'} + + emittery@0.7.2: + resolution: {integrity: sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==} + engines: {node: '>=10'} + + emoji-regex@7.0.3: + resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + emojis-list@2.1.0: + resolution: {integrity: sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng==} + engines: {node: '>= 0.10'} + + emojis-list@3.0.0: + resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} + engines: {node: '>= 4'} + + emotion-theming@10.3.0: + resolution: {integrity: sha512-mXiD2Oj7N9b6+h/dC6oLf9hwxbtKHQjoIqtodEyL8CpkN4F3V4IK/BT4D0C7zSs4BBFOu4UlPJbvvBLa88SGEA==} + peerDependencies: + '@emotion/core': ^10.0.27 + react: '>=16.3.0' + + encodeurl@1.0.2: + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + engines: {node: '>= 0.8'} + + encoding@0.1.13: + resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} + + end-of-stream@1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + + endent@2.1.0: + resolution: {integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==} + + enhanced-resolve@4.5.0: + resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==} + engines: {node: '>=6.9.0'} + + enhanced-resolve@5.17.0: + resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==} + engines: {node: '>=10.13.0'} + + enquirer@2.3.6: + resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + engines: {node: '>=8.6'} + + enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} + + entities@1.0.0: + resolution: {integrity: sha512-LbLqfXgJMmy81t+7c14mnulFHJ170cM6E+0vMXR9k/ZiZwgX8i5pNgjTCX3SO4VeUsFLV+8InixoretwU+MjBQ==} + + entities@2.2.0: + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + + entities@3.0.1: + resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} + engines: {node: '>=0.12'} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + env-paths@2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} + + envinfo@7.13.0: + resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==} + engines: {node: '>=4'} + hasBin: true + + err-code@2.0.3: + resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} + + errno@0.1.8: + resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} + hasBin: true + + error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + + error-stack-parser@2.1.4: + resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} + + es-abstract@1.23.3: + resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} + engines: {node: '>= 0.4'} + + es-array-method-boxes-properly@1.0.0: + resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} + + es-define-property@1.0.0: + resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-get-iterator@1.1.3: + resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} + + es-iterator-helpers@1.0.19: + resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==} + engines: {node: '>= 0.4'} + + es-module-lexer@1.5.4: + resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} + + es-object-atoms@1.0.0: + resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.0.3: + resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} + engines: {node: '>= 0.4'} + + es-shim-unscopables@1.0.2: + resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} + + es-to-primitive@1.2.1: + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} + + es5-ext@0.10.64: + resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==} + engines: {node: '>=0.10'} + + es5-shim@4.6.7: + resolution: {integrity: sha512-jg21/dmlrNQI7JyyA2w7n+yifSxBng0ZralnSfVZjoCawgNTCnS+yBCyVM9DL5itm7SUnDGgv7hcq2XCZX4iRQ==} + engines: {node: '>=0.4.0'} + + es6-error@4.1.1: + resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} + + es6-iterator@2.0.3: + resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} + + es6-shim@0.35.8: + resolution: {integrity: sha512-Twf7I2v4/1tLoIXMT8HlqaBSS5H2wQTs2wx3MNYCI8K1R1/clXyCazrcVCPm/FuO9cyV8+leEaZOWD5C253NDg==} + + es6-symbol@3.1.4: + resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==} + engines: {node: '>=0.12'} + + escalade@3.1.2: + resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} + engines: {node: '>=6'} + + escape-goat@2.1.1: + resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==} + engines: {node: '>=8'} + + escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + escape-string-regexp@2.0.0: + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + + escodegen@2.1.0: + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} + hasBin: true + + eslint-compat-utils@0.5.1: + resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} + engines: {node: '>=12'} + peerDependencies: + eslint: '>=6.0.0' + + eslint-config-prettier@8.1.0: + resolution: {integrity: sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + + eslint-import-resolver-node@0.3.9: + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + + eslint-module-utils@2.8.1: + resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} + 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 + + eslint-plugin-cypress@2.15.2: + resolution: {integrity: sha512-CtcFEQTDKyftpI22FVGpx8bkpKyYXBlNge6zSo0pl5/qJvBAnzaD76Vu2AsP16d6mTj478Ldn2mhgrWV+Xr0vQ==} + peerDependencies: + eslint: '>= 3.2.1' + + eslint-plugin-header@https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3: + resolution: {tarball: https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3} + version: 3.2.0 + peerDependencies: + eslint: '>=7.7.0' + + eslint-plugin-import@2.29.1: + resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + + eslint-plugin-jest-dom@4.0.3: + resolution: {integrity: sha512-9j+n8uj0+V0tmsoS7bYC7fLhQmIvjRqRYEcbDSi+TKPsTThLLXCyj5swMSSf/hTleeMktACnn+HFqXBr5gbcbA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6', yarn: '>=1'} + peerDependencies: + eslint: ^6.8.0 || ^7.0.0 || ^8.0.0 + + eslint-plugin-jsonc@2.16.0: + resolution: {integrity: sha512-Af/ZL5mgfb8FFNleH6KlO4/VdmDuTqmM+SPnWcdoWywTetv7kq+vQe99UyQb9XO3b0OWLVuTH7H0d/PXYCMdSg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + + eslint-plugin-jsx-a11y@6.5.1: + resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==} + engines: {node: '>=4.0'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + + eslint-plugin-react-hooks@4.6.2: + resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} + engines: {node: '>=10'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + + eslint-plugin-react@7.34.3: + resolution: {integrity: sha512-aoW4MV891jkUulwDApQbPYTVZmeuSyFrudpbTAQuj5Fv8VL+o6df2xIGpw8B0hPjAaih1/Fb0om9grCdyFYemA==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + + eslint-plugin-testing-library@5.11.1: + resolution: {integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} + peerDependencies: + eslint: ^7.5.0 || ^8.0.0 + + eslint-plugin-tsdoc@0.2.17: + resolution: {integrity: sha512-xRmVi7Zx44lOBuYqG8vzTXuL6IdGOeF9nHX17bjJ8+VE6fsxpdGem0/SBTmAwgYMKYB1WBkqRJVQ+n8GK041pA==} + + eslint-scope@5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + + eslint-utils@2.1.0: + resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} + engines: {node: '>=6'} + + eslint-utils@3.0.0: + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: '>=5' + + eslint-visitor-keys@1.3.0: + resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} + engines: {node: '>=4'} + + eslint-visitor-keys@2.1.0: + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} + engines: {node: '>=10'} + + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-webpack-plugin@2.7.0: + resolution: {integrity: sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + webpack: 5.84.1 + + eslint-webpack-plugin@3.2.0: + resolution: {integrity: sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==} + engines: {node: '>= 12.13.0'} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + webpack: 5.84.1 + + eslint@7.32.0: + resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} + engines: {node: ^10.12.0 || >=12.0.0} + hasBin: true + + esniff@2.0.1: + resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==} + engines: {node: '>=0.10'} + + espree@7.3.1: + resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} + engines: {node: ^10.12.0 || >=12.0.0} + + espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + + esquery@1.5.0: + resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} + engines: {node: '>=0.10'} + + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + estree-to-babel@3.2.1: + resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} + engines: {node: '>=8.3.0'} + + estree-util-is-identifier-name@3.0.0: + resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} + + estree-walker@0.2.1: + resolution: {integrity: sha512-6/I1dwNKk0N9iGOU3ydzAAurz4NPo/ttxZNCqgIVbWFvWyzWBSNonRrJ5CpjDuyBfmM7ENN7WCzUi9aT/UPXXQ==} + + estree-walker@0.6.1: + resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} + + estree-walker@1.0.1: + resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + etag@1.8.1: + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} + + event-emitter@0.3.5: + resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} + + eventemitter2@6.4.9: + resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==} + + eventemitter3@4.0.7: + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + + events@3.3.0: + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} + + eventsource@2.0.2: + resolution: {integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==} + engines: {node: '>=12.0.0'} + + exec-sh@0.2.2: + resolution: {integrity: sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==} + + exec-sh@0.3.6: + resolution: {integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==} + + execa@0.7.0: + resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==} + engines: {node: '>=4'} + + execa@1.0.0: + resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} + engines: {node: '>=6'} + + execa@4.1.0: + resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} + engines: {node: '>=10'} + + execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + + executable@4.1.1: + resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==} + engines: {node: '>=4'} + + exenv@1.2.2: + resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==} + + exit@0.1.2: + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} + engines: {node: '>= 0.8.0'} + + expand-brackets@2.1.4: + resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} + engines: {node: '>=0.10.0'} + + expect@26.6.2: + resolution: {integrity: sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==} + engines: {node: '>= 10.14.2'} + + expect@28.1.3: + resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + expect@29.7.0: + resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + exponential-backoff@3.1.1: + resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} + + express@4.19.2: + resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==} + engines: {node: '>= 0.10.0'} + + ext-list@2.2.2: + resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} + engines: {node: '>=0.10.0'} + + ext-name@5.0.0: + resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==} + engines: {node: '>=4'} + + ext@1.7.0: + resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} + + extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} + + extend-shallow@3.0.2: + resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} + engines: {node: '>=0.10.0'} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + + extendable-error@0.1.7: + resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} + + external-editor@3.1.0: + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} + + extglob@2.0.4: + resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} + engines: {node: '>=0.10.0'} + + extract-text-webpack-plugin@4.0.0-beta.0: + resolution: {integrity: sha512-Hypkn9jUTnFr0DpekNam53X47tXn3ucY08BQumv7kdGgeVUBLq3DJHJTi6HNxv4jl9W+Skxjz9+RnK0sJyqqjA==} + engines: {node: '>= 6.9.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 + + extract-zip@1.7.0: + resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==} + hasBin: true + + extract-zip@2.0.1: + resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} + engines: {node: '>= 10.17.0'} + hasBin: true + + extsprintf@1.3.0: + resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} + engines: {'0': node >=0.6.0} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-equals@5.0.1: + resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==} + engines: {node: '>=6.0.0'} + + fast-glob@2.2.7: + resolution: {integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==} + engines: {node: '>=4.0.0'} + + fast-glob@3.2.7: + resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} + engines: {node: '>=8'} + + fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} + + fast-json-parse@1.0.3: + resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fast-sha256@1.3.0: + resolution: {integrity: sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==} + + fast-sort@3.4.0: + resolution: {integrity: sha512-c/cMBGA5mH3OYjaXedtLIM3hQjv+KuZuiD2QEH5GofNOZeQVDIYIN7Okc2AW1KPhk44g5PTZnXp8t2lOMl8qhQ==} + + fast-xml-parser@3.21.1: + resolution: {integrity: sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==} + hasBin: true + + fastest-levenshtein@1.0.16: + resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} + engines: {node: '>= 4.9.1'} + + fastestsmallesttextencoderdecoder@1.0.22: + resolution: {integrity: sha512-Pb8d48e+oIuY4MaM64Cd7OW1gt4nxCHs7/ddPPZ/Ic3sg8yVGM7O9wDvZ7us6ScaUupzM+pfBolwtYhN1IxBIw==} + + fastparse@1.1.2: + resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==} + + fastq@1.17.1: + resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + + fault@1.0.4: + resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==} + + faye-websocket@0.11.4: + resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} + engines: {node: '>=0.8.0'} + + fb-watchman@2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + + fd-slicer@1.1.0: + resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + + fetch-retry@5.0.6: + resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==} + + figures@3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} + + file-entry-cache@6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} + + file-loader@2.0.0: + resolution: {integrity: sha512-YCsBfd1ZGCyonOKLxPiKPdu+8ld9HAaMEvJewzz+b2eTF7uL5Zm/HdBF6FjCrpCMRq25Mi0U1gl4pwn2TlH7hQ==} + engines: {node: '>= 6.9.0 < 7.0.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 + + file-loader@6.2.0: + resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 + + file-saver@2.0.5: + resolution: {integrity: sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==} + + file-system-cache@1.1.0: + resolution: {integrity: sha512-IzF5MBq+5CR0jXx5RxPe4BICl/oEhBSXKaL9fLhAXrIfIUS77Hr4vzrYyqYMHN6uTt+BOqi3fDCTjjEBCjERKw==} + + file-type@17.1.6: + resolution: {integrity: sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + file-uri-to-path@1.0.0: + resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + + filelist@1.0.4: + resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + + filename-reserved-regex@3.0.0: + resolution: {integrity: sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + filenamify@5.1.1: + resolution: {integrity: sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==} + engines: {node: '>=12.20'} + + filesize@3.6.1: + resolution: {integrity: sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==} + engines: {node: '>= 0.4.0'} + + fill-range@4.0.0: + resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} + engines: {node: '>=0.10.0'} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + filter-obj@1.1.0: + resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} + engines: {node: '>=0.10.0'} + + final-form@4.20.10: + resolution: {integrity: sha512-TL48Pi1oNHeMOHrKv1bCJUrWZDcD3DIG6AGYVNOnyZPr7Bd/pStN0pL+lfzF5BNoj/FclaoiaLenk4XUIFVYng==} + engines: {node: '>=8'} + + finalhandler@1.2.0: + resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} + engines: {node: '>= 0.8'} + + find-cache-dir@2.1.0: + resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} + engines: {node: '>=6'} + + find-cache-dir@3.3.2: + resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} + engines: {node: '>=8'} + + find-root@1.1.0: + resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} + + find-up@1.1.2: + resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==} + engines: {node: '>=0.10.0'} + + find-up@2.1.0: + resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} + engines: {node: '>=4'} + + find-up@3.0.0: + resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} + engines: {node: '>=6'} + + find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + find-versions@5.1.0: + resolution: {integrity: sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==} + engines: {node: '>=12'} + + find-yarn-workspace-root2@1.2.16: + resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} + + flat-cache@3.2.0: + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} + engines: {node: ^10.12.0 || >=12.0.0} + + flat@5.0.2: + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + hasBin: true + + flatted@2.0.2: + resolution: {integrity: sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==} + + flatted@3.3.1: + resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} + + flow-parser@0.238.0: + resolution: {integrity: sha512-VE7XSv1epljsIN2YeBnxCmGJihpNIAnLLu/pPOdA+Gkso7qDltJwUi6vfHjgxdBbjSdAuPGnhuOHJUQG+yYwIg==} + engines: {node: '>=0.4.0'} + + follow-redirects@1.15.6: + resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + + follow-redirects@1.5.10: + resolution: {integrity: sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==} + engines: {node: '>=4.0'} + + for-each@0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + + for-in@0.1.8: + resolution: {integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==} + engines: {node: '>=0.10.0'} + + for-in@1.0.2: + resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} + engines: {node: '>=0.10.0'} + + for-own@0.1.5: + resolution: {integrity: sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==} + engines: {node: '>=0.10.0'} + + foreground-child@2.0.0: + resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} + engines: {node: '>=8.0.0'} + + foreground-child@3.2.1: + resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==} + engines: {node: '>=14'} + + forever-agent@0.6.1: + resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} + + fork-ts-checker-webpack-plugin@4.1.6: + resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} + engines: {node: '>=6.11.5', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: 5.84.1 + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true + + fork-ts-checker-webpack-plugin@6.5.3: + resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} + engines: {node: '>=10', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: 5.84.1 + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true + + fork-ts-checker-webpack-plugin@7.2.13: + resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==} + engines: {node: '>=12.13.0', yarn: '>=1.0.0'} + peerDependencies: + typescript: '>3.6.0' + vue-template-compiler: '*' + webpack: 5.84.1 + peerDependenciesMeta: + vue-template-compiler: + optional: true + + form-data@2.3.3: + resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} + engines: {node: '>= 0.12'} + + form-data@3.0.1: + resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} + engines: {node: '>= 6'} + + form-data@4.0.0: + resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} + engines: {node: '>= 6'} + + format@0.2.2: + resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} + engines: {node: '>=0.4.x'} + + forwarded@0.2.0: + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + engines: {node: '>= 0.6'} + + fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + + fragment-cache@0.2.1: + resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} + engines: {node: '>=0.10.0'} + + framer-motion@11.2.11: + resolution: {integrity: sha512-n+ozoEzgJu/2h9NoQMokF+CwNqIRVyuRC4RwMPwklfrrTjbVV32k9uBIgqYAwn7Jfpt5LuDVCtT57MWz1FbaLw==} + peerDependencies: + '@emotion/is-prop-valid': '*' + react: ^18.0.0 + react-dom: ^18.0.0 + peerDependenciesMeta: + '@emotion/is-prop-valid': + optional: true + react: + optional: true + react-dom: + optional: true + + fresh@0.5.2: + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} + + fromentries@1.3.2: + resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==} + + fs-constants@1.0.0: + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + + fs-extra@10.1.0: + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} + + fs-extra@7.0.1: + resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} + engines: {node: '>=6 <7 || >=8'} + + fs-extra@8.1.0: + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} + + fs-extra@9.1.0: + resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} + engines: {node: '>=10'} + + fs-minipass@2.1.0: + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} + + fs-monkey@1.0.6: + resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==} + + fs-readdir-recursive@1.1.0: + resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + fs@0.0.1-security: + resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} + + fsevents@1.2.13: + resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==} + engines: {node: '>= 4.0'} + os: [darwin] + deprecated: The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2 + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + function.prototype.name@1.1.6: + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} + engines: {node: '>= 0.4'} + + functional-red-black-tree@1.0.1: + resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} + + functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + + fuse.js@3.6.1: + resolution: {integrity: sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw==} + engines: {node: '>=6'} + + gauge@3.0.2: + resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} + engines: {node: '>=10'} + deprecated: This package is no longer supported. + + gauge@4.0.4: + resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. + + generic-names@4.0.0: + resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} + + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + get-intrinsic@1.2.4: + resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} + engines: {node: '>= 0.4'} + + get-package-type@0.1.0: + resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} + engines: {node: '>=8.0.0'} + + get-pkg-repo@4.2.1: + resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} + engines: {node: '>=6.9.0'} + hasBin: true + + get-port@5.1.1: + resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} + engines: {node: '>=8'} + + get-stdin@4.0.1: + resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==} + engines: {node: '>=0.10.0'} + + get-stream@3.0.0: + resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==} + engines: {node: '>=4'} + + get-stream@4.1.0: + resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} + engines: {node: '>=6'} + + get-stream@5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + + get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + + get-symbol-description@1.0.2: + resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} + engines: {node: '>= 0.4'} + + get-value@2.0.6: + resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} + engines: {node: '>=0.10.0'} + + getos@3.2.1: + resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} + + getpass@0.1.7: + resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} + + git-raw-commits@2.0.11: + resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} + engines: {node: '>=10'} + hasBin: true + + git-remote-origin-url@2.0.0: + resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} + engines: {node: '>=4'} + + git-semver-tags@4.1.1: + resolution: {integrity: sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==} + engines: {node: '>=10'} + hasBin: true + + git-up@7.0.0: + resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} + + git-url-parse@13.1.1: + resolution: {integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==} + + gitconfiglocal@1.0.0: + resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==} + + github-slugger@1.5.0: + resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} + + glob-parent@3.1.0: + resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + glob-promise@3.4.0: + resolution: {integrity: sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==} + engines: {node: '>=4'} + peerDependencies: + glob: '*' + + glob-to-regexp@0.3.0: + resolution: {integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==} + + glob-to-regexp@0.4.1: + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + + glob@10.4.2: + resolution: {integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==} + engines: {node: '>=16 || 14 >=14.18'} + hasBin: true + + glob@7.1.4: + resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} + deprecated: Glob versions prior to v9 are no longer supported + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported + + glob@8.1.0: + resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} + engines: {node: '>=12'} + deprecated: Glob versions prior to v9 are no longer supported + + global-dirs@3.0.1: + resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} + engines: {node: '>=10'} + + global@4.4.0: + resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==} + + globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + + globals@13.24.0: + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} + engines: {node: '>=8'} + + globals@9.18.0: + resolution: {integrity: sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==} + engines: {node: '>=0.10.0'} + + globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + + globby@10.0.1: + resolution: {integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==} + engines: {node: '>=8'} + + globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + + globby@12.2.0: + resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + globby@14.0.1: + resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==} + engines: {node: '>=18'} + + globby@6.1.0: + resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==} + engines: {node: '>=0.10.0'} + + globby@9.2.0: + resolution: {integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==} + engines: {node: '>=6'} + + gopd@1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + + got@11.8.6: + resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} + engines: {node: '>=10.19.0'} + + got@9.6.0: + resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} + engines: {node: '>=8.6'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + grapheme-splitter@1.0.4: + resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} + + graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + + graphql@15.9.0: + resolution: {integrity: sha512-GCOQdvm7XxV1S4U4CGrsdlEN37245eC8P9zaYCMr6K1BG0IPGy5lUwmJsEOGyl1GD6HXjOtl2keCP9asRBwNvA==} + engines: {node: '>= 10.x'} + + growly@1.3.0: + resolution: {integrity: sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==} + + gzip-size@6.0.0: + resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} + engines: {node: '>=10'} + + handle-thing@2.0.1: + resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} + + handlebars@4.7.8: + resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} + engines: {node: '>=0.4.7'} + hasBin: true + + hard-rejection@2.1.0: + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} + + harmony-reflect@1.6.2: + resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} + + has-ansi@2.0.0: + resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} + engines: {node: '>=0.10.0'} + + has-bigints@1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + + has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-glob@1.0.0: + resolution: {integrity: sha512-D+8A457fBShSEI3tFCj65PAbT++5sKiFtdCdOam0gnfBgw9D277OERk+HM9qYJXmdVLZ/znez10SqHN0BBQ50g==} + engines: {node: '>=0.10.0'} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.0.3: + resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} + engines: {node: '>= 0.4'} + + has-symbols@1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + + has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + + has-unicode@2.0.1: + resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + + has-value@0.3.1: + resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} + engines: {node: '>=0.10.0'} + + has-value@1.0.0: + resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} + engines: {node: '>=0.10.0'} + + has-values@0.1.4: + resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} + engines: {node: '>=0.10.0'} + + has-values@1.0.0: + resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} + engines: {node: '>=0.10.0'} + + has-yarn@2.1.0: + resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==} + engines: {node: '>=8'} + + has@1.0.4: + resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} + engines: {node: '>= 0.4.0'} + + hasha@5.2.2: + resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} + engines: {node: '>=8'} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + hast-to-hyperscript@9.0.1: + resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==} + + hast-util-from-parse5@6.0.1: + resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==} + + hast-util-parse-selector@2.2.5: + resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==} + + hast-util-raw@6.0.1: + resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==} + + hast-util-to-jsx-runtime@2.3.0: + resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==} + + hast-util-to-parse5@6.0.0: + resolution: {integrity: sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==} + + hast-util-whitespace@3.0.0: + resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} + + hastscript@6.0.0: + resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} + + he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + + headers-utils@3.0.2: + resolution: {integrity: sha512-xAxZkM1dRyGV2Ou5bzMxBPNLoRCjcX+ya7KSWybQD2KwLphxsapUVK6x/02o7f4VU6GPSXch9vNY2+gkU8tYWQ==} + + highlight.js@10.7.3: + resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} + + history@4.10.1: + resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==} + + history@5.0.0: + resolution: {integrity: sha512-3NyRMKIiFSJmIPdq7FxkNMJkQ7ZEtVblOQ38VtKaA0zZMW1Eo6Q6W8oDKEflr1kNNTItSnk4JMCO1deeSgbLLg==} + + hoist-non-react-statics@2.5.5: + resolution: {integrity: sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==} + + hoist-non-react-statics@3.3.2: + resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} + + hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + + hosted-git-info@3.0.8: + resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==} + engines: {node: '>=10'} + + hosted-git-info@4.1.0: + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} + + hosted-git-info@5.2.1: + resolution: {integrity: sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + hpack.js@2.1.6: + resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} + + html-dom-parser@2.0.0: + resolution: {integrity: sha512-PwVjg12yfWunpH2WjwjaYNKcZyKKm20kclTfMQohiRzfgYiXX0dR7nXIIKnHneghMDvB0rKFZLEAe11ykOfpcg==} + + html-encoding-sniffer@2.0.1: + resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} + engines: {node: '>=10'} + + html-encoding-sniffer@3.0.0: + resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + engines: {node: '>=12'} + + html-entities@1.4.0: + resolution: {integrity: sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==} + + html-entities@2.5.2: + resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} + + html-escaper@2.0.2: + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + + html-minifier-terser@5.1.1: + resolution: {integrity: sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==} + engines: {node: '>=6'} + hasBin: true + + html-minifier-terser@6.1.0: + resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} + engines: {node: '>=12'} + hasBin: true + + html-parse-stringify@3.0.1: + resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==} + + html-react-parser@2.0.0: + resolution: {integrity: sha512-AI1lhybWGi8w4QkGtEIS3iSGAjeFGaonxl/+CzqzCeNT3g3z/yx2NKsA93trnv2BLjhe+juGLmLeTSUkyYWk9Q==} + peerDependencies: + react: 0.14 || 15 || 16 || 17 || 18 + + html-tags@3.3.1: + resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} + engines: {node: '>=8'} + + html-url-attributes@3.0.0: + resolution: {integrity: sha512-/sXbVCWayk6GDVg3ctOX6nxaVj7So40FcFAnWlWGNAB1LpYKcV5Cd10APjPjW80O7zYW2MsjBV4zZ7IZO5fVow==} + + html-void-elements@1.0.5: + resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==} + + html-webpack-plugin@4.5.2: + resolution: {integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==} + engines: {node: '>=6.9'} + peerDependencies: + webpack: 5.84.1 + + html-webpack-plugin@5.6.0: + resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==} + engines: {node: '>=10.13.0'} + peerDependencies: + '@rspack/core': 0.x || 1.x + webpack: 5.84.1 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true + + htmlparser2@3.8.3: + resolution: {integrity: sha512-hBxEg3CYXe+rPIua8ETe7tmG3XDn9B0edOE/e9wH2nLczxzgdu0m0aNHY+5wFZiviLWLdANPJTssa92dMcXQ5Q==} + + htmlparser2@6.1.0: + resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} + + htmlparser2@7.2.0: + resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} + + http-cache-semantics@4.1.1: + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} + + http-deceiver@1.2.7: + resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} + + http-errors@1.6.3: + resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} + engines: {node: '>= 0.6'} + + http-errors@2.0.0: + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} + + http-parser-js@0.5.8: + resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} + + http-proxy-agent@4.0.1: + resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} + engines: {node: '>= 6'} + + http-proxy-agent@5.0.0: + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} + + http-proxy-middleware@0.19.1: + resolution: {integrity: sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==} + engines: {node: '>=4.0.0'} + + http-proxy-middleware@2.0.6: + resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/express': ^4.17.13 + peerDependenciesMeta: + '@types/express': + optional: true + + http-proxy@1.18.1: + resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} + engines: {node: '>=8.0.0'} + + http-server@14.1.1: + resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==} + engines: {node: '>=12'} + hasBin: true + + http-signature@1.3.6: + resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} + engines: {node: '>=0.10'} + + http2-wrapper@1.0.3: + resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} + engines: {node: '>=10.19.0'} + + https-proxy-agent@4.0.0: + resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==} + engines: {node: '>= 6.0.0'} + + https-proxy-agent@5.0.1: + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} + + human-id@1.0.2: + resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} + + human-signals@1.1.1: + resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} + engines: {node: '>=8.12.0'} + + human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + + humanize-ms@1.2.1: + resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} + + i18next-browser-languagedetector@6.1.8: + resolution: {integrity: sha512-Svm+MduCElO0Meqpj1kJAriTC6OhI41VhlT/A0UPjGoPZBhAHIaGE5EfsHlTpgdH09UVX7rcc72pSDDBeKSQQA==} + + i18next-xhr-backend@3.2.2: + resolution: {integrity: sha512-OtRf2Vo3IqAxsttQbpjYnmMML12IMB5e0fc5B7qKJFLScitYaXa1OhMX0n0X/3vrfFlpHL9Ro/H+ps4Ej2j7QQ==} + deprecated: replaced by i18next-http-backend + + i18next@21.10.0: + resolution: {integrity: sha512-YeuIBmFsGjUfO3qBmMOc0rQaun4mIpGKET5WDwvu8lU7gvwpcariZLNtL0Fzj+zazcHUrlXHiptcFhBMFaxzfg==} + + iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + + iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + + icss-replace-symbols@1.1.0: + resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} + + icss-utils@2.1.0: + resolution: {integrity: sha512-bsVoyn/1V4R1kYYjLcWLedozAM4FClZUdjE9nIr8uWY7xs78y9DATgwz2wGU7M+7z55KenmmTkN2DVJ7bqzjAA==} + + icss-utils@4.1.1: + resolution: {integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==} + engines: {node: '>= 6'} + + icss-utils@5.1.0: + resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + identity-obj-proxy@3.0.0: + resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} + engines: {node: '>=4'} + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore-walk@5.0.1: + resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + ignore@4.0.6: + resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} + engines: {node: '>= 4'} + + ignore@5.3.1: + resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} + engines: {node: '>= 4'} + + image-size@0.5.5: + resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} + engines: {node: '>=0.10.0'} + hasBin: true + + immutable@4.3.6: + resolution: {integrity: sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==} + + import-cwd@2.1.0: + resolution: {integrity: sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==} + engines: {node: '>=4'} + + import-cwd@3.0.0: + resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} + engines: {node: '>=8'} + + import-fresh@2.0.0: + resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} + engines: {node: '>=4'} + + import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + + import-from@2.1.0: + resolution: {integrity: sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==} + engines: {node: '>=4'} + + import-from@3.0.0: + resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==} + engines: {node: '>=8'} + + import-lazy@2.1.0: + resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==} + engines: {node: '>=4'} + + import-local@2.0.0: + resolution: {integrity: sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==} + engines: {node: '>=6'} + hasBin: true + + import-local@3.1.0: + resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} + engines: {node: '>=8'} + hasBin: true + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + indent-string@2.1.0: + resolution: {integrity: sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==} + engines: {node: '>=0.10.0'} + + indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + + infer-owner@1.0.4: + resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + + inherits@2.0.3: + resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + + ini@2.0.0: + resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} + engines: {node: '>=10'} + + init-package-json@3.0.2: + resolution: {integrity: sha512-YhlQPEjNFqlGdzrBfDNRLhvoSgX7iQRgSxgsNknRQ9ITXFT7UMfVMWhBTOh2Y+25lRnGrv5Xz8yZwQ3ACR6T3A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + inline-style-parser@0.1.1: + resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} + + inline-style-parser@0.2.3: + resolution: {integrity: sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==} + + inquirer@8.2.6: + resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} + engines: {node: '>=12.0.0'} + + internal-ip@4.3.0: + resolution: {integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==} + engines: {node: '>=6'} + + internal-slot@1.0.7: + resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} + engines: {node: '>= 0.4'} + + internmap@2.0.3: + resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} + engines: {node: '>=12'} + + interpret@1.4.0: + resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} + engines: {node: '>= 0.10'} + + interpret@2.2.0: + resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==} + engines: {node: '>= 0.10'} + + invariant@2.2.4: + resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + + ip-address@9.0.5: + resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} + engines: {node: '>= 12'} + + ip-regex@2.1.0: + resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==} + engines: {node: '>=4'} + + ip@1.1.9: + resolution: {integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==} + + ip@2.0.1: + resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==} + + ipaddr.js@1.9.1: + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + engines: {node: '>= 0.10'} + + ipaddr.js@2.2.0: + resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==} + engines: {node: '>= 10'} + + is-absolute-url@3.0.3: + resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==} + engines: {node: '>=8'} + + is-accessor-descriptor@1.0.1: + resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==} + engines: {node: '>= 0.10'} + + is-alphabetical@1.0.4: + resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} + + is-alphabetical@2.0.1: + resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} + + is-alphanumerical@1.0.4: + resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} + + is-alphanumerical@2.0.1: + resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} + + is-arguments@1.1.1: + resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} + engines: {node: '>= 0.4'} + + is-array-buffer@3.0.4: + resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} + engines: {node: '>= 0.4'} + + is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + + is-async-function@2.0.0: + resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} + engines: {node: '>= 0.4'} + + is-bigint@1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + + is-binary-path@1.0.1: + resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==} + engines: {node: '>=0.10.0'} + + is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + + is-boolean-object@1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} + + is-buffer@1.1.6: + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + + is-buffer@2.0.5: + resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} + engines: {node: '>=4'} + + is-builtin-module@3.2.1: + resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} + engines: {node: '>=6'} + + is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + + is-ci@2.0.0: + resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} + hasBin: true + + is-ci@3.0.1: + resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} + hasBin: true + + is-core-module@2.14.0: + resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==} + engines: {node: '>= 0.4'} + + is-data-descriptor@1.0.1: + resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==} + engines: {node: '>= 0.4'} + + is-data-view@1.0.1: + resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} + engines: {node: '>= 0.4'} + + is-date-object@1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} + + is-decimal@1.0.4: + resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} + + is-decimal@2.0.1: + resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} + + is-descriptor@0.1.7: + resolution: {integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==} + engines: {node: '>= 0.4'} + + is-descriptor@1.0.3: + resolution: {integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==} + engines: {node: '>= 0.4'} + + is-directory@0.3.1: + resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} + engines: {node: '>=0.10.0'} + + is-docker@2.2.1: + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} + hasBin: true + + is-dom@1.1.0: + resolution: {integrity: sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==} + + is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} + + is-extendable@1.0.1: + resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} + engines: {node: '>=0.10.0'} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-finalizationregistry@1.0.2: + resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} + + is-finite@1.1.0: + resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==} + engines: {node: '>=0.10.0'} + + is-fullwidth-code-point@2.0.0: + resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} + engines: {node: '>=4'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-function@1.0.2: + resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==} + + is-generator-fn@2.1.0: + resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} + engines: {node: '>=6'} + + is-generator-function@1.0.10: + resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} + engines: {node: '>= 0.4'} + + is-glob@3.1.0: + resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==} + engines: {node: '>=0.10.0'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-hexadecimal@1.0.4: + resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} + + is-hexadecimal@2.0.1: + resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} + + is-installed-globally@0.4.0: + resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} + engines: {node: '>=10'} + + is-interactive@1.0.0: + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + engines: {node: '>=8'} + + is-lambda@1.0.1: + resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} + + is-lite@0.8.2: + resolution: {integrity: sha512-JZfH47qTsslwaAsqbMI3Q6HNNjUuq6Cmzzww50TdP5Esb6e1y2sK2UAaZZuzfAzpoI2AkxoPQapZdlDuP6Vlsw==} + + is-lite@1.2.1: + resolution: {integrity: sha512-pgF+L5bxC+10hLBgf6R2P4ZZUBOQIIacbdo8YvuCP8/JvsWxG7aZ9p10DYuLtifFci4l3VITphhMlMV4Y+urPw==} + + is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + + is-module@1.0.0: + resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + + is-negative-zero@2.0.3: + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + engines: {node: '>= 0.4'} + + is-node-process@1.2.0: + resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==} + + is-npm@5.0.0: + resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==} + engines: {node: '>=10'} + + is-number-object@1.0.7: + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} + + is-number@3.0.0: + resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} + engines: {node: '>=0.10.0'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-obj@2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} + + is-object@1.0.2: + resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==} + + is-path-cwd@2.2.0: + resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} + engines: {node: '>=6'} + + is-path-in-cwd@2.1.0: + resolution: {integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==} + engines: {node: '>=6'} + + is-path-inside@2.1.0: + resolution: {integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==} + engines: {node: '>=6'} + + is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + + is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + + is-plain-obj@2.1.0: + resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} + engines: {node: '>=8'} + + is-plain-obj@3.0.0: + resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} + engines: {node: '>=10'} + + is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + + is-plain-object@2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} + + is-plain-object@3.0.1: + resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==} + engines: {node: '>=0.10.0'} + + is-plain-object@5.0.0: + resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + engines: {node: '>=0.10.0'} + + is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + + is-promise@2.2.2: + resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + + is-reference@1.2.1: + resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} + + is-regex@1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + + is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + + is-shared-array-buffer@1.0.3: + resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} + engines: {node: '>= 0.4'} + + is-ssh@1.4.0: + resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} + + is-stream@1.1.0: + resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} + engines: {node: '>=0.10.0'} + + is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + + is-string@1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} + + is-subdir@1.2.0: + resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} + engines: {node: '>=4'} + + is-symbol@1.0.4: + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} + + is-text-path@1.0.1: + resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} + engines: {node: '>=0.10.0'} + + is-typed-array@1.1.13: + resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} + engines: {node: '>= 0.4'} + + is-typedarray@1.0.0: + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + + is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + + is-utf8@0.2.1: + resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} + + is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + + is-weakref@1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + + is-weakset@2.0.3: + resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} + engines: {node: '>= 0.4'} + + is-what@3.14.1: + resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} + + is-whitespace-character@1.0.4: + resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==} + + is-window@1.0.2: + resolution: {integrity: sha512-uj00kdXyZb9t9RcAUAwMZAnkBUwdYGhYlt7djMXhfyhUCzwNba50tIiBKR7q0l7tdoBtFVw/3JmLY6fI3rmZmg==} + + is-windows@1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} + + is-word-character@1.0.4: + resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==} + + is-wsl@1.1.0: + resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} + engines: {node: '>=4'} + + is-wsl@2.2.0: + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} + + is-yarn-global@0.3.0: + resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==} + + isarray@0.0.1: + resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + isobject@2.1.0: + resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} + engines: {node: '>=0.10.0'} + + isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + + isobject@4.0.0: + resolution: {integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==} + engines: {node: '>=0.10.0'} + + isomorphic-unfetch@3.1.0: + resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==} + + isstream@0.1.2: + resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} + + istanbul-lib-coverage@3.2.2: + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} + engines: {node: '>=8'} + + istanbul-lib-hook@3.0.0: + resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==} + engines: {node: '>=8'} + + istanbul-lib-instrument@4.0.3: + resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} + engines: {node: '>=8'} + + istanbul-lib-instrument@5.2.1: + resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} + engines: {node: '>=8'} + + istanbul-lib-instrument@6.0.2: + resolution: {integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==} + engines: {node: '>=10'} + + istanbul-lib-processinfo@2.0.3: + resolution: {integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==} + engines: {node: '>=8'} + + istanbul-lib-report@3.0.1: + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} + + istanbul-lib-source-maps@4.0.1: + resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} + engines: {node: '>=10'} + + istanbul-reports@3.1.7: + resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} + engines: {node: '>=8'} + + iterate-iterator@1.0.2: + resolution: {integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==} + + iterate-value@1.0.2: + resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==} + + iterator.prototype@1.1.2: + resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} + + jackspeak@3.4.0: + resolution: {integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==} + engines: {node: '>=14'} + + jake@10.9.1: + resolution: {integrity: sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==} + engines: {node: '>=10'} + hasBin: true + + jest-changed-files@26.6.2: + resolution: {integrity: sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==} + engines: {node: '>= 10.14.2'} + + jest-changed-files@29.7.0: + resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-circus@28.1.3: + resolution: {integrity: sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-circus@29.7.0: + resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-cli@26.6.3: + resolution: {integrity: sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==} + engines: {node: '>= 10.14.2'} + hasBin: true + + jest-cli@29.7.0: + resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + jest-config@26.6.3: + resolution: {integrity: sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==} + engines: {node: '>= 10.14.2'} + peerDependencies: + ts-node: '>=9.0.0' + peerDependenciesMeta: + ts-node: + optional: true + + jest-config@28.1.1: + resolution: {integrity: sha512-tASynMhS+jVV85zKvjfbJ8nUyJS/jUSYZ5KQxLUN2ZCvcQc/OmhQl2j6VEL3ezQkNofxn5pQ3SPYWPHb0unTZA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + + jest-config@29.7.0: + resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + + jest-diff@26.6.2: + resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==} + engines: {node: '>= 10.14.2'} + + jest-diff@28.1.3: + resolution: {integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-diff@29.7.0: + resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-docblock@26.0.0: + resolution: {integrity: sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==} + engines: {node: '>= 10.14.2'} + + jest-docblock@28.1.1: + resolution: {integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-docblock@29.7.0: + resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-each@26.6.2: + resolution: {integrity: sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==} + engines: {node: '>= 10.14.2'} + + jest-each@28.1.3: + resolution: {integrity: sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-each@29.7.0: + resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-environment-jsdom-global@2.0.4: + resolution: {integrity: sha512-1vB8q+PrszXW4Pf7Zgp3eQ4oNVbA7GY6+jmrg1qi6RtYRWDJ60/xdkhjqAbQpX8BRyvqQJYQi66LXER5YNeHXg==} + peerDependencies: + jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x + + jest-environment-jsdom-global@4.0.0: + resolution: {integrity: sha512-qEV8j61oV5XhOBUQbrld2nMYKnp/AGINUaoYTtkwJ9rjvMNRN7ZaZ/dgoPpW83oFtrSiVM1gie6ajdsKFBUlLA==} + engines: {node: '>= 14'} + peerDependencies: + jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x || 27.x || 28.x || 29.x + + jest-environment-jsdom@26.6.2: + resolution: {integrity: sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==} + engines: {node: '>= 10.14.2'} + + jest-environment-jsdom@29.7.0: + resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jest-environment-node@26.6.2: + resolution: {integrity: sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==} + engines: {node: '>= 10.14.2'} + + jest-environment-node@28.1.3: + resolution: {integrity: sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-environment-node@29.7.0: + resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-get-type@26.3.0: + resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==} + engines: {node: '>= 10.14.2'} + + jest-get-type@28.0.2: + resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-get-type@29.6.3: + resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-haste-map@26.6.2: + resolution: {integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==} + engines: {node: '>= 10.14.2'} + + jest-haste-map@28.1.3: + resolution: {integrity: sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-haste-map@29.7.0: + resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-jasmine2@26.6.3: + resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==} + engines: {node: '>= 10.14.2'} + + jest-leak-detector@26.6.2: + resolution: {integrity: sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==} + engines: {node: '>= 10.14.2'} + + jest-leak-detector@28.1.3: + resolution: {integrity: sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-leak-detector@29.7.0: + resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-matcher-utils@26.6.2: + resolution: {integrity: sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==} + engines: {node: '>= 10.14.2'} + + jest-matcher-utils@28.1.3: + resolution: {integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-matcher-utils@29.7.0: + resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-message-util@26.6.2: + resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==} + engines: {node: '>= 10.14.2'} + + jest-message-util@28.1.3: + resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-message-util@29.7.0: + resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-mock@26.6.2: + resolution: {integrity: sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==} + engines: {node: '>= 10.14.2'} + + jest-mock@28.1.3: + resolution: {integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-mock@29.7.0: + resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-pnp-resolver@1.2.3: + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + + jest-regex-util@26.0.0: + resolution: {integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==} + engines: {node: '>= 10.14.2'} + + jest-regex-util@28.0.2: + resolution: {integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-regex-util@29.6.3: + resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-resolve-dependencies@26.6.3: + resolution: {integrity: sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==} + engines: {node: '>= 10.14.2'} + + jest-resolve-dependencies@29.7.0: + resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-resolve@26.6.2: + resolution: {integrity: sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==} + engines: {node: '>= 10.14.2'} + + jest-resolve@28.1.1: + resolution: {integrity: sha512-/d1UbyUkf9nvsgdBildLe6LAD4DalgkgZcKd0nZ8XUGPyA/7fsnaQIlKVnDiuUXv/IeZhPEDrRJubVSulxrShA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-resolve@28.1.3: + resolution: {integrity: sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-resolve@29.7.0: + resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-runner@26.6.3: + resolution: {integrity: sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==} + engines: {node: '>= 10.14.2'} + + jest-runner@28.1.3: + resolution: {integrity: sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-runner@29.7.0: + resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-runtime@26.6.3: + resolution: {integrity: sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==} + engines: {node: '>= 10.14.2'} + hasBin: true + + jest-runtime@28.1.3: + resolution: {integrity: sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-runtime@29.7.0: + resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-serializer@26.6.2: + resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} + engines: {node: '>= 10.14.2'} + + jest-snapshot@26.6.2: + resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==} + engines: {node: '>= 10.14.2'} + + jest-snapshot@28.1.3: + resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-snapshot@29.7.0: + resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-util@26.6.2: + resolution: {integrity: sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==} + engines: {node: '>= 10.14.2'} + + jest-util@28.1.1: + resolution: {integrity: sha512-FktOu7ca1DZSyhPAxgxB6hfh2+9zMoJ7aEQA759Z6p45NuO8mWcqujH+UdHlCm/V6JTWwDztM2ITCzU1ijJAfw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-util@28.1.3: + resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-util@29.7.0: + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-validate@26.6.2: + resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==} + engines: {node: '>= 10.14.2'} + + jest-validate@28.1.3: + resolution: {integrity: sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-validate@29.7.0: + resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-watcher@26.6.2: + resolution: {integrity: sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==} + engines: {node: '>= 10.14.2'} + + jest-watcher@28.1.3: + resolution: {integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-watcher@29.7.0: + resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-worker@26.6.2: + resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} + engines: {node: '>= 10.13.0'} + + jest-worker@27.5.1: + resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} + engines: {node: '>= 10.13.0'} + + jest-worker@28.1.3: + resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-worker@29.7.0: + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest@26.6.3: + resolution: {integrity: sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==} + engines: {node: '>= 10.14.2'} + hasBin: true + + jest@29.7.0: + resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + jju@1.4.0: + resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} + + joi@17.13.3: + resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} + + jose@4.15.7: + resolution: {integrity: sha512-L7ioP+JAuZe8v+T5+zVI9Tx8LtU8BL7NxkyDFVMv+Qr3JW0jSoYDedLtodaXwfqMpeCyx4WXFNyu9tJt4WvC1A==} + + jquery@3.7.1: + resolution: {integrity: sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==} + + js-beautify@1.15.1: + resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==} + engines: {node: '>=14'} + hasBin: true + + js-cookie@3.0.5: + resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} + engines: {node: '>=14'} + + js-levenshtein@1.1.6: + resolution: {integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==} + engines: {node: '>=0.10.0'} + + js-string-escape@1.0.1: + resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} + engines: {node: '>= 0.8'} + + js-tokens@3.0.2: + resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-yaml@3.13.1: + resolution: {integrity: sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==} + hasBin: true + + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + jsbn@0.1.1: + resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + + jsbn@1.1.0: + resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} + + jscodeshift@0.13.1: + resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==} + hasBin: true + peerDependencies: + '@babel/preset-env': ^7.1.6 + + jsdom@16.7.0: + resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} + engines: {node: '>=10'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jsdom@20.0.3: + resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} + engines: {node: '>=14'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jsesc@0.5.0: + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} + hasBin: true + + jsesc@2.5.2: + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} + hasBin: true + + jshint@2.13.6: + resolution: {integrity: sha512-IVdB4G0NTTeQZrBoM8C5JFVLjV2KtZ9APgybDA1MK73xb09qFs0jCXyQLnCOp1cSZZZbvhq/6mfXHUTaDkffuQ==} + hasBin: true + + json-buffer@3.0.0: + resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-minimizer-webpack-plugin@4.0.0: + resolution: {integrity: sha512-PJaNiSeZlZStdyLtJo/QOOC7uHRW9qvc//7F8M0ZH1huPSvmX5kR2qrq2Tn1ODYLi128bTkKepqtgYmtEOkPzQ==} + engines: {node: '>= 14.15.0'} + peerDependencies: + webpack: 5.84.1 + + json-minimizer-webpack-plugin@5.0.0: + resolution: {integrity: sha512-GT/SZolN2p405EMGjMTBvAVi2+y035p1tSOuLpWbp5QTMl080OHx4DEGXfUH6vbnGw5Z/QKfBe+KpP9Dj0qLmA==} + engines: {node: '>= 18.12.0'} + peerDependencies: + webpack: 5.84.1 + + json-parse-better-errors@1.0.2: + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + + json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + + json-schema@0.4.0: + resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + json-stringify-nice@1.1.4: + resolution: {integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==} + + json-stringify-safe@5.0.1: + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + + json5@1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsonc-eslint-parser@2.4.0: + resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + jsonc-parser@3.2.0: + resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} + + jsonfile@4.0.0: + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + + jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + + jsonparse@1.3.1: + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} + + jsprim@2.0.2: + resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==} + engines: {'0': node >=0.6.0} + + jsrsasign@10.9.0: + resolution: {integrity: sha512-QWLUikj1SBJGuyGK8tjKSx3K7Y69KYJnrs/pQ1KZ6wvZIkHkWjZ1PJDpuvc1/28c1uP0KW9qn1eI1LzHQqDOwQ==} + + jsx-ast-utils@3.3.5: + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} + engines: {node: '>=4.0'} + + junk@3.1.0: + resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==} + engines: {node: '>=8'} + + just-diff-apply@5.5.0: + resolution: {integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==} + + just-diff@5.2.0: + resolution: {integrity: sha512-6ufhP9SHjb7jibNFrNxyFZ6od3g+An6Ai9mhGRvcYe8UJlH0prseN64M+6ZBBUoKYHZsitDP42gAJ8+eVWr3lw==} + + keyboard-key@1.1.0: + resolution: {integrity: sha512-qkBzPTi3rlAKvX7k0/ub44sqOfXeLc/jcnGGmj5c7BJpU8eDrEVPyhCvNYAaoubbsLm9uGWwQJO1ytQK1a9/dQ==} + + keyv@3.1.0: + resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + killable@1.0.1: + resolution: {integrity: sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==} + + kind-of@2.0.1: + resolution: {integrity: sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==} + engines: {node: '>=0.10.0'} + + kind-of@3.2.2: + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} + engines: {node: '>=0.10.0'} + + kind-of@4.0.0: + resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} + engines: {node: '>=0.10.0'} + + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + + kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} + + kleur@4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + + klona@2.0.6: + resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} + engines: {node: '>= 8'} + + language-subtag-registry@0.3.23: + resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} + + language-tags@1.0.9: + resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} + engines: {node: '>=0.10'} + + latest-version@5.1.0: + resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==} + engines: {node: '>=8'} + + launch-editor@2.8.0: + resolution: {integrity: sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==} + + lazy-ass@1.6.0: + resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==} + engines: {node: '> 0.8'} + + lazy-cache@0.2.7: + resolution: {integrity: sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==} + engines: {node: '>=0.10.0'} + + lazy-cache@1.0.4: + resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==} + engines: {node: '>=0.10.0'} + + lazy-universal-dotenv@3.0.1: + resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==} + engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'} + + lerna@5.6.2: + resolution: {integrity: sha512-Y0yMPslvnBnTZi7Nrs/gDyYZYauNf61xWNCehISHIORxZmmpoluNkcWTfcyb47is5uJQCv5QJX5xKKubbs+a6w==} + engines: {node: ^14.15.0 || >=16.0.0} + hasBin: true + + less-loader@10.2.0: + resolution: {integrity: sha512-AV5KHWvCezW27GT90WATaDnfXBv99llDbtaj4bshq6DvAihMdNjaPDcUMa6EXKLRF+P2opFenJp89BXg91XLYg==} + engines: {node: '>= 12.13.0'} + peerDependencies: + less: ^3.5.0 || ^4.0.0 + webpack: 5.84.1 + + less-loader@5.0.0: + resolution: {integrity: sha512-bquCU89mO/yWLaUq0Clk7qCsKhsF/TZpJUzETRvJa9KSVEL9SO3ovCvdEHISBhrC81OwC8QSVX7E0bzElZj9cg==} + engines: {node: '>= 4.8.0'} + peerDependencies: + less: ^2.3.1 || ^3.0.0 + webpack: 5.84.1 + + less-plugin-inline-urls@1.2.0: + resolution: {integrity: sha512-QS9MLcg8Lo6ZHVS+9kncmHeLypIdnFgG/neqV3RPkXfiiSCJHn/jTQHKnXfDEL/F/JM+z6MQ6ukWr/xsOChHTA==} + engines: {node: '>=0.4.2'} + + less-plugin-npm-import@2.1.0: + resolution: {integrity: sha512-f7pVkEooRq2/jge/M/Y+spoPXj5rRIY30q1as+3kZsDG8Rs+loNJUCVQjzXB9Ao/9FeIJULiq2zrXymv+OMTbw==} + engines: {node: '>=0.4.2'} + + less-plugin-rewrite-import@0.1.1: + resolution: {integrity: sha512-8FnuGhF0rS6P9DkaEH2+6pphx7pJ9hV4mHF2MhsXKSXNvwTVX9YCt5HnX99mhTOyQzc+2hu5JPPoRl/b9DAwuQ==} + + less-plugin-rewrite-variable@0.1.0: + resolution: {integrity: sha512-cpIa1+wHssZRt2aUnoWODfDB0z0QM8ir9ZS/18802bX9S4+6s+/HXaK92C3VznniPjviKhA3u8o4/0K9HK0nEw==} + engines: {node: '>=0.4.2'} + + less-to-json@1.2.0: + resolution: {integrity: sha512-1ItmxVFw76yiQgr2MUTGy7bTHT2tT6CcZ28grgw/gWNy2Q3WwFfSHL88sWUBpTXGFonlKd2yCDhtJFJdGjzqHA==} + hasBin: true + + less-vars-to-js@1.3.0: + resolution: {integrity: sha512-xeiLLn/IMCGtdyCkYQnW8UuzoW2oYMCKg9boZRaGI58fLz5r90bNJDlqGzmVt/1Uqk75/DxIVtQSNCMkE5fRZQ==} + engines: {node: '>=8'} + + less@3.12.2: + resolution: {integrity: sha512-+1V2PCMFkL+OIj2/HrtrvZw0BC0sYLMICJfbQjuj/K8CEnlrFX6R5cKKgzzttsZDHyxQNL1jqMREjKN3ja/E3Q==} + engines: {node: '>=6'} + hasBin: true + + less@3.13.1: + resolution: {integrity: sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==} + engines: {node: '>=6'} + hasBin: true + + leven@3.1.0: + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} + + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + + libnpmaccess@6.0.4: + resolution: {integrity: sha512-qZ3wcfIyUoW0+qSFkMBovcTrSGJ3ZeyvpR7d5N9pEYv/kXs8sHP2wiqEIXBKLFrZlmM0kR0RJD7mtfLngtlLag==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + libnpmpublish@6.0.5: + resolution: {integrity: sha512-LUR08JKSviZiqrYTDfywvtnsnxr+tOvBU0BF8H+9frt7HMvc6Qn6F8Ubm72g5hDTHbq8qupKfDvDAln2TVPvFg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + license-webpack-plugin@4.0.2: + resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==} + peerDependencies: + webpack: '*' + peerDependenciesMeta: + webpack: + optional: true + + lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + listr2@3.14.0: + resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==} + engines: {node: '>=10.0.0'} + peerDependencies: + enquirer: '>= 2.3.0 < 3' + peerDependenciesMeta: + enquirer: + optional: true + + load-json-file@1.1.0: + resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==} + engines: {node: '>=0.10.0'} + + load-json-file@4.0.0: + resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} + engines: {node: '>=4'} + + load-json-file@6.2.0: + resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==} + engines: {node: '>=8'} + + load-yaml-file@0.2.0: + resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} + engines: {node: '>=6'} + + loader-runner@2.4.0: + resolution: {integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==} + engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} + + loader-runner@4.3.0: + resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} + engines: {node: '>=6.11.5'} + + loader-utils@1.2.3: + resolution: {integrity: sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==} + engines: {node: '>=4.0.0'} + + loader-utils@1.4.2: + resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} + engines: {node: '>=4.0.0'} + + loader-utils@2.0.4: + resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} + engines: {node: '>=8.9.0'} + + loader-utils@3.3.1: + resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} + engines: {node: '>= 12.13.0'} + + locate-path@2.0.0: + resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} + engines: {node: '>=4'} + + locate-path@3.0.0: + resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} + engines: {node: '>=6'} + + locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + lodash-es@4.17.21: + resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} + + lodash.camelcase@4.3.0: + resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + + lodash.debounce@4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + + lodash.flattendeep@4.4.0: + resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} + + lodash.ismatch@4.4.0: + resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} + + lodash.isplainobject@4.0.6: + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + + lodash.memoize@4.1.2: + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lodash.once@4.1.1: + resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} + + lodash.startcase@4.4.0: + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + + lodash.truncate@4.4.2: + resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} + + lodash.uniq@4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + log-symbols@2.2.0: + resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==} + engines: {node: '>=4'} + + log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} + + log-update@4.0.0: + resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} + engines: {node: '>=10'} + + log4js@4.5.1: + resolution: {integrity: sha512-EEEgFcE9bLgaYUKuozyFfytQM2wDHtXn4tAN41pkaxpNjAykv11GVdeI4tHtmPWW4Xrgh9R/2d7XYghDVjbKKw==} + engines: {node: '>=6.0'} + deprecated: 4.x is no longer supported. Please upgrade to 6.x or higher. + + loglevel@1.9.1: + resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==} + engines: {node: '>= 0.6.0'} + + loglevelnext@1.0.5: + resolution: {integrity: sha512-V/73qkPuJmx4BcBF19xPBr+0ZRVBhc4POxvZTZdMeXpJ4NItXSJ/MSwuFT0kQJlCbXvdlZoQQ/418bS1y9Jh6A==} + engines: {node: '>= 6'} + + longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + + loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + + loud-rejection@1.6.0: + resolution: {integrity: sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==} + engines: {node: '>=0.10.0'} + + lower-case@2.0.2: + resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + + lowercase-keys@1.0.1: + resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} + engines: {node: '>=0.10.0'} + + lowercase-keys@2.0.0: + resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} + engines: {node: '>=8'} + + lowlight@1.20.0: + resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==} + + lru-cache@10.2.2: + resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==} + engines: {node: 14 || >=16.14} + + lru-cache@4.1.5: + resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + + lru-cache@7.18.3: + resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} + engines: {node: '>=12'} + + lz-string@1.5.0: + resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} + hasBin: true + + magic-string@0.25.9: + resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + + magic-string@0.30.10: + resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} + + make-dir@2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} + + make-dir@3.1.0: + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} + + make-dir@4.0.0: + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} + + make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + + make-fetch-happen@10.2.1: + resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + makeerror@1.0.12: + resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + + map-age-cleaner@0.1.3: + resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==} + engines: {node: '>=6'} + + map-cache@0.2.2: + resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} + engines: {node: '>=0.10.0'} + + map-obj@1.0.1: + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} + + map-obj@4.3.0: + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} + + map-or-similar@1.5.0: + resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} + + map-visit@1.0.0: + resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} + engines: {node: '>=0.10.0'} + + markdown-escapes@1.0.4: + resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==} + + markdown-to-jsx@7.4.7: + resolution: {integrity: sha512-0+ls1IQZdU6cwM1yu0ZjjiVWYtkbExSyUIFU2ZeDIFuZM1W42Mh4OlJ4nb4apX4H8smxDHRdFaoIVJGwfv5hkg==} + engines: {node: '>= 10'} + peerDependencies: + react: '>= 0.14.0' + + material-colors@1.2.6: + resolution: {integrity: sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==} + + mdast-squeeze-paragraphs@4.0.0: + resolution: {integrity: sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==} + + mdast-util-definitions@4.0.0: + resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==} + + mdast-util-from-markdown@2.0.1: + resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==} + + mdast-util-mdx-expression@2.0.0: + resolution: {integrity: sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==} + + mdast-util-mdx-jsx@3.1.2: + resolution: {integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==} + + mdast-util-mdxjs-esm@2.0.1: + resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==} + + mdast-util-phrasing@4.1.0: + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} + + mdast-util-to-hast@10.0.1: + resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==} + + mdast-util-to-hast@13.2.0: + resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} + + mdast-util-to-markdown@2.1.0: + resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==} + + mdast-util-to-string@1.1.0: + resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==} + + mdast-util-to-string@4.0.0: + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} + + mdn-data@2.0.14: + resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + + mdn-data@2.0.28: + resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} + + mdn-data@2.0.30: + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + + mdn-data@2.0.4: + resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} + + mdurl@1.0.1: + resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} + + media-typer@0.3.0: + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} + + mem@8.1.1: + resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==} + engines: {node: '>=10'} + + memfs@3.5.3: + resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} + engines: {node: '>= 4.0.0'} + + memoize-one@5.2.1: + resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} + + memoizerific@1.11.3: + resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==} + + memory-fs@0.4.1: + resolution: {integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==} + + memory-fs@0.5.0: + resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==} + engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} + + meow@3.7.0: + resolution: {integrity: sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==} + engines: {node: '>=0.10.0'} + + meow@6.1.1: + resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} + engines: {node: '>=8'} + + meow@8.1.2: + resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} + engines: {node: '>=10'} + + merge-anything@2.4.4: + resolution: {integrity: sha512-l5XlriUDJKQT12bH+rVhAHjwIuXWdAIecGwsYjv2LJo+dA1AeRTmeQS+3QBpO6lEthBMDi2IUMpLC1yyRvGlwQ==} + + merge-deep@3.0.3: + resolution: {integrity: sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==} + engines: {node: '>=0.10.0'} + + merge-descriptors@1.0.1: + resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} + + merge-files@0.1.2: + resolution: {integrity: sha512-WTvtH6ZwVy1/scvp1M+Re6PVni87QTjpSLAwxh0L+PlYIxc4VGFFpLjvP7jdJ43gaJ5n+RUIriJ6wKqmqvVVmg==} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + merge@1.2.1: + resolution: {integrity: sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==} + + methods@1.1.2: + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} + engines: {node: '>= 0.6'} + + microevent.ts@0.1.1: + resolution: {integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==} + + micromark-core-commonmark@2.0.1: + resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==} + + micromark-factory-destination@2.0.0: + resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==} + + micromark-factory-label@2.0.0: + resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==} + + micromark-factory-space@2.0.0: + resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==} + + micromark-factory-title@2.0.0: + resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==} + + micromark-factory-whitespace@2.0.0: + resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==} + + micromark-util-character@2.1.0: + resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} + + micromark-util-chunked@2.0.0: + resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==} + + micromark-util-classify-character@2.0.0: + resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==} + + micromark-util-combine-extensions@2.0.0: + resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==} + + micromark-util-decode-numeric-character-reference@2.0.1: + resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==} + + micromark-util-decode-string@2.0.0: + resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==} + + micromark-util-encode@2.0.0: + resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==} + + micromark-util-html-tag-name@2.0.0: + resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==} + + micromark-util-normalize-identifier@2.0.0: + resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==} + + micromark-util-resolve-all@2.0.0: + resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==} + + micromark-util-sanitize-uri@2.0.0: + resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} + + micromark-util-subtokenize@2.0.1: + resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==} + + micromark-util-symbol@2.0.0: + resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==} + + micromark-util-types@2.0.0: + resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==} + + micromark@4.0.0: + resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} + + micromatch@3.1.10: + resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} + engines: {node: '>=0.10.0'} + + micromatch@4.0.7: + resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} + engines: {node: '>=8.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + + mime@2.6.0: + resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} + engines: {node: '>=4.0.0'} + hasBin: true + + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + + mimic-fn@3.1.0: + resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} + engines: {node: '>=8'} + + mimic-response@1.0.1: + resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} + engines: {node: '>=4'} + + mimic-response@3.1.0: + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} + engines: {node: '>=10'} + + min-document@2.19.0: + resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==} + + min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + + mini-css-extract-plugin@0.4.5: + resolution: {integrity: sha512-dqBanNfktnp2hwL2YguV9Jh91PFX7gu7nRLs4TGsbAfAG6WOtlynFRYzwDwmmeSb5uIwHo9nx1ta0f7vAZVp2w==} + engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 + + mini-css-extract-plugin@2.4.7: + resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: 5.84.1 + + mini-svg-data-uri@1.4.4: + resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} + hasBin: true + + minimalistic-assert@1.0.1: + resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} + + minimatch@3.0.5: + resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} + + minimatch@3.0.8: + resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + engines: {node: '>=10'} + + minimatch@9.0.1: + resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} + engines: {node: '>=16 || 14 >=14.17'} + + minimatch@9.0.4: + resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist-options@4.1.0: + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + minipass-collect@1.0.2: + resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} + engines: {node: '>= 8'} + + minipass-fetch@2.1.2: + resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + minipass-flush@1.0.5: + resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} + engines: {node: '>= 8'} + + minipass-json-stream@1.0.1: + resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==} + + minipass-pipeline@1.2.4: + resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} + engines: {node: '>=8'} + + minipass-sized@1.0.3: + resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} + engines: {node: '>=8'} + + minipass@3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} + + minipass@5.0.0: + resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} + engines: {node: '>=8'} + + minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} + + minizlib@2.1.2: + resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} + engines: {node: '>= 8'} + + mixin-deep@1.3.2: + resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} + engines: {node: '>=0.10.0'} + + mixin-object@2.0.1: + resolution: {integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==} + engines: {node: '>=0.10.0'} + + mixme@0.5.10: + resolution: {integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==} + engines: {node: '>= 8.0.0'} + + mkdirp-infer-owner@2.0.0: + resolution: {integrity: sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==} + engines: {node: '>=10'} + + mkdirp@0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true + + mkdirp@1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true + + modify-values@1.0.1: + resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} + engines: {node: '>=0.10.0'} + + moment@2.30.1: + resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==} + + monaco-editor@0.50.0: + resolution: {integrity: sha512-8CclLCmrRRh+sul7C08BmPBP3P8wVWfBHomsTcndxg5NRCEPfu/mc2AGU8k37ajjDVXcXFc12ORAMUkmk+lkFA==} + + mrmime@2.0.0: + resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} + engines: {node: '>=10'} + + ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + + ms@2.1.1: + resolution: {integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==} + + ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + msw@0.36.8: + resolution: {integrity: sha512-K7lOQoYqhGhTSChsmHMQbf/SDCsxh/m0uhN6Ipt206lGoe81fpTmaGD0KLh4jUxCONMOUnwCSj0jtX2CM4pEdw==} + hasBin: true + + multicast-dns-service-types@1.1.0: + resolution: {integrity: sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==} + + multicast-dns@6.2.3: + resolution: {integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==} + hasBin: true + + multicast-dns@7.2.5: + resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} + hasBin: true + + multimatch@5.0.0: + resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} + engines: {node: '>=10'} + + multistream@2.1.1: + resolution: {integrity: sha512-xasv76hl6nr1dEy3lPvy7Ej7K/Lx3O/FCvwge8PeVJpciPPoNCbaANcNiBug3IpdvTveZUcAV0DJzdnUDMesNQ==} + + mustache@4.2.0: + resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} + hasBin: true + + mute-stream@0.0.8: + resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + + nan@2.20.0: + resolution: {integrity: sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==} + + nanoid@3.3.7: + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + nanomatch@1.2.13: + resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} + engines: {node: '>=0.10.0'} + + native-request@1.1.0: + resolution: {integrity: sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==} + + native-url@0.2.6: + resolution: {integrity: sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==} + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + negotiator@0.6.3: + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} + + neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + + nested-error-stacks@2.1.1: + resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==} + + next-tick@1.1.0: + resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} + + nice-try@1.0.5: + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + + no-case@3.0.4: + resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + + node-abort-controller@3.1.1: + resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} + + node-addon-api@3.2.1: + resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} + + node-dir@0.1.17: + resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} + engines: {node: '>= 0.10.5'} + + node-fetch@2.7.0: + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + + node-forge@0.10.0: + resolution: {integrity: sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==} + engines: {node: '>= 6.0.0'} + + node-forge@1.3.1: + resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} + engines: {node: '>= 6.13.0'} + + node-gyp-build@4.8.1: + resolution: {integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==} + hasBin: true + + node-gyp@9.4.1: + resolution: {integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==} + engines: {node: ^12.13 || ^14.13 || >=16} + hasBin: true + + node-int64@0.4.0: + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + + node-notifier@8.0.2: + resolution: {integrity: sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==} + + node-preload@0.2.1: + resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} + engines: {node: '>=8'} + + node-releases@2.0.14: + resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + + nopt@5.0.0: + resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} + engines: {node: '>=6'} + hasBin: true + + nopt@6.0.0: + resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true + + nopt@7.2.1: + resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true + + normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + + normalize-package-data@3.0.3: + resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} + engines: {node: '>=10'} + + normalize-package-data@4.0.1: + resolution: {integrity: sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + normalize-path@2.1.1: + resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} + engines: {node: '>=0.10.0'} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + normalize-range@0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} + + normalize-url@4.5.1: + resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} + engines: {node: '>=8'} + + normalize-url@6.1.0: + resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} + engines: {node: '>=10'} + + npm-bundled@1.1.2: + resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==} + + npm-bundled@2.0.1: + resolution: {integrity: sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + npm-install-checks@5.0.0: + resolution: {integrity: sha512-65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + npm-normalize-package-bin@1.0.1: + resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} + + npm-normalize-package-bin@2.0.0: + resolution: {integrity: sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + npm-package-arg@8.1.1: + resolution: {integrity: sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==} + engines: {node: '>=10'} + + npm-package-arg@9.1.2: + resolution: {integrity: sha512-pzd9rLEx4TfNJkovvlBSLGhq31gGu2QDexFPWT19yCDh0JgnRhlBLNo5759N0AJmBk+kQ9Y/hXoLnlgFD+ukmg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + npm-packlist@5.1.3: + resolution: {integrity: sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true + + npm-pick-manifest@7.0.2: + resolution: {integrity: sha512-gk37SyRmlIjvTfcYl6RzDbSmS9Y4TOBXfsPnoYqTHARNgWbyDiCSMLUpmALDj4jjcTZpURiEfsSHJj9k7EV4Rw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + npm-registry-fetch@13.3.1: + resolution: {integrity: sha512-eukJPi++DKRTjSBRcDZSDDsGqRK3ehbxfFUcgaRd0Yp6kRwOwh2WVn0r+8rMB4nnuzvAk6rQVzl6K5CkYOmnvw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + npm-run-path@2.0.2: + resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} + engines: {node: '>=4'} + + npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + + npmlog@5.0.1: + resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} + deprecated: This package is no longer supported. + + npmlog@6.0.2: + resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. + + nth-check@1.0.2: + resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} + + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + + num2fraction@1.2.2: + resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==} + + nwsapi@2.2.10: + resolution: {integrity: sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==} + + nx@14.8.8: + resolution: {integrity: sha512-hXoTcBjY+3+OituiSE9G44CjwfbFVEtw6W9Hl0DxcFW+Vb9V+sa/LHAQbIq1GXvr819sBduP0bncowUoOq6iBg==} + hasBin: true + peerDependencies: + '@swc-node/register': ^1.4.2 + '@swc/core': ^1.2.173 + peerDependenciesMeta: + '@swc-node/register': + optional: true + '@swc/core': + optional: true + + nyc@15.1.0: + resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} + engines: {node: '>=8.9'} + hasBin: true + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-copy@0.1.0: + resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} + engines: {node: '>=0.10.0'} + + object-inspect@1.13.2: + resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} + engines: {node: '>= 0.4'} + + object-is@1.1.6: + resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} + engines: {node: '>= 0.4'} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object-visit@1.0.1: + resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} + engines: {node: '>=0.10.0'} + + object.assign@4.1.5: + resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} + engines: {node: '>= 0.4'} + + object.entries@1.1.8: + resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} + engines: {node: '>= 0.4'} + + object.fromentries@2.0.8: + resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} + engines: {node: '>= 0.4'} + + object.getownpropertydescriptors@2.1.8: + resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==} + engines: {node: '>= 0.8'} + + object.groupby@1.0.3: + resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} + engines: {node: '>= 0.4'} + + object.hasown@1.1.4: + resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} + engines: {node: '>= 0.4'} + + object.pick@1.3.0: + resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} + engines: {node: '>=0.10.0'} + + object.values@1.2.0: + resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} + engines: {node: '>= 0.4'} + + objectorarray@1.0.5: + resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==} + + obuf@1.1.2: + resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} + + on-finished@2.4.1: + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + engines: {node: '>= 0.8'} + + on-headers@1.0.2: + resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} + engines: {node: '>= 0.8'} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + open@7.4.2: + resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} + engines: {node: '>=8'} + + open@8.4.2: + resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} + engines: {node: '>=12'} + + opener@1.5.2: + resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} + hasBin: true + + opn@5.5.0: + resolution: {integrity: sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==} + engines: {node: '>=4'} + + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + + ora@5.4.1: + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} + engines: {node: '>=10'} + + os-filter-obj@2.0.0: + resolution: {integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==} + engines: {node: '>=4'} + + os-homedir@1.0.2: + resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} + engines: {node: '>=0.10.0'} + + os-tmpdir@1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} + + ospath@1.2.2: + resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==} + + outdent@0.5.0: + resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} + + outvariant@1.4.2: + resolution: {integrity: sha512-Ou3dJ6bA/UJ5GVHxah4LnqDwZRwAmWxrG3wtrHrbGnP4RnLCtA64A4F+ae7Y8ww660JaddSoArUR5HjipWSHAQ==} + + overlayscrollbars@1.13.3: + resolution: {integrity: sha512-1nB/B5kaakJuHXaLXLRK0bUIilWhUGT6q5g+l2s5vqYdLle/sd0kscBHkQC1kuuDg9p9WR4MTdySDOPbeL/86g==} + + p-all@2.1.0: + resolution: {integrity: sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==} + engines: {node: '>=6'} + + p-cancelable@1.1.0: + resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} + engines: {node: '>=6'} + + p-cancelable@2.1.1: + resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} + engines: {node: '>=8'} + + p-defer@1.0.0: + resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} + engines: {node: '>=4'} + + p-each-series@2.2.0: + resolution: {integrity: sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==} + engines: {node: '>=8'} + + p-event@4.2.0: + resolution: {integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==} + engines: {node: '>=8'} + + p-filter@2.1.0: + resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} + engines: {node: '>=8'} + + p-finally@1.0.0: + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} + + p-limit@1.3.0: + resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} + engines: {node: '>=4'} + + p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-locate@2.0.0: + resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} + engines: {node: '>=4'} + + p-locate@3.0.0: + resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} + engines: {node: '>=6'} + + p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + p-map-series@2.1.0: + resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==} + engines: {node: '>=8'} + + p-map@2.1.0: + resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} + engines: {node: '>=6'} + + p-map@3.0.0: + resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} + engines: {node: '>=8'} + + p-map@4.0.0: + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} + engines: {node: '>=10'} + + p-pipe@3.1.0: + resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==} + engines: {node: '>=8'} + + p-queue@6.6.2: + resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} + engines: {node: '>=8'} + + p-reduce@2.1.0: + resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} + engines: {node: '>=8'} + + p-retry@3.0.1: + resolution: {integrity: sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==} + engines: {node: '>=6'} + + p-retry@4.6.2: + resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} + engines: {node: '>=8'} + + p-timeout@3.2.0: + resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} + engines: {node: '>=8'} + + p-try@1.0.0: + resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} + engines: {node: '>=4'} + + p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + + p-waterfall@2.1.1: + resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==} + engines: {node: '>=8'} + + package-hash@4.0.0: + resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} + engines: {node: '>=8'} + + package-json-from-dist@1.0.0: + resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} + + package-json@6.5.0: + resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} + engines: {node: '>=8'} + + pacote@13.6.2: + resolution: {integrity: sha512-Gu8fU3GsvOPkak2CkbojR7vjs3k3P9cA6uazKTHdsdV0gpCEQq2opelnEv30KRQWgVzP5Vd/5umjcedma3MKtg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true + + param-case@3.0.4: + resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-conflict-json@2.0.2: + resolution: {integrity: sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + parse-entities@2.0.0: + resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} + + parse-entities@4.0.1: + resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} + + parse-json@2.2.0: + resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==} + engines: {node: '>=0.10.0'} + + parse-json@4.0.0: + resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} + engines: {node: '>=4'} + + parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + + parse-path@7.0.0: + resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} + + parse-url@8.1.0: + resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} + + parse5-html-rewriting-stream@6.0.1: + resolution: {integrity: sha512-vwLQzynJVEfUlURxgnf51yAJDQTtVpNyGD8tKi2Za7m+akukNHxCcUQMAa/mUGLhCeicFdpy7Tlvj8ZNKadprg==} + + parse5-sax-parser@6.0.1: + resolution: {integrity: sha512-kXX+5S81lgESA0LsDuGjAlBybImAChYRMT+/uKCEXFBFOeEhS52qUCydGhU3qLRD8D9DVjaUo821WK7DM4iCeg==} + + parse5@4.0.0: + resolution: {integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==} + + parse5@6.0.1: + resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} + + parse5@7.1.2: + resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + + parseurl@1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} + + pascal-case@3.1.2: + resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} + + pascalcase@0.1.1: + resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} + engines: {node: '>=0.10.0'} + + path-browserify@1.0.1: + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + + path-dirname@1.0.2: + resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==} + + path-exists@2.1.0: + resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==} + engines: {node: '>=0.10.0'} + + path-exists@3.0.0: + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-is-inside@1.0.2: + resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==} + + path-is-network-drive@1.0.20: + resolution: {integrity: sha512-p5wCWlRB4+ggzxWshqHH9aF3kAuVu295NaENXmVhThbZPJQBeJdxZTP6CIoUR+kWHDUW56S9YcaO1gXnc/BOxw==} + + path-key@2.0.1: + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + + path-strip-sep@1.0.17: + resolution: {integrity: sha512-+2zIC2fNgdilgV7pTrktY6oOxxZUo9x5zJYfTzxsGze5kSGDDwhA5/0WlBn+sUyv/WuuyYn3OfM+Ue5nhdQUgA==} + + path-to-regexp@0.1.7: + resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} + + path-to-regexp@1.8.0: + resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==} + + path-to-regexp@6.2.2: + resolution: {integrity: sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==} + + path-type@1.1.0: + resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==} + engines: {node: '>=0.10.0'} + + path-type@3.0.0: + resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} + engines: {node: '>=4'} + + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + path-type@5.0.0: + resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} + engines: {node: '>=12'} + + path@0.12.7: + resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} + + peek-readable@5.0.0: + resolution: {integrity: sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==} + engines: {node: '>=14.16'} + + pend@1.2.0: + resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + + performance-now@2.1.0: + resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + + picocolors@0.2.1: + resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==} + + picocolors@1.0.1: + resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + + pify@3.0.0: + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} + + pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + + pify@5.0.0: + resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} + engines: {node: '>=10'} + + pinkie-promise@2.0.1: + resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==} + engines: {node: '>=0.10.0'} + + pinkie@2.0.4: + resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==} + engines: {node: '>=0.10.0'} + + pirates@4.0.6: + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + engines: {node: '>= 6'} + + pkg-dir@3.0.0: + resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} + engines: {node: '>=6'} + + pkg-dir@4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} + + pkg-dir@5.0.0: + resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} + engines: {node: '>=10'} + + pnp-webpack-plugin@1.6.4: + resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} + engines: {node: '>=6'} + + polished@4.3.1: + resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==} + engines: {node: '>=10'} + + popper.js@1.16.1: + resolution: {integrity: sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==} + deprecated: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1 + + portfinder@1.0.32: + resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} + engines: {node: '>= 0.12.0'} + + posix-character-classes@0.1.1: + resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} + engines: {node: '>=0.10.0'} + + possible-typed-array-names@1.0.0: + resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} + engines: {node: '>= 0.4'} + + postcss-calc@8.2.4: + resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} + peerDependencies: + postcss: ^8.2.2 + + postcss-colormin@5.3.1: + resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-convert-values@5.1.3: + resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-comments@5.1.2: + resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-duplicates@5.1.0: + resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-empty@5.1.1: + resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-overridden@5.1.0: + resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-flexbugs-fixes@4.2.1: + resolution: {integrity: sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==} + + postcss-import-ext-glob@2.1.1: + resolution: {integrity: sha512-qd4ELOx2G0hyjgtmLnf/fSVJXXPhkcxcxhLT1y1mAnk53JYbMLoGg+AFtnJowOSvnv4CvjPAzpLpAcfWeofP5g==} + peerDependencies: + postcss: ^8.2.0 + + postcss-import@14.1.0: + resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} + engines: {node: '>=10.0.0'} + peerDependencies: + postcss: ^8.0.0 + + postcss-load-config@2.1.2: + resolution: {integrity: sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==} + engines: {node: '>= 4'} + + postcss-load-config@3.1.4: + resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} + engines: {node: '>= 10'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + + postcss-loader@3.0.0: + resolution: {integrity: sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==} + engines: {node: '>= 6'} + + postcss-loader@4.3.0: + resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} + engines: {node: '>= 10.13.0'} + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: 5.84.1 + + postcss-loader@6.2.1: + resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} + engines: {node: '>= 12.13.0'} + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: 5.84.1 + + postcss-merge-longhand@5.1.7: + resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-merge-rules@5.1.4: + resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-font-values@5.1.0: + resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-gradients@5.1.1: + resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-params@5.1.4: + resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-selectors@5.2.1: + resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-modules-extract-imports@1.2.1: + resolution: {integrity: sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==} + + postcss-modules-extract-imports@2.0.0: + resolution: {integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==} + engines: {node: '>= 6'} + + postcss-modules-extract-imports@3.1.0: + resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-local-by-default@1.2.0: + resolution: {integrity: sha512-X4cquUPIaAd86raVrBwO8fwRfkIdbwFu7CTfEOjiZQHVQwlHRSkTgH5NLDmMm5+1hQO8u6dZ+TOOJDbay1hYpA==} + + postcss-modules-local-by-default@3.0.3: + resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==} + engines: {node: '>= 6'} + + postcss-modules-local-by-default@4.0.5: + resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-scope@1.1.0: + resolution: {integrity: sha512-LTYwnA4C1He1BKZXIx1CYiHixdSe9LWYVKadq9lK5aCCMkoOkFyZ7aigt+srfjlRplJY3gIol6KUNefdMQJdlw==} + + postcss-modules-scope@2.2.0: + resolution: {integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==} + engines: {node: '>= 6'} + + postcss-modules-scope@3.2.0: + resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-values@1.3.0: + resolution: {integrity: sha512-i7IFaR9hlQ6/0UgFuqM6YWaCfA1Ej8WMg8A5DggnH1UGKJvTV/ugqq/KaULixzzOi3T/tF6ClBXcHGCzdd5unA==} + + postcss-modules-values@3.0.0: + resolution: {integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==} + + postcss-modules-values@4.0.0: + resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules@4.3.1: + resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==} + peerDependencies: + postcss: ^8.0.0 + + postcss-normalize-charset@5.1.0: + resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-display-values@5.1.0: + resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-positions@5.1.1: + resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-repeat-style@5.1.1: + resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-string@5.1.0: + resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-timing-functions@5.1.0: + resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-unicode@5.1.1: + resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-url@5.1.0: + resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-whitespace@5.1.1: + resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-ordered-values@5.1.3: + resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-reduce-initial@5.1.2: + resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-reduce-transforms@5.1.0: + resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-selector-parser@6.1.0: + resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==} + engines: {node: '>=4'} + + postcss-svgo@5.1.0: + resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-unique-selectors@5.1.1: + resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-value-parser@3.3.1: + resolution: {integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==} + + postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + + postcss@6.0.23: + resolution: {integrity: sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==} + engines: {node: '>=4.0.0'} + + postcss@7.0.39: + resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==} + engines: {node: '>=6.0.0'} + + postcss@8.4.38: + resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} + engines: {node: ^10 || ^12 || >=14} + + preferred-pm@3.1.3: + resolution: {integrity: sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w==} + engines: {node: '>=10'} + + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + + prepend-http@2.0.0: + resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} + engines: {node: '>=4'} + + prettier@1.19.1: + resolution: {integrity: sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==} + engines: {node: '>=4'} + hasBin: true + + prettier@2.3.0: + resolution: {integrity: sha512-kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w==} + engines: {node: '>=10.13.0'} + hasBin: true + + prettier@2.8.8: + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} + engines: {node: '>=10.13.0'} + hasBin: true + + pretty-bytes@5.6.0: + resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} + engines: {node: '>=6'} + + pretty-error@2.1.2: + resolution: {integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==} + + pretty-error@4.0.0: + resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} + + pretty-format@26.6.2: + resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} + engines: {node: '>= 10'} + + pretty-format@27.5.1: + resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + pretty-format@28.1.3: + resolution: {integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + pretty-format@29.7.0: + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + pretty-hrtime@1.0.3: + resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} + engines: {node: '>= 0.8'} + + prismjs@1.27.0: + resolution: {integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==} + engines: {node: '>=6'} + + prismjs@1.29.0: + resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} + engines: {node: '>=6'} + + private@0.1.8: + resolution: {integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==} + engines: {node: '>= 0.6'} + + proc-log@2.0.1: + resolution: {integrity: sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + process-on-spawn@1.0.0: + resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==} + engines: {node: '>=8'} + + process@0.11.10: + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} + engines: {node: '>= 0.6.0'} + + progress@2.0.3: + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + engines: {node: '>=0.4.0'} + + promise-all-reject-late@1.0.1: + resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==} + + promise-call-limit@1.0.2: + resolution: {integrity: sha512-1vTUnfI2hzui8AEIixbdAJlFY4LFDXqQswy/2eOlThAscXCY4It8FdVuI0fMJGAB2aWGbdQf/gv0skKYXmdrHA==} + + promise-inflight@1.0.1: + resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} + peerDependencies: + bluebird: '*' + peerDependenciesMeta: + bluebird: + optional: true + + promise-retry@2.0.1: + resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} + engines: {node: '>=10'} + + promise.allsettled@1.0.7: + resolution: {integrity: sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==} + engines: {node: '>= 0.4'} + + promise.prototype.finally@3.1.8: + resolution: {integrity: sha512-aVDtsXOml9iuMJzUco9J1je/UrIT3oMYfWkCTiUhkt+AvZw72q4dUZnR/R/eB3h5GeAagQVXvM1ApoYniJiwoA==} + engines: {node: '>= 0.4'} + + promise.series@0.2.0: + resolution: {integrity: sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==} + engines: {node: '>=0.12'} + + promise@7.0.4: + resolution: {integrity: sha512-8z1gTSL9cMgqCx8zvMYhzT0eQURAQNSQqR8B2hGfCYkAzt1vjReVdKBv4YwGw3OXAPaxfm4aR0gLoBUon4VmmA==} + + promise@8.3.0: + resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} + + prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} + + promzard@0.3.0: + resolution: {integrity: sha512-JZeYqd7UAcHCwI+sTOeUDYkvEU+1bQ7iE0UT1MgB/tERkAPkesW46MrpIySzODi+owTjZtiF8Ay5j9m60KmMBw==} + + prop-types@15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + + property-information@5.6.0: + resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} + + property-information@6.5.0: + resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} + + proto-list@1.2.4: + resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} + + protocols@2.0.1: + resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} + + proxy-addr@2.0.7: + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + engines: {node: '>= 0.10'} + + proxy-from-env@1.0.0: + resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==} + + proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + + prr@1.0.1: + resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} + + pseudomap@1.0.2: + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} + + psl@1.9.0: + resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + + pump@3.0.0: + resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + + punycode@1.4.1: + resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + pupa@2.1.1: + resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==} + engines: {node: '>=8'} + + puppeteer-core@2.1.1: + resolution: {integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==} + engines: {node: '>=8.16.0'} + + pure-rand@6.1.0: + resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} + + q@1.5.1: + resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} + engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + deprecated: |- + You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. + + (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) + + qr.js@0.0.0: + resolution: {integrity: sha512-c4iYnWb+k2E+vYpRimHqSu575b1/wKl4XFeJGpFmrJQz5I88v9aY2czh7s0w36srfCM1sXgC/xpoJz5dJfq+OQ==} + + qrcode.react@1.0.1: + resolution: {integrity: sha512-8d3Tackk8IRLXTo67Y+c1rpaiXjoz/Dd2HpcMdW//62/x8J1Nbho14Kh8x974t9prsLHN6XqVgcnRiBGFptQmg==} + peerDependencies: + react: ^15.5.3 || ^16.0.0 || ^17.0.0 + + qs@6.10.4: + resolution: {integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==} + engines: {node: '>=0.6'} + + qs@6.11.0: + resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} + engines: {node: '>=0.6'} + + qs@6.12.1: + resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==} + engines: {node: '>=0.6'} + + query-string@7.1.3: + resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} + engines: {node: '>=6'} + + querystring@0.2.1: + resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} + engines: {node: '>=0.4.x'} + deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. + + querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + quick-lru@4.0.1: + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} + + quick-lru@5.1.1: + resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} + engines: {node: '>=10'} + + raf@3.4.1: + resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} + + ramda@0.28.0: + resolution: {integrity: sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA==} + + randombytes@2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + + range-parser@1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} + + raw-body@2.5.2: + resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} + engines: {node: '>= 0.8'} + + raw-loader@4.0.2: + resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 + + rc-motion@2.9.2: + resolution: {integrity: sha512-fUAhHKLDdkAXIDLH0GYwof3raS58dtNUmzLF2MeiR8o6n4thNpSDQhOqQzWE4WfFZDCi9VEN8n7tiB7czREcyw==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + + rc-resize-observer@1.4.0: + resolution: {integrity: sha512-PnMVyRid9JLxFavTjeDXEXo65HCRqbmLBw9xX9gfC4BZiSzbLXKzW3jPz+J0P71pLbD5tBMTT+mkstV5gD0c9Q==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + + rc-tree@4.2.2: + resolution: {integrity: sha512-V1hkJt092VrOVjNyfj5IYbZKRMHxWihZarvA5hPL/eqm7o2+0SNkeidFYm7LVVBrAKBpOpa0l8xt04uiqOd+6w==} + engines: {node: '>=10.x'} + peerDependencies: + react: '*' + react-dom: '*' + + rc-util@5.43.0: + resolution: {integrity: sha512-AzC7KKOXFqAdIBqdGWepL9Xn7cm3vnAmjlHqUnoQaTMZYhM4VlXGLkkHHxj/BZ7Td0+SOPKB4RGPboBVKT9htw==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + + rc-virtual-list@3.14.3: + resolution: {integrity: sha512-6+6wiEhdqakNBnbRJymgMlh+90qpkgqherTRo1l1cX7mK6F9hWsazPczmP0lA+64yhC9/t+M9Dh5pjvDWimn8A==} + engines: {node: '>=8.x'} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + + rc@1.2.8: + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + hasBin: true + + react-app-polyfill@1.0.6: + resolution: {integrity: sha512-OfBnObtnGgLGfweORmdZbyEz+3dgVePQBb3zipiaDsMHV1NpWm0rDFYIVXFV/AK+x4VIIfWHhrdMIeoTLyRr2g==} + engines: {node: '>=6'} + + react-codemirror2@6.0.1: + resolution: {integrity: sha512-rutEKVgvFhWcy/GeVA1hFbqrO89qLqgqdhUr7YhYgIzdyICdlRQv+ztuNvOFQMXrO0fLt0VkaYOdMdYdQgsSUA==} + peerDependencies: + codemirror: 5.x + react: '>=15.5 <=16.x' + + react-color@2.19.3: + resolution: {integrity: sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==} + peerDependencies: + react: '*' + + react-colorful@5.6.1: + resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + + react-docgen-typescript-loader@3.7.2: + resolution: {integrity: sha512-fNzUayyUGzSyoOl7E89VaPKJk9dpvdSgyXg81cUkwy0u+NBvkzQG3FC5WBIlXda0k/iaxS+PWi+OC+tUiGxzPA==} + peerDependencies: + typescript: '*' + + react-docgen-typescript@1.22.0: + resolution: {integrity: sha512-MPLbF8vzRwAG3GcjdL+OHQlhgtWsLTXs+7uJiHfEeT3Ur7IsZaNYqRTLQ9sj2nB6M6jylcPCeCmH7qbszJmecg==} + peerDependencies: + typescript: '>= 3.x' + + react-docgen-typescript@2.2.2: + resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} + peerDependencies: + typescript: '>= 4.3.x' + + react-docgen@5.4.3: + resolution: {integrity: sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA==} + engines: {node: '>=8.10.0'} + hasBin: true + + react-dom@18.3.1: + resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + peerDependencies: + react: ^18.3.1 + + react-draggable@4.4.6: + resolution: {integrity: sha512-LtY5Xw1zTPqHkVmtM3X8MUOxNDOUhv/khTgBgrUvwaS064bwVvxT+q5El0uUFNx5IEPKXuRejr7UqLwBIg5pdw==} + peerDependencies: + react: '>= 16.3.0' + react-dom: '>= 16.3.0' + + react-element-to-jsx-string@14.3.4: + resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} + peerDependencies: + react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 + react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 + + react-fast-compare@2.0.4: + resolution: {integrity: sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==} + + react-fast-compare@3.2.2: + resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} + + react-final-form@6.5.9: + resolution: {integrity: sha512-x3XYvozolECp3nIjly+4QqxdjSSWfcnpGEL5K8OBT6xmGrq5kBqbA6+/tOqoom9NwqIPPbxPNsOViFlbKgowbA==} + peerDependencies: + final-form: ^4.20.4 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + react-floater@0.7.9: + resolution: {integrity: sha512-NXqyp9o8FAXOATOEo0ZpyaQ2KPb4cmPMXGWkx377QtJkIXHlHRAGer7ai0r0C1kG5gf+KJ6Gy+gdNIiosvSicg==} + peerDependencies: + react: 15 - 18 + react-dom: 15 - 18 + + react-head@3.4.2: + resolution: {integrity: sha512-mnl6u7E0SSzY9w+mExKGVz8vW/oObUTnj+vpRaZF6jcdjFcCGs0vl8MRwlRws56dye3f1CpzU7C/hz3b3S2BBA==} + peerDependencies: + react: '>=16.3' + react-dom: '>=16.3' + + react-helmet-async@1.3.0: + resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==} + peerDependencies: + react: ^16.6.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 + + react-helmet@5.2.1: + resolution: {integrity: sha512-CnwD822LU8NDBnjCpZ4ySh8L6HYyngViTZLfBBb3NjtrpN8m49clH8hidHouq20I51Y6TpCTISCBbqiY5GamwA==} + peerDependencies: + react: '>=15.0.0' + + react-hot-loader@4.13.1: + resolution: {integrity: sha512-ZlqCfVRqDJmMXTulUGic4lN7Ic1SXgHAFw7y/Jb7t25GBgTR0fYAJ8uY4mrpxjRyWGWmqw77qJQGnYbzCvBU7g==} + engines: {node: '>= 6'} + peerDependencies: + '@types/react': 18.0.18 + react: ^15.0.0 || ^16.0.0 || ^17.0.0 + react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + react-i18next@11.18.6: + resolution: {integrity: sha512-yHb2F9BiT0lqoQDt8loZ5gWP331GwctHz9tYQ8A2EIEUu+CcEdjBLQWli1USG3RdWQt3W+jqQLg/d4rrQR96LA==} + peerDependencies: + i18next: '>= 19.0.0' + react: '>= 16.8.0' + react-dom: '*' + react-native: '*' + peerDependenciesMeta: + react-dom: + optional: true + react-native: + optional: true + + react-innertext@1.1.5: + resolution: {integrity: sha512-PWAqdqhxhHIv80dT9znP2KvS+hfkbRovFp4zFYHFFlOoQLRiawIic81gKb3U1wEyJZgMwgs3JoLtwryASRWP3Q==} + peerDependencies: + '@types/react': 18.0.18 + react: '>=0.0.0 <=99' + + react-inspector@5.1.1: + resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==} + peerDependencies: + react: ^16.8.4 || ^17.0.0 + + react-is@16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + + react-is@17.0.2: + resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + + react-is@18.3.1: + resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} + + react-joyride@2.8.2: + resolution: {integrity: sha512-2QY8HB1G0I2OT0PKMUz7gg2HAjdkG2Bqi13r0Bb1V16PAwfb9khn4wWBTOJsGsjulbAWiQ3/0YrgNUHGFmuifw==} + peerDependencies: + react: 15 - 18 + react-dom: 15 - 18 + + react-lifecycles-compat@3.0.4: + resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} + + react-markdown@9.0.1: + resolution: {integrity: sha512-186Gw/vF1uRkydbsOIkcGXw7aHq0sZOCRFFjGrr7b9+nVZg4UfA4enXCaxm4fUzecU38sWfrNDitGhshuU7rdg==} + peerDependencies: + '@types/react': 18.0.18 + react: '>=18' + + react-notification-system@0.4.0: + resolution: {integrity: sha512-5WhXnjkYC07zqXruCiUXDU9iHjVxZlL1zgHpNgXk91A5ghV1AHrWVrJYo1XM4SnwlKy5NLdftkaTl+pTuVFAqw==} + peerDependencies: + react: "0.14.x || ^15.0.0 ||\_^16.0.0" + react-dom: 0.14.x || ^15.0.0 || ^16.0.0 + + react-password-strength-bar@0.3.5: + resolution: {integrity: sha512-e48tYTKZ5gy1tUYYT3aJ+BWggg0RE/ZUN8ep6sHgGuI9SqJTgd4WL4TFgT37kX09NyQwSOcZKHpcKQEtCEECuA==} + peerDependencies: + react: ^16.8.6 || ^17 + react-dom: ^16.8.6 || ^17 + + react-popper-tooltip@3.1.1: + resolution: {integrity: sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==} + peerDependencies: + react: ^16.6.0 || ^17.0.0 + react-dom: ^16.6.0 || ^17.0.0 + + react-popper@2.3.0: + resolution: {integrity: sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==} + peerDependencies: + '@popperjs/core': ^2.0.0 + react: ^16.8.0 || ^17 || ^18 + react-dom: ^16.8.0 || ^17 || ^18 + + react-property@2.0.0: + resolution: {integrity: sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw==} + + react-redux@7.2.9: + resolution: {integrity: sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==} + peerDependencies: + react: ^16.8.3 || ^17 || ^18 + react-dom: '*' + react-native: '*' + peerDependenciesMeta: + react-dom: + optional: true + react-native: + optional: true + + react-refresh@0.10.0: + resolution: {integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==} + engines: {node: '>=0.10.0'} + + react-refresh@0.11.0: + resolution: {integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==} + engines: {node: '>=0.10.0'} + + react-refresh@0.9.0: + resolution: {integrity: sha512-Gvzk7OZpiqKSkxsQvO/mbTN1poglhmAV7gR/DdIrRrSMXraRQQlfikRJOr3Nb9GTMPC5kof948Zy6jJZIFtDvQ==} + engines: {node: '>=0.10.0'} + + react-router-dom@4.3.1: + resolution: {integrity: sha512-c/MlywfxDdCp7EnB7YfPMOfMD3tOtIjrQlj/CKfNMBxdmpJP8xcz5P/UAFn3JbnQCNUxsHyVVqllF9LhgVyFCA==} + peerDependencies: + react: '>=15' + + react-router-dom@6.23.1: + resolution: {integrity: sha512-utP+K+aSTtEdbWpC+4gxhdlPFwuEfDKq8ZrPFU65bbRJY+l706qjR7yaidBpo3MSeA/fzwbXWbKBI6ftOnP3OQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + react: '>=16.8' + react-dom: '>=16.8' + + react-router@4.3.1: + resolution: {integrity: sha512-yrvL8AogDh2X42Dt9iknk4wF4V8bWREPirFfS9gLU1huk6qK41sg7Z/1S81jjTrGHxa3B8R3J6xIkDAA6CVarg==} + peerDependencies: + react: '>=15' + + react-router@6.23.1: + resolution: {integrity: sha512-fzcOaRF69uvqbbM7OhvQyBTFDVrrGlsFdS3AL+1KfIBtGETibHzi3FkoTRyiDJnWNc2VxrfvR+657ROHjaNjqQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + react: '>=16.8' + + react-side-effect@1.2.0: + resolution: {integrity: sha512-v1ht1aHg5k/thv56DRcjw+WtojuuDHFUgGfc+bFHOWsF4ZK6C2V57DO0Or0GPsg6+LSTE0M6Ry/gfzhzSwbc5w==} + peerDependencies: + react: ^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0 + + react-sizeme@3.0.2: + resolution: {integrity: sha512-xOIAOqqSSmKlKFJLO3inBQBdymzDuXx4iuwkNcJmC96jeiOg5ojByvL+g3MW9LPEsojLbC6pf68zOfobK8IPlw==} + + react-smooth@4.0.1: + resolution: {integrity: sha512-OE4hm7XqR0jNOq3Qmk9mFLyd6p2+j6bvbPJ7qlB7+oo0eNcL2l7WQzG6MBnT3EXY6xzkLMUBec3AfewJdA0J8w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + react-syntax-highlighter@13.5.3: + resolution: {integrity: sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==} + peerDependencies: + react: '>= 0.14.0' + + react-textarea-autosize@8.5.3: + resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==} + engines: {node: '>=10'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + react-top-loading-bar@1.2.0: + resolution: {integrity: sha512-5oNdy+DfD5JK06bcc/gsnnXHmml+d8eaBe3C8KQ3eLiH/BD8+FcwsgbAwqgOaRjuSeVQXdYN2JC2G1uVFtCLfA==} + engines: {node: '>=8', npm: '>=5'} + peerDependencies: + prop-types: ^15.5.4 + react: ^15.0.0 || ^16.0.0 + react-dom: ^15.0.0 || ^16.0.0 + + react-transition-group@4.4.5: + resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} + peerDependencies: + react: '>=16.6.0' + react-dom: '>=16.6.0' + + react-world-flags@1.6.0: + resolution: {integrity: sha512-eutSeAy5YKoVh14js/JUCSlA6EBk1n4k+bDaV+NkNB50VhnG+f4QDTpYycnTUTsZ5cqw/saPmk0Z4Fa0VVZ1Iw==} + peerDependencies: + react: '>=0.14' + + react@18.3.1: + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} + engines: {node: '>=0.10.0'} + + reactcss@1.2.3: + resolution: {integrity: sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==} + peerDependencies: + react: '*' + + reactflow@11.7.2: + resolution: {integrity: sha512-HBudD8BwZacOMqX8fbkiXbeBQs3nRezWVLCDurfc+tTeHsA7988uyaIOhrnKgYCcKtlpJaspsnxDZk+5JmmHxA==} + peerDependencies: + react: '>=17' + react-dom: '>=17' + + read-cache@1.0.0: + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + + read-cmd-shim@3.0.1: + resolution: {integrity: sha512-kEmDUoYf/CDy8yZbLTmhB1X9kkjf9Q80PCNsDMb7ufrGd6zZSQA1+UyjrO+pZm5K/S4OXCWJeiIt1JA8kAsa6g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + read-package-json-fast@2.0.3: + resolution: {integrity: sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==} + engines: {node: '>=10'} + + read-package-json@5.0.2: + resolution: {integrity: sha512-BSzugrt4kQ/Z0krro8zhTwV1Kd79ue25IhNN/VtHFy1mG/6Tluyi+msc0UpwaoQzxSHa28mntAjIZY6kEgfR9Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. Please use @npmcli/package-json instead. + + read-pkg-up@1.0.1: + resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==} + engines: {node: '>=0.10.0'} + + read-pkg-up@3.0.0: + resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} + engines: {node: '>=4'} + + read-pkg-up@7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} + + read-pkg@1.1.0: + resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==} + engines: {node: '>=0.10.0'} + + read-pkg@3.0.0: + resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} + engines: {node: '>=4'} + + read-pkg@5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} + + read-yaml-file@1.1.0: + resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} + engines: {node: '>=6'} + + read@1.0.7: + resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} + engines: {node: '>=0.8'} + + readable-stream@1.1.14: + resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==} + + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + readable-web-to-node-stream@3.0.2: + resolution: {integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==} + engines: {node: '>=8'} + + readdir-scoped-modules@1.1.0: + resolution: {integrity: sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==} + deprecated: This functionality has been moved to @npmcli/fs + + readdirp@2.2.1: + resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==} + engines: {node: '>=0.10'} + + readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + + recast@0.19.1: + resolution: {integrity: sha512-8FCjrBxjeEU2O6I+2hyHyBFH1siJbMBLwIRvVr1T3FD2cL754sOaJDsJ/8h3xYltasbJ8jqWRIhMuDGBSiSbjw==} + engines: {node: '>= 4'} + + recast@0.20.5: + resolution: {integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==} + engines: {node: '>= 4'} + + recharts-scale@0.4.5: + resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==} + + recharts@2.12.7: + resolution: {integrity: sha512-hlLJMhPQfv4/3NBSAyq3gzGg4h2v69RJh6KU7b3pXYNNAELs9kEoXOjbkxdXpALqKBoVmVptGfLpxdaVYqjmXQ==} + engines: {node: '>=14'} + peerDependencies: + react: ^16.0.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 + + rechoir@0.6.2: + resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} + engines: {node: '>= 0.10'} + + rechoir@0.7.1: + resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==} + engines: {node: '>= 0.10'} + + redent@1.0.0: + resolution: {integrity: sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==} + engines: {node: '>=0.10.0'} + + redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + + reduce-reducers@1.0.4: + resolution: {integrity: sha512-Mb2WZ2bJF597exiqX7owBzrqJ74DHLK3yOQjCyPAaNifRncE8OD0wFIuoMhXxTnHK07+8zZ2SJEKy/qtiyR7vw==} + + redux-devtools-extension@2.13.9: + resolution: {integrity: sha512-cNJ8Q/EtjhQaZ71c8I9+BPySIBVEKssbPpskBfsXqb8HJ002A3KRVHfeRzwRo6mGPqsm7XuHTqNSNeS1Khig0A==} + deprecated: Package moved to @redux-devtools/extension. + peerDependencies: + redux: ^3.1.0 || ^4.0.0 + + redux-form@8.3.10: + resolution: {integrity: sha512-Eeog8dJYUxCSZI/oBoy7VkprvMjj1lpUnHa3LwjVNZvYDNeiRZMoZoaAT+6nlK2YQ4aiBopKUMiLe4ihUOHCGg==} + engines: {node: '>=8.10'} + peerDependencies: + immutable: ^3.8.2 || ^4.0.0 + react: ^16.4.2 || ^17.0.0 || ^18.0.0 + react-redux: ^6.0.1 || ^7.0.0 || ^8.0.0 + redux: ^3.7.2 || ^4.0.0 + peerDependenciesMeta: + immutable: + optional: true + + redux-mock-store@1.5.4: + resolution: {integrity: sha512-xmcA0O/tjCLXhh9Fuiq6pMrJCwFRaouA8436zcikdIpYWWCjU76CRk+i2bHx8EeiSiMGnB85/lZdU3wIJVXHTA==} + + redux-thunk@2.4.2: + resolution: {integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==} + peerDependencies: + redux: ^4 + + redux@4.2.1: + resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} + + reflect.getprototypeof@1.0.6: + resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} + engines: {node: '>= 0.4'} + + refractor@3.6.0: + resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==} + + regenerate-unicode-properties@10.1.1: + resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} + engines: {node: '>=4'} + + regenerate@1.4.2: + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + + regenerator-runtime@0.10.5: + resolution: {integrity: sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==} + + regenerator-runtime@0.11.1: + resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} + + regenerator-runtime@0.13.11: + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + + regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + + regenerator-transform@0.15.2: + resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} + + regex-not@1.0.2: + resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} + engines: {node: '>=0.10.0'} + + regexp.prototype.flags@1.5.2: + resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} + engines: {node: '>= 0.4'} + + regexpp@3.2.0: + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} + engines: {node: '>=8'} + + regexpu-core@5.3.2: + resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} + engines: {node: '>=4'} + + registry-auth-token@4.2.2: + resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==} + engines: {node: '>=6.0.0'} + + registry-url@5.1.0: + resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} + engines: {node: '>=8'} + + regjsparser@0.9.1: + resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} + hasBin: true + + rehype-attr@3.0.3: + resolution: {integrity: sha512-Up50Xfra8tyxnkJdCzLBIBtxOcB2M1xdeKe1324U06RAvSjYm7ULSeoM+b/nYPQPVd7jsXJ9+39IG1WAJPXONw==} + engines: {node: '>=16'} + + relateurl@0.2.7: + resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} + engines: {node: '>= 0.10'} + + release-zalgo@1.0.0: + resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==} + engines: {node: '>=4'} + + remark-external-links@8.0.0: + resolution: {integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==} + + remark-footnotes@2.0.0: + resolution: {integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==} + + remark-mdx@1.6.22: + resolution: {integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==} + + remark-parse@11.0.0: + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} + + remark-parse@8.0.3: + resolution: {integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==} + + remark-rehype@11.1.0: + resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==} + + remark-slug@6.1.0: + resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==} + + remark-squeeze-paragraphs@4.0.0: + resolution: {integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==} + + remove-trailing-separator@1.1.0: + resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} + + renderkid@2.0.7: + resolution: {integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==} + + renderkid@3.0.0: + resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} + + repeat-element@1.1.4: + resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} + engines: {node: '>=0.10.0'} + + repeat-string@1.6.1: + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} + + repeating@2.0.1: + resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==} + engines: {node: '>=0.10.0'} + + replace@1.2.2: + resolution: {integrity: sha512-C4EDifm22XZM2b2JOYe6Mhn+lBsLBAvLbK8drfUQLTfD1KYl/n3VaW/CDju0Ny4w3xTtegBpg8YNSpFJPUDSjA==} + engines: {node: '>= 6'} + hasBin: true + + request-progress@3.0.0: + resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==} + + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + + require-main-filename@2.0.0: + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + + requireindex@1.2.0: + resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==} + engines: {node: '>=0.10.5'} + + requires-port@1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + + reselect@4.1.8: + resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==} + + resize-observer-polyfill@1.5.1: + resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==} + + resolve-alpn@1.2.1: + resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} + + resolve-cwd@2.0.0: + resolution: {integrity: sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==} + engines: {node: '>=4'} + + resolve-cwd@3.0.0: + resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + engines: {node: '>=8'} + + resolve-from@3.0.0: + resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} + engines: {node: '>=4'} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + + resolve-pathname@3.0.0: + resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==} + + resolve-url@0.2.1: + resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} + deprecated: https://github.com/lydell/resolve-url#deprecated + + resolve.exports@1.1.0: + resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} + engines: {node: '>=10'} + + resolve.exports@2.0.2: + resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} + engines: {node: '>=10'} + + resolve@1.1.7: + resolution: {integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==} + + resolve@1.19.0: + resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==} + + resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + hasBin: true + + resolve@2.0.0-next.5: + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} + hasBin: true + + responselike@1.0.2: + resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} + + responselike@2.0.1: + resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} + + restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} + + ret@0.1.15: + resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} + engines: {node: '>=0.12'} + + retry@0.12.0: + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} + engines: {node: '>= 4'} + + retry@0.13.1: + resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} + engines: {node: '>= 4'} + + reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rfdc@1.4.1: + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + + rimraf@2.6.3: + resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + rimraf@2.7.1: + resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + rollup-plugin-copy@3.5.0: + resolution: {integrity: sha512-wI8D5dvYovRMx/YYKtUNt3Yxaw4ORC9xo6Gt9t22kveWz1enG9QrhVlagzwrxSC455xD1dHMKhIJkbsQ7d48BA==} + engines: {node: '>=8.3'} + + rollup-plugin-dts@6.1.1: + resolution: {integrity: sha512-aSHRcJ6KG2IHIioYlvAOcEq6U99sVtqDDKVhnwt70rW6tsz3tv5OSjEiWcgzfsHdLyGXZ/3b/7b/+Za3Y6r1XA==} + engines: {node: '>=16'} + peerDependencies: + rollup: ^3.29.4 || ^4 + typescript: ^4.5 || ^5.0 + + rollup-plugin-generate-package-json@3.2.0: + resolution: {integrity: sha512-+Kq1kFVr+maxW/mZB+E+XuaieCXVZqjl2tNU9k3TtAMs3NOaeREa5sRHy67qKDmcnFtZZukIQ3dFCcnV+r0xyw==} + engines: {node: '>=8.3'} + peerDependencies: + rollup: '>=1.0.0' + + rollup-plugin-peer-deps-external@2.2.4: + resolution: {integrity: sha512-AWdukIM1+k5JDdAqV/Cxd+nejvno2FVLVeZ74NKggm3Q5s9cbbcOgUPGdbxPi4BXu7xGaZ8HG12F+thImYu/0g==} + peerDependencies: + rollup: '*' + + rollup-plugin-polyfill-node@0.13.0: + resolution: {integrity: sha512-FYEvpCaD5jGtyBuBFcQImEGmTxDTPbiHjJdrYIp+mFIwgXiXabxvKUK7ZT9P31ozu2Tqm9llYQMRWsfvTMTAOw==} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 + + rollup-plugin-postcss@4.0.2: + resolution: {integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==} + engines: {node: '>=10'} + peerDependencies: + postcss: 8.x + + rollup-plugin-scss@4.0.0: + resolution: {integrity: sha512-wxasNXDYC2m+fDxCMgK00WebVWYmeFvShyNABmjvSJZ6D1/SepwqFeaMFMQromveI79gfvb64yJjiZZxSZxEIA==} + + rollup-plugin-styles@4.0.0: + resolution: {integrity: sha512-A2K2sao84OsTmDxXG83JTCdXWrmgvQkkI38XDat46rdtpGMRm9tSYqeCdlwwGDJF4kKIafhV1mUidqu8MxUGig==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + peerDependencies: + rollup: ^2.63.0 + + rollup-plugin-svg@2.0.0: + resolution: {integrity: sha512-DmE7dSQHo1SC5L2uH2qul3Mjyd5oV6U1aVVkyvTLX/mUsRink7f1b1zaIm+32GEBA6EHu8H/JJi3DdWqM53ySQ==} + + rollup-plugin-typescript2@0.31.2: + resolution: {integrity: sha512-hRwEYR1C8xDGVVMFJQdEVnNAeWRvpaY97g5mp3IeLnzhNXzSVq78Ye/BJ9PAaUfN4DXa/uDnqerifMOaMFY54Q==} + peerDependencies: + rollup: '>=1.26.3' + typescript: '>=2.4.0' + + rollup-pluginutils@1.5.2: + resolution: {integrity: sha512-SjdWWWO/CUoMpDy8RUbZ/pSpG68YHmhk5ROKNIoi2En9bJ8bTt3IhYi254RWiTclQmL7Awmrq+rZFOhZkJAHmQ==} + + rollup-pluginutils@2.8.2: + resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} + + rollup@2.79.1: + resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} + engines: {node: '>=10.0.0'} + hasBin: true + + rollup@4.18.0: + resolution: {integrity: sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + rsvp@4.8.5: + resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==} + engines: {node: 6.* || >= 7.*} + + run-async@2.4.1: + resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} + engines: {node: '>=0.12.0'} + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + rxjs@6.6.7: + resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} + engines: {npm: '>=2.0.0'} + + rxjs@7.8.1: + resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + + safe-array-concat@1.1.2: + resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} + engines: {node: '>=0.4'} + + safe-buffer@5.1.1: + resolution: {integrity: sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==} + + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-identifier@0.4.2: + resolution: {integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==} + + safe-regex-test@1.0.3: + resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} + engines: {node: '>= 0.4'} + + safe-regex@1.1.0: + resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + sane@4.1.0: + resolution: {integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==} + engines: {node: 6.* || 8.* || >= 10.*} + deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added + hasBin: true + + sass-loader@12.6.0: + resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} + engines: {node: '>= 12.13.0'} + peerDependencies: + fibers: '>= 3.1.0' + node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 + sass: ^1.3.0 + sass-embedded: '*' + webpack: 5.84.1 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + sass-embedded: + optional: true + + sass@1.77.6: + resolution: {integrity: sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==} + engines: {node: '>=14.0.0'} + hasBin: true + + sax@1.2.4: + resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} + + saxes@5.0.1: + resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} + engines: {node: '>=10'} + + saxes@6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} + + scheduler@0.23.2: + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + + schema-utils@0.4.7: + resolution: {integrity: sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==} + engines: {node: '>= 4'} + + schema-utils@1.0.0: + resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==} + engines: {node: '>= 4'} + + schema-utils@2.7.0: + resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} + engines: {node: '>= 8.9.0'} + + schema-utils@2.7.1: + resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} + engines: {node: '>= 8.9.0'} + + schema-utils@3.3.0: + resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} + engines: {node: '>= 10.13.0'} + + schema-utils@4.2.0: + resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} + engines: {node: '>= 12.13.0'} + + scroll@3.0.1: + resolution: {integrity: sha512-pz7y517OVls1maEzlirKO5nPYle9AXsFzTMNJrRGmT951mzpIBy7sNHOg5o/0MQd/NqliCiWnAi0kZneMPFLcg==} + + scrollparent@2.1.0: + resolution: {integrity: sha512-bnnvJL28/Rtz/kz2+4wpBjHzWoEzXhVg/TE8BeVGJHUqE8THNIRnDxDWMktwM+qahvlRdvlLdsQfYe+cuqfZeA==} + + secure-compare@3.0.1: + resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==} + + select-hose@2.0.0: + resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} + + selfsigned@1.10.14: + resolution: {integrity: sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==} + + selfsigned@2.4.1: + resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} + engines: {node: '>=10'} + + semantic-ui-css@2.5.0: + resolution: {integrity: sha512-jIWn3WXXE2uSaWCcB+gVJVRG3masIKtTMNEP2X8Aw909H2rHpXGneYOxzO3hT8TpyvB5/dEEo9mBFCitGwoj1A==} + + semantic-ui-less@2.5.0: + resolution: {integrity: sha512-Nlp8iR0otCQB74Yqob2Dxpsm5H9YAp3NvQ3sWDediwFjrd/l3Leu9md2O82UU5n5hOSqu95xnTok55eIAhlTjg==} + + semantic-ui-react@2.1.5: + resolution: {integrity: sha512-nIqmmUNpFHfovEb+RI2w3E2/maZQutd8UIWyRjf1SLse+XF51hI559xbz/sLN3O6RpLjr/echLOOXwKCirPy3Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + semver-diff@3.1.1: + resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==} + engines: {node: '>=8'} + + semver-regex@4.0.5: + resolution: {integrity: sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==} + engines: {node: '>=12'} + + semver-truncate@3.0.0: + resolution: {integrity: sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==} + engines: {node: '>=12'} + + semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.3.4: + resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} + engines: {node: '>=10'} + hasBin: true + + semver@7.6.2: + resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} + engines: {node: '>=10'} + hasBin: true + + send@0.18.0: + resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} + engines: {node: '>= 0.8.0'} + + serialize-javascript@5.0.1: + resolution: {integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==} + + serialize-javascript@6.0.2: + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + + serve-favicon@2.5.0: + resolution: {integrity: sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==} + engines: {node: '>= 0.8.0'} + + serve-index@1.9.1: + resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} + engines: {node: '>= 0.8.0'} + + serve-static@1.15.0: + resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} + engines: {node: '>= 0.8.0'} + + set-blocking@2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + + set-cookie-parser@2.6.0: + resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==} + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + + set-value@2.0.1: + resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} + engines: {node: '>=0.10.0'} + + setprototypeof@1.1.0: + resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} + + setprototypeof@1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + + shallow-clone@0.1.2: + resolution: {integrity: sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==} + engines: {node: '>=0.10.0'} + + shallow-clone@3.0.1: + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} + + shallowequal@1.1.0: + resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} + + shebang-command@1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shell-quote@1.8.1: + resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} + + shelljs@0.8.5: + resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} + engines: {node: '>=4'} + hasBin: true + + shellwords@0.1.1: + resolution: {integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==} + + side-channel@1.0.6: + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} + engines: {node: '>= 0.4'} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + simple-git@1.132.0: + resolution: {integrity: sha512-xauHm1YqCTom1sC9eOjfq3/9RKiUA9iPnxBbrY2DdL8l4ADMu0jjM5l5lphQP5YWNqAL2aXC/OeuQ76vHtW5fg==} + + sirv@2.0.4: + resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} + engines: {node: '>= 10'} + + sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + + slash@2.0.0: + resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==} + engines: {node: '>=6'} + + slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + slash@4.0.0: + resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} + engines: {node: '>=12'} + + slash@5.1.0: + resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} + engines: {node: '>=14.16'} + + slashes@2.0.2: + resolution: {integrity: sha512-68p+QkFAQQRetIUzNXAdktNJr8AYLxJukjBegYQz8F7VATsBJG621UYtY/vS2j9jerxdJ1k6Tc25K4DXEw1d5w==} + + slice-ansi@3.0.0: + resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} + engines: {node: '>=8'} + + slice-ansi@4.0.0: + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} + engines: {node: '>=10'} + + smart-buffer@4.2.0: + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + + smartwrap@2.0.2: + resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} + engines: {node: '>=6'} + hasBin: true + + snapdragon-node@2.1.1: + resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} + engines: {node: '>=0.10.0'} + + snapdragon-util@3.0.1: + resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} + engines: {node: '>=0.10.0'} + + snapdragon@0.8.2: + resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} + engines: {node: '>=0.10.0'} + + sockjs-client@1.6.1: + resolution: {integrity: sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==} + engines: {node: '>=12'} + + sockjs@0.3.24: + resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} + + socks-proxy-agent@7.0.0: + resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} + engines: {node: '>= 10'} + + socks@2.8.3: + resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} + engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} + + sort-keys-length@1.0.1: + resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==} + engines: {node: '>=0.10.0'} + + sort-keys@1.1.2: + resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==} + engines: {node: '>=0.10.0'} + + sort-keys@2.0.0: + resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} + engines: {node: '>=4'} + + sort-keys@4.2.0: + resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==} + engines: {node: '>=8'} + + source-list-map@2.0.1: + resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==} + + source-map-js@1.2.0: + resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} + engines: {node: '>=0.10.0'} + + source-map-loader@0.2.4: + resolution: {integrity: sha512-OU6UJUty+i2JDpTItnizPrlpOIBLmQbWMuBg9q5bVtnHACqw1tn9nNwqJLbv0/00JjnJb/Ee5g5WS5vrRv7zIQ==} + engines: {node: '>= 6'} + + source-map-loader@3.0.2: + resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: 5.84.1 + + source-map-resolve@0.5.3: + resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} + deprecated: See https://github.com/lydell/source-map-resolve#deprecated + + source-map-resolve@0.6.0: + resolution: {integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==} + deprecated: See https://github.com/lydell/source-map-resolve#deprecated + + source-map-support@0.5.13: + resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + + source-map-support@0.5.19: + resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} + + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + + source-map-url@0.4.1: + resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} + deprecated: See https://github.com/lydell/source-map-url#deprecated + + source-map@0.5.7: + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + source-map@0.7.4: + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} + engines: {node: '>= 8'} + + sourcemap-codec@1.4.8: + resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} + deprecated: Please use @jridgewell/sourcemap-codec instead + + space-separated-tokens@1.1.5: + resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} + + space-separated-tokens@2.0.2: + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} + + spawn-wrap@2.0.0: + resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==} + engines: {node: '>=8'} + + spawndamnit@2.0.0: + resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} + + spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + + spdx-exceptions@2.5.0: + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + + spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + + spdx-license-ids@3.0.18: + resolution: {integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==} + + spdy-transport@3.0.0: + resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} + + spdy@4.0.2: + resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} + engines: {node: '>=6.0.0'} + + split-on-first@1.1.0: + resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} + engines: {node: '>=6'} + + split-string@3.1.0: + resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} + engines: {node: '>=0.10.0'} + + split2@3.2.2: + resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} + + split@1.0.1: + resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} + + sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + + sprintf-js@1.1.3: + resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} + + sshpk@1.18.0: + resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} + engines: {node: '>=0.10.0'} + hasBin: true + + ssri@8.0.1: + resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} + engines: {node: '>= 8'} + + ssri@9.0.1: + resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + stable@0.1.8: + resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} + deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' + + stack-utils@2.0.6: + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + engines: {node: '>=10'} + + stackframe@1.3.4: + resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} + + state-local@1.0.7: + resolution: {integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==} + + state-toggle@1.0.3: + resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==} + + static-extend@0.1.2: + resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} + engines: {node: '>=0.10.0'} + + statuses@1.5.0: + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} + engines: {node: '>= 0.6'} + + statuses@2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} + + stop-iteration-iterator@1.0.0: + resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} + engines: {node: '>= 0.4'} + + store2@2.14.3: + resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==} + + storybook@6.5.16: + resolution: {integrity: sha512-+Ychak5QtcTx8EuQzu7eilw+65sk6q1LdI68vb1VOIYD29PEEC7MsZGKPi6AKYNbdhGp0cGu0j3Bf1TxGOBFEA==} + hasBin: true + + stream-transform@2.1.3: + resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} + + streamroller@1.0.6: + resolution: {integrity: sha512-3QC47Mhv3/aZNFpDDVO44qQb9gwB9QggMEE0sQmkTAwBVYdBRWISdsywlkfm5II1Q5y/pmrHflti/IgmIzdDBg==} + engines: {node: '>=6.0'} + deprecated: 1.x is no longer supported. Please upgrade to 3.x or higher. + + strict-event-emitter@0.2.8: + resolution: {integrity: sha512-KDf/ujU8Zud3YaLtMCcTI4xkZlZVIYxTLr+XIULexP+77EEVWixeXroLUXQXiVtH4XH2W7jr/3PT1v3zBuvc3A==} + + strict-uri-encode@2.0.0: + resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} + engines: {node: '>=4'} + + string-hash@1.1.3: + resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} + + string-length@4.0.2: + resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} + engines: {node: '>=10'} + + string-width@3.1.0: + resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==} + engines: {node: '>=6'} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + + string.prototype.matchall@4.0.11: + resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} + engines: {node: '>= 0.4'} + + string.prototype.padend@3.1.6: + resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==} + engines: {node: '>= 0.4'} + + string.prototype.padstart@3.1.6: + resolution: {integrity: sha512-1y15lz7otgfRTAVK5qbp3eHIga+w8j7+jIH+7HpUrOfnLVl6n0hbspi4EXf4tR+PNOpBjPstltemkx0SvViOCg==} + engines: {node: '>= 0.4'} + + string.prototype.trim@1.2.9: + resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} + engines: {node: '>= 0.4'} + + string.prototype.trimend@1.0.8: + resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} + + string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + + string_decoder@0.10.31: + resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} + + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + stringify-entities@4.0.4: + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} + + strip-ansi@3.0.1: + resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} + engines: {node: '>=0.10.0'} + + strip-ansi@4.0.0: + resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==} + engines: {node: '>=4'} + + strip-ansi@5.2.0: + resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} + engines: {node: '>=6'} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + + strip-bom@2.0.0: + resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} + engines: {node: '>=0.10.0'} + + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + + strip-bom@4.0.0: + resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + engines: {node: '>=8'} + + strip-eof@1.0.0: + resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} + engines: {node: '>=0.10.0'} + + strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + + strip-indent@1.0.1: + resolution: {integrity: sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==} + engines: {node: '>=0.10.0'} + hasBin: true + + strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + + strip-json-comments@1.0.4: + resolution: {integrity: sha512-AOPG8EBc5wAikaG1/7uFCNFJwnKOuQwFTpYBdTW6OvWHeZBQBrAA/amefHGrEiOnCPcLFZK6FUPtWVKpQVIRgg==} + engines: {node: '>=0.8.0'} + hasBin: true + + strip-json-comments@2.0.1: + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} + engines: {node: '>=0.10.0'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + strip-outer@2.0.0: + resolution: {integrity: sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + strnum@1.0.5: + resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} + + strong-log-transformer@2.1.0: + resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} + engines: {node: '>=4'} + hasBin: true + + strtok3@7.0.0: + resolution: {integrity: sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==} + engines: {node: '>=14.16'} + + style-inject@0.3.0: + resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==} + + style-loader@0.23.1: + resolution: {integrity: sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==} + engines: {node: '>= 0.12.0'} + + style-loader@1.3.0: + resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==} + engines: {node: '>= 8.9.0'} + peerDependencies: + webpack: 5.84.1 + + style-loader@2.0.0: + resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 + + style-loader@3.3.4: + resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: 5.84.1 + + style-to-js@1.1.1: + resolution: {integrity: sha512-RJ18Z9t2B02sYhZtfWKQq5uplVctgvjTfLWT7+Eb1zjUjIrWzX5SdlkwLGQozrqarTmEzJJ/YmdNJCUNI47elg==} + + style-to-object@0.3.0: + resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==} + + style-to-object@1.0.6: + resolution: {integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==} + + styled-components@4.4.1: + resolution: {integrity: sha512-RNqj14kYzw++6Sr38n7197xG33ipEOktGElty4I70IKzQF1jzaD1U4xQ+Ny/i03UUhHlC5NWEO+d8olRCDji6g==} + peerDependencies: + react: '>= 16.3.0' + react-dom: '>= 16.3.0' + + stylehacks@5.1.1: + resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + stylis-rule-sheet@0.0.10: + resolution: {integrity: sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==} + peerDependencies: + stylis: ^3.5.0 + + stylis@3.5.4: + resolution: {integrity: sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==} + + stylis@4.2.0: + resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} + + stylus-loader@6.2.0: + resolution: {integrity: sha512-5dsDc7qVQGRoc6pvCL20eYgRUxepZ9FpeK28XhdXaIPP6kXr6nI1zAAKFQgP5OBkOfKaURp4WUpJzspg1f01Gg==} + engines: {node: '>= 12.13.0'} + peerDependencies: + stylus: '>=0.52.4' + webpack: 5.84.1 + + stylus@0.55.0: + resolution: {integrity: sha512-MuzIIVRSbc8XxHH7FjkvWqkIcr1BvoMZoR/oFuAJDlh7VSaNJzrB4uJ38GRQa+mWjLXODAMzeDe0xi9GYbGwnw==} + hasBin: true + + supports-color@2.0.0: + resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} + engines: {node: '>=0.8.0'} + + supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + + supports-color@6.1.0: + resolution: {integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==} + engines: {node: '>=6'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-color@8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + + supports-hyperlinks@2.3.0: + resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} + engines: {node: '>=8'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + svg-country-flags@1.2.10: + resolution: {integrity: sha512-xrqwo0TYf/h2cfPvGpjdSuSguUbri4vNNizBnwzoZnX0xGo3O5nGJMlbYEp7NOYcnPGBm6LE2axqDWSB847bLw==} + + svg-parser@2.0.4: + resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} + + svgo@1.3.2: + resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} + engines: {node: '>=4.0.0'} + deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. + hasBin: true + + svgo@2.8.0: + resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} + engines: {node: '>=10.13.0'} + hasBin: true + + svgo@3.3.2: + resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} + engines: {node: '>=14.0.0'} + hasBin: true + + swr@2.2.5: + resolution: {integrity: sha512-QtxqyclFeAsxEUeZIYmsaQ0UjimSq1RZ9Un7I68/0ClKK/U3LoyQunwkQfJZr2fc22DfIXLNDc2wFyTEikCUpg==} + peerDependencies: + react: ^16.11.0 || ^17.0.0 || ^18.0.0 + + symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + + symbol.prototype.description@1.0.6: + resolution: {integrity: sha512-VgVgtEabORsQtmuindtO7v8fF+bsKxUkvEMFj+ecBK6bomrwv5JUSWdMoC3ypa9+Jaqp/wOzkWk4f6I+p5GzyA==} + engines: {node: '>= 0.4'} + + synchronous-promise@2.0.17: + resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==} + + synckit@0.6.2: + resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==} + engines: {node: '>=12.20'} + + table@6.8.2: + resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==} + engines: {node: '>=10.0.0'} + + tapable@1.1.3: + resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} + engines: {node: '>=6'} + + tapable@2.2.1: + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} + + tar-stream@2.2.0: + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} + engines: {node: '>=6'} + + tar@6.2.1: + resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} + engines: {node: '>=10'} + + telejson@5.3.3: + resolution: {integrity: sha512-PjqkJZpzEggA9TBpVtJi1LVptP7tYtXB6rEubwlHap76AMjzvOdKX41CxyaW7ahhzDU1aftXnMCx5kAPDZTQBA==} + + telejson@6.0.8: + resolution: {integrity: sha512-nerNXi+j8NK1QEfBHtZUN/aLdDcyupA//9kAboYLrtzZlPLpUfqbVGWb9zz91f/mIjRbAYhbgtnJHY8I1b5MBg==} + + temp-dir@1.0.0: + resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==} + engines: {node: '>=4'} + + temp@0.8.4: + resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} + engines: {node: '>=6.0.0'} + + term-size@2.2.1: + resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} + engines: {node: '>=8'} + + terminal-link@2.1.1: + resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} + engines: {node: '>=8'} + + terser-webpack-plugin@4.2.3: + resolution: {integrity: sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 + + terser-webpack-plugin@5.3.10: + resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: 5.84.1 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + + terser@4.8.1: + resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} + engines: {node: '>=6.0.0'} + hasBin: true + + terser@5.31.1: + resolution: {integrity: sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==} + engines: {node: '>=10'} + hasBin: true + + test-exclude@6.0.0: + resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} + engines: {node: '>=8'} + + text-extensions@1.9.0: + resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} + engines: {node: '>=0.10'} + + text-table@0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + + thread-loader@2.1.3: + resolution: {integrity: sha512-wNrVKH2Lcf8ZrWxDF/khdlLlsTMczdcwPA9VEK4c2exlEPynYWxi9op3nPTo5lAnDIkE0rQEB3VBP+4Zncc9Hg==} + engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 + + throat@5.0.0: + resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} + + throttle-debounce@3.0.1: + resolution: {integrity: sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==} + engines: {node: '>=10'} + + throttleit@1.0.1: + resolution: {integrity: sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==} + + through2@2.0.5: + resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + + through2@4.0.2: + resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} + + through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + + thunky@1.1.0: + resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} + + tiny-invariant@1.3.3: + resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} + + tiny-warning@1.0.3: + resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} + + tinycolor2@1.6.0: + resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} + + tinycolor@0.0.1: + resolution: {integrity: sha512-+CorETse1kl98xg0WAzii8DTT4ABF4R3nquhrkIbVGcw1T8JYs5Gfx9xEfGINPUZGDj9C4BmOtuKeaTtuuRolg==} + engines: {node: '>=0.4.0'} + + tmp@0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} + + tmp@0.2.3: + resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} + engines: {node: '>=14.14'} + + tmpl@1.0.5: + resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + + to-fast-properties@1.0.3: + resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==} + engines: {node: '>=0.10.0'} + + to-fast-properties@2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} + + to-object-path@0.3.0: + resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} + engines: {node: '>=0.10.0'} + + to-readable-stream@1.0.0: + resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} + engines: {node: '>=6'} + + to-regex-range@2.1.1: + resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} + engines: {node: '>=0.10.0'} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + to-regex@3.0.2: + resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} + engines: {node: '>=0.10.0'} + + toggle-selection@1.0.6: + resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==} + + toidentifier@1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + + token-types@5.0.1: + resolution: {integrity: sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==} + engines: {node: '>=14.16'} + + totalist@3.0.1: + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} + + tough-cookie@4.1.4: + resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} + engines: {node: '>=6'} + + tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + + tr46@2.1.0: + resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} + engines: {node: '>=8'} + + tr46@3.0.0: + resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} + engines: {node: '>=12'} + + tree-changes@0.11.2: + resolution: {integrity: sha512-4gXlUthrl+RabZw6lLvcCDl6KfJOCmrC16BC5CRdut1EAH509Omgg0BfKLY+ViRlzrvYOTWR0FMS2SQTwzumrw==} + + tree-changes@0.9.3: + resolution: {integrity: sha512-vvvS+O6kEeGRzMglTKbc19ltLWNtmNt1cpBoSYLj/iEcPVvpJasemKOlxBrmZaCtDJoF+4bwv3m01UKYi8mukQ==} + + tree-kill@1.2.2: + resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} + hasBin: true + + treeverse@2.0.0: + resolution: {integrity: sha512-N5gJCkLu1aXccpOTtqV6ddSEi6ZmGkh3hjmbu1IjcavJK4qyOVQmi0myQKM7z5jVGmD68SJoliaVrMmVObhj6A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + trim-lines@3.0.1: + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} + + trim-newlines@1.0.0: + resolution: {integrity: sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==} + engines: {node: '>=0.10.0'} + + trim-newlines@3.0.1: + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} + + trim-repeated@2.0.0: + resolution: {integrity: sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==} + engines: {node: '>=12'} + + trim-trailing-lines@1.1.4: + resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==} + + trim@0.0.1: + resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==} + deprecated: Use String.prototype.trim() instead + + trough@1.0.5: + resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} + + trough@2.2.0: + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + + ts-dedent@2.2.0: + resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} + engines: {node: '>=6.10'} + + ts-jest@26.5.6: + resolution: {integrity: sha512-rua+rCP8DxpA8b4DQD/6X2HQS8Zy/xzViVYfEs2OQu68tkCuKLV0Md8pmX55+W24uRIyAsf/BajRfxOs+R2MKA==} + engines: {node: '>= 10'} + hasBin: true + peerDependencies: + jest: '>=26 <27' + typescript: '>=3.8 <5.0' + + ts-jest@29.1.5: + resolution: {integrity: sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg==} + engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@babel/core': '>=7.0.0-beta.0 <8' + '@jest/transform': ^29.0.0 + '@jest/types': ^29.0.0 + babel-jest: ^29.0.0 + esbuild: '*' + jest: ^29.0.0 + typescript: '>=4.3 <6' + peerDependenciesMeta: + '@babel/core': + optional: true + '@jest/transform': + optional: true + '@jest/types': + optional: true + babel-jest: + optional: true + esbuild: + optional: true + + ts-loader@6.2.2: + resolution: {integrity: sha512-HDo5kXZCBml3EUPcc7RlZOV/JGlLHwppTLEHb3SHnr5V7NXD4klMEkrhJe5wgRbaWsSXi+Y1SIBN/K9B6zWGWQ==} + engines: {node: '>=8.6'} + peerDependencies: + typescript: '*' + + ts-loader@9.5.1: + resolution: {integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==} + engines: {node: '>=12.0.0'} + peerDependencies: + typescript: '*' + webpack: 5.84.1 + + ts-node@10.9.1: + resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + + ts-node@10.9.2: + resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + + ts-node@8.10.2: + resolution: {integrity: sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA==} + engines: {node: '>=6.0.0'} + hasBin: true + peerDependencies: + typescript: '>=2.7' + + ts-pnp@1.2.0: + resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} + engines: {node: '>=6'} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + tsconfig-paths-webpack-plugin@3.5.2: + resolution: {integrity: sha512-EhnfjHbzm5IYI9YPNVIxx1moxMI4bpHD2e0zTXeDNQcwjjRaGepP7IhTHJkyDBG0CAOoxRfe7jCG630Ou+C6Pw==} + + tsconfig-paths@3.15.0: + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + + tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + + tslib@2.6.3: + resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} + + tsutils@3.21.0: + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} + peerDependencies: + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + + tty-table@4.2.3: + resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==} + engines: {node: '>=8.0.0'} + hasBin: true + + tunnel-agent@0.6.0: + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + + tweetnacl@0.14.5: + resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + type-detect@4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} + + type-fest@0.13.1: + resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} + engines: {node: '>=10'} + + type-fest@0.18.1: + resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} + engines: {node: '>=10'} + + type-fest@0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + + type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} + + type-fest@0.4.1: + resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==} + engines: {node: '>=6'} + + type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} + + type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + + type-fest@1.4.0: + resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} + engines: {node: '>=10'} + + type-fest@4.20.1: + resolution: {integrity: sha512-R6wDsVsoS9xYOpy8vgeBlqpdOyzJ12HNfQhC/aAKWM3YoCV9TtunJzh/QpkMgeDhkoynDcw5f1y+qF9yc/HHyg==} + engines: {node: '>=16'} + + type-is@1.6.18: + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + engines: {node: '>= 0.6'} + + type@2.7.3: + resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==} + + typed-array-buffer@1.0.2: + resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} + engines: {node: '>= 0.4'} + + typed-array-byte-length@1.0.1: + resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} + engines: {node: '>= 0.4'} + + typed-array-byte-offset@1.0.2: + resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} + engines: {node: '>= 0.4'} + + typed-array-length@1.0.6: + resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} + engines: {node: '>= 0.4'} + + typed-assert@1.0.9: + resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==} + + typedarray-to-buffer@3.1.5: + resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + + typedarray@0.0.6: + resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} + + typescript@4.9.5: + resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} + engines: {node: '>=4.2.0'} + hasBin: true + + ua-parser-js@0.7.28: + resolution: {integrity: sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g==} + + uglify-js@3.18.0: + resolution: {integrity: sha512-SyVVbcNBCk0dzr9XL/R/ySrmYf0s372K6/hFklzgcp2lBFyXtw4I7BOdDjlLhE1aVqaI/SHWXWmYdlZxuyF38A==} + engines: {node: '>=0.8.0'} + hasBin: true + + unbox-primitive@1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + + underscore.deep@0.5.3: + resolution: {integrity: sha512-4OuSOlFNkiVFVc3khkeG112Pdu1gbitMj7t9B9ENb61uFmN70Jq7Iluhi3oflcSgexkKfDdJ5XAJET2gEq6ikA==} + engines: {node: '>=0.10.x'} + peerDependencies: + underscore: 1.x + + underscore@1.7.0: + resolution: {integrity: sha512-cp0oQQyZhUM1kpJDLdGO1jPZHgS/MpzoWYfe9+CM2h/QGDZlqwT2T3YGukuBdaNJ/CAPoeyAZRRHz8JFo176vA==} + + unfetch@4.2.0: + resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==} + + unherit@1.1.3: + resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==} + + unicode-canonical-property-names-ecmascript@2.0.0: + resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} + engines: {node: '>=4'} + + unicode-match-property-ecmascript@2.0.0: + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} + + unicode-match-property-value-ecmascript@2.1.0: + resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} + engines: {node: '>=4'} + + unicode-property-aliases-ecmascript@2.1.0: + resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} + engines: {node: '>=4'} + + unicorn-magic@0.1.0: + resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} + engines: {node: '>=18'} + + unified@11.0.5: + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} + + unified@9.2.0: + resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==} + + union-value@1.0.1: + resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} + engines: {node: '>=0.10.0'} + + union@0.5.0: + resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} + engines: {node: '>= 0.8.0'} + + unique-filename@1.1.1: + resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} + + unique-filename@2.0.1: + resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + unique-slug@2.0.2: + resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} + + unique-slug@3.0.0: + resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + unique-string@2.0.0: + resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} + engines: {node: '>=8'} + + unist-builder@2.0.3: + resolution: {integrity: sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==} + + unist-util-generated@1.1.6: + resolution: {integrity: sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==} + + unist-util-is@4.1.0: + resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} + + unist-util-is@6.0.0: + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} + + unist-util-position@3.1.0: + resolution: {integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==} + + unist-util-position@5.0.0: + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} + + unist-util-remove-position@2.0.1: + resolution: {integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==} + + unist-util-remove-position@5.0.0: + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} + + unist-util-remove@2.1.0: + resolution: {integrity: sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==} + + unist-util-stringify-position@2.0.3: + resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} + + unist-util-stringify-position@4.0.0: + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} + + unist-util-visit-parents@3.1.1: + resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} + + unist-util-visit-parents@6.0.1: + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} + + unist-util-visit@2.0.3: + resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} + + unist-util-visit@5.0.0: + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} + + universal-user-agent@6.0.1: + resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} + + universalify@0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} + + universalify@0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + unpipe@1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} + + unquote@1.1.1: + resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} + + unset-value@1.0.0: + resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} + engines: {node: '>=0.10.0'} + + untildify@2.1.0: + resolution: {integrity: sha512-sJjbDp2GodvkB0FZZcn7k6afVisqX5BZD7Yq3xp4nN2O15BBK0cLm3Vwn2vQaF7UDS0UUsrQMkkplmDI5fskig==} + engines: {node: '>=0.10.0'} + + untildify@4.0.0: + resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} + engines: {node: '>=8'} + + upath2@3.1.19: + resolution: {integrity: sha512-d23dQLi8nDWSRTIQwXtaYqMrHuca0As53fNiTLLFDmsGBbepsZepISaB2H1x45bDFN/n3Qw9bydvyZEacTrEWQ==} + + upath@1.2.0: + resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} + engines: {node: '>=4'} + + upath@2.0.1: + resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} + engines: {node: '>=4'} + + update-browserslist-db@1.0.16: + resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + update-notifier@5.1.0: + resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==} + engines: {node: '>=10'} + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + urix@0.1.0: + resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} + deprecated: Please see https://github.com/lydell/urix#deprecated + + url-join@4.0.1: + resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} + + url-loader@2.3.0: + resolution: {integrity: sha512-goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog==} + engines: {node: '>= 8.9.0'} + peerDependencies: + file-loader: '*' + webpack: 5.84.1 + peerDependenciesMeta: + file-loader: + optional: true + + url-loader@4.1.1: + resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + file-loader: '*' + webpack: 5.84.1 + peerDependenciesMeta: + file-loader: + optional: true + + url-parse-lax@3.0.0: + resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} + engines: {node: '>=4'} + + url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + + url@0.11.3: + resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==} + + use-composed-ref@1.3.0: + resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + use-isomorphic-layout-effect@1.1.2: + resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + use-latest@1.2.1: + resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + use-sync-external-store@1.2.0: + resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + use-sync-external-store@1.2.2: + resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + use@3.1.1: + resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} + engines: {node: '>=0.10.0'} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + util.promisify@1.0.0: + resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==} + + util.promisify@1.0.1: + resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} + + util@0.10.4: + resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} + + utila@0.4.0: + resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} + + utils-merge@1.0.1: + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} + + uuid-browser@3.1.0: + resolution: {integrity: sha512-dsNgbLaTrd6l3MMxTtouOCFw4CBFc/3a+GgYA2YyrJvyQ1u6q4pcu3ktLoUZ/VN/Aw9WsauazbgsgdfVWgAKQg==} + deprecated: Package no longer supported and required. Use the uuid package or crypto.randomUUID instead + + uuid@3.4.0: + resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} + deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. + hasBin: true + + uuid@8.3.2: + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + hasBin: true + + v8-compile-cache-lib@3.0.1: + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + + v8-compile-cache@2.3.0: + resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} + + v8-compile-cache@2.4.0: + resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} + + v8-to-istanbul@7.1.2: + resolution: {integrity: sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==} + engines: {node: '>=10.10.0'} + + v8-to-istanbul@9.3.0: + resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} + engines: {node: '>=10.12.0'} + + validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + + validate-npm-package-name@3.0.0: + resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==} + + validate-npm-package-name@4.0.0: + resolution: {integrity: sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + value-equal@1.0.1: + resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==} + + vary@1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} + + verror@1.10.0: + resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} + engines: {'0': node >=0.6.0} + + vfile-location@3.2.0: + resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==} + + vfile-message@2.0.4: + resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==} + + vfile-message@4.0.2: + resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} + + vfile@4.2.1: + resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==} + + vfile@6.0.1: + resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==} + + victory-vendor@36.9.2: + resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==} + + void-elements@3.1.0: + resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} + engines: {node: '>=0.10.0'} + + w3c-hr-time@1.0.2: + resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} + deprecated: Use your platform's native performance.now() and performance.timeOrigin. + + w3c-xmlserializer@2.0.0: + resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} + engines: {node: '>=10'} + + w3c-xmlserializer@4.0.0: + resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} + engines: {node: '>=14'} + + walk-up-path@1.0.0: + resolution: {integrity: sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg==} + + walker@1.0.8: + resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + + warning@4.0.3: + resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==} + + watch@1.0.2: + resolution: {integrity: sha512-1u+Z5n9Jc1E2c7qDO8SinPoZuHj7FgbgU1olSFoyaklduDvvtX7GMMtlE6OC9FTXq4KvNAOfj6Zu4vI1e9bAKA==} + engines: {node: '>=0.1.95'} + hasBin: true + + watchpack@2.4.1: + resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==} + engines: {node: '>=10.13.0'} + + wbuf@1.7.3: + resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} + + wcwidth@1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + + web-namespaces@1.1.4: + resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==} + + webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + + webidl-conversions@5.0.0: + resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} + engines: {node: '>=8'} + + webidl-conversions@6.1.0: + resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} + engines: {node: '>=10.4'} + + webidl-conversions@7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} + + webpack-bundle-analyzer@4.10.2: + resolution: {integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==} + engines: {node: '>= 10.13.0'} + hasBin: true + + webpack-cli@4.10.0: + resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + '@webpack-cli/generators': '*' + '@webpack-cli/migrate': '*' + webpack: 5.84.1 + webpack-bundle-analyzer: '*' + webpack-dev-server: '*' + peerDependenciesMeta: + '@webpack-cli/generators': + optional: true + '@webpack-cli/migrate': + optional: true + webpack-bundle-analyzer: + optional: true + webpack-dev-server: + optional: true + + webpack-dev-middleware@3.7.3: + resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==} + engines: {node: '>= 6'} + peerDependencies: + webpack: 5.84.1 + + webpack-dev-middleware@4.3.0: + resolution: {integrity: sha512-PjwyVY95/bhBh6VUqt6z4THplYcsvQ8YNNBTBM873xLVmw8FLeALn0qurHbs9EmcfhzQis/eoqypSnZeuUz26w==} + engines: {node: '>= v10.23.3'} + peerDependencies: + webpack: 5.84.1 + + webpack-dev-middleware@5.3.4: + resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: 5.84.1 + + webpack-dev-server@3.11.3: + resolution: {integrity: sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==} + engines: {node: '>= 6.11.5'} + hasBin: true + peerDependencies: + webpack: 5.84.1 + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + + webpack-dev-server@4.15.2: + resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==} + engines: {node: '>= 12.13.0'} + hasBin: true + peerDependencies: + webpack: 5.84.1 + webpack-cli: '*' + peerDependenciesMeta: + webpack: + optional: true + webpack-cli: + optional: true + + webpack-filter-warnings-plugin@1.2.1: + resolution: {integrity: sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==} + engines: {node: '>= 4.3 < 5.0.0 || >= 5.10'} + peerDependencies: + webpack: 5.84.1 + + webpack-hot-middleware@2.26.1: + resolution: {integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==} + + webpack-log@1.2.0: + resolution: {integrity: sha512-U9AnICnu50HXtiqiDxuli5gLB5PGBo7VvcHx36jRZHwK4vzOYLbImqT4lwWwoMHdQWwEKw736fCHEekokTEKHA==} + engines: {node: '>=6'} + + webpack-log@2.0.0: + resolution: {integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==} + engines: {node: '>= 6'} + + webpack-merge@5.10.0: + resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} + engines: {node: '>=10.0.0'} + + webpack-node-externals@3.0.0: + resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==} + engines: {node: '>=6'} + + webpack-sources@1.4.3: + resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==} + + webpack-sources@3.2.3: + resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} + engines: {node: '>=10.13.0'} + + webpack-subresource-integrity@5.1.0: + resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==} + engines: {node: '>= 12'} + peerDependencies: + html-webpack-plugin: '>= 5.0.0-beta.1 < 6' + webpack: 5.84.1 + peerDependenciesMeta: + html-webpack-plugin: + optional: true + + webpack-virtual-modules@0.2.2: + resolution: {integrity: sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==} + + webpack-virtual-modules@0.4.6: + resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==} + + webpack@5.84.1: + resolution: {integrity: sha512-ZP4qaZ7vVn/K8WN/p990SGATmrL1qg4heP/MrVneczYtpDGJWlrgZv55vxaV2ul885Kz+25MP2kSXkPe3LZfmg==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + + websocket-driver@0.7.4: + resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} + engines: {node: '>=0.8.0'} + + websocket-extensions@0.1.4: + resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} + engines: {node: '>=0.8.0'} + + whatwg-encoding@1.0.5: + resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} + + whatwg-encoding@2.0.0: + resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + engines: {node: '>=12'} + + whatwg-fetch@3.6.20: + resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} + + whatwg-mimetype@2.3.0: + resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} + + whatwg-mimetype@3.0.0: + resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} + engines: {node: '>=12'} + + whatwg-url@11.0.0: + resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} + engines: {node: '>=12'} + + whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + + whatwg-url@8.7.0: + resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} + engines: {node: '>=10'} + + which-boxed-primitive@1.0.2: + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + + which-builtin-type@1.1.3: + resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} + engines: {node: '>= 0.4'} + + which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + + which-module@2.0.1: + resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} + + which-pm@2.0.0: + resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==} + engines: {node: '>=8.15'} + + which-typed-array@1.1.15: + resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} + engines: {node: '>= 0.4'} + + which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + wide-align@1.1.5: + resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + + widest-line@3.1.0: + resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} + engines: {node: '>=8'} + + wildcard@2.0.1: + resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + wordwrap@1.0.0: + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + + worker-loader@2.0.0: + resolution: {integrity: sha512-tnvNp4K3KQOpfRnD20m8xltE3eWh89Ye+5oj7wXEEHKac1P4oZ6p9oTj8/8ExqoSBnk9nu5Pr4nKfQ1hn2APJw==} + engines: {node: '>= 6.9.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 + + worker-rpc@0.1.1: + resolution: {integrity: sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==} + + world-countries@5.0.0: + resolution: {integrity: sha512-wAfOT9Y5i/xnxNOdKJKXdOCw9Q3yQLahBUeuRol+s+o20F6h2a4tLEbJ1lBCYwEQ30Sf9Meqeipk1gib3YwF5w==} + + wrap-ansi@5.1.0: + resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==} + engines: {node: '>=6'} + + wrap-ansi@6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + write-file-atomic@2.4.3: + resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} + + write-file-atomic@3.0.3: + resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + + write-file-atomic@4.0.2: + resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + write-file-webpack-plugin@4.5.1: + resolution: {integrity: sha512-AZ7qJUvhTCBiOtG21aFJUcNuLVo2FFM6JMGKvaUGAH+QDqQAp2iG0nq3GcuXmJOFQR2JjpjhyYkyPrbFKhdjNQ==} + engines: {node: '>=4'} + + write-json-file@3.2.0: + resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==} + engines: {node: '>=6'} + + write-json-file@4.3.0: + resolution: {integrity: sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ==} + engines: {node: '>=8.3'} + + write-pkg@4.0.0: + resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==} + engines: {node: '>=8'} + + ws@6.2.3: + resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + ws@7.5.10: + resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} + engines: {node: '>=8.3.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + ws@8.17.1: + resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + x-default-browser@0.4.0: + resolution: {integrity: sha512-7LKo7RtWfoFN/rHx1UELv/2zHGMx8MkZKDq1xENmOCTkfIqZJ0zZ26NEJX8czhnPXVcqS0ARjjfJB+eJ0/5Cvw==} + hasBin: true + + xdg-basedir@4.0.0: + resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} + engines: {node: '>=8'} + + xml-name-validator@3.0.0: + resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} + + xml-name-validator@4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} + + xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + + xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + + y18n@4.0.3: + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yallist@2.1.2: + resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + + yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + + yargs-parser@13.1.2: + resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==} + + yargs-parser@18.1.3: + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} + + yargs-parser@20.2.4: + resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} + engines: {node: '>=10'} + + yargs-parser@20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} + + yargs-parser@21.0.1: + resolution: {integrity: sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==} + engines: {node: '>=12'} + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs@13.3.2: + resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==} + + yargs@15.4.1: + resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} + engines: {node: '>=8'} + + yargs@16.2.0: + resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} + engines: {node: '>=10'} + + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + + yauzl@2.10.0: + resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + + yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + zustand@4.5.2: + resolution: {integrity: sha512-2cN1tPkDVkwCy5ickKrI7vijSjPksFRfqS6237NzT0vqSsztTNnQdHw9mmN7uBdk3gceVXU0a+21jFzFzAc9+g==} + engines: {node: '>=12.7.0'} + peerDependencies: + '@types/react': 18.0.18 + immer: '>=9.0.6' + react: '>=16.8' + peerDependenciesMeta: + '@types/react': + optional: true + immer: + optional: true + react: + optional: true + + zwitch@1.0.5: + resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==} + + zwitch@2.0.4: + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + + zxcvbn@4.4.2: + resolution: {integrity: sha512-Bq0B+ixT/DMyG8kgX2xWcI5jUvCwqrMxSFam7m0lAf78nf04hv6lNCsyLYdyYTrCVMqNDY/206K7eExYCeSyUQ==} + +snapshots: + + '@adobe/css-tools@4.4.0': {} + + '@ampproject/remapping@2.3.0': + dependencies: + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + + '@artsy/fresnel@6.2.1(react@18.3.1)': + dependencies: + react: 18.3.1 + + '@asgardeo/auth-js@5.0.1': {} + + '@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@asgardeo/auth-spa': 3.0.3 + '@babel/runtime-corejs3': 7.24.7 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router-dom: 4.3.1(react@18.3.1) + transitivePeerDependencies: + - debug + + '@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.23.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': + dependencies: + '@asgardeo/auth-spa': 3.0.3 + '@babel/runtime-corejs3': 7.24.7 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router-dom: 6.23.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + transitivePeerDependencies: + - debug + + '@asgardeo/auth-spa@3.0.3': + dependencies: + '@asgardeo/auth-js': 5.0.1 + await-semaphore: 0.1.3 + axios: 0.26.1 + base64url: 3.0.1 + buffer: 6.0.3 + fast-sha256: 1.3.0 + jose: 4.15.7 + randombytes: 2.1.0 + transitivePeerDependencies: + - debug + + '@babel/cli@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@jridgewell/trace-mapping': 0.3.25 + commander: 6.2.1 + convert-source-map: 2.0.0 + fs-readdir-recursive: 1.1.0 + glob: 7.2.3 + make-dir: 2.1.0 + slash: 2.0.0 + optionalDependencies: + '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3 + chokidar: 3.6.0 + + '@babel/code-frame@7.12.11': + dependencies: + '@babel/highlight': 7.24.7 + + '@babel/code-frame@7.24.7': + dependencies: + '@babel/highlight': 7.24.7 + picocolors: 1.0.1 + + '@babel/compat-data@7.24.7': {} + + '@babel/core@7.12.9': + dependencies: + '@babel/code-frame': 7.24.7 + '@babel/generator': 7.24.7 + '@babel/helper-module-transforms': 7.24.7(@babel/core@7.12.9) + '@babel/helpers': 7.24.7 + '@babel/parser': 7.24.7 + '@babel/template': 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + convert-source-map: 1.9.0 + debug: 4.3.5(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + lodash: 4.17.21 + resolve: 1.22.8 + semver: 5.7.2 + source-map: 0.5.7 + transitivePeerDependencies: + - supports-color + + '@babel/core@7.24.7': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.24.7 + '@babel/generator': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) + '@babel/helpers': 7.24.7 + '@babel/parser': 7.24.7 + '@babel/template': 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + convert-source-map: 2.0.0 + debug: 4.3.5(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/generator@7.24.7': + dependencies: + '@babel/types': 7.24.7 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 2.5.2 + + '@babel/helper-annotate-as-pure@7.24.7': + dependencies: + '@babel/types': 7.24.7 + + '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7': + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-compilation-targets@7.24.7': + dependencies: + '@babel/compat-data': 7.24.7 + '@babel/helper-validator-option': 7.24.7 + browserslist: 4.23.1 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-function-name': 7.24.7 + '@babel/helper-member-expression-to-functions': 7.24.7 + '@babel/helper-optimise-call-expression': 7.24.7 + '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7) + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/helper-split-export-declaration': 7.24.7 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + regexpu-core: 5.3.2 + semver: 6.3.1 + + '@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/traverse': 7.24.7 + debug: 4.3.5(supports-color@8.1.1) + lodash.debounce: 4.0.8 + resolve: 1.22.8 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + debug: 4.3.5(supports-color@8.1.1) + lodash.debounce: 4.0.8 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + + '@babel/helper-environment-visitor@7.24.7': + dependencies: + '@babel/types': 7.24.7 + + '@babel/helper-function-name@7.24.7': + dependencies: + '@babel/template': 7.24.7 + '@babel/types': 7.24.7 + + '@babel/helper-hoist-variables@7.24.7': + dependencies: + '@babel/types': 7.24.7 + + '@babel/helper-member-expression-to-functions@7.24.7': + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-imports@7.24.7': + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-imports@7.24.7(supports-color@5.5.0)': + dependencies: + '@babel/traverse': 7.24.7(supports-color@5.5.0) + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.24.7(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-simple-access': 7.24.7 + '@babel/helper-split-export-declaration': 7.24.7 + '@babel/helper-validator-identifier': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-simple-access': 7.24.7 + '@babel/helper-split-export-declaration': 7.24.7 + '@babel/helper-validator-identifier': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-optimise-call-expression@7.24.7': + dependencies: + '@babel/types': 7.24.7 + + '@babel/helper-plugin-utils@7.10.4': {} + + '@babel/helper-plugin-utils@7.24.7': {} + + '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-wrap-function': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-member-expression-to-functions': 7.24.7 + '@babel/helper-optimise-call-expression': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-simple-access@7.24.7': + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-skip-transparent-expression-wrappers@7.24.7': + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-split-export-declaration@7.24.7': + dependencies: + '@babel/types': 7.24.7 + + '@babel/helper-string-parser@7.24.7': {} + + '@babel/helper-validator-identifier@7.24.7': {} + + '@babel/helper-validator-option@7.24.7': {} + + '@babel/helper-wrap-function@7.24.7': + dependencies: + '@babel/helper-function-name': 7.24.7 + '@babel/template': 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helpers@7.24.7': + dependencies: + '@babel/template': 7.24.7 + '@babel/types': 7.24.7 + + '@babel/highlight@7.24.7': + dependencies: + '@babel/helper-validator-identifier': 7.24.7 + chalk: 2.4.2 + js-tokens: 4.0.0 + picocolors: 1.0.1 + + '@babel/parser@7.24.7': + dependencies: + '@babel/types': 7.24.7 + + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-export-default-from@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.24.7) + + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) + + '@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.10.4 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) + '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.12.9) + + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.7)': + dependencies: + '@babel/compat-data': 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7) + '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7) + + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + + '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-export-default-from@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-classes@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-function-name': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7) + '@babel/helper-split-export-declaration': 7.24.7 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/template': 7.24.7 + + '@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7) + + '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7) + + '@babel/plugin-transform-flow-strip-types@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.7) + + '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-function-name': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7) + + '@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7) + + '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.7)': + dependencies: '@babel/core': 7.24.7 '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) @@ -21333,11 +34555,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-hoist-variables': 7.24.7 @@ -21347,11 +34565,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) @@ -21359,50 +34573,30 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) - /@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7) - /@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-compilation-targets': 7.24.7 @@ -21410,11 +34604,7 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7) '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7) - /@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -21422,21 +34612,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7) - /@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -21445,29 +34627,17 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-parameters@7.24.7(@babel/core@7.12.9): - resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.12.9)': dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) @@ -21475,11 +34645,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 @@ -21489,49 +34655,29 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-react-constant-elements@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-7LidzZfUXyfZ8/buRW6qIIHBY8wAZ1OrY9c/wTr8YhZ6vMPo+Uc/CVFLYY1spZrEQlD4w5u8wjqk5NQ3OVqQKA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-constant-elements@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - /@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 @@ -21542,40 +34688,24 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 regenerator-transform: 0.15.2 - /@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-runtime@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-runtime@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-module-imports': 7.24.7 @@ -21586,22 +34716,13 @@ packages: semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -21609,38 +34730,22 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 @@ -21650,57 +34755,35 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - /@babel/polyfill@7.12.1: - resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==} - deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information. + '@babel/polyfill@7.12.1': dependencies: core-js: 2.6.12 regenerator-runtime: 0.13.11 - /@babel/preset-env@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/preset-env@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/compat-data': 7.24.7 '@babel/core': 7.24.7 @@ -21787,32 +34870,21 @@ packages: transitivePeerDependencies: - supports-color - /@babel/preset-flow@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/preset-flow@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/helper-validator-option': 7.24.7 '@babel/plugin-transform-flow-strip-types': 7.24.7(@babel/core@7.24.7) - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.7): - resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} - peerDependencies: - '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/types': 7.24.7 esutils: 2.0.3 - /@babel/preset-react@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/preset-react@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -21824,11 +34896,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/preset-typescript@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/preset-typescript@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -21839,11 +34907,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/register@7.24.6(@babel/core@7.24.7): - resolution: {integrity: sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/register@7.24.6(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 clone-deep: 4.0.1 @@ -21852,33 +34916,24 @@ packages: pirates: 4.0.6 source-map-support: 0.5.21 - /@babel/regjsgen@0.8.0: - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} + '@babel/regjsgen@0.8.0': {} - /@babel/runtime-corejs3@7.24.7: - resolution: {integrity: sha512-eytSX6JLBY6PVAeQa2bFlDx/7Mmln/gaEpsit5a3WEvjGfiIytEsgAwuIXCPM0xvw0v0cJn3ilq0/TvXrW0kgA==} - engines: {node: '>=6.9.0'} + '@babel/runtime-corejs3@7.24.7': dependencies: core-js-pure: 3.37.1 regenerator-runtime: 0.14.1 - /@babel/runtime@7.24.7: - resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==} - engines: {node: '>=6.9.0'} + '@babel/runtime@7.24.7': dependencies: regenerator-runtime: 0.14.1 - /@babel/template@7.24.7: - resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==} - engines: {node: '>=6.9.0'} + '@babel/template@7.24.7': dependencies: '@babel/code-frame': 7.24.7 '@babel/parser': 7.24.7 '@babel/types': 7.24.7 - /@babel/traverse@7.24.7: - resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==} - engines: {node: '>=6.9.0'} + '@babel/traverse@7.24.7': dependencies: '@babel/code-frame': 7.24.7 '@babel/generator': 7.24.7 @@ -21888,14 +34943,12 @@ packages: '@babel/helper-split-export-declaration': 7.24.7 '@babel/parser': 7.24.7 '@babel/types': 7.24.7 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/traverse@7.24.7(supports-color@5.5.0): - resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==} - engines: {node: '>=6.9.0'} + '@babel/traverse@7.24.7(supports-color@5.5.0)': dependencies: '@babel/code-frame': 7.24.7 '@babel/generator': 7.24.7 @@ -21909,30 +34962,20 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color - dev: false - /@babel/types@7.24.7: - resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==} - engines: {node: '>=6.9.0'} + '@babel/types@7.24.7': dependencies: '@babel/helper-string-parser': 7.24.7 '@babel/helper-validator-identifier': 7.24.7 to-fast-properties: 2.0.0 - /@base2/pretty-print-object@1.0.1: - resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} - dev: false + '@base2/pretty-print-object@1.0.1': {} - /@bcoe/v8-coverage@0.2.3: - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + '@bcoe/v8-coverage@0.2.3': {} - /@braintree/sanitize-url@5.0.2: - resolution: {integrity: sha512-NBEJlHWrhQucLhZGHtSxM2loSaNUMajC7KOYJLyfcdW/6goVoff2HoYI3bz8YCDN0wKGbxtUL0gx2dvHpvnWlw==} - deprecated: Potential XSS vulnerability patched in v6.0.0. - dev: false + '@braintree/sanitize-url@5.0.2': {} - /@changesets/apply-release-plan@7.0.3: - resolution: {integrity: sha512-klL6LCdmfbEe9oyfLxnidIf/stFXmrbFO/3gT5LU5pcyoZytzJe4gWpTBx3BPmyNPl16dZ1xrkcW7b98e3tYkA==} + '@changesets/apply-release-plan@7.0.3': dependencies: '@babel/runtime': 7.24.7 '@changesets/config': 3.0.1 @@ -21948,10 +34991,8 @@ packages: prettier: 2.8.8 resolve-from: 5.0.0 semver: 7.6.2 - dev: true - /@changesets/assemble-release-plan@6.0.2: - resolution: {integrity: sha512-n9/Tdq+ze+iUtjmq0mZO3pEhJTKkku9hUxtUadW30jlN7kONqJG3O6ALeXrmc6gsi/nvoCuKjqEJ68Hk8RbMTQ==} + '@changesets/assemble-release-plan@6.0.2': dependencies: '@babel/runtime': 7.24.7 '@changesets/errors': 0.2.0 @@ -21960,27 +35001,20 @@ packages: '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 semver: 7.6.2 - dev: true - /@changesets/changelog-git@0.2.0: - resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} + '@changesets/changelog-git@0.2.0': dependencies: '@changesets/types': 6.0.0 - dev: true - /@changesets/changelog-github@0.4.8: - resolution: {integrity: sha512-jR1DHibkMAb5v/8ym77E4AMNWZKB5NPzw5a5Wtqm1JepAuIF+hrKp2u04NKM14oBZhHglkCfrla9uq8ORnK/dw==} + '@changesets/changelog-github@0.4.8(encoding@0.1.13)': dependencies: - '@changesets/get-github-info': 0.5.2 + '@changesets/get-github-info': 0.5.2(encoding@0.1.13) '@changesets/types': 5.2.1 dotenv: 8.6.0 transitivePeerDependencies: - encoding - dev: true - /@changesets/cli@2.27.5: - resolution: {integrity: sha512-UVppOvzCjjylBenFcwcZNG5IaZ8jsIaEVraV/pbXgukYNb0Oqa0d8UWb0LkYzA1Bf1HmUrOfccFcRLheRuA7pA==} - hasBin: true + '@changesets/cli@2.27.5': dependencies: '@babel/runtime': 7.24.7 '@changesets/apply-release-plan': 7.0.3 @@ -22015,10 +35049,8 @@ packages: spawndamnit: 2.0.0 term-size: 2.2.1 tty-table: 4.2.3 - dev: true - /@changesets/config@3.0.1: - resolution: {integrity: sha512-nCr8pOemUjvGJ8aUu8TYVjqnUL+++bFOQHBVmtNbLvKzIDkN/uiP/Z4RKmr7NNaiujIURHySDEGFPftR4GbTUA==} + '@changesets/config@3.0.1': dependencies: '@changesets/errors': 0.2.0 '@changesets/get-dependents-graph': 2.1.0 @@ -22027,35 +35059,27 @@ packages: '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 micromatch: 4.0.7 - dev: true - /@changesets/errors@0.2.0: - resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} + '@changesets/errors@0.2.0': dependencies: extendable-error: 0.1.7 - dev: true - /@changesets/get-dependents-graph@2.1.0: - resolution: {integrity: sha512-QOt6pQq9RVXKGHPVvyKimJDYJumx7p4DO5MO9AhRJYgAPgv0emhNqAqqysSVKHBm4sxKlGN4S1zXOIb5yCFuhQ==} + '@changesets/get-dependents-graph@2.1.0': dependencies: '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 chalk: 2.4.2 fs-extra: 7.0.1 semver: 7.6.2 - dev: true - /@changesets/get-github-info@0.5.2: - resolution: {integrity: sha512-JppheLu7S114aEs157fOZDjFqUDpm7eHdq5E8SSR0gUBTEK0cNSHsrSR5a66xs0z3RWuo46QvA3vawp8BxDHvg==} + '@changesets/get-github-info@0.5.2(encoding@0.1.13)': dependencies: dataloader: 1.4.0 - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) transitivePeerDependencies: - encoding - dev: true - /@changesets/get-release-plan@4.0.2: - resolution: {integrity: sha512-rOalz7nMuMV2vyeP7KBeAhqEB7FM2GFPO5RQSoOoUKKH9L6wW3QyPA2K+/rG9kBrWl2HckPVES73/AuwPvbH3w==} + '@changesets/get-release-plan@4.0.2': dependencies: '@babel/runtime': 7.24.7 '@changesets/assemble-release-plan': 6.0.2 @@ -22064,14 +35088,10 @@ packages: '@changesets/read': 0.6.0 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 - dev: true - /@changesets/get-version-range-type@0.4.0: - resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} - dev: true + '@changesets/get-version-range-type@0.4.0': {} - /@changesets/git@3.0.0: - resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} + '@changesets/git@3.0.0': dependencies: '@babel/runtime': 7.24.7 '@changesets/errors': 0.2.0 @@ -22080,33 +35100,25 @@ packages: is-subdir: 1.2.0 micromatch: 4.0.7 spawndamnit: 2.0.0 - dev: true - /@changesets/logger@0.1.0: - resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} + '@changesets/logger@0.1.0': dependencies: chalk: 2.4.2 - dev: true - /@changesets/parse@0.4.0: - resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} + '@changesets/parse@0.4.0': dependencies: '@changesets/types': 6.0.0 js-yaml: 3.13.1 - dev: true - /@changesets/pre@2.0.0: - resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} + '@changesets/pre@2.0.0': dependencies: '@babel/runtime': 7.24.7 '@changesets/errors': 0.2.0 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 - dev: true - /@changesets/read@0.6.0: - resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} + '@changesets/read@0.6.0': dependencies: '@babel/runtime': 7.24.7 '@changesets/git': 3.0.0 @@ -22116,61 +35128,40 @@ packages: chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 - dev: true - /@changesets/should-skip-package@0.1.0: - resolution: {integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==} + '@changesets/should-skip-package@0.1.0': dependencies: '@babel/runtime': 7.24.7 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 - dev: true - /@changesets/types@4.1.0: - resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} - dev: true + '@changesets/types@4.1.0': {} - /@changesets/types@5.2.1: - resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==} - dev: true + '@changesets/types@5.2.1': {} - /@changesets/types@6.0.0: - resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} - dev: true + '@changesets/types@6.0.0': {} - /@changesets/write@0.3.1: - resolution: {integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==} + '@changesets/write@0.3.1': dependencies: '@babel/runtime': 7.24.7 '@changesets/types': 6.0.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 2.8.8 - dev: true - /@cnakazawa/watch@1.0.4: - resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==} - engines: {node: '>=0.1.95'} - hasBin: true + '@cnakazawa/watch@1.0.4': dependencies: exec-sh: 0.3.6 minimist: 1.2.8 - /@colors/colors@1.5.0: - resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} - engines: {node: '>=0.1.90'} - requiresBuild: true + '@colors/colors@1.5.0': optional: true - /@cspotcode/source-map-support@0.8.1: - resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} - engines: {node: '>=12'} + '@cspotcode/source-map-support@0.8.1': dependencies: '@jridgewell/trace-mapping': 0.3.9 - /@cypress/request@2.88.12: - resolution: {integrity: sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==} - engines: {node: '>= 6'} + '@cypress/request@2.88.12': dependencies: aws-sign2: 0.7.0 aws4: 1.13.0 @@ -22190,42 +35181,29 @@ packages: tough-cookie: 4.1.4 tunnel-agent: 0.6.0 uuid: 8.3.2 - dev: true - /@cypress/webpack-preprocessor@5.17.1(@babel/core@7.24.7)(@babel/preset-env@7.24.7)(babel-loader@8.3.0)(webpack@5.84.1): - resolution: {integrity: sha512-FE/e8ikPc8z4EVopJCaior3RGy0jd2q9Xcp5NtiwNG4XnLfEnUFTZlAGwXe75sEh4fNMPrBJW1KIz77PX5vGAw==} - peerDependencies: - '@babel/core': ^7.0.1 - '@babel/preset-env': ^7.0.0 - babel-loader: ^8.0.2 || ^9 - webpack: 5.84.1 + '@cypress/webpack-preprocessor@5.17.1(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(babel-loader@8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: '@babel/core': 7.24.7 '@babel/preset-env': 7.24.7(@babel/core@7.24.7) - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) bluebird: 3.7.1 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) lodash: 4.17.21 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) transitivePeerDependencies: - supports-color - dev: true - /@cypress/xvfb@1.2.4(supports-color@8.1.1): - resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} + '@cypress/xvfb@1.2.4(supports-color@8.1.1)': dependencies: debug: 3.2.7(supports-color@8.1.1) lodash.once: 4.1.1 transitivePeerDependencies: - supports-color - dev: true - /@discoveryjs/json-ext@0.5.7: - resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} - engines: {node: '>=10.0.0'} + '@discoveryjs/json-ext@0.5.7': {} - /@emotion/babel-plugin@11.11.0: - resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} + '@emotion/babel-plugin@11.11.0': dependencies: '@babel/helper-module-imports': 7.24.7 '@babel/runtime': 7.24.7 @@ -22240,31 +35218,23 @@ packages: stylis: 4.2.0 transitivePeerDependencies: - supports-color - dev: false - /@emotion/cache@10.0.29: - resolution: {integrity: sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==} + '@emotion/cache@10.0.29': dependencies: '@emotion/sheet': 0.9.4 '@emotion/stylis': 0.8.5 '@emotion/utils': 0.11.3 '@emotion/weak-memoize': 0.2.5 - dev: true - /@emotion/cache@11.11.0: - resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==} + '@emotion/cache@11.11.0': dependencies: '@emotion/memoize': 0.8.1 '@emotion/sheet': 1.2.2 '@emotion/utils': 1.2.1 '@emotion/weak-memoize': 0.3.1 stylis: 4.2.0 - dev: false - /@emotion/core@10.3.1: - resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==} - peerDependencies: - react: '>=16.3.0' + '@emotion/core@10.3.1': dependencies: '@babel/runtime': 7.24.7 '@emotion/cache': 10.0.29 @@ -22274,52 +35244,32 @@ packages: '@emotion/utils': 0.11.3 transitivePeerDependencies: - supports-color - dev: true - /@emotion/css@10.0.27: - resolution: {integrity: sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==} + '@emotion/css@10.0.27': dependencies: '@emotion/serialize': 0.11.16 '@emotion/utils': 0.11.3 babel-plugin-emotion: 10.2.2 transitivePeerDependencies: - supports-color - dev: true - /@emotion/hash@0.8.0: - resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} - dev: true + '@emotion/hash@0.8.0': {} - /@emotion/hash@0.9.1: - resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==} - dev: false + '@emotion/hash@0.9.1': {} - /@emotion/is-prop-valid@0.8.8: - resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} + '@emotion/is-prop-valid@0.8.8': dependencies: '@emotion/memoize': 0.7.4 - /@emotion/is-prop-valid@1.2.2: - resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==} + '@emotion/is-prop-valid@1.2.2': dependencies: '@emotion/memoize': 0.8.1 - dev: false - /@emotion/memoize@0.7.4: - resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} + '@emotion/memoize@0.7.4': {} - /@emotion/memoize@0.8.1: - resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} - dev: false + '@emotion/memoize@0.8.1': {} - /@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1): - resolution: {integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==} - peerDependencies: - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@types/react': - optional: true + '@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 '@emotion/babel-plugin': 11.11.0 @@ -22328,76 +35278,50 @@ packages: '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@emotion/utils': 1.2.1 '@emotion/weak-memoize': 0.3.1 - '@types/react': 18.0.18 hoist-non-react-statics: 3.3.2 react: 18.3.1 + optionalDependencies: + '@types/react': 18.0.18 transitivePeerDependencies: - supports-color - dev: false - /@emotion/serialize@0.11.16: - resolution: {integrity: sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==} + '@emotion/serialize@0.11.16': dependencies: '@emotion/hash': 0.8.0 '@emotion/memoize': 0.7.4 '@emotion/unitless': 0.7.5 '@emotion/utils': 0.11.3 csstype: 2.6.21 - dev: true - /@emotion/serialize@1.1.4: - resolution: {integrity: sha512-RIN04MBT8g+FnDwgvIUi8czvr1LU1alUMI05LekWB5DGyTm8cCBMCRpq3GqaiyEDRptEXOyXnvZ58GZYu4kBxQ==} + '@emotion/serialize@1.1.4': dependencies: '@emotion/hash': 0.9.1 '@emotion/memoize': 0.8.1 '@emotion/unitless': 0.8.1 '@emotion/utils': 1.2.1 csstype: 3.1.3 - dev: false - /@emotion/sheet@0.9.4: - resolution: {integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==} - dev: true + '@emotion/sheet@0.9.4': {} - /@emotion/sheet@1.2.2: - resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} - dev: false + '@emotion/sheet@1.2.2': {} - /@emotion/styled-base@10.3.0(@emotion/core@10.3.1): - resolution: {integrity: sha512-PBRqsVKR7QRNkmfH78hTSSwHWcwDpecH9W6heujWAcyp2wdz/64PP73s7fWS1dIPm8/Exc8JAzYS8dEWXjv60w==} - peerDependencies: - '@emotion/core': ^10.0.28 - react: '>=16.3.0' + '@emotion/styled-base@10.3.0(@emotion/core@10.3.1)': dependencies: '@babel/runtime': 7.24.7 '@emotion/core': 10.3.1 '@emotion/is-prop-valid': 0.8.8 '@emotion/serialize': 0.11.16 '@emotion/utils': 0.11.3 - dev: true - /@emotion/styled@10.3.0(@emotion/core@10.3.1): - resolution: {integrity: sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ==} - peerDependencies: - '@emotion/core': ^10.0.27 - react: '>=16.3.0' + '@emotion/styled@10.3.0(@emotion/core@10.3.1)': dependencies: '@emotion/core': 10.3.1 '@emotion/styled-base': 10.3.0(@emotion/core@10.3.1) babel-plugin-emotion: 10.2.2 transitivePeerDependencies: - supports-color - dev: true - /@emotion/styled@11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1): - resolution: {integrity: sha512-/ZjjnaNKvuMPxcIiUkf/9SHoG4Q196DRl1w82hQ3WCsjo1IUR8uaGWrC6a87CrYAW0Kb/pK7hk8BnLgLRi9KoQ==} - peerDependencies: - '@emotion/react': ^11.0.0-rc.0 - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@types/react': - optional: true + '@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 '@emotion/babel-plugin': 11.11.0 @@ -22406,63 +35330,39 @@ packages: '@emotion/serialize': 1.1.4 '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@emotion/utils': 1.2.1 - '@types/react': 18.0.18 react: 18.3.1 + optionalDependencies: + '@types/react': 18.0.18 transitivePeerDependencies: - supports-color - dev: false - /@emotion/stylis@0.8.5: - resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==} - dev: true + '@emotion/stylis@0.8.5': {} - /@emotion/unitless@0.7.5: - resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==} + '@emotion/unitless@0.7.5': {} - /@emotion/unitless@0.8.1: - resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} - dev: false + '@emotion/unitless@0.8.1': {} - /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1): - resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} - peerDependencies: - react: '>=16.8.0' + '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1)': dependencies: react: 18.3.1 - dev: false - /@emotion/utils@0.11.3: - resolution: {integrity: sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==} - dev: true + '@emotion/utils@0.11.3': {} - /@emotion/utils@1.2.1: - resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} - dev: false + '@emotion/utils@1.2.1': {} - /@emotion/weak-memoize@0.2.5: - resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==} - dev: true + '@emotion/weak-memoize@0.2.5': {} - /@emotion/weak-memoize@0.3.1: - resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==} - dev: false + '@emotion/weak-memoize@0.3.1': {} - /@eslint-community/eslint-utils@4.4.0(eslint@7.32.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 + '@eslint-community/eslint-utils@4.4.0(eslint@7.32.0)': dependencies: eslint: 7.32.0 eslint-visitor-keys: 3.4.3 - dev: true - /@eslint/eslintrc@0.4.3: - resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} - engines: {node: ^10.12.0 || >=12.0.0} + '@eslint/eslintrc@0.4.3': dependencies: ajv: 6.12.6 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) espree: 7.3.1 globals: 13.24.0 ignore: 4.0.6 @@ -22473,97 +35373,59 @@ packages: transitivePeerDependencies: - supports-color - /@fluentui/react-component-event-listener@0.63.1(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-gSMdOh6tI3IJKZFqxfQwbTpskpME0CvxdxGM2tdglmf6ZPVDi0L4+KKIm+2dN8nzb8Ya1A8ZT+Ddq0KmZtwVQg==} - peerDependencies: - react: ^16.8.0 || ^17 || ^18 - react-dom: ^16.8.0 || ^17 || ^18 + '@fluentui/react-component-event-listener@0.63.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false - /@fluentui/react-component-ref@0.63.1(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-8MkXX4+R3i80msdbD4rFpEB4WWq2UDvGwG386g3ckIWbekdvN9z2kWAd9OXhRGqB7QeOsoAGWocp6gAMCivRlw==} - peerDependencies: - react: ^16.8.0 || ^17 || ^18 - react-dom: ^16.8.0 || ^17 || ^18 + '@fluentui/react-component-ref@0.63.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 16.13.1 - dev: false - /@gar/promisify@1.1.3: - resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} + '@gar/promisify@1.1.3': {} - /@gilbarbara/deep-equal@0.1.2: - resolution: {integrity: sha512-jk+qzItoEb0D0xSSmrKDDzf9sheQj/BAPxlgNxgmOaA3mxpUa6ndJLYGZKsJnIVEQSD8zcTbyILz7I0HcnBCRA==} - dev: false + '@gilbarbara/deep-equal@0.1.2': {} - /@gilbarbara/deep-equal@0.3.1: - resolution: {integrity: sha512-I7xWjLs2YSVMc5gGx1Z3ZG1lgFpITPndpi8Ku55GeEIKpACCPQNS/OTqQbxgTCfq0Ncvcc+CrFov96itVh6Qvw==} - dev: false + '@gilbarbara/deep-equal@0.3.1': {} - /@hapi/hoek@9.3.0: - resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} - dev: false + '@hapi/hoek@9.3.0': {} - /@hapi/topo@5.1.0: - resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} + '@hapi/topo@5.1.0': dependencies: '@hapi/hoek': 9.3.0 - dev: false - /@humanwhocodes/config-array@0.5.0: - resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} - engines: {node: '>=10.10.0'} - deprecated: Use @eslint/config-array instead + '@humanwhocodes/config-array@0.5.0': dependencies: '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) minimatch: 3.1.2 transitivePeerDependencies: - supports-color - /@humanwhocodes/object-schema@1.2.1: - resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} - deprecated: Use @eslint/object-schema instead + '@humanwhocodes/object-schema@1.2.1': {} - /@hutson/parse-repository-url@3.0.2: - resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} - engines: {node: '>=6.9.0'} - dev: true + '@hutson/parse-repository-url@3.0.2': {} - /@icons/material@0.2.4(react@18.3.1): - resolution: {integrity: sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==} - peerDependencies: - react: '*' + '@icons/material@0.2.4(react@18.3.1)': dependencies: react: 18.3.1 - dev: false - /@isaacs/cliui@8.0.2: - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: '>=12'} + '@isaacs/cliui@8.0.2': dependencies: string-width: 5.1.2 - string-width-cjs: /string-width@4.2.3 + string-width-cjs: string-width@4.2.3 strip-ansi: 7.1.0 - strip-ansi-cjs: /strip-ansi@6.0.1 + strip-ansi-cjs: strip-ansi@6.0.1 wrap-ansi: 8.1.0 - wrap-ansi-cjs: /wrap-ansi@7.0.0 - dev: false + wrap-ansi-cjs: wrap-ansi@7.0.0 - /@isaacs/string-locale-compare@1.1.0: - resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==} - dev: true + '@isaacs/string-locale-compare@1.1.0': {} - /@istanbuljs/load-nyc-config@1.1.0: - resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} - engines: {node: '>=8'} + '@istanbuljs/load-nyc-config@1.1.0': dependencies: camelcase: 5.3.1 find-up: 4.1.0 @@ -22571,13 +35433,9 @@ packages: js-yaml: 3.13.1 resolve-from: 5.0.0 - /@istanbuljs/schema@0.1.3: - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} - engines: {node: '>=8'} + '@istanbuljs/schema@0.1.3': {} - /@jest/console@26.6.2: - resolution: {integrity: sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==} - engines: {node: '>= 10.14.2'} + '@jest/console@26.6.2': dependencies: '@jest/types': 26.6.2 '@types/node': 13.13.52 @@ -22585,11 +35443,8 @@ packages: jest-message-util: 26.6.2 jest-util: 26.6.2 slash: 3.0.0 - dev: true - /@jest/console@28.1.3: - resolution: {integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + '@jest/console@28.1.3': dependencies: '@jest/types': 28.1.3 '@types/node': 13.13.52 @@ -22597,11 +35452,8 @@ packages: jest-message-util: 28.1.3 jest-util: 28.1.3 slash: 3.0.0 - dev: true - /@jest/console@29.7.0: - resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/console@29.7.0': dependencies: '@jest/types': 29.6.3 '@types/node': 13.13.52 @@ -22610,9 +35462,7 @@ packages: jest-util: 29.7.0 slash: 3.0.0 - /@jest/core@26.6.3(ts-node@10.9.2): - resolution: {integrity: sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==} - engines: {node: '>= 10.14.2'} + '@jest/core@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))': dependencies: '@jest/console': 26.6.2 '@jest/reporters': 26.6.2 @@ -22625,14 +35475,14 @@ packages: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 26.6.2 - jest-config: 26.6.3(ts-node@10.9.2) + jest-config: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-haste-map: 26.6.2 jest-message-util: 26.6.2 jest-regex-util: 26.0.0 jest-resolve: 26.6.2 jest-resolve-dependencies: 26.6.3 - jest-runner: 26.6.3(ts-node@10.9.2) - jest-runtime: 26.6.3(ts-node@10.9.2) + jest-runner: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) + jest-runtime: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-snapshot: 26.6.2 jest-util: 26.6.2 jest-validate: 26.6.2 @@ -22648,19 +35498,11 @@ packages: - supports-color - ts-node - utf-8-validate - dev: true - /@jest/core@29.7.0(ts-node@10.9.2): - resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))': dependencies: '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 + '@jest/reporters': 29.7.0(node-notifier@8.0.2) '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 @@ -22671,7 +35513,7 @@ packages: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@13.13.52)(ts-node@10.9.2) + jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -22687,22 +35529,17 @@ packages: pretty-format: 29.7.0 slash: 3.0.0 strip-ansi: 6.0.1 + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - babel-plugin-macros - supports-color - ts-node - /@jest/core@29.7.0(ts-node@8.10.2): - resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))': dependencies: '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 + '@jest/reporters': 29.7.0(node-notifier@8.0.2) '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 @@ -22713,7 +35550,7 @@ packages: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -22729,76 +35566,57 @@ packages: pretty-format: 29.7.0 slash: 3.0.0 strip-ansi: 6.0.1 + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - babel-plugin-macros - supports-color - ts-node - dev: true - /@jest/environment@26.6.2: - resolution: {integrity: sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==} - engines: {node: '>= 10.14.2'} + '@jest/environment@26.6.2': dependencies: '@jest/fake-timers': 26.6.2 '@jest/types': 26.6.2 '@types/node': 13.13.52 jest-mock: 26.6.2 - dev: true - /@jest/environment@28.1.3: - resolution: {integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + '@jest/environment@28.1.3': dependencies: '@jest/fake-timers': 28.1.3 '@jest/types': 28.1.3 '@types/node': 13.13.52 jest-mock: 28.1.3 - dev: true - /@jest/environment@29.7.0: - resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/environment@29.7.0': dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 '@types/node': 13.13.52 jest-mock: 29.7.0 - /@jest/expect-utils@28.1.3: - resolution: {integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + '@jest/expect-utils@28.1.3': dependencies: jest-get-type: 28.0.2 - dev: true - /@jest/expect-utils@29.7.0: - resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/expect-utils@29.7.0': dependencies: jest-get-type: 29.6.3 - /@jest/expect@28.1.3: - resolution: {integrity: sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + '@jest/expect@28.1.3': dependencies: expect: 28.1.3 jest-snapshot: 28.1.3 transitivePeerDependencies: - supports-color - dev: true - /@jest/expect@29.7.0: - resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/expect@29.7.0': dependencies: expect: 29.7.0 jest-snapshot: 29.7.0 transitivePeerDependencies: - supports-color - /@jest/fake-timers@26.6.2: - resolution: {integrity: sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==} - engines: {node: '>= 10.14.2'} + '@jest/fake-timers@26.6.2': dependencies: '@jest/types': 26.6.2 '@sinonjs/fake-timers': 6.0.1 @@ -22806,11 +35624,8 @@ packages: jest-message-util: 26.6.2 jest-mock: 26.6.2 jest-util: 26.6.2 - dev: true - /@jest/fake-timers@28.1.3: - resolution: {integrity: sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + '@jest/fake-timers@28.1.3': dependencies: '@jest/types': 28.1.3 '@sinonjs/fake-timers': 9.1.2 @@ -22818,11 +35633,8 @@ packages: jest-message-util: 28.1.3 jest-mock: 28.1.3 jest-util: 28.1.3 - dev: true - /@jest/fake-timers@29.7.0: - resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/fake-timers@29.7.0': dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 @@ -22831,29 +35643,21 @@ packages: jest-mock: 29.7.0 jest-util: 29.7.0 - /@jest/globals@26.6.2: - resolution: {integrity: sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==} - engines: {node: '>= 10.14.2'} + '@jest/globals@26.6.2': dependencies: '@jest/environment': 26.6.2 '@jest/types': 26.6.2 expect: 26.6.2 - dev: true - /@jest/globals@28.1.3: - resolution: {integrity: sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + '@jest/globals@28.1.3': dependencies: '@jest/environment': 28.1.3 '@jest/expect': 28.1.3 '@jest/types': 28.1.3 transitivePeerDependencies: - supports-color - dev: true - /@jest/globals@29.7.0: - resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/globals@29.7.0': dependencies: '@jest/environment': 29.7.0 '@jest/expect': 29.7.0 @@ -22862,9 +35666,7 @@ packages: transitivePeerDependencies: - supports-color - /@jest/reporters@26.6.2: - resolution: {integrity: sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==} - engines: {node: '>= 10.14.2'} + '@jest/reporters@26.6.2': dependencies: '@bcoe/v8-coverage': 0.2.3 '@jest/console': 26.6.2 @@ -22894,16 +35696,8 @@ packages: node-notifier: 8.0.2 transitivePeerDependencies: - supports-color - dev: true - /@jest/reporters@28.1.1: - resolution: {integrity: sha512-597Zj4D4d88sZrzM4atEGLuO7SdA/YrOv9SRXHXRNC+/FwPCWxZhBAEzhXoiJzfRwn8zes/EjS8Lo6DouGN5Gg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + '@jest/reporters@28.1.1(node-notifier@8.0.2)': dependencies: '@bcoe/v8-coverage': 0.2.3 '@jest/console': 28.1.3 @@ -22930,18 +35724,12 @@ packages: strip-ansi: 6.0.1 terminal-link: 2.1.1 v8-to-istanbul: 9.3.0 + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - supports-color - dev: true - /@jest/reporters@29.7.0: - resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + '@jest/reporters@29.7.0(node-notifier@8.0.2)': dependencies: '@bcoe/v8-coverage': 0.2.3 '@jest/console': 29.7.0 @@ -22967,126 +35755,94 @@ packages: string-length: 4.0.2 strip-ansi: 6.0.1 v8-to-istanbul: 9.3.0 + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - supports-color - /@jest/schemas@28.1.3: - resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + '@jest/schemas@28.1.3': dependencies: '@sinclair/typebox': 0.24.51 - dev: true - /@jest/schemas@29.6.3: - resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/schemas@29.6.3': dependencies: '@sinclair/typebox': 0.27.8 - /@jest/source-map@26.6.2: - resolution: {integrity: sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==} - engines: {node: '>= 10.14.2'} + '@jest/source-map@26.6.2': dependencies: callsites: 3.1.0 graceful-fs: 4.2.11 source-map: 0.6.1 - dev: true - /@jest/source-map@28.1.2: - resolution: {integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + '@jest/source-map@28.1.2': dependencies: '@jridgewell/trace-mapping': 0.3.25 callsites: 3.1.0 graceful-fs: 4.2.11 - dev: true - /@jest/source-map@29.6.3: - resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/source-map@29.6.3': dependencies: '@jridgewell/trace-mapping': 0.3.25 callsites: 3.1.0 graceful-fs: 4.2.11 - /@jest/test-result@26.6.2: - resolution: {integrity: sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==} - engines: {node: '>= 10.14.2'} + '@jest/test-result@26.6.2': dependencies: '@jest/console': 26.6.2 '@jest/types': 26.6.2 '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - dev: true - /@jest/test-result@28.1.1: - resolution: {integrity: sha512-hPmkugBktqL6rRzwWAtp1JtYT4VHwv8OQ+9lE5Gymj6dHzubI/oJHMUpPOt8NrdVWSrz9S7bHjJUmv2ggFoUNQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + '@jest/test-result@28.1.1': dependencies: '@jest/console': 28.1.3 '@jest/types': 28.1.3 '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - dev: true - /@jest/test-result@28.1.3: - resolution: {integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + '@jest/test-result@28.1.3': dependencies: '@jest/console': 28.1.3 '@jest/types': 28.1.3 '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - dev: true - /@jest/test-result@29.7.0: - resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/test-result@29.7.0': dependencies: '@jest/console': 29.7.0 '@jest/types': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - /@jest/test-sequencer@26.6.3(ts-node@10.9.2): - resolution: {integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==} - engines: {node: '>= 10.14.2'} + '@jest/test-sequencer@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))': dependencies: '@jest/test-result': 26.6.2 graceful-fs: 4.2.11 jest-haste-map: 26.6.2 - jest-runner: 26.6.3(ts-node@10.9.2) - jest-runtime: 26.6.3(ts-node@10.9.2) + jest-runner: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) + jest-runtime: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) transitivePeerDependencies: - bufferutil - canvas - supports-color - ts-node - utf-8-validate - dev: true - /@jest/test-sequencer@28.1.3: - resolution: {integrity: sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + '@jest/test-sequencer@28.1.3': dependencies: '@jest/test-result': 28.1.3 graceful-fs: 4.2.11 jest-haste-map: 28.1.3 slash: 3.0.0 - dev: true - /@jest/test-sequencer@29.7.0: - resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/test-sequencer@29.7.0': dependencies: '@jest/test-result': 29.7.0 graceful-fs: 4.2.11 jest-haste-map: 29.7.0 slash: 3.0.0 - /@jest/transform@26.6.2: - resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} - engines: {node: '>= 10.14.2'} + '@jest/transform@26.6.2': dependencies: '@babel/core': 7.24.7 '@jest/types': 26.6.2 @@ -23106,9 +35862,7 @@ packages: transitivePeerDependencies: - supports-color - /@jest/transform@28.1.3: - resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + '@jest/transform@28.1.3': dependencies: '@babel/core': 7.24.7 '@jest/types': 28.1.3 @@ -23127,11 +35881,8 @@ packages: write-file-atomic: 4.0.2 transitivePeerDependencies: - supports-color - dev: true - /@jest/transform@29.7.0: - resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/transform@29.7.0': dependencies: '@babel/core': 7.24.7 '@jest/types': 29.6.3 @@ -23151,9 +35902,7 @@ packages: transitivePeerDependencies: - supports-color - /@jest/types@26.6.2: - resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} - engines: {node: '>= 10.14.2'} + '@jest/types@26.6.2': dependencies: '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 @@ -23161,9 +35910,7 @@ packages: '@types/yargs': 15.0.19 chalk: 4.1.2 - /@jest/types@28.1.3: - resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + '@jest/types@28.1.3': dependencies: '@jest/schemas': 28.1.3 '@types/istanbul-lib-coverage': 2.0.6 @@ -23171,11 +35918,8 @@ packages: '@types/node': 13.13.52 '@types/yargs': 17.0.32 chalk: 4.1.0 - dev: true - /@jest/types@29.6.3: - resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/types@29.6.3': dependencies: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 @@ -23184,51 +35928,36 @@ packages: '@types/yargs': 17.0.32 chalk: 4.1.2 - /@jridgewell/gen-mapping@0.3.5: - resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} - engines: {node: '>=6.0.0'} + '@jridgewell/gen-mapping@0.3.5': dependencies: '@jridgewell/set-array': 1.2.1 '@jridgewell/sourcemap-codec': 1.4.15 '@jridgewell/trace-mapping': 0.3.25 - /@jridgewell/resolve-uri@3.1.2: - resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} - engines: {node: '>=6.0.0'} + '@jridgewell/resolve-uri@3.1.2': {} - /@jridgewell/set-array@1.2.1: - resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} - engines: {node: '>=6.0.0'} + '@jridgewell/set-array@1.2.1': {} - /@jridgewell/source-map@0.3.6: - resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} + '@jridgewell/source-map@0.3.6': dependencies: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 - /@jridgewell/sourcemap-codec@1.4.15: - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + '@jridgewell/sourcemap-codec@1.4.15': {} - /@jridgewell/trace-mapping@0.3.25: - resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + '@jridgewell/trace-mapping@0.3.25': dependencies: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.4.15 - /@jridgewell/trace-mapping@0.3.9: - resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + '@jridgewell/trace-mapping@0.3.9': dependencies: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.4.15 - /@leichtgewicht/ip-codec@2.0.5: - resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} - dev: true + '@leichtgewicht/ip-codec@2.0.5': {} - /@lerna/add@5.6.2: - resolution: {integrity: sha512-NHrm7kYiqP+EviguY7/NltJ3G9vGmJW6v2BASUOhP9FZDhYbq3O+rCDlFdoVRNtcyrSg90rZFMOWHph4KOoCQQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/add@5.6.2': dependencies: '@lerna/bootstrap': 5.6.2 '@lerna/command': 5.6.2 @@ -23243,12 +35972,8 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@lerna/bootstrap@5.6.2: - resolution: {integrity: sha512-S2fMOEXbef7nrybQhzBywIGSLhuiQ5huPp1sU+v9Y6XEBsy/2IA+lb0gsZosvPqlRfMtiaFstL+QunaBhlWECA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/bootstrap@5.6.2': dependencies: '@lerna/command': 5.6.2 '@lerna/filter-options': 5.6.2 @@ -23275,42 +36000,27 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@lerna/changed@5.6.2: - resolution: {integrity: sha512-uUgrkdj1eYJHQGsXXlpH5oEAfu3x0qzeTjgvpdNrxHEdQWi7zWiW59hRadmiImc14uJJYIwVK5q/QLugrsdGFQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/changed@5.6.2': dependencies: '@lerna/collect-updates': 5.6.2 '@lerna/command': 5.6.2 '@lerna/listable': 5.6.2 '@lerna/output': 5.6.2 - dev: true - /@lerna/check-working-tree@5.6.2: - resolution: {integrity: sha512-6Vf3IB6p+iNIubwVgr8A/KOmGh5xb4SyRmhFtAVqe33yWl2p3yc+mU5nGoz4ET3JLF1T9MhsePj0hNt6qyOTLQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/check-working-tree@5.6.2': dependencies: '@lerna/collect-uncommitted': 5.6.2 '@lerna/describe-ref': 5.6.2 '@lerna/validation-error': 5.6.2 - dev: true - /@lerna/child-process@5.6.2: - resolution: {integrity: sha512-QIOQ3jIbWdduHd5892fbo3u7/dQgbhzEBB7cvf+Ys/iCPP8UQrBECi1lfRgA4kcTKC2MyMz0SoyXZz/lFcXc3A==} - engines: {node: ^14.15.0 || >=16.0.0} + '@lerna/child-process@5.6.2': dependencies: chalk: 4.1.2 execa: 5.1.1 strong-log-transformer: 2.1.0 - dev: true - /@lerna/clean@5.6.2: - resolution: {integrity: sha512-A7j8r0Hk2pGyLUyaCmx4keNHen1L/KdcOjb4nR6X8GtTJR5AeA47a8rRKOCz9wwdyMPlo2Dau7d3RV9viv7a5g==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/clean@5.6.2': dependencies: '@lerna/command': 5.6.2 '@lerna/filter-options': 5.6.2 @@ -23320,45 +36030,29 @@ packages: p-map: 4.0.0 p-map-series: 2.1.0 p-waterfall: 2.1.1 - dev: true - /@lerna/cli@5.6.2: - resolution: {integrity: sha512-w0NRIEqDOmYKlA5t0iyqx0hbY7zcozvApmfvwF0lhkuhf3k6LRAFSamtimGQWicC779a7J2NXw4ASuBV47Fs1Q==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/cli@5.6.2': dependencies: '@lerna/global-options': 5.6.2 dedent: 0.7.0 npmlog: 6.0.2 yargs: 16.2.0 - dev: true - /@lerna/collect-uncommitted@5.6.2: - resolution: {integrity: sha512-i0jhxpypyOsW2PpPwIw4xg6EPh7/N3YuiI6P2yL7PynZ8nOv8DkIdoyMkhUP4gALjBfckH8Bj94eIaKMviqW4w==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/collect-uncommitted@5.6.2': dependencies: '@lerna/child-process': 5.6.2 chalk: 4.1.2 npmlog: 6.0.2 - dev: true - /@lerna/collect-updates@5.6.2: - resolution: {integrity: sha512-DdTK13X6PIsh9HINiMniFeiivAizR/1FBB+hDVe6tOhsXFBfjHMw1xZhXlE+mYIoFmDm1UFK7zvQSexoaxRqFA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/collect-updates@5.6.2': dependencies: '@lerna/child-process': 5.6.2 '@lerna/describe-ref': 5.6.2 minimatch: 3.1.2 npmlog: 6.0.2 slash: 3.0.0 - dev: true - /@lerna/command@5.6.2: - resolution: {integrity: sha512-eLVGI9TmxcaGt1M7TXGhhBZoeWOtOedMiH7NuCGHtL6TMJ9k+SCExyx+KpNmE6ImyNOzws6EvYLPLjftiqmoaA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/command@5.6.2': dependencies: '@lerna/child-process': 5.6.2 '@lerna/package-graph': 5.6.2 @@ -23370,12 +36064,8 @@ packages: execa: 5.1.1 is-ci: 2.0.0 npmlog: 6.0.2 - dev: true - /@lerna/conventional-commits@5.6.2: - resolution: {integrity: sha512-fPrJpYJhxCgY2uyOCTcAAC6+T6lUAtpEGxLbjWHWTb13oKKEygp9THoFpe6SbAD0fYMb3jeZCZCqNofM62rmuA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/conventional-commits@5.6.2': dependencies: '@lerna/validation-error': 5.6.2 conventional-changelog-angular: 5.0.13 @@ -23387,21 +36077,14 @@ packages: npmlog: 6.0.2 pify: 5.0.0 semver: 7.6.2 - dev: true - /@lerna/create-symlink@5.6.2: - resolution: {integrity: sha512-0WIs3P6ohPVh2+t5axrLZDE5Dt7fe3Kv0Auj0sBiBd6MmKZ2oS76apIl0Bspdbv8jX8+TRKGv6ib0280D0dtEw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/create-symlink@5.6.2': dependencies: cmd-shim: 5.0.0 fs-extra: 9.1.0 npmlog: 6.0.2 - dev: true - /@lerna/create@5.6.2: - resolution: {integrity: sha512-+Y5cMUxMNXjTTU9IHpgRYIwKo39w+blui1P+s+qYlZUSCUAew0xNpOBG8iN0Nc5X9op4U094oIdHxv7Dyz6tWQ==} - engines: {node: ^14.15.0 || >=16.0.0} + '@lerna/create@5.6.2': dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 @@ -23422,32 +36105,20 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@lerna/describe-ref@5.6.2: - resolution: {integrity: sha512-UqU0N77aT1W8duYGir7R+Sk3jsY/c4lhcCEcnayMpFScMbAp0ETGsW04cYsHK29sgg+ZCc5zEwebBqabWhMhnA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/describe-ref@5.6.2': dependencies: '@lerna/child-process': 5.6.2 npmlog: 6.0.2 - dev: true - /@lerna/diff@5.6.2: - resolution: {integrity: sha512-aHKzKvUvUI8vOcshC2Za/bdz+plM3r/ycqUrPqaERzp+kc1pYHyPeXezydVdEmgmmwmyKI5hx4+2QNnzOnun2A==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/diff@5.6.2': dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 '@lerna/validation-error': 5.6.2 npmlog: 6.0.2 - dev: true - /@lerna/exec@5.6.2: - resolution: {integrity: sha512-meZozok5stK7S0oAVn+kdbTmU+kHj9GTXjW7V8kgwG9ld+JJMTH3nKK1L3mEKyk9TFu9vFWyEOF7HNK6yEOoVg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/exec@5.6.2': dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 @@ -23456,91 +36127,55 @@ packages: '@lerna/run-topologically': 5.6.2 '@lerna/validation-error': 5.6.2 p-map: 4.0.0 - dev: true - /@lerna/filter-options@5.6.2: - resolution: {integrity: sha512-4Z0HIhPak2TabTsUqEBQaQeOqgqEt0qyskvsY0oviYvqP/nrJfJBZh4H93jIiNQF59LJCn5Ce3KJJrLExxjlzw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/filter-options@5.6.2': dependencies: '@lerna/collect-updates': 5.6.2 '@lerna/filter-packages': 5.6.2 dedent: 0.7.0 npmlog: 6.0.2 - dev: true - /@lerna/filter-packages@5.6.2: - resolution: {integrity: sha512-el9V2lTEG0Bbz+Omo45hATkRVnChCTJhcTpth19cMJ6mQ4M5H4IgbWCJdFMBi/RpTnOhz9BhJxDbj95kuIvvzw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/filter-packages@5.6.2': dependencies: '@lerna/validation-error': 5.6.2 multimatch: 5.0.0 npmlog: 6.0.2 - dev: true - /@lerna/get-npm-exec-opts@5.6.2: - resolution: {integrity: sha512-0RbSDJ+QC9D5UWZJh3DN7mBIU1NhBmdHOE289oHSkjDY+uEjdzMPkEUy+wZ8fCzMLFnnNQkAEqNaOAzZ7dmFLA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/get-npm-exec-opts@5.6.2': dependencies: npmlog: 6.0.2 - dev: true - /@lerna/get-packed@5.6.2: - resolution: {integrity: sha512-pp5nNDmtrtd21aKHjwwOY5CS7XNIHxINzGa+Jholn1jMDYUtdskpN++ZqYbATGpW831++NJuiuBVyqAWi9xbXg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/get-packed@5.6.2': dependencies: fs-extra: 9.1.0 ssri: 9.0.1 tar: 6.2.1 - dev: true - /@lerna/github-client@5.6.2: - resolution: {integrity: sha512-pjALazZoRZtKqfwLBwmW3HPptVhQm54PvA8s3qhCQ+3JkqrZiIFwkkxNZxs3jwzr+aaSOzfhSzCndg0urb0GXA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/github-client@5.6.2(encoding@0.1.13)': dependencies: '@lerna/child-process': 5.6.2 '@octokit/plugin-enterprise-rest': 6.0.1 - '@octokit/rest': 19.0.13 + '@octokit/rest': 19.0.13(encoding@0.1.13) git-url-parse: 13.1.1 npmlog: 6.0.2 transitivePeerDependencies: - encoding - dev: true - /@lerna/gitlab-client@5.6.2: - resolution: {integrity: sha512-TInJmbrsmYIwUyrRxytjO82KjJbRwm67F7LoZs1shAq6rMvNqi4NxSY9j+hT/939alFmEq1zssoy/caeLXHRfQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/gitlab-client@5.6.2(encoding@0.1.13)': dependencies: - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) npmlog: 6.0.2 transitivePeerDependencies: - encoding - dev: true - /@lerna/global-options@5.6.2: - resolution: {integrity: sha512-kaKELURXTlczthNJskdOvh6GGMyt24qat0xMoJZ8plYMdofJfhz24h1OFcvB/EwCUwP/XV1+ohE5P+vdktbrEg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - dev: true + '@lerna/global-options@5.6.2': {} - /@lerna/has-npm-version@5.6.2: - resolution: {integrity: sha512-kXCnSzffmTWsaK0ol30coyCfO8WH26HFbmJjRBzKv7VGkuAIcB6gX2gqRRgNLLlvI+Yrp+JSlpVNVnu15SEH2g==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/has-npm-version@5.6.2': dependencies: '@lerna/child-process': 5.6.2 semver: 7.6.2 - dev: true - /@lerna/import@5.6.2: - resolution: {integrity: sha512-xQUE49mtcP0z3KUdXBsyvp8rGDz6phuYUoQbhcFRJ7WPcQKzMvtm0XYrER6c2YWEX7QOuDac6tU82P8zTrTBaA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/import@5.6.2': dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 @@ -23550,22 +36185,14 @@ packages: dedent: 0.7.0 fs-extra: 9.1.0 p-map-series: 2.1.0 - dev: true - /@lerna/info@5.6.2: - resolution: {integrity: sha512-MPjY5Olj+fiZHgfEdwXUFRKamdEuLr9Ob/qut8JsB/oQSQ4ALdQfnrOcMT8lJIcC2R67EA5yav2lHPBIkezm8A==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/info@5.6.2': dependencies: '@lerna/command': 5.6.2 '@lerna/output': 5.6.2 envinfo: 7.13.0 - dev: true - /@lerna/init@5.6.2: - resolution: {integrity: sha512-ahU3/lgF+J8kdJAQysihFJROHthkIDXfHmvhw7AYnzf94HjxGNXj7nz6i3At1/dM/1nQhR+4/uNR1/OU4tTYYQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/init@5.6.2': dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 @@ -23573,12 +36200,8 @@ packages: fs-extra: 9.1.0 p-map: 4.0.0 write-json-file: 4.3.0 - dev: true - /@lerna/link@5.6.2: - resolution: {integrity: sha512-hXxQ4R3z6rUF1v2x62oIzLyeHL96u7ZBhxqYMJrm763D1VMSDcHKF9CjJfc6J9vH5Z2ZbL6CQg50Hw5mUpJbjg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/link@5.6.2': dependencies: '@lerna/command': 5.6.2 '@lerna/package-graph': 5.6.2 @@ -23586,53 +36209,33 @@ packages: '@lerna/validation-error': 5.6.2 p-map: 4.0.0 slash: 3.0.0 - dev: true - /@lerna/list@5.6.2: - resolution: {integrity: sha512-WjE5O2tQ3TcS+8LqXUaxi0YdldhxUhNihT5+Gg4vzGdIlrPDioO50Zjo9d8jOU7i3LMIk6EzCma0sZr2CVfEGg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/list@5.6.2': dependencies: '@lerna/command': 5.6.2 '@lerna/filter-options': 5.6.2 '@lerna/listable': 5.6.2 '@lerna/output': 5.6.2 - dev: true - /@lerna/listable@5.6.2: - resolution: {integrity: sha512-8Yp49BwkY/5XqVru38Zko+6Wj/sgbwzJfIGEPy3Qu575r1NA/b9eI1gX22aMsEeXUeGOybR7nWT5ewnPQHjqvA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/listable@5.6.2': dependencies: '@lerna/query-graph': 5.6.2 chalk: 4.1.2 columnify: 1.6.0 - dev: true - /@lerna/log-packed@5.6.2: - resolution: {integrity: sha512-O9GODG7tMtWk+2fufn2MOkIDBYMRoKBhYMHshO5Aw/VIsH76DIxpX1koMzWfUngM/C70R4uNAKcVWineX4qzIw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/log-packed@5.6.2': dependencies: byte-size: 7.0.1 columnify: 1.6.0 has-unicode: 2.0.1 npmlog: 6.0.2 - dev: true - /@lerna/npm-conf@5.6.2: - resolution: {integrity: sha512-gWDPhw1wjXYXphk/PAghTLexO5T6abVFhXb+KOMCeem366mY0F5bM88PiorL73aErTNUoR8n+V4X29NTZzDZpQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/npm-conf@5.6.2': dependencies: config-chain: 1.1.13 pify: 5.0.0 - dev: true - /@lerna/npm-dist-tag@5.6.2: - resolution: {integrity: sha512-t2RmxV6Eog4acXkUI+EzWuYVbeVVY139pANIWS9qtdajfgp4GVXZi1S8mAIb70yeHdNpCp1mhK0xpCrFH9LvGQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/npm-dist-tag@5.6.2': dependencies: '@lerna/otplease': 5.6.2 npm-package-arg: 8.1.1 @@ -23641,12 +36244,8 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@lerna/npm-install@5.6.2: - resolution: {integrity: sha512-AT226zdEo+uGENd37jwYgdALKJAIJK4pNOfmXWZWzVb9oMOr8I2YSjPYvSYUNG7gOo2YJQU8x5Zd7OShv2924Q==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/npm-install@5.6.2': dependencies: '@lerna/child-process': 5.6.2 '@lerna/get-npm-exec-opts': 5.6.2 @@ -23655,12 +36254,8 @@ packages: npmlog: 6.0.2 signal-exit: 3.0.7 write-pkg: 4.0.0 - dev: true - /@lerna/npm-publish@5.6.2: - resolution: {integrity: sha512-ldSyewCfv9fAeC5xNjL0HKGSUxcC048EJoe/B+KRUmd+IPidvZxMEzRu08lSC/q3V9YeUv9ZvRnxATXOM8CffA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/npm-publish@5.6.2': dependencies: '@lerna/otplease': 5.6.2 '@lerna/run-lifecycle': 5.6.2 @@ -23673,38 +36268,22 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@lerna/npm-run-script@5.6.2: - resolution: {integrity: sha512-MOQoWNcAyJivM8SYp0zELM7vg/Dj07j4YMdxZkey+S1UO0T4/vKBxb575o16hH4WeNzC3Pd7WBlb7C8dLOfNwQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/npm-run-script@5.6.2': dependencies: '@lerna/child-process': 5.6.2 '@lerna/get-npm-exec-opts': 5.6.2 npmlog: 6.0.2 - dev: true - /@lerna/otplease@5.6.2: - resolution: {integrity: sha512-dGS4lzkEQVTMAgji82jp8RK6UK32wlzrBAO4P4iiVHCUTuwNLsY9oeBXvVXSMrosJnl6Hbe0NOvi43mqSucGoA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/otplease@5.6.2': dependencies: '@lerna/prompt': 5.6.2 - dev: true - /@lerna/output@5.6.2: - resolution: {integrity: sha512-++d+bfOQwY66yo7q1XuAvRcqtRHCG45e/awP5xQomTZ6R1rhWiZ3whWdc9Z6lF7+UtBB9toSYYffKU/xc3L0yQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/output@5.6.2': dependencies: npmlog: 6.0.2 - dev: true - /@lerna/pack-directory@5.6.2: - resolution: {integrity: sha512-w5Jk5fo+HkN4Le7WMOudTcmAymcf0xPd302TqAQncjXpk0cb8tZbj+5bbNHsGb58GRjOIm5icQbHXooQUxbHhA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/pack-directory@5.6.2': dependencies: '@lerna/get-packed': 5.6.2 '@lerna/package': 5.6.2 @@ -23716,52 +36295,32 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@lerna/package-graph@5.6.2: - resolution: {integrity: sha512-TmL61qBBvA3Tc4qICDirZzdFFwWOA6qicIXUruLiE2PblRowRmCO1bKrrP6XbDOspzwrkPef6N2F2/5gHQAnkQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/package-graph@5.6.2': dependencies: '@lerna/prerelease-id-from-version': 5.6.2 '@lerna/validation-error': 5.6.2 npm-package-arg: 8.1.1 npmlog: 6.0.2 semver: 7.6.2 - dev: true - /@lerna/package@5.6.2: - resolution: {integrity: sha512-LaOC8moyM5J9WnRiWZkedjOninSclBOJyPqhif6mHb2kCFX6jAroNYzE8KM4cphu8CunHuhI6Ixzswtv+Dultw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/package@5.6.2': dependencies: load-json-file: 6.2.0 npm-package-arg: 8.1.1 write-pkg: 4.0.0 - dev: true - /@lerna/prerelease-id-from-version@5.6.2: - resolution: {integrity: sha512-7gIm9fecWFVNy2kpj/KbH11bRcpyANAwpsft3X5m6J7y7A6FTUscCbEvl3ZNdpQKHNuvnHgCtkm3A5PMSCEgkA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/prerelease-id-from-version@5.6.2': dependencies: semver: 7.6.2 - dev: true - /@lerna/profiler@5.6.2: - resolution: {integrity: sha512-okwkagP5zyRIOYTceu/9/esW7UZFt7lyL6q6ZgpSG3TYC5Ay+FXLtS6Xiha/FQdVdumFqKULDWTGovzUlxcwaw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/profiler@5.6.2': dependencies: fs-extra: 9.1.0 npmlog: 6.0.2 upath: 2.0.1 - dev: true - /@lerna/project@5.6.2: - resolution: {integrity: sha512-kPIMcIy/0DVWM91FPMMFmXyAnCuuLm3NdhnA8NusE//VuY9wC6QC/3OwuCY39b2dbko/fPZheqKeAZkkMH6sGg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/project@5.6.2': dependencies: '@lerna/package': 5.6.2 '@lerna/validation-error': 5.6.2 @@ -23776,21 +36335,13 @@ packages: p-map: 4.0.0 resolve-from: 5.0.0 write-json-file: 4.3.0 - dev: true - /@lerna/prompt@5.6.2: - resolution: {integrity: sha512-4hTNmVYADEr0GJTMegWV+GW6n+dzKx1vN9v2ISqyle283Myv930WxuyO0PeYGqTrkneJsyPreCMovuEGCvZ0iQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/prompt@5.6.2': dependencies: inquirer: 8.2.6 npmlog: 6.0.2 - dev: true - /@lerna/publish@5.6.2(nx@14.8.8)(typescript@4.9.5): - resolution: {integrity: sha512-QaW0GjMJMuWlRNjeDCjmY/vjriGSWgkLS23yu8VKNtV5U3dt5yIKA3DNGV3HgZACuu45kQxzMDsfLzgzbGNtYA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/publish@5.6.2(encoding@0.1.13)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5)': dependencies: '@lerna/check-working-tree': 5.6.2 '@lerna/child-process': 5.6.2 @@ -23810,7 +36361,7 @@ packages: '@lerna/run-lifecycle': 5.6.2 '@lerna/run-topologically': 5.6.2 '@lerna/validation-error': 5.6.2 - '@lerna/version': 5.6.2(nx@14.8.8)(typescript@4.9.5) + '@lerna/version': 5.6.2(encoding@0.1.13)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) fs-extra: 9.1.0 libnpmaccess: 6.0.4 npm-package-arg: 8.1.1 @@ -23826,49 +36377,29 @@ packages: - nx - supports-color - typescript - dev: true - /@lerna/pulse-till-done@5.6.2: - resolution: {integrity: sha512-eA/X1RCxU5YGMNZmbgPi+Kyfx1Q3bn4P9jo/LZy+/NRRr1po3ASXP2GJZ1auBh/9A2ELDvvKTOXCVHqczKC6rA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/pulse-till-done@5.6.2': dependencies: npmlog: 6.0.2 - dev: true - /@lerna/query-graph@5.6.2: - resolution: {integrity: sha512-KRngr96yBP8XYDi9/U62fnGO+ZXqm04Qk6a2HtoTr/ha8QvO1s7Tgm0xs/G7qWXDQHZgunWIbmK/LhxM7eFQrw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/query-graph@5.6.2': dependencies: '@lerna/package-graph': 5.6.2 - dev: true - /@lerna/resolve-symlink@5.6.2: - resolution: {integrity: sha512-PDQy+7M8JEFtwIVHJgWvSxHkxJf9zXCENkvIWDB+SsoDPhw9+caewt46bTeP5iGm9pOMu3oZukaWo/TvF7sNjg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/resolve-symlink@5.6.2': dependencies: fs-extra: 9.1.0 npmlog: 6.0.2 read-cmd-shim: 3.0.1 - dev: true - /@lerna/rimraf-dir@5.6.2: - resolution: {integrity: sha512-jgEfzz7uBUiQKteq3G8MtJiA2D2VoKmZSSY3VSiW/tPOSXYxxSHxEsClQdCeNa6+sYrDNDT8fP6MJ3lPLjDeLA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/rimraf-dir@5.6.2': dependencies: '@lerna/child-process': 5.6.2 npmlog: 6.0.2 path-exists: 4.0.0 rimraf: 3.0.2 - dev: true - /@lerna/run-lifecycle@5.6.2: - resolution: {integrity: sha512-u9gGgq/50Fm8dvfcc/TSHOCAQvzLD7poVanDMhHYWOAqRDnellJEEmA1K/Yka4vZmySrzluahkry9G6jcREt+g==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/run-lifecycle@5.6.2': dependencies: '@lerna/npm-conf': 5.6.2 '@npmcli/run-script': 4.2.1 @@ -23877,21 +36408,13 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@lerna/run-topologically@5.6.2: - resolution: {integrity: sha512-QQ/jGOIsVvUg3izShWsd67RlWYh9UOH2yw97Ol1zySX9+JspCMVQrn9eKq1Pk8twQOFhT87LpT/aaxbTBgREPw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/run-topologically@5.6.2': dependencies: '@lerna/query-graph': 5.6.2 p-queue: 6.6.2 - dev: true - /@lerna/run@5.6.2: - resolution: {integrity: sha512-c2kJxdFrNg5KOkrhmgwKKUOsfSrGNlFCe26EttufOJ3xfY0VnXlEw9rHOkTgwtu7969rfCdyaVP1qckMrF1Dgw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/run@5.6.2': dependencies: '@lerna/command': 5.6.2 '@lerna/filter-options': 5.6.2 @@ -23903,23 +36426,15 @@ packages: '@lerna/validation-error': 5.6.2 fs-extra: 9.1.0 p-map: 4.0.0 - dev: true - /@lerna/symlink-binary@5.6.2: - resolution: {integrity: sha512-Cth+miwYyO81WAmrQbPBrLHuF+F0UUc0el5kRXLH6j5zzaRS3kMM68r40M7MmfH8m3GPi7691UARoWFEotW5jw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/symlink-binary@5.6.2': dependencies: '@lerna/create-symlink': 5.6.2 '@lerna/package': 5.6.2 fs-extra: 9.1.0 p-map: 4.0.0 - dev: true - /@lerna/symlink-dependencies@5.6.2: - resolution: {integrity: sha512-dUVNQLEcjVOIQiT9OlSAKt0ykjyJPy8l9i4NJDe2/0XYaUjo8PWsxJ0vrutz27jzi2aZUy07ASmowQZEmnLHAw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/symlink-dependencies@5.6.2': dependencies: '@lerna/create-symlink': 5.6.2 '@lerna/resolve-symlink': 5.6.2 @@ -23927,45 +36442,30 @@ packages: fs-extra: 9.1.0 p-map: 4.0.0 p-map-series: 2.1.0 - dev: true - /@lerna/temp-write@5.6.2: - resolution: {integrity: sha512-S5ZNVTurSwWBmc9kh5alfSjmO3+BnRT6shYtOlmVIUYqWeYVYA5C1Htj322bbU4CSNCMFK6NQl4qGKL17HMuig==} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/temp-write@5.6.2': dependencies: graceful-fs: 4.2.11 is-stream: 2.0.1 make-dir: 3.1.0 temp-dir: 1.0.0 uuid: 8.3.2 - dev: true - /@lerna/timer@5.6.2: - resolution: {integrity: sha512-AjMOiLc2B+5Nzdd9hNORetAdZ/WK8YNGX/+2ypzM68TMAPfIT5C40hMlSva9Yg4RsBz22REopXgM5s2zQd5ZQA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - dev: true + '@lerna/timer@5.6.2': {} - /@lerna/validation-error@5.6.2: - resolution: {integrity: sha512-4WlDUHaa+RSJNyJRtX3gVIAPVzjZD2tle8AJ0ZYBfdZnZmG0VlB2pD1FIbOQPK8sY2h5m0cHLRvfLoLncqHvdQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/validation-error@5.6.2': dependencies: npmlog: 6.0.2 - dev: true - /@lerna/version@5.6.2(nx@14.8.8)(typescript@4.9.5): - resolution: {integrity: sha512-odNSR2rTbHW++xMZSQKu/F6Syrd/sUvwDLPaMKktoOSPKmycHt/eWcuQQyACdtc43Iqeu4uQd7PCLsniqOVFrw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/version@5.6.2(encoding@0.1.13)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5)': dependencies: '@lerna/check-working-tree': 5.6.2 '@lerna/child-process': 5.6.2 '@lerna/collect-updates': 5.6.2 '@lerna/command': 5.6.2 '@lerna/conventional-commits': 5.6.2 - '@lerna/github-client': 5.6.2 - '@lerna/gitlab-client': 5.6.2 + '@lerna/github-client': 5.6.2(encoding@0.1.13) + '@lerna/gitlab-client': 5.6.2(encoding@0.1.13) '@lerna/output': 5.6.2 '@lerna/prerelease-id-from-version': 5.6.2 '@lerna/prompt': 5.6.2 @@ -23973,7 +36473,7 @@ packages: '@lerna/run-topologically': 5.6.2 '@lerna/temp-write': 5.6.2 '@lerna/validation-error': 5.6.2 - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) chalk: 4.1.2 dedent: 0.7.0 load-json-file: 6.2.0 @@ -23992,28 +36492,20 @@ packages: - nx - supports-color - typescript - dev: true - /@lerna/write-log-file@5.6.2: - resolution: {integrity: sha512-J09l18QnWQ3sXIRwuJkjXY3+KwPR2uO5NgbZGE3GXJK1V/LzOBRMvjGAIbuQHXw25uqe7vpLUpB8drtnFrubCQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/write-log-file@5.6.2': dependencies: npmlog: 6.0.2 write-file-atomic: 4.0.2 - dev: true - /@manypkg/find-root@1.1.0: - resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} + '@manypkg/find-root@1.1.0': dependencies: '@babel/runtime': 7.24.7 '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 - dev: true - /@manypkg/get-packages@1.1.3: - resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} + '@manypkg/get-packages@1.1.3': dependencies: '@babel/runtime': 7.24.7 '@changesets/types': 4.1.0 @@ -24021,10 +36513,8 @@ packages: fs-extra: 8.1.0 globby: 11.1.0 read-yaml-file: 1.1.0 - dev: true - /@mdx-js/mdx@1.6.22: - resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==} + '@mdx-js/mdx@1.6.22': dependencies: '@babel/core': 7.12.9 '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9) @@ -24048,21 +36538,13 @@ packages: transitivePeerDependencies: - supports-color - /@mdx-js/react@1.6.22(react@18.3.1): - resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} - peerDependencies: - react: ^16.13.1 || ^17.0.0 + '@mdx-js/react@1.6.22(react@18.3.1)': dependencies: react: 18.3.1 - dev: true - /@mdx-js/util@1.6.22: - resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==} + '@mdx-js/util@1.6.22': {} - /@microsoft/applicationinsights-analytics-js@3.2.2(tslib@2.6.3): - resolution: {integrity: sha512-i6/7hYO7lFPE1rMARG6c4bGTuUJUiPb9GRfwMhzArpG39fqduCWpH6y2PdlwZzjyDQAxIOgBiSfLddgsAVoYOA==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-analytics-js@3.2.2(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-common': 3.2.2(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 3.2.2(tslib@2.6.3) @@ -24070,12 +36552,8 @@ packages: '@microsoft/dynamicproto-js': 2.0.3 '@nevware21/ts-utils': 0.11.2 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-cfgsync-js@3.2.2(tslib@2.6.3): - resolution: {integrity: sha512-W4sQmQC9ZXN8ETYHcXQZl7kMACDkiC/a26OYx9IW8CzgZUI0U3hfDRonaj/1AMkM6zZbC2Zuto4vqpex7abJEg==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-cfgsync-js@3.2.2(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-common': 3.2.2(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 3.2.2(tslib@2.6.3) @@ -24084,12 +36562,8 @@ packages: '@nevware21/ts-async': 0.5.1 '@nevware21/ts-utils': 0.11.2 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-channel-js@3.2.2(tslib@2.6.3): - resolution: {integrity: sha512-4ruoKxgZYYa+K8JJu8RMY0egKazS8xClbx70NQHa/rJ7JYFgN3OIEIBZtFoMcHR8Vg7MEsNE5/wV6o7WWJkVIA==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-channel-js@3.2.2(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-common': 3.2.2(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 3.2.2(tslib@2.6.3) @@ -24098,57 +36572,37 @@ packages: '@nevware21/ts-async': 0.5.1 '@nevware21/ts-utils': 0.11.2 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-common@2.8.18(tslib@2.6.3): - resolution: {integrity: sha512-/PBRmRL6rFCoO3vWpIEHuFnu+TinEYRKWOj+I+XVUH5myZpv+nYvaRdwryVTkmCYxLyL9kxtNn7hQx8DBlhdSw==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-common@2.8.18(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-core-js': 2.8.18(tslib@2.6.3) '@microsoft/applicationinsights-shims': 2.0.2 '@microsoft/dynamicproto-js': 1.1.11 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-common@3.2.2(tslib@2.6.3): - resolution: {integrity: sha512-e1C35gdkFSzWyUUR1S8FvisXW3nT3p6wWsLNs+vUKLOTQzsvW3XpNMVtNCq4MfHWiYDuz1lPSzo2eENaij1fVA==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-common@3.2.2(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-core-js': 3.2.2(tslib@2.6.3) '@microsoft/applicationinsights-shims': 3.0.1 '@microsoft/dynamicproto-js': 2.0.3 '@nevware21/ts-utils': 0.11.2 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-core-js@2.8.18(tslib@2.6.3): - resolution: {integrity: sha512-yPHRZFLpnEO0uSgFPM1BLMRRwjoten9YBbn4pJRbCT4PigLnj748knmWsMwXIdcehtkRTYz78kPYa/LWP7nvmA==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-core-js@2.8.18(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-shims': 2.0.2 '@microsoft/dynamicproto-js': 1.1.11 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-core-js@3.2.2(tslib@2.6.3): - resolution: {integrity: sha512-dF6LZ4ahdhoHufw+N7OXRDzWT8QN193Dvpd8GLqEZdR/KtCTofPSI63yumu+ZkzKYadf1S3w2xg0OmbdyXexoQ==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-core-js@3.2.2(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-shims': 3.0.1 '@microsoft/dynamicproto-js': 2.0.3 '@nevware21/ts-async': 0.5.1 '@nevware21/ts-utils': 0.11.2 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-dependencies-js@3.2.2(tslib@2.6.3): - resolution: {integrity: sha512-15EUVU6Kh0B400i/2YNy+V9xMhOwnpzAMTAiyFo90Q1SC5rJIsmzqjAWQnFmxAeq5YQoZ2FuQQpD2qsUajVEQQ==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-dependencies-js@3.2.2(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-common': 3.2.2(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 3.2.2(tslib@2.6.3) @@ -24157,12 +36611,8 @@ packages: '@nevware21/ts-async': 0.5.1 '@nevware21/ts-utils': 0.11.2 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-properties-js@3.2.2(tslib@2.6.3): - resolution: {integrity: sha512-ovT123foF4WquHdk6f51YpRacx7ZgST7iwqRA/jshy/7NVqlu05JbrVB8IlrxNausdaRwX5CvSCca+SQbOW0ZA==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-properties-js@3.2.2(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-common': 3.2.2(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 3.2.2(tslib@2.6.3) @@ -24170,14 +36620,8 @@ packages: '@microsoft/dynamicproto-js': 2.0.3 '@nevware21/ts-utils': 0.11.2 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-react-js@3.4.3(history@4.10.1)(react@18.3.1)(tslib@2.6.3): - resolution: {integrity: sha512-+IIPDYU7DKBwByN7lK/mkMGrnWMGdyIsEZfDzBh/fKDZgGGGgH9B3WHej+vIpdwBcVaPbYx++lonTshn56C9/A==} - peerDependencies: - history: '>= 4.10.1' - react: '>= 17.0.1' - tslib: '*' + '@microsoft/applicationinsights-react-js@3.4.3(history@4.10.1)(react@18.3.1)(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-common': 2.8.18(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 2.8.18(tslib@2.6.3) @@ -24186,22 +36630,14 @@ packages: history: 4.10.1 react: 18.3.1 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-shims@2.0.2: - resolution: {integrity: sha512-PoHEgsnmcqruLNHZ/amACqdJ6YYQpED0KSRe6J7gIJTtpZC1FfFU9b1fmDKDKtFoUSrPzEh1qzO3kmRZP0betg==} - dev: false + '@microsoft/applicationinsights-shims@2.0.2': {} - /@microsoft/applicationinsights-shims@3.0.1: - resolution: {integrity: sha512-DKwboF47H1nb33rSUfjqI6ryX29v+2QWcTrRvcQDA32AZr5Ilkr7whOOSsD1aBzwqX0RJEIP1Z81jfE3NBm/Lg==} + '@microsoft/applicationinsights-shims@3.0.1': dependencies: '@nevware21/ts-utils': 0.11.2 - dev: false - /@microsoft/applicationinsights-web@3.2.2(tslib@2.6.3): - resolution: {integrity: sha512-DBJ83Fe7nHzH7QgMKFQrBN/Gbhoo5JgMQkBzJeTb5hMfNZUFOBEHWjytBdU9MEZVpa+Vk+RPQ72IOc0txbnJYw==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-web@3.2.2(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-analytics-js': 3.2.2(tslib@2.6.3) '@microsoft/applicationinsights-cfgsync-js': 3.2.2(tslib@2.6.3) @@ -24215,34 +36651,23 @@ packages: '@nevware21/ts-async': 0.5.1 '@nevware21/ts-utils': 0.11.2 tslib: 2.6.3 - dev: false - /@microsoft/dynamicproto-js@1.1.11: - resolution: {integrity: sha512-gNw9z9LbqLV+WadZ6/MMrWwO3e0LuoUH1wve/1iPsBNbgqeVCiB0EZFNNj2lysxS2gkqoF9hmyVaG3MoM1BkxA==} - dev: false + '@microsoft/dynamicproto-js@1.1.11': {} - /@microsoft/dynamicproto-js@2.0.3: - resolution: {integrity: sha512-JTWTU80rMy3mdxOjjpaiDQsTLZ6YSGGqsjURsY6AUQtIj0udlF/jYmhdLZu8693ZIC0T1IwYnFa0+QeiMnziBA==} + '@microsoft/dynamicproto-js@2.0.3': dependencies: '@nevware21/ts-utils': 0.11.2 - dev: false - /@microsoft/tsdoc-config@0.16.2: - resolution: {integrity: sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==} + '@microsoft/tsdoc-config@0.16.2': dependencies: '@microsoft/tsdoc': 0.14.2 ajv: 6.12.6 jju: 1.4.0 resolve: 1.19.0 - dev: true - /@microsoft/tsdoc@0.14.2: - resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==} - dev: true + '@microsoft/tsdoc@0.14.2': {} - /@mole-inc/bin-wrapper@8.0.1: - resolution: {integrity: sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + '@mole-inc/bin-wrapper@8.0.1': dependencies: bin-check: 4.1.0 bin-version-check: 5.1.0 @@ -24252,244 +36677,106 @@ packages: filenamify: 5.1.1 got: 11.8.6 os-filter-obj: 2.0.0 - dev: true - /@monaco-editor/loader@1.4.0(monaco-editor@0.50.0): - resolution: {integrity: sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==} - peerDependencies: - monaco-editor: '>= 0.21.0 < 1' + '@monaco-editor/loader@1.4.0(monaco-editor@0.50.0)': dependencies: monaco-editor: 0.50.0 state-local: 1.0.7 - dev: false - /@monaco-editor/react@4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-RFkU9/i7cN2bsq/iTkurMWOEErmYcY6JiQI3Jn+WeR/FGISH8JbHERjpS9oRuSOPvDMJI0Z8nJeKkbOs9sBYQw==} - peerDependencies: - monaco-editor: '>= 0.25.0 < 1' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@monaco-editor/react@4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@monaco-editor/loader': 1.4.0(monaco-editor@0.50.0) monaco-editor: 0.50.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false - /@mrmlnc/readdir-enhanced@2.2.1: - resolution: {integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==} - engines: {node: '>=4'} + '@mrmlnc/readdir-enhanced@2.2.1': dependencies: call-me-maybe: 1.0.2 glob-to-regexp: 0.3.0 - /@mswjs/cookies@0.1.7: - resolution: {integrity: sha512-bDg1ReMBx+PYDB4Pk7y1Q07Zz1iKIEUWQpkEXiA2lEWg9gvOZ8UBmGXilCEUvyYoRFlmr/9iXTRR69TrgSwX/Q==} + '@mswjs/cookies@0.1.7': dependencies: '@types/set-cookie-parser': 2.4.9 set-cookie-parser: 2.6.0 - dev: true - /@mswjs/interceptors@0.12.7: - resolution: {integrity: sha512-eGjZ3JRAt0Fzi5FgXiV/P3bJGj0NqsN7vBS0J0FO2AQRQ0jCKQS4lEFm4wvlSgKQNfeuc/Vz6d81VtU3Gkx/zg==} + '@mswjs/interceptors@0.12.7': dependencies: '@open-draft/until': 1.0.3 '@xmldom/xmldom': 0.7.13 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) headers-utils: 3.0.2 outvariant: 1.4.2 strict-event-emitter: 0.2.8 transitivePeerDependencies: - supports-color - dev: true - /@mui/base@5.0.0-alpha.108(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-KjzRUts2i/ODlMfywhFTqTzQl+Cr9nlDSZxJcnYjrbOV/iRyQNBTDoiFJt+XEdRi0fZBHnk74AFbnP56ehybsA==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@mui/base@5.0.0-alpha.128(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 '@emotion/is-prop-valid': 1.2.2 '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) '@popperjs/core': 2.11.8 - '@types/react': 18.0.18 clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - dev: false - - /@mui/base@5.0.0-alpha.128(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-wub3wxNN+hUp8hzilMlXX3sZrPo75vsy1cXEQpqdTfIFlE9HprP1jlulFiPg5tfPst2OKmygXr2hhmgvAKRrzQ==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@babel/runtime': 7.24.7 - '@emotion/is-prop-valid': 1.2.2 - '@mui/types': 7.2.14(@types/react@18.0.18) - '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@popperjs/core': 2.11.8 + optionalDependencies: '@types/react': 18.0.18 - clsx: 1.2.1 - prop-types: 15.8.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-is: 18.3.1 - dev: false - /@mui/base@5.0.0-beta.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-ap+juKvt8R8n3cBqd/pGtZydQ4v2I/hgJKnvJRGjpSh3RvsvnDHO4rXov8MHQlH6VqpOekwgilFLGxMZjNTucA==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@mui/base@5.0.0-beta.0(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 '@emotion/is-prop-valid': 1.2.2 '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) '@popperjs/core': 2.11.8 - '@types/react': 18.0.18 clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - dev: false + optionalDependencies: + '@types/react': 18.0.18 - /@mui/core-downloads-tracker@5.15.20: - resolution: {integrity: sha512-DoL2ppgldL16utL8nNyj/P12f8mCNdx/Hb/AJnX9rLY4b52hCMIx1kH83pbXQ6uMy6n54M3StmEbvSGoj2OFuA==} - dev: false + '@mui/core-downloads-tracker@5.15.20': {} - /@mui/icons-material@5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1): - resolution: {integrity: sha512-oGcKmCuHaYbAAoLN67WKSXtHmEgyWcJToT1uRtmPyxMj9N5uqwc/mRtEnst4Wj/eGr+zYH2FiZQ79v9k7kSk1Q==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@mui/material': 5.13.0 - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 - '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@types/react': 18.0.18 + '@mui/material': 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - dev: false - - /@mui/lab@5.0.0-alpha.110(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-SkX5QNbaWouO7BXvb8zpFzDizLt7UzgaebqKSvFJLF28OXiNDfPVCle6IIB4g7hAyb/o19Kbhxs9V+LwK5gQzA==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@mui/material': 5.13.0 + optionalDependencies: '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true + + '@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) - '@mui/base': 5.0.0-alpha.108(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + '@mui/base': 5.0.0-alpha.128(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@types/react': 18.0.18 clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - dev: false - - /@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-niv2mFgSTgdrRJXbWoX9pIivhe80BaFXfdWajXe1bS8VYH3Y5WyJpk8KiU3rbHyJswbFEGd8N6EBBrq11X8yMA==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@mui/material': 5.13.0 - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true - dependencies: - '@babel/runtime': 7.24.7 + optionalDependencies: '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) - '@mui/base': 5.0.0-alpha.128(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) - '@mui/types': 7.2.14(@types/react@18.0.18) - '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@types/react': 18.0.18 - clsx: 1.2.1 - prop-types: 15.8.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-is: 18.3.1 - dev: false - /@mui/material@5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-ckS+9tCpAzpdJdaTF+btF0b6mF9wbXg/EVKtnoAWYi0UKXoXBAVvEUMNpLGA5xdpCdf+A6fPbVUEHs9TsfU+Yw==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true + '@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) - '@mui/base': 5.0.0-beta.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/base': 5.0.0-beta.0(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/core-downloads-tracker': 5.15.20 - '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@types/react': 18.0.18 '@types/react-transition-group': 4.4.10 clsx: 1.2.1 csstype: 3.1.3 @@ -24497,119 +36784,67 @@ packages: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - react-transition-group: 4.4.5(react-dom@18.3.1)(react@18.3.1) - dev: false - - /@mui/private-theming@5.15.20(@types/react@18.0.18)(react@18.3.1): - resolution: {integrity: sha512-BK8F94AIqSrnaPYXf2KAOjGZJgWfvqAVQ2gVR3EryvQFtuBnG6RwodxrCvd3B48VuMy6Wsk897+lQMUxJyk+6g==} - engines: {node: '>=12.0.0'} - peerDependencies: + react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + optionalDependencies: + '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + + '@mui/private-theming@5.15.20(@types/react@18.0.18)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@types/react': 18.0.18 prop-types: 15.8.1 react: 18.3.1 - dev: false + optionalDependencies: + '@types/react': 18.0.18 - /@mui/styled-engine@5.15.14(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.3.1): - resolution: {integrity: sha512-RILkuVD8gY6PvjZjqnWhz8fu68dVkqhM5+jYWfB5yhlSQKg+2rHkmEwm75XIeAqI3qwOndK6zELK5H6Zxn4NHw==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.4.1 - '@emotion/styled': ^11.3.0 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true + '@mui/styled-engine@5.15.14(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 '@emotion/cache': 11.11.0 - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) csstype: 3.1.3 prop-types: 15.8.1 react: 18.3.1 - dev: false + optionalDependencies: + '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) - /@mui/system@5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1): - resolution: {integrity: sha512-LoMq4IlAAhxzL2VNUDBTQxAb4chnBe8JvRINVNDiMtHE2PiPOoHlhOPutSxEbaL5mkECPVWSv6p8JEV+uykwIA==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true + '@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@mui/private-theming': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@mui/styled-engine': 5.15.14(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.3.1) + '@mui/styled-engine': 5.15.14(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(react@18.3.1) '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@types/react': 18.0.18 clsx: 2.1.1 csstype: 3.1.3 prop-types: 15.8.1 react: 18.3.1 - dev: false - - /@mui/types@7.2.14(@types/react@18.0.18): - resolution: {integrity: sha512-MZsBZ4q4HfzBsywtXgM1Ksj6HDThtiwmOKUXH1pKYISI9gAVXCNHNpo7TlGoGrBaYWZTdNoirIN7JsQcQUjmQQ==} - peerDependencies: - '@types/react': 18.0.18 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: + optionalDependencies: + '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@types/react': 18.0.18 - dev: false - /@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1): - resolution: {integrity: sha512-mAbYx0sovrnpAu1zHc3MDIhPqL8RPVC5W5xcO1b7PiSCJPtckIZmBkp8hefamAvUiAV8gpfMOM6Zb+eSisbI2A==} - engines: {node: '>=12.0.0'} - peerDependencies: + '@mui/types@7.2.14(@types/react@18.0.18)': + optionalDependencies: '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + + '@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 '@types/prop-types': 15.7.12 - '@types/react': 18.0.18 prop-types: 15.8.1 react: 18.3.1 react-is: 18.3.1 - dev: false + optionalDependencies: + '@types/react': 18.0.18 - /@mui/x-data-grid@6.20.1(@mui/material@5.13.0)(@mui/system@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-x1muWWIG9otkk4FuvoTxH3I4foyA1caFu8ZC9TvMQ+7NSBKcfy/JeLQfKkZk8ACUUosvENdrRIkhqU2xdIqIVg==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@mui/material': 5.13.0 - '@mui/system': ^5.4.1 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 + '@mui/x-data-grid@6.20.1(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 - '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) clsx: 2.1.1 prop-types: 15.8.1 @@ -24618,50 +36853,31 @@ packages: reselect: 4.1.8 transitivePeerDependencies: - '@types/react' - dev: false - /@nevware21/ts-async@0.5.1: - resolution: {integrity: sha512-O2kN8n2HpDWJ7Oji+oTMnhITrCndmrNvrHbGDwAIBydx+FWvLE/vrw4QwnRRMvSCa2AJrcP59Ryklxv30KfkWQ==} + '@nevware21/ts-async@0.5.1': dependencies: '@nevware21/ts-utils': 0.11.2 - dev: false - /@nevware21/ts-utils@0.11.2: - resolution: {integrity: sha512-80W8BkS09kkGuUHJX50Fqq+QqAslxUaOQytH+3JhRacXs1EpEt2JOOkYKytqFZAYir3SeH9fahniEaDzIBxlUw==} - dev: false + '@nevware21/ts-utils@0.11.2': {} - /@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3: - resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==} - requiresBuild: true - dev: true + '@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3': optional: true - /@nodelib/fs.scandir@2.1.5: - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} + '@nodelib/fs.scandir@2.1.5': dependencies: '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 - /@nodelib/fs.stat@1.1.3: - resolution: {integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==} - engines: {node: '>= 6'} + '@nodelib/fs.stat@1.1.3': {} - /@nodelib/fs.stat@2.0.5: - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} + '@nodelib/fs.stat@2.0.5': {} - /@nodelib/fs.walk@1.2.8: - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} + '@nodelib/fs.walk@1.2.8': dependencies: '@nodelib/fs.scandir': 2.1.5 fastq: 1.17.1 - /@npmcli/arborist@5.3.0: - resolution: {integrity: sha512-+rZ9zgL1lnbl8Xbb1NQdMjveOMwj4lIYfcDtyJHHi5x4X8jtR6m8SXooJMZy5vmFVZ8w7A2Bnd/oX9eTuU8w5A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true + '@npmcli/arborist@5.3.0': dependencies: '@isaacs/string-locale-compare': 1.1.0 '@npmcli/installed-package-contents': 1.0.7 @@ -24700,25 +36916,18 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@npmcli/fs@1.1.1: - resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} + '@npmcli/fs@1.1.1': dependencies: '@gar/promisify': 1.1.3 semver: 7.6.2 - /@npmcli/fs@2.1.2: - resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + '@npmcli/fs@2.1.2': dependencies: '@gar/promisify': 1.1.3 semver: 7.6.2 - dev: true - /@npmcli/git@3.0.2: - resolution: {integrity: sha512-CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + '@npmcli/git@3.0.2': dependencies: '@npmcli/promise-spawn': 3.0.0 lru-cache: 7.18.3 @@ -24731,30 +36940,20 @@ packages: which: 2.0.2 transitivePeerDependencies: - bluebird - dev: true - /@npmcli/installed-package-contents@1.0.7: - resolution: {integrity: sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==} - engines: {node: '>= 10'} - hasBin: true + '@npmcli/installed-package-contents@1.0.7': dependencies: npm-bundled: 1.1.2 npm-normalize-package-bin: 1.0.1 - dev: true - /@npmcli/map-workspaces@2.0.4: - resolution: {integrity: sha512-bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + '@npmcli/map-workspaces@2.0.4': dependencies: '@npmcli/name-from-folder': 1.0.1 glob: 8.1.0 minimatch: 5.1.6 read-package-json-fast: 2.0.3 - dev: true - /@npmcli/metavuln-calculator@3.1.1: - resolution: {integrity: sha512-n69ygIaqAedecLeVH3KnO39M6ZHiJ2dEv5A7DGvcqCB8q17BGUgW8QaanIkbWUo2aYGZqJaOORTLAlIvKjNDKA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + '@npmcli/metavuln-calculator@3.1.1': dependencies: cacache: 16.1.3 json-parse-even-better-errors: 2.3.1 @@ -24763,51 +36962,30 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@npmcli/move-file@1.1.2: - resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} - engines: {node: '>=10'} - deprecated: This functionality has been moved to @npmcli/fs + '@npmcli/move-file@1.1.2': dependencies: mkdirp: 1.0.4 rimraf: 3.0.2 - /@npmcli/move-file@2.0.1: - resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This functionality has been moved to @npmcli/fs + '@npmcli/move-file@2.0.1': dependencies: mkdirp: 1.0.4 rimraf: 3.0.2 - dev: true - /@npmcli/name-from-folder@1.0.1: - resolution: {integrity: sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA==} - dev: true + '@npmcli/name-from-folder@1.0.1': {} - /@npmcli/node-gyp@2.0.0: - resolution: {integrity: sha512-doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dev: true + '@npmcli/node-gyp@2.0.0': {} - /@npmcli/package-json@2.0.0: - resolution: {integrity: sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + '@npmcli/package-json@2.0.0': dependencies: json-parse-even-better-errors: 2.3.1 - dev: true - /@npmcli/promise-spawn@3.0.0: - resolution: {integrity: sha512-s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + '@npmcli/promise-spawn@3.0.0': dependencies: infer-owner: 1.0.4 - dev: true - /@npmcli/run-script@4.2.1: - resolution: {integrity: sha512-7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + '@npmcli/run-script@4.2.1': dependencies: '@npmcli/node-gyp': 2.0.0 '@npmcli/promise-spawn': 3.0.0 @@ -24817,43 +36995,35 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@nrwl/cli@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5): - resolution: {integrity: sha512-xV1Mu93w5e1Vsd3Pgy9eFC1MHjuLxAAHta5cNgQGxjev+XpnNrGb0x978zpenX7dJ0Pww3Vvi/vdcsaDNg6z4Q==} + '@nrwl/cli@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))': dependencies: - nx: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5) + nx: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)) transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug - dev: true - /@nrwl/cypress@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-CSrs4YPZnDFcwyt2zKtyxVNdJH+UMRyg0L3h5lCpSJIOYYr2fUuVKUmq3Z4BzCt1/+q8sA2x4HjRMLhtn6ZbGg==} - peerDependencies: - cypress: '>= 3 < 11' - peerDependenciesMeta: - cypress: - optional: true + '@nrwl/cypress@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 '@babel/preset-env': 7.24.7(@babel/core@7.24.7) - '@cypress/webpack-preprocessor': 5.17.1(@babel/core@7.24.7)(@babel/preset-env@7.24.7)(babel-loader@8.3.0)(webpack@5.84.1) - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.2)(typescript@4.9.5) - '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5) + '@cypress/webpack-preprocessor': 5.17.1(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(babel-loader@8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) chalk: 4.1.0 - cypress: 9.7.0 dotenv: 10.0.0 - fork-ts-checker-webpack-plugin: 7.2.13(typescript@4.9.5)(webpack@5.84.1) - ts-loader: 9.5.1(typescript@4.9.5)(webpack@5.84.1) + fork-ts-checker-webpack-plugin: 7.2.13(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + ts-loader: 9.5.1(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) tsconfig-paths-webpack-plugin: 3.5.2 tslib: 2.6.3 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) webpack-node-externals: 3.0.0 + optionalDependencies: + cypress: 9.7.0 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' @@ -24870,39 +37040,28 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: true - /@nrwl/devkit@14.8.8(nx@14.8.8)(typescript@4.9.5): - resolution: {integrity: sha512-NLgLRfGyv9aMHxGi+rrVRPLYbuqYoGcRVVr0bo3PP1cVSry1THBoLivvPzqf/tniM1S4EzJdrOSau7dfPVGNFA==} - peerDependencies: - nx: '>= 13.10 <= 15' + '@nrwl/devkit@14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5)': dependencies: '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) ejs: 3.1.10 ignore: 5.3.1 - nx: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5) + nx: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)) tslib: 2.6.3 transitivePeerDependencies: - typescript - dev: true - /@nrwl/eslint-plugin-nx@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(@typescript-eslint/parser@4.33.0)(eslint-config-prettier@8.1.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5): - resolution: {integrity: sha512-adML8IqZTRroEJXQiol65Zwe531ryu1Ayhk0N28ZhBGq2T4IFLNaZwHkZtOWSfOpAFFkYIL6N+LfIHlRKHLUYg==} - peerDependencies: - '@typescript-eslint/parser': ^5.29.0 - eslint-config-prettier: ^8.1.0 - peerDependenciesMeta: - eslint-config-prettier: - optional: true + '@nrwl/eslint-plugin-nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint-config-prettier@8.1.0(eslint@7.32.0))(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)': dependencies: - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@4.9.5) chalk: 4.1.0 confusing-browser-globals: 1.0.11 - eslint-config-prettier: 8.1.0(eslint@7.32.0) semver: 7.3.4 + optionalDependencies: + eslint-config-prettier: 8.1.0(eslint@7.32.0) transitivePeerDependencies: - '@swc-node/register' - '@swc/core' @@ -24915,19 +37074,17 @@ packages: - supports-color - ts-node - typescript - dev: true - /@nrwl/jest@14.8.8(@types/node@13.13.52)(nx@14.8.8)(ts-node@10.9.1)(typescript@4.9.5): - resolution: {integrity: sha512-zyUKxKmd6joaSPOniKzvHNp2U4kilrFXAeLDsuKbxcXQSQjO7hy7/rFZbU5jfB82Es41HrrL86W8gLAgLN421w==} + '@nrwl/jest@14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)': dependencies: - '@jest/reporters': 28.1.1 + '@jest/reporters': 28.1.1(node-notifier@8.0.2) '@jest/test-result': 28.1.1 - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) chalk: 4.1.0 dotenv: 10.0.0 identity-obj-proxy: 3.0.0 - jest-config: 28.1.1(@types/node@13.13.52)(ts-node@10.9.1) + jest-config: 28.1.1(@types/node@13.13.52)(ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-resolve: 28.1.1 jest-util: 28.1.1 resolve.exports: 1.1.0 @@ -24939,19 +37096,17 @@ packages: - supports-color - ts-node - typescript - dev: true - /@nrwl/jest@14.8.8(@types/node@13.13.52)(nx@14.8.8)(ts-node@10.9.2)(typescript@4.9.5): - resolution: {integrity: sha512-zyUKxKmd6joaSPOniKzvHNp2U4kilrFXAeLDsuKbxcXQSQjO7hy7/rFZbU5jfB82Es41HrrL86W8gLAgLN421w==} + '@nrwl/jest@14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)': dependencies: - '@jest/reporters': 28.1.1 + '@jest/reporters': 28.1.1(node-notifier@8.0.2) '@jest/test-result': 28.1.1 - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) chalk: 4.1.0 dotenv: 10.0.0 identity-obj-proxy: 3.0.0 - jest-config: 28.1.1(@types/node@13.13.52)(ts-node@10.9.2) + jest-config: 28.1.1(@types/node@13.13.52)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-resolve: 28.1.1 jest-util: 28.1.1 resolve.exports: 1.1.0 @@ -24963,15 +37118,13 @@ packages: - supports-color - ts-node - typescript - dev: true - /@nrwl/js@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.1)(typescript@4.9.5): - resolution: {integrity: sha512-U9gAREO0ZOu/pMDrO05f2Z88gxhIyulqlhlbe05PgFYkPXFR712bSKZX2dIH9P1Buk7QYzQWz5vpnGrX0kV8VQ==} + '@nrwl/js@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)': dependencies: - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/jest': 14.8.8(@types/node@13.13.52)(nx@14.8.8)(ts-node@10.9.1)(typescript@4.9.5) - '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.1)(typescript@4.9.5) - '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.1)(typescript@4.9.5) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/jest': 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) '@parcel/watcher': 2.0.4 chalk: 4.1.0 fast-glob: 3.2.7 @@ -24993,15 +37146,13 @@ packages: - supports-color - ts-node - typescript - dev: true - /@nrwl/js@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5): - resolution: {integrity: sha512-U9gAREO0ZOu/pMDrO05f2Z88gxhIyulqlhlbe05PgFYkPXFR712bSKZX2dIH9P1Buk7QYzQWz5vpnGrX0kV8VQ==} + '@nrwl/js@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)': dependencies: - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/jest': 14.8.8(@types/node@13.13.52)(nx@14.8.8)(ts-node@10.9.2)(typescript@4.9.5) - '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.2)(typescript@4.9.5) - '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/jest': 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) '@parcel/watcher': 2.0.4 chalk: 4.1.0 fast-glob: 3.2.7 @@ -25023,23 +37174,17 @@ packages: - supports-color - ts-node - typescript - dev: true - /@nrwl/linter@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.1)(typescript@4.9.5): - resolution: {integrity: sha512-Siu4KogGRJpESVgWqv1mXM28aqs7e/Uerb4miaSflCfXAhJo7kbsALfDOomhqubvGyE5r4dyorLMtVPbZA5iFg==} - peerDependencies: - eslint: ^8.0.0 - peerDependenciesMeta: - eslint: - optional: true + '@nrwl/linter@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)': dependencies: - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/jest': 14.8.8(@types/node@13.13.52)(nx@14.8.8)(ts-node@10.9.1)(typescript@4.9.5) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/jest': 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) - eslint: 7.32.0 - nx: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5) + nx: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)) tmp: 0.2.3 tslib: 2.6.3 + optionalDependencies: + eslint: 7.32.0 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' @@ -25049,23 +37194,17 @@ packages: - supports-color - ts-node - typescript - dev: true - /@nrwl/linter@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.2)(typescript@4.9.5): - resolution: {integrity: sha512-Siu4KogGRJpESVgWqv1mXM28aqs7e/Uerb4miaSflCfXAhJo7kbsALfDOomhqubvGyE5r4dyorLMtVPbZA5iFg==} - peerDependencies: - eslint: ^8.0.0 - peerDependenciesMeta: - eslint: - optional: true + '@nrwl/linter@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)': dependencies: - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/jest': 14.8.8(@types/node@13.13.52)(nx@14.8.8)(ts-node@10.9.2)(typescript@4.9.5) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/jest': 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) - eslint: 7.32.0 - nx: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5) + nx: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)) tmp: 0.2.3 tslib: 2.6.3 + optionalDependencies: + eslint: 7.32.0 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' @@ -25075,15 +37214,13 @@ packages: - supports-color - ts-node - typescript - dev: true - /@nrwl/nx-plugin@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5): - resolution: {integrity: sha512-A+clJVUMXC1W0JS3W4hTQ5HI1khQrljVuQRIkjWBNNMnRh7CGcgZIfRt2lx9OrbtoU4uX89oT5DaAtcOVsab0Q==} + '@nrwl/nx-plugin@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)': dependencies: - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/jest': 14.8.8(@types/node@13.13.52)(nx@14.8.8)(ts-node@10.9.2)(typescript@4.9.5) - '@nrwl/js': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5) - '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.2)(typescript@4.9.5) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/jest': 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/js': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) dotenv: 10.0.0 fs-extra: 10.1.0 tslib: 2.6.3 @@ -25099,34 +37236,32 @@ packages: - supports-color - ts-node - typescript - dev: true - /@nrwl/react@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(file-loader@2.0.0)(html-webpack-plugin@5.6.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3): - resolution: {integrity: sha512-VzUJGty9lIBi6VbGB8vSA0jnHlE1dPQj4+W6Vhgpdd2bLQCIBXQZQgX895dFQk6KZ3r1MtuikNPsi4YjJbNJ0w==} - dependencies: + ? '@nrwl/react@14.8.8(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/babel__core@7.20.5)(@types/node@13.13.52)(@types/webpack@4.41.38)(cypress@9.7.0)(eslint@7.32.0)(file-loader@2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(sockjs-client@1.6.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(type-fest@4.20.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)' + : dependencies: '@babel/core': 7.24.7 '@babel/preset-react': 7.24.7(@babel/core@7.24.7) - '@nrwl/cypress': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5)(webpack-cli@4.10.0) - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/jest': 14.8.8(@types/node@13.13.52)(nx@14.8.8)(ts-node@10.9.2)(typescript@4.9.5) - '@nrwl/js': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5) - '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.2)(typescript@4.9.5) - '@nrwl/storybook': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5)(webpack-cli@4.10.0) - '@nrwl/web': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(html-webpack-plugin@5.6.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5)(webpack-cli@4.10.0) - '@nrwl/webpack': 14.8.8(@babel/core@7.24.7)(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(html-webpack-plugin@5.6.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.10.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + '@nrwl/cypress': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/jest': 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/js': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/storybook': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@nrwl/web': 14.8.8(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/babel__core@7.20.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@nrwl/webpack': 14.8.8(@babel/core@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(@types/webpack@4.41.38)(react-refresh@0.10.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@svgr/webpack': 6.5.1 chalk: 4.1.0 - css-loader: 6.11.0(webpack@5.84.1) + css-loader: 6.11.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) minimatch: 3.0.5 react-refresh: 0.10.0 semver: 7.3.4 - style-loader: 3.3.4(webpack@5.84.1) + style-loader: 3.3.4(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) stylus: 0.55.0 - stylus-loader: 6.2.0(stylus@0.55.0)(webpack@5.84.1) - url-loader: 4.1.1(file-loader@2.0.0)(webpack@5.84.1) - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + stylus-loader: 6.2.0(stylus@0.55.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + url-loader: 4.1.1(file-loader@2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) webpack-merge: 5.10.0 transitivePeerDependencies: - '@babel/traverse' @@ -25165,15 +37300,13 @@ packages: - webpack-dev-server - webpack-hot-middleware - webpack-plugin-serve - dev: true - /@nrwl/rollup@14.8.8(@babel/core@7.24.7)(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5): - resolution: {integrity: sha512-l9RSwMjBVi1Qz6Uf5g6za7vtRD5VYPcKV+fUn6sUvglCGUcxH0bP+RARbgNK0NpibfoCp+vo2qmMMhVmqbuHpQ==} + '@nrwl/rollup@14.8.8(@babel/core@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/babel__core@7.20.5)(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)': dependencies: - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/js': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5) - '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5) - '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.7)(rollup@2.79.1) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/js': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.7)(@types/babel__core@7.20.5)(rollup@2.79.1) '@rollup/plugin-commonjs': 20.0.0(rollup@2.79.1) '@rollup/plugin-image': 2.1.1(rollup@2.79.1) '@rollup/plugin-json': 4.1.0(rollup@2.79.1) @@ -25187,7 +37320,7 @@ packages: rollup: 2.79.1 rollup-plugin-copy: 3.5.0 rollup-plugin-peer-deps-external: 2.2.4(rollup@2.79.1) - rollup-plugin-postcss: 4.0.2(postcss@8.4.38)(ts-node@10.9.2) + rollup-plugin-postcss: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) rollup-plugin-typescript2: 0.31.2(rollup@2.79.1)(typescript@4.9.5) rxjs: 6.6.7 tslib: 2.6.3 @@ -25205,15 +37338,13 @@ packages: - supports-color - ts-node - typescript - dev: true - /@nrwl/storybook@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-N/ZEfmxqujgxJvF0jXu7UBlZmJpeNITqbXlghx3vuzr2XOh8PmQXFQWa3UYtzSgFbb+T2KwX6Wii83zBnSWJMA==} + '@nrwl/storybook@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: - '@nrwl/cypress': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5)(webpack-cli@4.10.0) - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.2)(typescript@4.9.5) - '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5) + '@nrwl/cypress': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) dotenv: 10.0.0 semver: 7.3.4 transitivePeerDependencies: @@ -25233,21 +37364,16 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: true - /@nrwl/tao@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5): - resolution: {integrity: sha512-cfTNM2cgI1miKLkGemU09v72EEYiRxyRw1jdHJ/zShcvcvt8CZI9mUtcV578Cx1K2yNFLseFkUS0rGh+fbcmrA==} - hasBin: true + '@nrwl/tao@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))': dependencies: - nx: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5) + nx: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)) transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug - dev: true - /@nrwl/web@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(html-webpack-plugin@5.6.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-wsnE9nACCbkSPKHsIhNFI1vVytNAwG8mo0ig6MDbo7y55Lg9zkRhdHxAchCViL12An8l+Qt/hjoQbOdsOuUBaA==} + '@nrwl/web@14.8.8(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/babel__core@7.20.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.7) @@ -25256,17 +37382,17 @@ packages: '@babel/preset-env': 7.24.7(@babel/core@7.24.7) '@babel/preset-typescript': 7.24.7(@babel/core@7.24.7) '@babel/runtime': 7.24.7 - '@nrwl/cypress': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5)(webpack-cli@4.10.0) - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/jest': 14.8.8(@types/node@13.13.52)(nx@14.8.8)(ts-node@10.9.2)(typescript@4.9.5) - '@nrwl/js': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5) - '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.2)(typescript@4.9.5) - '@nrwl/rollup': 14.8.8(@babel/core@7.24.7)(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5) - '@nrwl/webpack': 14.8.8(@babel/core@7.24.7)(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(html-webpack-plugin@5.6.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5) + '@nrwl/cypress': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/jest': 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/js': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/rollup': 14.8.8(@babel/core@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/babel__core@7.20.5)(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/webpack': 14.8.8(@babel/core@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) babel-plugin-const-enum: 1.2.0(@babel/core@7.24.7) babel-plugin-macros: 2.8.0 - babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.24.7) + babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.24.7)(@babel/traverse@7.24.7) chalk: 4.1.0 chokidar: 3.6.0 http-server: 14.1.1 @@ -25301,57 +37427,55 @@ packages: - utf-8-validate - vue-template-compiler - webpack-cli - dev: true - /@nrwl/webpack@14.8.8(@babel/core@7.24.7)(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(html-webpack-plugin@5.6.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-1uKRuP4aMJAFlHnY16J6CpAjkGFzmt+q4hAGDLxtqPDDdk9cDm5Kiiw0yT+xehgE/HCAa9/iRk3VwlTbjs6GzA==} + '@nrwl/webpack@14.8.8(@babel/core@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/js': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.1)(typescript@4.9.5) - '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.1)(typescript@4.9.5) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/js': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) autoprefixer: 10.4.19(postcss@8.4.38) - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) browserslist: 4.23.1 caniuse-lite: 1.0.30001636 chalk: 4.1.0 chokidar: 3.6.0 - copy-webpack-plugin: 10.2.4(webpack@5.84.1) - css-minimizer-webpack-plugin: 3.4.1(webpack@5.84.1) + copy-webpack-plugin: 10.2.4(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + css-minimizer-webpack-plugin: 3.4.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) dotenv: 10.0.0 - file-loader: 6.2.0(webpack@5.84.1) - fork-ts-checker-webpack-plugin: 7.2.13(typescript@4.9.5)(webpack@5.84.1) + file-loader: 6.2.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + fork-ts-checker-webpack-plugin: 7.2.13(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fs-extra: 10.1.0 ignore: 5.3.1 less: 3.12.2 - less-loader: 10.2.0(less@3.12.2)(webpack@5.84.1) - license-webpack-plugin: 4.0.2(webpack@5.84.1) + less-loader: 10.2.0(less@3.12.2)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + license-webpack-plugin: 4.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) loader-utils: 1.2.3 - mini-css-extract-plugin: 2.4.7(webpack@5.84.1) + mini-css-extract-plugin: 2.4.7(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) parse5: 4.0.0 parse5-html-rewriting-stream: 6.0.1 postcss: 8.4.38 postcss-import: 14.1.0(postcss@8.4.38) - postcss-loader: 6.2.1(postcss@8.4.38)(webpack@5.84.1) - raw-loader: 4.0.2(webpack@5.84.1) + postcss-loader: 6.2.1(postcss@8.4.38)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + raw-loader: 4.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) rxjs: 6.6.7 sass: 1.77.6 - sass-loader: 12.6.0(sass@1.77.6)(webpack@5.84.1) - source-map-loader: 3.0.2(webpack@5.84.1) - style-loader: 3.3.4(webpack@5.84.1) + sass-loader: 12.6.0(sass@1.77.6)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + source-map-loader: 3.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + style-loader: 3.3.4(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) stylus: 0.55.0 - stylus-loader: 6.2.0(stylus@0.55.0)(webpack@5.84.1) - terser-webpack-plugin: 5.3.10(@swc/core@1.6.5)(webpack@5.84.1) - ts-loader: 9.5.1(typescript@4.9.5)(webpack@5.84.1) - ts-node: 10.9.1(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + stylus-loader: 6.2.0(stylus@0.55.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + terser-webpack-plugin: 5.3.10(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + ts-loader: 9.5.1(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + ts-node: 10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) tsconfig-paths: 3.15.0 tsconfig-paths-webpack-plugin: 3.5.2 tslib: 2.6.3 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - webpack-dev-server: 4.15.2(webpack-cli@4.10.0)(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-dev-server: 4.15.2(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) webpack-merge: 5.10.0 webpack-node-externals: 3.0.0 webpack-sources: 3.2.3 - webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0)(webpack@5.84.1) + webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) transitivePeerDependencies: - '@babel/core' - '@parcel/css' @@ -25378,19 +37502,12 @@ packages: - utf-8-validate - vue-template-compiler - webpack-cli - dev: true - /@nrwl/workspace@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.1)(typescript@4.9.5): - resolution: {integrity: sha512-wxrc8k9XF2Dlq/TujgLWh1bYm4gX5yCooZIQ1EIPvSnnpTl080KKEJ+6YJExQtqE6tOF0W9zVvpkmtVGdS63Ig==} - peerDependencies: - prettier: ^2.6.2 - peerDependenciesMeta: - prettier: - optional: true + '@nrwl/workspace@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)': dependencies: - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/jest': 14.8.8(@types/node@13.13.52)(nx@14.8.8)(ts-node@10.9.1)(typescript@4.9.5) - '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.1)(typescript@4.9.5) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/jest': 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) '@parcel/watcher': 2.0.4 chalk: 4.1.0 chokidar: 3.6.0 @@ -25405,15 +37522,16 @@ packages: ignore: 5.3.1 minimatch: 3.0.5 npm-run-path: 4.0.1 - nx: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5) + nx: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)) open: 8.4.2 - prettier: 1.19.1 rxjs: 6.6.7 semver: 7.3.4 tmp: 0.2.3 tslib: 2.6.3 yargs: 17.7.2 yargs-parser: 21.0.1 + optionalDependencies: + prettier: 1.19.1 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' @@ -25424,19 +37542,12 @@ packages: - supports-color - ts-node - typescript - dev: true - /@nrwl/workspace@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.2)(typescript@4.9.5): - resolution: {integrity: sha512-wxrc8k9XF2Dlq/TujgLWh1bYm4gX5yCooZIQ1EIPvSnnpTl080KKEJ+6YJExQtqE6tOF0W9zVvpkmtVGdS63Ig==} - peerDependencies: - prettier: ^2.6.2 - peerDependenciesMeta: - prettier: - optional: true + '@nrwl/workspace@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)': dependencies: - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/jest': 14.8.8(@types/node@13.13.52)(nx@14.8.8)(ts-node@10.9.2)(typescript@4.9.5) - '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.2)(typescript@4.9.5) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/jest': 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) '@parcel/watcher': 2.0.4 chalk: 4.1.0 chokidar: 3.6.0 @@ -25451,15 +37562,16 @@ packages: ignore: 5.3.1 minimatch: 3.0.5 npm-run-path: 4.0.1 - nx: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5) + nx: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)) open: 8.4.2 - prettier: 1.19.1 rxjs: 6.6.7 semver: 7.3.4 tmp: 0.2.3 tslib: 2.6.3 yargs: 17.7.2 yargs-parser: 21.0.1 + optionalDependencies: + prettier: 1.19.1 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' @@ -25470,285 +37582,138 @@ packages: - supports-color - ts-node - typescript - dev: true - /@octokit/auth-token@3.0.4: - resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==} - engines: {node: '>= 14'} - dev: true + '@octokit/auth-token@3.0.4': {} - /@octokit/core@4.2.4: - resolution: {integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==} - engines: {node: '>= 14'} + '@octokit/core@4.2.4(encoding@0.1.13)': dependencies: '@octokit/auth-token': 3.0.4 - '@octokit/graphql': 5.0.6 - '@octokit/request': 6.2.8 + '@octokit/graphql': 5.0.6(encoding@0.1.13) + '@octokit/request': 6.2.8(encoding@0.1.13) '@octokit/request-error': 3.0.3 '@octokit/types': 9.3.2 before-after-hook: 2.2.3 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding - dev: true - /@octokit/endpoint@7.0.6: - resolution: {integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==} - engines: {node: '>= 14'} + '@octokit/endpoint@7.0.6': dependencies: '@octokit/types': 9.3.2 is-plain-object: 5.0.0 universal-user-agent: 6.0.1 - dev: true - /@octokit/graphql@5.0.6: - resolution: {integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==} - engines: {node: '>= 14'} + '@octokit/graphql@5.0.6(encoding@0.1.13)': dependencies: - '@octokit/request': 6.2.8 + '@octokit/request': 6.2.8(encoding@0.1.13) '@octokit/types': 9.3.2 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding - dev: true - /@octokit/openapi-types@18.1.1: - resolution: {integrity: sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==} - dev: true + '@octokit/openapi-types@18.1.1': {} - /@octokit/plugin-enterprise-rest@6.0.1: - resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==} - dev: true + '@octokit/plugin-enterprise-rest@6.0.1': {} - /@octokit/plugin-paginate-rest@6.1.2(@octokit/core@4.2.4): - resolution: {integrity: sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==} - engines: {node: '>= 14'} - peerDependencies: - '@octokit/core': '>=4' + '@octokit/plugin-paginate-rest@6.1.2(@octokit/core@4.2.4(encoding@0.1.13))': dependencies: - '@octokit/core': 4.2.4 + '@octokit/core': 4.2.4(encoding@0.1.13) '@octokit/tsconfig': 1.0.2 '@octokit/types': 9.3.2 - dev: true - /@octokit/plugin-request-log@1.0.4(@octokit/core@4.2.4): - resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} - peerDependencies: - '@octokit/core': '>=3' + '@octokit/plugin-request-log@1.0.4(@octokit/core@4.2.4(encoding@0.1.13))': dependencies: - '@octokit/core': 4.2.4 - dev: true + '@octokit/core': 4.2.4(encoding@0.1.13) - /@octokit/plugin-rest-endpoint-methods@7.2.3(@octokit/core@4.2.4): - resolution: {integrity: sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==} - engines: {node: '>= 14'} - peerDependencies: - '@octokit/core': '>=3' + '@octokit/plugin-rest-endpoint-methods@7.2.3(@octokit/core@4.2.4(encoding@0.1.13))': dependencies: - '@octokit/core': 4.2.4 + '@octokit/core': 4.2.4(encoding@0.1.13) '@octokit/types': 10.0.0 - dev: true - /@octokit/request-error@3.0.3: - resolution: {integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==} - engines: {node: '>= 14'} + '@octokit/request-error@3.0.3': dependencies: '@octokit/types': 9.3.2 deprecation: 2.3.1 once: 1.4.0 - dev: true - /@octokit/request@6.2.8: - resolution: {integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==} - engines: {node: '>= 14'} + '@octokit/request@6.2.8(encoding@0.1.13)': dependencies: '@octokit/endpoint': 7.0.6 '@octokit/request-error': 3.0.3 '@octokit/types': 9.3.2 is-plain-object: 5.0.0 - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding - dev: true - /@octokit/rest@19.0.13: - resolution: {integrity: sha512-/EzVox5V9gYGdbAI+ovYj3nXQT1TtTHRT+0eZPcuC05UFSWO3mdO9UY1C0i2eLF9Un1ONJkAk+IEtYGAC+TahA==} - engines: {node: '>= 14'} + '@octokit/rest@19.0.13(encoding@0.1.13)': dependencies: - '@octokit/core': 4.2.4 - '@octokit/plugin-paginate-rest': 6.1.2(@octokit/core@4.2.4) - '@octokit/plugin-request-log': 1.0.4(@octokit/core@4.2.4) - '@octokit/plugin-rest-endpoint-methods': 7.2.3(@octokit/core@4.2.4) + '@octokit/core': 4.2.4(encoding@0.1.13) + '@octokit/plugin-paginate-rest': 6.1.2(@octokit/core@4.2.4(encoding@0.1.13)) + '@octokit/plugin-request-log': 1.0.4(@octokit/core@4.2.4(encoding@0.1.13)) + '@octokit/plugin-rest-endpoint-methods': 7.2.3(@octokit/core@4.2.4(encoding@0.1.13)) transitivePeerDependencies: - encoding - dev: true - /@octokit/tsconfig@1.0.2: - resolution: {integrity: sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==} - dev: true - - /@octokit/types@10.0.0: - resolution: {integrity: sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==} - dependencies: - '@octokit/openapi-types': 18.1.1 - dev: true + '@octokit/tsconfig@1.0.2': {} - /@octokit/types@9.3.2: - resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==} + '@octokit/types@10.0.0': dependencies: '@octokit/openapi-types': 18.1.1 - dev: true - - /@one-ini/wasm@0.1.1: - resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} - dev: false - - /@open-draft/until@1.0.3: - resolution: {integrity: sha512-Aq58f5HiWdyDlFffbbSjAlv596h/cOnt2DO1w3DOC7OJ5EHs0hd/nycJfiu9RJbT6Yk6F1knnRRXNSpxoIVZ9Q==} - dev: true - - /@oxygen-ui/primitives@1.11.0: - resolution: {integrity: sha512-z1d75MVfkYYrLiBRFPJJNvcMc1/j5qd9eZZGMXH04Ipg1VbVHj3DGl6BvqRGIHeBdNtm3NgjBwx8VfqHQ/i6HA==} - dev: false - - /@oxygen-ui/react-icons@1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5): - resolution: {integrity: sha512-qb1bCzC6c0xecRHneQy6T0LlGNLMvqomw1kuExubstn1kcebF7Y+TH8hjlrr4F3tp+upTBRXNEsVAUeq24Xnpw==} - peerDependencies: - react: '>=18.0.0' - react-dom: '>=18.0.0' - typescript: '>=4.0.0' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - typescript: 4.9.5 - dev: false - - /@oxygen-ui/react@1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5): - resolution: {integrity: sha512-Ij9E3CvX/fNGQkWbH6ic9LNsldFHeuy/2adksNsJLQgVsbvPct/coXyPYF8duH17dPEu6nksEHJwIfxoz9ekww==} - peerDependencies: - '@emotion/react': ^11.10.5 - '@emotion/styled': ^11.10.5 - '@mui/icons-material': ^5.10.16 - '@mui/lab': 5.0.0-alpha.110 - '@mui/material': 5.13.0 - '@mui/system': ^5.10.16 - '@mui/utils': ^5.10.16 - react: '>=18.0.0' - react-dom: '>=18.0.0' - typescript: '>=4.0.0' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) - '@mui/icons-material': 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) - '@mui/lab': 5.0.0-alpha.110(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) - '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@mui/x-data-grid': 6.20.1(@mui/material@5.13.0)(@mui/system@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@oxygen-ui/primitives': 1.11.0 - '@oxygen-ui/react-icons': 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) - clsx: 1.2.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-world-flags: 1.6.0(react@18.3.1) - typescript: 4.9.5 - transitivePeerDependencies: - - '@types/react' - dev: false - - /@oxygen-ui/react@1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5): - resolution: {integrity: sha512-Ij9E3CvX/fNGQkWbH6ic9LNsldFHeuy/2adksNsJLQgVsbvPct/coXyPYF8duH17dPEu6nksEHJwIfxoz9ekww==} - peerDependencies: - '@emotion/react': ^11.10.5 - '@emotion/styled': ^11.10.5 - '@mui/icons-material': ^5.10.16 - '@mui/lab': 5.0.0-alpha.110 - '@mui/material': 5.13.0 - '@mui/system': ^5.10.16 - '@mui/utils': ^5.10.16 - react: '>=18.0.0' - react-dom: '>=18.0.0' - typescript: '>=4.0.0' - peerDependenciesMeta: - typescript: - optional: true + + '@octokit/types@9.3.2': + dependencies: + '@octokit/openapi-types': 18.1.1 + + '@one-ini/wasm@0.1.1': {} + + '@open-draft/until@1.0.3': {} + + '@oxygen-ui/primitives@1.11.0': {} + + '@oxygen-ui/react-icons@1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)': dependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + typescript: 4.9.5 + + ? '@oxygen-ui/react@1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)' + : dependencies: '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) - '@mui/icons-material': 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) - '@mui/lab': 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + '@mui/icons-material': 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + '@mui/lab': 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@mui/x-data-grid': 6.20.1(@mui/material@5.13.0)(@mui/system@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/x-data-grid': 6.20.1(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@oxygen-ui/primitives': 1.11.0 - '@oxygen-ui/react-icons': 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + '@oxygen-ui/react-icons': 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) clsx: 1.2.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-world-flags: 1.6.0(react@18.3.1) + optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - '@types/react' - dev: false - /@parcel/watcher@2.0.4: - resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==} - engines: {node: '>= 10.0.0'} - requiresBuild: true + '@parcel/watcher@2.0.4': dependencies: node-addon-api: 3.2.1 node-gyp-build: 4.8.1 - dev: true - /@phenomnomnominal/tsquery@4.1.1(typescript@4.9.5): - resolution: {integrity: sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==} - peerDependencies: - typescript: ^3 || ^4 + '@phenomnomnominal/tsquery@4.1.1(typescript@4.9.5)': dependencies: esquery: 1.5.0 typescript: 4.9.5 - dev: true - /@pkgjs/parseargs@0.11.0: - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: '>=14'} - requiresBuild: true - dev: false + '@pkgjs/parseargs@0.11.0': optional: true - /@pmmmwh/react-refresh-webpack-plugin@0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1): - resolution: {integrity: sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==} - engines: {node: '>= 10.x'} - peerDependencies: - '@types/webpack': 4.x - react-refresh: '>=0.8.3 <0.10.0' - sockjs-client: ^1.4.0 - type-fest: ^0.13.1 - webpack: 5.84.1 - webpack-dev-server: 3.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - '@types/webpack': - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true + '@pmmmwh/react-refresh-webpack-plugin@0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: ansi-html: 0.0.7 error-stack-parser: 2.1.4 @@ -25757,35 +37722,15 @@ packages: react-refresh: 0.9.0 schema-utils: 2.7.1 source-map: 0.7.4 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + '@types/webpack': 4.41.38 + sockjs-client: 1.6.1 + type-fest: 4.20.1 + webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack-hot-middleware: 2.26.1 - /@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.10.0)(webpack-dev-server@3.11.3)(webpack@5.84.1): - resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==} - engines: {node: '>= 10.13'} - peerDependencies: - '@types/webpack': 4.x || 5.x - react-refresh: '>=0.10.0 <1.0.0' - sockjs-client: ^1.4.0 - type-fest: '>=0.17.0 <5.0.0' - webpack: 5.84.1 - webpack-dev-server: 3.x || 4.x || 5.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - '@types/webpack': - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true + '@pmmmwh/react-refresh-webpack-plugin@0.5.15(@types/webpack@4.41.38)(react-refresh@0.10.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: ansi-html: 0.0.9 core-js-pure: 3.37.1 @@ -25795,35 +37740,15 @@ packages: react-refresh: 0.10.0 schema-utils: 4.2.0 source-map: 0.7.4 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + '@types/webpack': 4.41.38 + sockjs-client: 1.6.1 + type-fest: 4.20.1 + webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack-hot-middleware: 2.26.1 - /@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.11.0)(webpack-dev-server@3.11.3)(webpack@5.84.1): - resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==} - engines: {node: '>= 10.13'} - peerDependencies: - '@types/webpack': 4.x || 5.x - react-refresh: '>=0.10.0 <1.0.0' - sockjs-client: ^1.4.0 - type-fest: '>=0.17.0 <5.0.0' - webpack: 5.84.1 - webpack-dev-server: 3.x || 4.x || 5.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - '@types/webpack': - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true + '@pmmmwh/react-refresh-webpack-plugin@0.5.15(@types/webpack@4.41.38)(react-refresh@0.11.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: ansi-html: 0.0.9 core-js-pure: 3.37.1 @@ -25833,34 +37758,15 @@ packages: react-refresh: 0.11.0 schema-utils: 4.2.0 source-map: 0.7.4 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + '@types/webpack': 4.41.38 + sockjs-client: 1.6.1 + type-fest: 4.20.1 + webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack-hot-middleware: 2.26.1 - /@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1): - resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==} - engines: {node: '>= 10.13'} - peerDependencies: - '@types/webpack': 4.x || 5.x - react-refresh: '>=0.10.0 <1.0.0' - sockjs-client: ^1.4.0 - type-fest: '>=0.17.0 <5.0.0' - webpack: 5.84.1 - webpack-dev-server: 3.x || 4.x || 5.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - '@types/webpack': - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true + '@pmmmwh/react-refresh-webpack-plugin@0.5.15(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: ansi-html: 0.0.9 core-js-pure: 3.37.1 @@ -25870,23 +37776,21 @@ packages: react-refresh: 0.9.0 schema-utils: 4.2.0 source-map: 0.7.4 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + '@types/webpack': 4.41.38 + sockjs-client: 1.6.1 + type-fest: 4.20.1 + webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack-hot-middleware: 2.26.1 - /@polka/url@1.0.0-next.25: - resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} + '@polka/url@1.0.0-next.25': {} - /@popperjs/core@2.11.8: - resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} + '@popperjs/core@2.11.8': {} - /@reactflow/background@11.2.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-gOtae79Zx1zOs9tD4tmKfuiQQOyG0O81BWBCHqlAQgemKlYExElFKOC67lgTDZ4GGFK+4sXrgrWQ5h14hzaFgg==} - peerDependencies: - react: '>=17' - react-dom: '>=17' + '@reactflow/background@11.2.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classcat: 5.0.5 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -25894,15 +37798,10 @@ packages: transitivePeerDependencies: - '@types/react' - immer - dev: false - /@reactflow/controls@11.1.13(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-rA74+mbt2bnz9Fba6JL1JsKHNNEK6Nl70+ssfOLKMpRFIg512IroayBWufgPJB82X9dgMIzZfx/UcEFFUFJQ8Q==} - peerDependencies: - react: '>=17' - react-dom: '>=17' + '@reactflow/controls@11.1.13(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classcat: 5.0.5 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -25910,13 +37809,8 @@ packages: transitivePeerDependencies: - '@types/react' - immer - dev: false - /@reactflow/core@11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-AhszxILp1RNk3SwrnC/eYh1XsOil5yzthYG5k+oTpvLH5H3BtIWIVkeLEJwmL611lPKL3JuScfjliUxBm9128w==} - peerDependencies: - react: '>=17' - react-dom: '>=17' + '@reactflow/core@11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@types/d3': 7.4.3 '@types/d3-drag': 3.0.7 @@ -25932,15 +37826,10 @@ packages: transitivePeerDependencies: - '@types/react' - immer - dev: false - /@reactflow/minimap@11.5.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-564gP/GMZKaJjVRGIrVLv2gIjgc89+qvNwuZzHnQLXjBw5+nS/QkW57Qx/M33MxVAaM+Z5rJ8gKknMSnxekwvQ==} - peerDependencies: - react: '>=17' - react-dom: '>=17' + '@reactflow/minimap@11.5.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/d3-selection': 3.0.10 '@types/d3-zoom': 3.0.8 classcat: 5.0.5 @@ -25952,15 +37841,10 @@ packages: transitivePeerDependencies: - '@types/react' - immer - dev: false - /@reactflow/node-resizer@2.1.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-DVL8nnWsltP8/iANadAcTaDB4wsEkx2mOLlBEPNE3yc5loSm3u9l5m4enXRcBym61MiMuTtDPzZMyYYQUjuYIg==} - peerDependencies: - react: '>=17' - react-dom: '>=17' + '@reactflow/node-resizer@2.1.0(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classcat: 5.0.5 d3-drag: 3.0.0 d3-selection: 3.0.0 @@ -25970,15 +37854,10 @@ packages: transitivePeerDependencies: - '@types/react' - immer - dev: false - /@reactflow/node-toolbar@1.2.1(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-EcMUMzJGAACYQTiUaBm3zxeiiKCPwU2MaoDeZdnEMbvq+2SfohKOur6JklANjv30kL+Pf3xj8QopEtyKTS4XrA==} - peerDependencies: - react: '>=17' - react-dom: '>=17' + '@reactflow/node-toolbar@1.2.1(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classcat: 5.0.5 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -25986,36 +37865,21 @@ packages: transitivePeerDependencies: - '@types/react' - immer - dev: false - /@remix-run/router@1.16.1: - resolution: {integrity: sha512-es2g3dq6Nb07iFxGk5GuHN20RwBZOsuDQN7izWIisUcv9r+d2C5jQxqmgkdebXgReWfiyUabcki6Fg77mSNrig==} - engines: {node: '>=14.0.0'} + '@remix-run/router@1.16.1': {} - /@rollup/plugin-babel@5.3.1(@babel/core@7.24.7)(rollup@2.79.1): - resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} - engines: {node: '>= 10.0.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@types/babel__core': ^7.1.9 - rollup: ^1.20.0||^2.0.0 - peerDependenciesMeta: - '@types/babel__core': - optional: true + '@rollup/plugin-babel@5.3.1(@babel/core@7.24.7)(@types/babel__core@7.20.5)(rollup@2.79.1)': dependencies: '@babel/core': 7.24.7 '@babel/helper-module-imports': 7.24.7 '@rollup/pluginutils': 3.1.0(rollup@2.79.1) rollup: 2.79.1 + optionalDependencies: + '@types/babel__core': 7.20.5 transitivePeerDependencies: - supports-color - dev: true - /@rollup/plugin-commonjs@20.0.0(rollup@2.79.1): - resolution: {integrity: sha512-5K0g5W2Ol8hAcTHqcTBHiA7M58tfmYi1o9KxeJuuRNpGaTa5iLjcyemBitCBcKXaHamOBBEH2dGom6v6Unmqjg==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^2.38.3 + '@rollup/plugin-commonjs@20.0.0(rollup@2.79.1)': dependencies: '@rollup/pluginutils': 3.1.0(rollup@2.79.1) commondir: 1.0.1 @@ -26025,16 +37889,8 @@ packages: magic-string: 0.25.9 resolve: 1.22.8 rollup: 2.79.1 - dev: true - /@rollup/plugin-commonjs@25.0.8(rollup@4.18.0): - resolution: {integrity: sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.68.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-commonjs@25.0.8(rollup@4.18.0)': dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.0) commondir: 1.0.1 @@ -26042,93 +37898,52 @@ packages: glob: 8.1.0 is-reference: 1.2.1 magic-string: 0.30.10 + optionalDependencies: rollup: 4.18.0 - dev: true - /@rollup/plugin-dynamic-import-vars@2.1.2(rollup@4.18.0): - resolution: {integrity: sha512-4lr2oXxs9hcxtGGaK8s0i9evfjzDrAs7ngw28TqruWKTEm0+U4Eljb+F6HXGYdFv8xRojQlrQwV7M/yxeh3yzQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-dynamic-import-vars@2.1.2(rollup@4.18.0)': dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.0) astring: 1.8.6 estree-walker: 2.0.2 fast-glob: 3.3.2 magic-string: 0.30.10 + optionalDependencies: rollup: 4.18.0 - dev: true - /@rollup/plugin-image@2.1.1(rollup@2.79.1): - resolution: {integrity: sha512-AgP4U85zuQJdUopLUCM+hTf45RepgXeTb8EJsleExVy99dIoYpt3ZlDYJdKmAc2KLkNntCDg6BPJvgJU3uGF+g==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 + '@rollup/plugin-image@2.1.1(rollup@2.79.1)': dependencies: '@rollup/pluginutils': 3.1.0(rollup@2.79.1) mini-svg-data-uri: 1.4.4 rollup: 2.79.1 - dev: true - /@rollup/plugin-image@3.0.3(rollup@4.18.0): - resolution: {integrity: sha512-qXWQwsXpvD4trSb8PeFPFajp8JLpRtqqOeNYRUKnEQNHm7e5UP7fuSRcbjQAJ7wDZBbnJvSdY5ujNBQd9B1iFg==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-image@3.0.3(rollup@4.18.0)': dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.0) mini-svg-data-uri: 1.4.4 + optionalDependencies: rollup: 4.18.0 - dev: true - /@rollup/plugin-inject@5.0.5(rollup@4.18.0): - resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-inject@5.0.5(rollup@4.18.0)': dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.0) estree-walker: 2.0.2 magic-string: 0.30.10 + optionalDependencies: rollup: 4.18.0 - dev: true - /@rollup/plugin-json@4.1.0(rollup@2.79.1): - resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 + '@rollup/plugin-json@4.1.0(rollup@2.79.1)': dependencies: '@rollup/pluginutils': 3.1.0(rollup@2.79.1) rollup: 2.79.1 - dev: true - /@rollup/plugin-json@6.1.0(rollup@4.18.0): - resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-json@6.1.0(rollup@4.18.0)': dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.0) + optionalDependencies: rollup: 4.18.0 - dev: true - /@rollup/plugin-node-resolve@13.3.0(rollup@2.79.1): - resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} - engines: {node: '>= 10.0.0'} - peerDependencies: - rollup: ^2.42.0 + '@rollup/plugin-node-resolve@13.3.0(rollup@2.79.1)': dependencies: '@rollup/pluginutils': 3.1.0(rollup@2.79.1) '@types/resolve': 1.17.1 @@ -26137,16 +37952,8 @@ packages: is-module: 1.0.0 resolve: 1.22.8 rollup: 2.79.1 - dev: true - /@rollup/plugin-node-resolve@15.2.3(rollup@4.18.0): - resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.78.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-node-resolve@15.2.3(rollup@4.18.0)': dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.0) '@types/resolve': 1.20.2 @@ -26154,367 +37961,199 @@ packages: is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.8 + optionalDependencies: rollup: 4.18.0 - dev: true - /@rollup/plugin-typescript@11.1.6(rollup@4.18.0)(tslib@2.6.3)(typescript@4.9.5): - resolution: {integrity: sha512-R92yOmIACgYdJ7dJ97p4K69I8gg6IEHt8M7dUBxN3W6nrO8uUxX5ixl0yU/N3aZTi8WhPuICvOHXQvF6FaykAA==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.14.0||^3.0.0||^4.0.0 - tslib: '*' - typescript: '>=3.7.0' - peerDependenciesMeta: - rollup: - optional: true - tslib: - optional: true + '@rollup/plugin-typescript@11.1.6(rollup@4.18.0)(tslib@2.6.3)(typescript@4.9.5)': dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.0) resolve: 1.22.8 + typescript: 4.9.5 + optionalDependencies: rollup: 4.18.0 tslib: 2.6.3 - typescript: 4.9.5 - dev: true - /@rollup/plugin-url@7.0.0(rollup@2.79.1): - resolution: {integrity: sha512-cIWcEObrmEPAU8q8NluGWlCPlQDuoSKvkyI3eOFO4fx6W02mLNj4ZEiUT0X2mKMIvQzoWL1feEK9d1yr1ICgrw==} - engines: {node: '>=10.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 + '@rollup/plugin-url@7.0.0(rollup@4.18.0)': dependencies: '@rollup/pluginutils': 4.2.1 make-dir: 3.1.0 mime: 2.6.0 - rollup: 2.79.1 - dev: true + rollup: 4.18.0 - /@rollup/pluginutils@3.1.0(rollup@2.79.1): - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 + '@rollup/pluginutils@3.1.0(rollup@2.79.1)': dependencies: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.3.1 rollup: 2.79.1 - dev: true - /@rollup/pluginutils@4.2.1: - resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} - engines: {node: '>= 8.0.0'} + '@rollup/pluginutils@4.2.1': dependencies: estree-walker: 2.0.2 picomatch: 2.3.1 - dev: true - /@rollup/pluginutils@5.1.0(rollup@4.18.0): - resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/pluginutils@5.1.0(rollup@4.18.0)': dependencies: '@types/estree': 1.0.5 estree-walker: 2.0.2 picomatch: 2.3.1 + optionalDependencies: rollup: 4.18.0 - dev: true - /@rollup/rollup-android-arm-eabi@4.18.0: - resolution: {integrity: sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true + '@rollup/rollup-android-arm-eabi@4.18.0': optional: true - /@rollup/rollup-android-arm64@4.18.0: - resolution: {integrity: sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true + '@rollup/rollup-android-arm64@4.18.0': optional: true - /@rollup/rollup-darwin-arm64@4.18.0: - resolution: {integrity: sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true + '@rollup/rollup-darwin-arm64@4.18.0': optional: true - /@rollup/rollup-darwin-x64@4.18.0: - resolution: {integrity: sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true + '@rollup/rollup-darwin-x64@4.18.0': optional: true - /@rollup/rollup-linux-arm-gnueabihf@4.18.0: - resolution: {integrity: sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm-gnueabihf@4.18.0': optional: true - /@rollup/rollup-linux-arm-musleabihf@4.18.0: - resolution: {integrity: sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm-musleabihf@4.18.0': optional: true - /@rollup/rollup-linux-arm64-gnu@4.18.0: - resolution: {integrity: sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm64-gnu@4.18.0': optional: true - /@rollup/rollup-linux-arm64-musl@4.18.0: - resolution: {integrity: sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm64-musl@4.18.0': optional: true - /@rollup/rollup-linux-powerpc64le-gnu@4.18.0: - resolution: {integrity: sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-powerpc64le-gnu@4.18.0': optional: true - /@rollup/rollup-linux-riscv64-gnu@4.18.0: - resolution: {integrity: sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-riscv64-gnu@4.18.0': optional: true - /@rollup/rollup-linux-s390x-gnu@4.18.0: - resolution: {integrity: sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-s390x-gnu@4.18.0': optional: true - /@rollup/rollup-linux-x64-gnu@4.18.0: - resolution: {integrity: sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-x64-gnu@4.18.0': optional: true - /@rollup/rollup-linux-x64-musl@4.18.0: - resolution: {integrity: sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-x64-musl@4.18.0': optional: true - /@rollup/rollup-win32-arm64-msvc@4.18.0: - resolution: {integrity: sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true + '@rollup/rollup-win32-arm64-msvc@4.18.0': optional: true - /@rollup/rollup-win32-ia32-msvc@4.18.0: - resolution: {integrity: sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true + '@rollup/rollup-win32-ia32-msvc@4.18.0': optional: true - /@rollup/rollup-win32-x64-msvc@4.18.0: - resolution: {integrity: sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true + '@rollup/rollup-win32-x64-msvc@4.18.0': optional: true - /@semantic-ui-react/event-stack@3.1.3(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-FdTmJyWvJaYinHrKRsMLDrz4tTMGdFfds299Qory53hBugiDvGC0tEJf+cHsi5igDwWb/CLOgOiChInHwq8URQ==} - peerDependencies: - react: ^16.0.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 + '@semantic-ui-react/event-stack@3.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: exenv: 1.2.2 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false - /@sideway/address@4.1.5: - resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} + '@sideway/address@4.1.5': dependencies: '@hapi/hoek': 9.3.0 - dev: false - /@sideway/formula@3.0.1: - resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} - dev: false + '@sideway/formula@3.0.1': {} - /@sideway/pinpoint@2.0.0: - resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} - dev: false + '@sideway/pinpoint@2.0.0': {} - /@sinclair/typebox@0.24.51: - resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==} - dev: true + '@sinclair/typebox@0.24.51': {} - /@sinclair/typebox@0.27.8: - resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + '@sinclair/typebox@0.27.8': {} - /@sindresorhus/is@0.14.0: - resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} - engines: {node: '>=6'} - dev: false + '@sindresorhus/is@0.14.0': {} - /@sindresorhus/is@4.6.0: - resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} - engines: {node: '>=10'} - dev: true + '@sindresorhus/is@4.6.0': {} - /@sindresorhus/merge-streams@2.3.0: - resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} - engines: {node: '>=18'} - dev: true + '@sindresorhus/merge-streams@2.3.0': {} - /@sinonjs/commons@1.8.6: - resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} + '@sinonjs/commons@1.8.6': dependencies: type-detect: 4.0.8 - dev: true - /@sinonjs/commons@3.0.1: - resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} + '@sinonjs/commons@3.0.1': dependencies: type-detect: 4.0.8 - /@sinonjs/fake-timers@10.3.0: - resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} + '@sinonjs/fake-timers@10.3.0': dependencies: '@sinonjs/commons': 3.0.1 - /@sinonjs/fake-timers@6.0.1: - resolution: {integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==} + '@sinonjs/fake-timers@6.0.1': dependencies: '@sinonjs/commons': 1.8.6 - dev: true - /@sinonjs/fake-timers@9.1.2: - resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==} + '@sinonjs/fake-timers@9.1.2': dependencies: '@sinonjs/commons': 1.8.6 - dev: true - /@storybook/addon-actions@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-aADjilFmuD6TNGz2CRPSupnyiA/IGkPJHDBTqMpsDXTUr8xnuD122xkIhg6UxmCM2y1c+ncwYXy3WPK2xXK57g==} - 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 + '@storybook/addon-actions@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.37.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 polished: 4.3.1 prop-types: 15.8.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) react-inspector: 5.1.1(react@18.3.1) regenerator-runtime: 0.13.11 telejson: 6.0.8 ts-dedent: 2.2.0 util-deprecate: 1.0.2 uuid-browser: 3.1.0 - dev: true + optionalDependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@storybook/addon-backgrounds@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-t7qooZ892BruhilFmzYPbysFwpULt/q4zYXNSmKVbAYta8UVvitjcU4F18p8FpWd9WvhiTr0SDlyhNZuzvDfug==} - 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 + '@storybook/addon-backgrounds@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.37.1 global: 4.4.0 memoizerific: 1.11.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - dev: true + optionalDependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@storybook/addon-controls@6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-kShSGjq1MjmmyL3l8i+uPz6yddtf82mzys0l82VKtcuyjrr5944wYFJ5NTXMfZxrO/U6FeFsfuFZE/k6ex3EMg==} - 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 + '@storybook/addon-controls@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/core-common': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/core-common': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/node-logger': 6.5.16 - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.37.1 lodash: 4.17.21 + ts-dedent: 2.2.0 + optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - ts-dedent: 2.2.0 transitivePeerDependencies: - '@swc/core' - esbuild @@ -26524,52 +38163,40 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: true - /@storybook/addon-docs@6.5.16(@babel/core@7.24.7)(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1): - resolution: {integrity: sha512-QM9WDZG9P02UvbzLu947a8ZngOrQeAKAT8jCibQFM/+RJ39xBlfm8rm+cQy3dm94wgtjmVkA3mKGOV/yrrsddg==} - peerDependencies: - '@storybook/mdx2-csf': ^0.0.3 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@storybook/mdx2-csf': - optional: true - react: - optional: true - react-dom: - optional: true + '@storybook/addon-docs@6.5.16(@babel/core@7.24.7)(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.7) '@babel/preset-env': 7.24.7(@babel/core@7.24.7) '@jest/transform': 26.6.2 '@mdx-js/react': 1.6.22(react@18.3.1) - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/core-common': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/core-common': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/docs-tools': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/docs-tools': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/mdx1-csf': 0.0.1(@babel/core@7.24.7) '@storybook/node-logger': 6.5.16 '@storybook/postinstall': 6.5.16 - '@storybook/preview-web': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/source-loader': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + '@storybook/preview-web': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/source-loader': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) core-js: 3.37.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 remark-external-links: 8.0.0 remark-slug: 6.1.0 ts-dedent: 2.2.0 util-deprecate: 1.0.2 + optionalDependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@babel/core' - '@swc/core' @@ -26581,136 +38208,86 @@ packages: - vue-template-compiler - webpack - webpack-cli - dev: true - /@storybook/addon-links@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-P/mmqK57NGXnR0i3d/T5B0rIt0Lg8Yq+qionRr3LK3AwG/4yGnYt4GNomLEknn/eEwABYq1Q/Z1aOpgIhNdq5A==} - 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 + '@storybook/addon-links@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/qs': 6.9.15 core-js: 3.37.1 global: 4.4.0 prop-types: 15.8.1 qs: 6.12.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 - dev: true + optionalDependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@storybook/addon-measure@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-DMwnXkmM2L6POTh4KaOWvOAtQ2p9Tr1UUNxz6VXiN5cKFohpCs6x0txdLU5WN8eWIq0VFsO7u5ZX34CGCc6gCg==} - 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 + '@storybook/addon-measure@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.37.1 global: 4.4.0 + optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: true - /@storybook/addon-outline@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-0du96nha4qltexO0Xq1xB7LeRSbqjC9XqtZLflXG7/X3ABoPD2cXgOV97eeaXUodIyb2qYBbHUfftBeA75x0+w==} - 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 + '@storybook/addon-outline@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.37.1 global: 4.4.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 - dev: true + optionalDependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@storybook/addon-toolbars@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-y3PuUKiwOWrAvqx1YdUvArg0UaAwmboXFeR2bkrowk1xcT+xnRO3rML4npFeUl26OQ1FzwxX/cw6nknREBBLEA==} - 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 + '@storybook/addon-toolbars@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.37.1 + regenerator-runtime: 0.13.11 + optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - regenerator-runtime: 0.13.11 - dev: true - /@storybook/addon-viewport@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-1Vyqf1U6Qng6TXlf4SdqUKyizlw1Wn6+qW8YeA2q1lbkJqn3UlnHXIp8Q0t/5q1dK5BFtREox3+jkGwbJrzkmA==} - 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 + '@storybook/addon-viewport@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 6.5.16 - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.37.1 global: 4.4.0 memoizerific: 1.11.3 prop-types: 15.8.1 + regenerator-runtime: 0.13.11 + optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - regenerator-runtime: 0.13.11 - dev: true - /@storybook/addons@6.4.22: - resolution: {integrity: sha512-P/R+Jsxh7pawKLYo8MtE3QU/ilRFKbtCewV/T1o5U/gm8v7hKQdFz3YdRMAra4QuCY8bQIp7MKd2HrB5aH5a1A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + '@storybook/addons@6.4.22': dependencies: '@storybook/api': 6.4.22 '@storybook/channels': 6.4.22 @@ -26725,21 +38302,16 @@ packages: regenerator-runtime: 0.13.11 transitivePeerDependencies: - supports-color - dev: true - /@storybook/addons@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-p3DqQi+8QRL5k7jXhXmJZLsE/GqHqyY6PcoA1oNTJr0try48uhTGUOYkgzmqtDaa/qPFO5LP+xCPzZXckGtquQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/addons@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/webpack-env': 1.18.5 core-js: 3.37.1 global: 4.4.0 @@ -26747,11 +38319,7 @@ packages: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 - /@storybook/api@6.4.22: - resolution: {integrity: sha512-lAVI3o2hKupYHXFTt+1nqFct942up5dHH6YD7SZZJGyW21dwKC3HK1IzCsTawq3fZAKkgWFgmOO649hKk60yKg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + '@storybook/api@6.4.22': dependencies: '@storybook/channels': 6.4.22 '@storybook/client-logger': 6.4.22 @@ -26772,21 +38340,16 @@ packages: util-deprecate: 1.0.2 transitivePeerDependencies: - supports-color - dev: true - /@storybook/api@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-HOsuT8iomqeTMQJrRx5U8nsC7lJTwRr1DhdD0SzlqL4c80S/7uuCy4IZvOt4sYQjOzW5fOo/kamcoBXyLproTA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/api@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.37.1 fast-deep-equal: 3.1.3 global: 4.4.0 @@ -26800,15 +38363,7 @@ packages: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - /@storybook/builder-webpack4@6.4.22(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-A+GgGtKGnBneRFSFkDarUIgUTI8pYFdLmUVKEAGdh2hL+vLXAz9A46sEY7C8LQ85XWa8TKy3OTDxqR4+4iWj3A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/builder-webpack4@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.7) @@ -26837,8 +38392,8 @@ packages: '@storybook/channels': 6.4.22 '@storybook/client-api': 6.4.22 '@storybook/client-logger': 6.4.22 - '@storybook/components': 6.4.22 - '@storybook/core-common': 6.4.22(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/components': 6.4.22(@types/react@18.0.18) + '@storybook/core-common': 6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/core-events': 6.4.22 '@storybook/node-logger': 6.4.22 '@storybook/preview-web': 6.4.22 @@ -26846,40 +38401,41 @@ packages: '@storybook/semver': 7.3.2 '@storybook/store': 6.4.22 '@storybook/theming': 6.4.22 - '@storybook/ui': 6.4.22 + '@storybook/ui': 6.4.22(@types/react@18.0.18) '@types/node': 14.18.63 '@types/webpack': 4.41.38 autoprefixer: 9.8.8 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) babel-plugin-macros: 2.8.0 babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.24.7) case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.37.1 - css-loader: 3.6.0(webpack@5.84.1) - file-loader: 6.2.0(webpack@5.84.1) + css-loader: 3.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + file-loader: 6.2.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + fork-ts-checker-webpack-plugin: 4.1.6(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) glob: 7.2.3 glob-promise: 3.4.0(glob@7.2.3) global: 4.4.0 - html-webpack-plugin: 4.5.2(webpack@5.84.1) + html-webpack-plugin: 4.5.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) pnp-webpack-plugin: 1.6.4(typescript@4.9.5) postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 - postcss-loader: 4.3.0(postcss@7.0.39)(webpack@5.84.1) - raw-loader: 4.0.2(webpack@5.84.1) + postcss-loader: 4.3.0(postcss@7.0.39)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + raw-loader: 4.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) stable: 0.1.8 - style-loader: 1.3.0(webpack@5.84.1) - terser-webpack-plugin: 4.2.3(webpack@5.84.1) + style-loader: 1.3.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + terser-webpack-plugin: 4.2.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-dedent: 2.2.0 - typescript: 4.9.5 - url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.84.1) + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - webpack-dev-middleware: 3.7.3(webpack@5.84.1) - webpack-filter-warnings-plugin: 1.2.1(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-dev-middleware: 3.7.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack-filter-warnings-plugin: 1.2.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) webpack-hot-middleware: 2.26.1 webpack-virtual-modules: 0.2.2 + optionalDependencies: + typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - '@types/react' @@ -26890,68 +38446,60 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: true - /@storybook/builder-webpack4@6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-YqDIrVNsUo8r9xc6AxsYDLxVYtMgl5Bxk+8/h1adsOko+jAFhdg6hOcAVxEmoSI0TMASOOVMFlT2hr23ppN2rQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/builder-webpack4@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/channels': 6.5.16 - '@storybook/client-api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/client-api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/core-common': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/core-common': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/core-events': 6.5.16 '@storybook/node-logger': 6.5.16 - '@storybook/preview-web': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/preview-web': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/ui': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/ui': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/node': 16.18.101 '@types/webpack': 4.41.38 autoprefixer: 9.8.8 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.37.1 - css-loader: 3.6.0(webpack@5.84.1) - file-loader: 6.2.0(webpack@5.84.1) + css-loader: 3.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + file-loader: 6.2.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + fork-ts-checker-webpack-plugin: 4.1.6(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) glob: 7.2.3 glob-promise: 3.4.0(glob@7.2.3) global: 4.4.0 - html-webpack-plugin: 4.5.2(webpack@5.84.1) + html-webpack-plugin: 4.5.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) pnp-webpack-plugin: 1.6.4(typescript@4.9.5) postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 - postcss-loader: 4.3.0(postcss@7.0.39)(webpack@5.84.1) - raw-loader: 4.0.2(webpack@5.84.1) + postcss-loader: 4.3.0(postcss@7.0.39)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + raw-loader: 4.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) stable: 0.1.8 - style-loader: 1.3.0(webpack@5.84.1) - terser-webpack-plugin: 4.2.3(webpack@5.84.1) + style-loader: 1.3.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + terser-webpack-plugin: 4.2.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-dedent: 2.2.0 - typescript: 4.9.5 - url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.84.1) + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - webpack-dev-middleware: 3.7.3(webpack@5.84.1) - webpack-filter-warnings-plugin: 1.2.1(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-dev-middleware: 3.7.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack-filter-warnings-plugin: 1.2.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) webpack-hot-middleware: 2.26.1 webpack-virtual-modules: 0.2.2 + optionalDependencies: + typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - bluebird @@ -26961,17 +38509,8 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: false - /@storybook/builder-webpack5@6.4.22(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-vvQ0HgkIIVz+cmaCXIRor0UFZbGZqh4aV0ISSof60BjdW5ld+R+XCr/bdTU6Zg8b2fL9CXh7/LE6fImnIMpRIA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/builder-webpack5@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.7) @@ -26999,8 +38538,8 @@ packages: '@storybook/channels': 6.4.22 '@storybook/client-api': 6.4.22 '@storybook/client-logger': 6.4.22 - '@storybook/components': 6.4.22 - '@storybook/core-common': 6.4.22(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/components': 6.4.22(@types/react@18.0.18) + '@storybook/core-common': 6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/core-events': 6.4.22 '@storybook/node-logger': 6.4.22 '@storybook/preview-web': 6.4.22 @@ -27009,28 +38548,29 @@ packages: '@storybook/store': 6.4.22 '@storybook/theming': 6.4.22 '@types/node': 14.18.63 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) babel-plugin-macros: 3.1.0 babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.24.7) case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.37.1 - css-loader: 5.2.7(webpack@5.84.1) - fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + css-loader: 5.2.7(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) glob: 7.2.3 glob-promise: 3.4.0(glob@7.2.3) - html-webpack-plugin: 5.6.0(webpack@5.84.1) + html-webpack-plugin: 5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) path-browserify: 1.0.1 process: 0.11.10 stable: 0.1.8 - style-loader: 2.0.0(webpack@5.84.1) - terser-webpack-plugin: 5.3.10(@swc/core@1.6.5)(webpack@5.84.1) + style-loader: 2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + terser-webpack-plugin: 5.3.10(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-dedent: 2.2.0 - typescript: 4.9.5 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - webpack-dev-middleware: 4.3.0(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-dev-middleware: 4.3.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) webpack-hot-middleware: 2.26.1 webpack-virtual-modules: 0.4.6 + optionalDependencies: + typescript: 4.9.5 transitivePeerDependencies: - '@rspack/core' - '@swc/core' @@ -27041,59 +38581,51 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: true - /@storybook/builder-webpack5@6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-kh8Sofm1sbijaHDWtm0sXabqACHVFjikU/fIkkW786kpjoPIPIec1a+hrLgDsZxMU3I7XapSOaCFzWt6FjVXjg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/builder-webpack5@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/channels': 6.5.16 - '@storybook/client-api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/client-api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/core-common': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/core-common': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/core-events': 6.5.16 '@storybook/node-logger': 6.5.16 - '@storybook/preview-web': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/preview-web': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/node': 16.18.101 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) babel-plugin-named-exports-order: 0.0.2 browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.37.1 - css-loader: 5.2.7(webpack@5.84.1) - fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + css-loader: 5.2.7(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) glob: 7.2.3 glob-promise: 3.4.0(glob@7.2.3) - html-webpack-plugin: 5.6.0(webpack@5.84.1) + html-webpack-plugin: 5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) path-browserify: 1.0.1 process: 0.11.10 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) stable: 0.1.8 - style-loader: 2.0.0(webpack@5.84.1) - terser-webpack-plugin: 5.3.10(@swc/core@1.6.5)(webpack@5.84.1) + style-loader: 2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + terser-webpack-plugin: 5.3.10(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-dedent: 2.2.0 - typescript: 4.9.5 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - webpack-dev-middleware: 4.3.0(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-dev-middleware: 4.3.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) webpack-hot-middleware: 2.26.1 webpack-virtual-modules: 0.4.6 + optionalDependencies: + typescript: 4.9.5 transitivePeerDependencies: - '@rspack/core' - '@swc/core' @@ -27103,10 +38635,8 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: false - /@storybook/channel-postmessage@6.4.22: - resolution: {integrity: sha512-gt+0VZLszt2XZyQMh8E94TqjHZ8ZFXZ+Lv/Mmzl0Yogsc2H+6VzTTQO4sv0IIx6xLbpgG72g5cr8VHsxW5kuDQ==} + '@storybook/channel-postmessage@6.4.22': dependencies: '@storybook/channels': 6.4.22 '@storybook/client-logger': 6.4.22 @@ -27115,10 +38645,8 @@ packages: global: 4.4.0 qs: 6.12.1 telejson: 5.3.3 - dev: true - /@storybook/channel-postmessage@6.5.16: - resolution: {integrity: sha512-fZZSN29dsUArWOx7e7lTdMA9+7zijVwCwbvi2Fo4fqhRLh1DsTb/VXfz1FKMCWAjNlcX7QQvV25tnxbqsD6lyw==} + '@storybook/channel-postmessage@6.5.16': dependencies: '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 @@ -27128,53 +38656,44 @@ packages: qs: 6.12.1 telejson: 6.0.8 - /@storybook/channel-websocket@6.4.22: - resolution: {integrity: sha512-Bm/FcZ4Su4SAK5DmhyKKfHkr7HiHBui6PNutmFkASJInrL9wBduBfN8YQYaV7ztr8ezoHqnYRx8sj28jpwa6NA==} + '@storybook/channel-websocket@6.4.22': dependencies: '@storybook/channels': 6.4.22 '@storybook/client-logger': 6.4.22 core-js: 3.37.1 global: 4.4.0 telejson: 5.3.3 - dev: true - /@storybook/channel-websocket@6.5.16: - resolution: {integrity: sha512-wJg2lpBjmRC2GJFzmhB9kxlh109VE58r/0WhFtLbwKvPqsvGf82xkBEl6BtBCvIQ4stzYnj/XijjA8qSi2zpOg==} + '@storybook/channel-websocket@6.5.16': dependencies: '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 core-js: 3.37.1 global: 4.4.0 telejson: 6.0.8 - dev: false - /@storybook/channels@6.4.22: - resolution: {integrity: sha512-cfR74tu7MLah1A8Rru5sak71I+kH2e/sY6gkpVmlvBj4hEmdZp4Puj9PTeaKcMXh9DgIDPNA5mb8yvQH6VcyxQ==} + '@storybook/channels@6.4.22': dependencies: core-js: 3.37.1 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - dev: true - /@storybook/channels@6.5.16: - resolution: {integrity: sha512-VylzaWQZaMozEwZPJdyJoz+0jpDa8GRyaqu9TGG6QGv+KU5POoZaGLDkRE7TzWkyyP0KQLo80K99MssZCpgSeg==} + '@storybook/channels@6.5.16': dependencies: core-js: 3.37.1 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - /@storybook/cli@6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-6hcIUvoQxmK9OZ/dmt2eXMbdeCJseRjLwIk4y2SdWd3chpjMDUVhIMJHU4qc2+6rbK+iwL7JAsOUEu/ywkgEow==} - hasBin: true + '@storybook/cli@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 '@babel/preset-env': 7.24.7(@babel/core@7.24.7) - '@storybook/codemod': 6.5.16(@babel/preset-env@7.24.7) - '@storybook/core-common': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/codemod': 6.5.16(@babel/preset-env@7.24.7(@babel/core@7.24.7)) + '@storybook/core-common': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/csf-tools': 6.5.16 '@storybook/node-logger': 6.5.16 '@storybook/semver': 7.3.2 - '@storybook/telemetry': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/telemetry': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) boxen: 5.1.2 chalk: 4.1.2 commander: 6.2.1 @@ -27186,7 +38705,7 @@ packages: fs-extra: 9.1.0 get-port: 5.1.1 globby: 11.1.0 - jscodeshift: 0.13.1(@babel/preset-env@7.24.7) + jscodeshift: 0.13.1(@babel/preset-env@7.24.7(@babel/core@7.24.7)) json5: 2.2.3 leven: 3.1.0 prompts: 2.4.2 @@ -27211,13 +38730,8 @@ packages: - utf-8-validate - vue-template-compiler - webpack-cli - dev: false - /@storybook/client-api@6.4.22: - resolution: {integrity: sha512-sO6HJNtrrdit7dNXQcZMdlmmZG1k6TswH3gAyP/DoYajycrTwSJ6ovkarzkO+0QcJ+etgra4TEdTIXiGHBMe/A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + '@storybook/client-api@6.4.22': dependencies: '@storybook/addons': 6.4.22 '@storybook/channel-postmessage': 6.4.22 @@ -27241,21 +38755,16 @@ packages: util-deprecate: 1.0.2 transitivePeerDependencies: - supports-color - dev: true - /@storybook/client-api@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-i3UwkzzUFw8I+E6fOcgB5sc4oU2fhvaKnqC1mpd9IYGJ9JN9MnGIaVl3Ko28DtFItu/QabC9JsLIJVripFLktQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/client-api@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/qs': 6.9.15 '@types/webpack-env': 1.18.5 core-js: 3.37.1 @@ -27271,23 +38780,18 @@ packages: synchronous-promise: 2.0.17 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - dev: false - /@storybook/client-logger@6.4.22: - resolution: {integrity: sha512-LXhxh/lcDsdGnK8kimqfhu3C0+D2ylCSPPQNbU0IsLRmTfbpQYMdyl0XBjPdHiRVwlL7Gkw5OMjYemQgJ02zlw==} + '@storybook/client-logger@6.4.22': dependencies: core-js: 3.37.1 global: 4.4.0 - dev: true - /@storybook/client-logger@6.5.16: - resolution: {integrity: sha512-pxcNaCj3ItDdicPTXTtmYJE3YC1SjxFrBmHcyrN+nffeNyiMuViJdOOZzzzucTUG0wcOOX8jaSyak+nnHg5H1Q==} + '@storybook/client-logger@6.5.16': dependencies: core-js: 3.37.1 global: 4.4.0 - /@storybook/codemod@6.5.16(@babel/preset-env@7.24.7): - resolution: {integrity: sha512-bYu0QzkWpgILFdQnbIsnICfL08Z4xmLSmL0Rq9WWGRnSnNnGzX5P57gz+fW7+NHFGxdCTCuHJPvwAXGuJQApPQ==} + '@storybook/codemod@6.5.16(@babel/preset-env@7.24.7(@babel/core@7.24.7))': dependencies: '@babel/types': 7.24.7 '@mdx-js/mdx': 1.6.22 @@ -27297,7 +38801,7 @@ packages: core-js: 3.37.1 cross-spawn: 7.0.3 globby: 11.1.0 - jscodeshift: 0.13.1(@babel/preset-env@7.24.7) + jscodeshift: 0.13.1(@babel/preset-env@7.24.7(@babel/core@7.24.7)) lodash: 4.17.21 prettier: 2.3.0 recast: 0.19.1 @@ -27306,13 +38810,8 @@ packages: - '@babel/preset-env' - '@storybook/mdx2-csf' - supports-color - dev: false - /@storybook/components@6.4.22: - resolution: {integrity: sha512-dCbXIJF9orMvH72VtAfCQsYbe57OP7fAADtR6YTwfCw9Sm1jFuZr8JbblQ1HcrXEoJG21nOyad3Hm5EYVb/sBw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + '@storybook/components@6.4.22(@types/react@18.0.18)': dependencies: '@popperjs/core': 2.11.8 '@storybook/client-logger': 6.4.22 @@ -27334,24 +38833,19 @@ packages: react-colorful: 5.6.1 react-popper-tooltip: 3.1.1 react-syntax-highlighter: 13.5.3 - react-textarea-autosize: 8.5.3 + react-textarea-autosize: 8.5.3(@types/react@18.0.18) regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 util-deprecate: 1.0.2 transitivePeerDependencies: - '@types/react' - supports-color - dev: true - /@storybook/components@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-LzBOFJKITLtDcbW9jXl0/PaG+4xAz25PK8JxPZpIALbmOpYWOAPcO6V9C2heX6e6NgWFMUxjplkULEk9RCQMNA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/components@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.37.1 memoizerific: 1.11.3 qs: 6.12.1 @@ -27360,16 +38854,7 @@ packages: regenerator-runtime: 0.13.11 util-deprecate: 1.0.2 - /@storybook/core-client@6.4.22(typescript@4.9.5)(webpack@5.84.1): - resolution: {integrity: sha512-uHg4yfCBeM6eASSVxStWRVTZrAnb4FT6X6v/xDqr4uXCpCttZLlBzrSDwPBLNNLtCa7ntRicHM8eGKIOD5lMYQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - webpack: 5.84.1 - peerDependenciesMeta: - typescript: - optional: true + '@storybook/core-client@6.4.22(@types/react@18.0.18)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: '@storybook/addons': 6.4.22 '@storybook/channel-postmessage': 6.4.22 @@ -27380,7 +38865,7 @@ packages: '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/preview-web': 6.4.22 '@storybook/store': 6.4.22 - '@storybook/ui': 6.4.22 + '@storybook/ui': 6.4.22(@types/react@18.0.18) airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 core-js: 3.37.1 @@ -27389,36 +38874,27 @@ packages: qs: 6.12.1 regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 - typescript: 4.9.5 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + typescript: 4.9.5 transitivePeerDependencies: - '@types/react' - supports-color - dev: true - /@storybook/core-client@6.5.16(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1): - resolution: {integrity: sha512-14IRaDrVtKrQ+gNWC0wPwkCNfkZOKghYV/swCUnQX3rP99defsZK8Hc7xHIYoAiOP5+sc3sweRAxgmFiJeQ1Ig==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - webpack: 5.84.1 - peerDependenciesMeta: - typescript: - optional: true + '@storybook/core-client@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/channel-websocket': 6.5.16 - '@storybook/client-api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/client-api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/preview-web': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/ui': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/preview-web': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/ui': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 core-js: 3.37.1 @@ -27429,21 +38905,13 @@ packages: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 - typescript: 4.9.5 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: false + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + typescript: 4.9.5 - /@storybook/core-common@6.4.22(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-PD3N/FJXPNRHeQS2zdgzYFtqPLdi3MLwAicbnw+U3SokcsspfsAuyYHZOYZgwO8IAEKy6iCc7TpBdiSJZ/vAKQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/core-common@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.7) @@ -27470,7 +38938,7 @@ packages: '@storybook/semver': 7.3.2 '@types/node': 14.18.63 '@types/pretty-hrtime': 1.0.3 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) babel-plugin-macros: 3.1.0 babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.24.7) chalk: 4.1.2 @@ -27478,7 +38946,7 @@ packages: express: 4.19.2(supports-color@6.1.0) file-system-cache: 1.1.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fs-extra: 9.1.0 glob: 7.2.3 handlebars: 4.7.8 @@ -27492,9 +38960,10 @@ packages: slash: 3.0.0 telejson: 5.3.3 ts-dedent: 2.2.0 - typescript: 4.9.5 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - esbuild @@ -27503,17 +38972,8 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: true - /@storybook/core-common@6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-2qtnKP3TTOzt2cp6LXKRTh7XrI9z5VanMnMTgeoFcA5ebnndD4V6BExQUdYPClE/QooLx6blUWNgS9dFEpjSqQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/core-common@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.7) @@ -27541,7 +39001,7 @@ packages: '@storybook/semver': 7.3.2 '@types/node': 16.18.101 '@types/pretty-hrtime': 1.0.3 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) babel-plugin-macros: 3.1.0 babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.24.7) chalk: 4.1.2 @@ -27549,7 +39009,7 @@ packages: express: 4.19.2(supports-color@6.1.0) file-system-cache: 1.1.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fs-extra: 9.1.0 glob: 7.2.3 handlebars: 4.7.8 @@ -27565,9 +39025,10 @@ packages: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 - typescript: 4.9.5 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - esbuild @@ -27577,43 +39038,24 @@ packages: - vue-template-compiler - webpack-cli - /@storybook/core-events@6.4.22: - resolution: {integrity: sha512-5GYY5+1gd58Gxjqex27RVaX6qbfIQmJxcbzbNpXGNSqwqAuIIepcV1rdCVm6I4C3Yb7/AQ3cN5dVbf33QxRIwA==} + '@storybook/core-events@6.4.22': dependencies: core-js: 3.37.1 - dev: true - /@storybook/core-events@6.5.16: - resolution: {integrity: sha512-qMZQwmvzpH5F2uwNUllTPg6eZXr2OaYZQRRN8VZJiuorZzDNdAFmiVWMWdkThwmyLEJuQKXxqCL8lMj/7PPM+g==} + '@storybook/core-events@6.5.16': dependencies: core-js: 3.37.1 - /@storybook/core-server@6.4.22(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-wFh3e2fa0un1d4+BJP+nd3FVWUO7uHTqv3OGBfOmzQMKp4NU1zaBNdSQG7Hz6mw0fYPBPZgBjPfsJRwIYLLZyw==} - peerDependencies: - '@storybook/builder-webpack5': 6.4.22 - '@storybook/manager-webpack5': 6.4.22 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - '@storybook/builder-webpack5': - optional: true - '@storybook/manager-webpack5': - optional: true - typescript: - optional: true + '@storybook/core-server@6.4.22(@storybook/builder-webpack5@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(encoding@0.1.13)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(encoding@0.1.13)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.4.22(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) - '@storybook/builder-webpack5': 6.4.22(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) - '@storybook/core-client': 6.4.22(typescript@4.9.5)(webpack@5.84.1) - '@storybook/core-common': 6.4.22(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/builder-webpack4': 6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/core-client': 6.4.22(@types/react@18.0.18)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/core-common': 6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/core-events': 6.4.22 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.22 - '@storybook/manager-webpack4': 6.4.22(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) - '@storybook/manager-webpack5': 6.4.22(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/manager-webpack4': 6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(encoding@0.1.13)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/node-logger': 6.4.22 '@storybook/semver': 7.3.2 '@storybook/store': 6.4.22 @@ -27636,7 +39078,7 @@ packages: globby: 11.1.0 ip: 1.1.9 lodash: 4.17.21 - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) pretty-hrtime: 1.0.3 prompts: 2.4.2 regenerator-runtime: 0.13.11 @@ -27644,11 +39086,14 @@ packages: slash: 3.0.0 telejson: 5.3.3 ts-dedent: 2.2.0 - typescript: 4.9.5 util-deprecate: 1.0.2 watchpack: 2.4.1 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) ws: 8.17.1 + optionalDependencies: + '@storybook/builder-webpack5': 6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/manager-webpack5': 6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(encoding@0.1.13)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - '@types/react' @@ -27662,38 +39107,21 @@ packages: - utf-8-validate - vue-template-compiler - webpack-cli - dev: true - /@storybook/core-server@6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-/3NPfmNyply395Dm0zaVZ8P9aruwO+tPx4D6/jpw8aqrRSwvAMndPMpoMCm0NXcpSm5rdX+Je4S3JW6JcggFkA==} - peerDependencies: - '@storybook/builder-webpack5': '*' - '@storybook/manager-webpack5': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - '@storybook/builder-webpack5': - optional: true - '@storybook/manager-webpack5': - optional: true - typescript: - optional: true + '@storybook/core-server@6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@storybook/builder-webpack5': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@storybook/core-client': 6.5.16(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1) - '@storybook/core-common': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/builder-webpack4': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/core-client': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/core-common': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/csf-tools': 6.5.16 - '@storybook/manager-webpack4': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@storybook/manager-webpack5': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/manager-webpack4': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/node-logger': 6.5.16 '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/telemetry': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/telemetry': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@types/node': 16.18.101 '@types/node-fetch': 2.6.11 '@types/pretty-hrtime': 1.0.3 @@ -27713,7 +39141,7 @@ packages: globby: 11.1.0 ip: 2.0.1 lodash: 4.17.21 - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) open: 8.4.2 pretty-hrtime: 1.0.3 prompts: 2.4.2 @@ -27724,12 +39152,15 @@ packages: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 - typescript: 4.9.5 util-deprecate: 1.0.2 watchpack: 2.4.1 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) ws: 8.17.1 x-default-browser: 0.4.0 + optionalDependencies: + '@storybook/builder-webpack5': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/manager-webpack5': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + typescript: 4.9.5 transitivePeerDependencies: - '@storybook/mdx2-csf' - '@swc/core' @@ -27743,27 +39174,15 @@ packages: - utf-8-validate - vue-template-compiler - webpack-cli - dev: false - /@storybook/core@6.4.22(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1): - resolution: {integrity: sha512-KZYJt7GM5NgKFXbPRZZZPEONZ5u/tE/cRbMdkn/zWN3He8+VP+65/tz8hbriI/6m91AWVWkBKrODSkeq59NgRA==} - peerDependencies: - '@storybook/builder-webpack5': 6.4.22 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - webpack: 5.84.1 - peerDependenciesMeta: - '@storybook/builder-webpack5': - optional: true - typescript: - optional: true + '@storybook/core@6.4.22(@storybook/builder-webpack5@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(encoding@0.1.13)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(encoding@0.1.13)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: - '@storybook/builder-webpack5': 6.4.22(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) - '@storybook/core-client': 6.4.22(typescript@4.9.5)(webpack@5.84.1) - '@storybook/core-server': 6.4.22(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/core-client': 6.4.22(@types/react@18.0.18)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/core-server': 6.4.22(@storybook/builder-webpack5@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(encoding@0.1.13)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(encoding@0.1.13)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + '@storybook/builder-webpack5': 6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) typescript: 4.9.5 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) transitivePeerDependencies: - '@storybook/manager-webpack5' - '@swc/core' @@ -27778,33 +39197,18 @@ packages: - utf-8-validate - vue-template-compiler - webpack-cli - dev: true - /@storybook/core@6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1): - resolution: {integrity: sha512-CEF3QFTsm/VMnMKtRNr4rRdLeIkIG0g1t26WcmxTdSThNPBd8CsWzQJ7Jqu7CKiut+MU4A1LMOwbwCE5F2gmyA==} - peerDependencies: - '@storybook/builder-webpack5': '*' - '@storybook/manager-webpack5': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - webpack: 5.84.1 - peerDependenciesMeta: - '@storybook/builder-webpack5': - optional: true - '@storybook/manager-webpack5': - optional: true - typescript: - optional: true + '@storybook/core@6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: - '@storybook/builder-webpack5': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@storybook/core-client': 6.5.16(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1) - '@storybook/core-server': 6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@storybook/manager-webpack5': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/core-client': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/core-server': 6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + '@storybook/builder-webpack5': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/manager-webpack5': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) typescript: 4.9.5 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) transitivePeerDependencies: - '@storybook/mdx2-csf' - '@swc/core' @@ -27818,10 +39222,8 @@ packages: - utf-8-validate - vue-template-compiler - webpack-cli - dev: false - /@storybook/csf-tools@6.4.22: - resolution: {integrity: sha512-LMu8MZAiQspJAtMBLU2zitsIkqQv7jOwX7ih5JrXlyaDticH7l2j6Q+1mCZNWUOiMTizj0ivulmUsSaYbpToSw==} + '@storybook/csf-tools@6.4.22': dependencies: '@babel/core': 7.24.7 '@babel/generator': 7.24.7 @@ -27842,15 +39244,8 @@ packages: ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color - dev: true - /@storybook/csf-tools@6.5.16: - resolution: {integrity: sha512-+WD4sH/OwAfXZX3IN6/LOZ9D9iGEFcN+Vvgv9wOsLRgsAZ10DG/NK6c1unXKDM/ogJtJYccNI8Hd+qNE/GFV6A==} - peerDependencies: - '@storybook/mdx2-csf': ^0.0.3 - peerDependenciesMeta: - '@storybook/mdx2-csf': - optional: true + '@storybook/csf-tools@6.5.16': dependencies: '@babel/core': 7.24.7 '@babel/generator': 7.24.7 @@ -27868,25 +39263,20 @@ packages: ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color - dev: false - /@storybook/csf@0.0.2--canary.4566f4d.1: - resolution: {integrity: sha512-9OVvMVh3t9znYZwb0Svf/YQoxX2gVOeQTGe2bses2yj+a3+OJnCrUF3/hGv6Em7KujtOdL2LL+JnG49oMVGFgQ==} + '@storybook/csf@0.0.2--canary.4566f4d.1': dependencies: lodash: 4.17.21 - /@storybook/csf@0.0.2--canary.87bc651.0: - resolution: {integrity: sha512-ajk1Uxa+rBpFQHKrCcTmJyQBXZ5slfwHVEaKlkuFaW77it8RgbPJp/ccna3sgoi8oZ7FkkOyvv1Ve4SmwFqRqw==} + '@storybook/csf@0.0.2--canary.87bc651.0': dependencies: lodash: 4.17.21 - dev: true - /@storybook/docs-tools@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-o+rAWPRGifjBF5xZzTKOqnHN3XQWkl0QFJYVDIiJYJrVll7ExCkpEq/PahOGzIBBV+tpMstJgmKM3lr/lu/jmg==} + '@storybook/docs-tools@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/core': 7.24.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.37.1 doctrine: 3.0.0 lodash: 4.17.21 @@ -27896,53 +39286,46 @@ packages: - react-dom - supports-color - /@storybook/manager-webpack4@6.4.22(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-nzhDMJYg0vXdcG0ctwE6YFZBX71+5NYaTGkxg3xT7gbgnP1YFXn9gVODvgq3tPb3gcRapjyOIxUa20rV+r8edA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/manager-webpack4@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(encoding@0.1.13)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.7) '@babel/preset-react': 7.24.7(@babel/core@7.24.7) '@storybook/addons': 6.4.22 - '@storybook/core-client': 6.4.22(typescript@4.9.5)(webpack@5.84.1) - '@storybook/core-common': 6.4.22(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/core-client': 6.4.22(@types/react@18.0.18)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/core-common': 6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/node-logger': 6.4.22 '@storybook/theming': 6.4.22 - '@storybook/ui': 6.4.22 + '@storybook/ui': 6.4.22(@types/react@18.0.18) '@types/node': 14.18.63 '@types/webpack': 4.41.38 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.37.1 - css-loader: 3.6.0(webpack@5.84.1) + css-loader: 3.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) express: 4.19.2(supports-color@6.1.0) - file-loader: 6.2.0(webpack@5.84.1) + file-loader: 6.2.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) file-system-cache: 1.1.0 find-up: 5.0.0 fs-extra: 9.1.0 - html-webpack-plugin: 4.5.2(webpack@5.84.1) - node-fetch: 2.7.0 + html-webpack-plugin: 4.5.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + node-fetch: 2.7.0(encoding@0.1.13) pnp-webpack-plugin: 1.6.4(typescript@4.9.5) read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 resolve-from: 5.0.0 - style-loader: 1.3.0(webpack@5.84.1) + style-loader: 1.3.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) telejson: 5.3.3 - terser-webpack-plugin: 4.2.3(webpack@5.84.1) + terser-webpack-plugin: 4.2.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-dedent: 2.2.0 - typescript: 4.9.5 - url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.84.1) + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - webpack-dev-middleware: 3.7.3(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-dev-middleware: 3.7.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) webpack-virtual-modules: 0.2.2 + optionalDependencies: + typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - '@types/react' @@ -27954,56 +39337,48 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: true - /@storybook/manager-webpack4@6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-5VJZwmQU6AgdsBPsYdu886UKBHQ9SJEnFMaeUxKEclXk+iRsmbzlL4GHKyVd6oGX/ZaecZtcHPR6xrzmA4Ziew==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/manager-webpack4@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.7) '@babel/preset-react': 7.24.7(@babel/core@7.24.7) - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/core-client': 6.5.16(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1) - '@storybook/core-common': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/core-client': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/core-common': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/node-logger': 6.5.16 - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/ui': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/ui': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/node': 16.18.101 '@types/webpack': 4.41.38 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.37.1 - css-loader: 3.6.0(webpack@5.84.1) + css-loader: 3.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) express: 4.19.2(supports-color@6.1.0) - file-loader: 6.2.0(webpack@5.84.1) + file-loader: 6.2.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) find-up: 5.0.0 fs-extra: 9.1.0 - html-webpack-plugin: 4.5.2(webpack@5.84.1) - node-fetch: 2.7.0 + html-webpack-plugin: 4.5.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + node-fetch: 2.7.0(encoding@0.1.13) pnp-webpack-plugin: 1.6.4(typescript@4.9.5) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 resolve-from: 5.0.0 - style-loader: 1.3.0(webpack@5.84.1) + style-loader: 1.3.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) telejson: 6.0.8 - terser-webpack-plugin: 4.2.3(webpack@5.84.1) + terser-webpack-plugin: 4.2.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-dedent: 2.2.0 - typescript: 4.9.5 - url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.84.1) + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - webpack-dev-middleware: 3.7.3(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-dev-middleware: 3.7.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) webpack-virtual-modules: 0.2.2 + optionalDependencies: + typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - bluebird @@ -28014,52 +39389,44 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: false - /@storybook/manager-webpack5@6.4.22(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-BMkOMselT4jOn7EQGt748FurM5ewtDfZtOQPCVK8MZX+HYE2AgjNOzm562TYODIxk12Fkhgj3EIz7GGMe1U3RA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/manager-webpack5@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(encoding@0.1.13)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.7) '@babel/preset-react': 7.24.7(@babel/core@7.24.7) '@storybook/addons': 6.4.22 - '@storybook/core-client': 6.4.22(typescript@4.9.5)(webpack@5.84.1) - '@storybook/core-common': 6.4.22(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/core-client': 6.4.22(@types/react@18.0.18)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/core-common': 6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/node-logger': 6.4.22 '@storybook/theming': 6.4.22 - '@storybook/ui': 6.4.22 + '@storybook/ui': 6.4.22(@types/react@18.0.18) '@types/node': 14.18.63 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.37.1 - css-loader: 5.2.7(webpack@5.84.1) + css-loader: 5.2.7(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) express: 4.19.2(supports-color@6.1.0) file-system-cache: 1.1.0 find-up: 5.0.0 fs-extra: 9.1.0 - html-webpack-plugin: 5.6.0(webpack@5.84.1) - node-fetch: 2.7.0 + html-webpack-plugin: 5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + node-fetch: 2.7.0(encoding@0.1.13) process: 0.11.10 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 resolve-from: 5.0.0 - style-loader: 2.0.0(webpack@5.84.1) + style-loader: 2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) telejson: 5.3.3 - terser-webpack-plugin: 5.3.10(@swc/core@1.6.5)(webpack@5.84.1) + terser-webpack-plugin: 5.3.10(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-dedent: 2.2.0 - typescript: 4.9.5 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - webpack-dev-middleware: 4.3.0(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-dev-middleware: 4.3.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) webpack-virtual-modules: 0.4.6 + optionalDependencies: + typescript: 4.9.5 transitivePeerDependencies: - '@rspack/core' - '@swc/core' @@ -28071,53 +39438,45 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: true - /@storybook/manager-webpack5@6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-OtxXv8JCe0r/0rE5HxaFicsNsXA+fqZxzokxquFFgrYf/1Jg4d7QX6/pG5wINF+5qInJfVkRG6xhPzv1s5bk9Q==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/manager-webpack5@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.7) '@babel/preset-react': 7.24.7(@babel/core@7.24.7) - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/core-client': 6.5.16(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1) - '@storybook/core-common': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/core-client': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/core-common': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/node-logger': 6.5.16 - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/ui': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/ui': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/node': 16.18.101 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.37.1 - css-loader: 5.2.7(webpack@5.84.1) + css-loader: 5.2.7(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) express: 4.19.2(supports-color@6.1.0) find-up: 5.0.0 fs-extra: 9.1.0 - html-webpack-plugin: 5.6.0(webpack@5.84.1) - node-fetch: 2.7.0 + html-webpack-plugin: 5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + node-fetch: 2.7.0(encoding@0.1.13) process: 0.11.10 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 resolve-from: 5.0.0 - style-loader: 2.0.0(webpack@5.84.1) + style-loader: 2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) telejson: 6.0.8 - terser-webpack-plugin: 5.3.10(@swc/core@1.6.5)(webpack@5.84.1) + terser-webpack-plugin: 5.3.10(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-dedent: 2.2.0 - typescript: 4.9.5 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - webpack-dev-middleware: 4.3.0(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-dev-middleware: 4.3.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) webpack-virtual-modules: 0.4.6 + optionalDependencies: + typescript: 4.9.5 transitivePeerDependencies: - '@rspack/core' - '@swc/core' @@ -28128,10 +39487,8 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: false - /@storybook/mdx1-csf@0.0.1(@babel/core@7.24.7): - resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} + '@storybook/mdx1-csf@0.0.1(@babel/core@7.24.7)': dependencies: '@babel/generator': 7.24.7 '@babel/parser': 7.24.7 @@ -28148,18 +39505,15 @@ packages: - '@babel/core' - supports-color - /@storybook/node-logger@6.4.22: - resolution: {integrity: sha512-sUXYFqPxiqM7gGH7gBXvO89YEO42nA4gBicJKZjj9e+W4QQLrftjF9l+mAw2K0mVE10Bn7r4pfs5oEZ0aruyyA==} + '@storybook/node-logger@6.4.22': dependencies: '@types/npmlog': 4.1.6 chalk: 4.1.2 core-js: 3.37.1 npmlog: 5.0.1 pretty-hrtime: 1.0.3 - dev: true - /@storybook/node-logger@6.5.16: - resolution: {integrity: sha512-YjhBKrclQtjhqFNSO+BZK+RXOx6EQypAELJKoLFaawg331e8VUfvUuRCNB3fcEWp8G9oH13PQQte0OTjLyyOYg==} + '@storybook/node-logger@6.5.16': dependencies: '@types/npmlog': 4.1.6 chalk: 4.1.2 @@ -28167,17 +39521,11 @@ packages: npmlog: 5.0.1 pretty-hrtime: 1.0.3 - /@storybook/postinstall@6.5.16: - resolution: {integrity: sha512-08K2q+qN6pqyPW7PHLCZ5G5Xa6Wosd6t0F16PQ4abX2ItlJLabVoJN5mZ0gm/aeLTjD8QYr8IDvacu4eXh0SVA==} + '@storybook/postinstall@6.5.16': dependencies: core-js: 3.37.1 - dev: true - /@storybook/preview-web@6.4.22: - resolution: {integrity: sha512-sWS+sgvwSvcNY83hDtWUUL75O2l2LY/GTAS0Zp2dh3WkObhtuJ/UehftzPZlZmmv7PCwhb4Q3+tZDKzMlFxnKQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + '@storybook/preview-web@6.4.22': dependencies: '@storybook/addons': 6.4.22 '@storybook/channel-postmessage': 6.4.22 @@ -28197,20 +39545,15 @@ packages: util-deprecate: 1.0.2 transitivePeerDependencies: - supports-color - dev: true - /@storybook/preview-web@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-IJnvfe2sKCfk7apN9Fu9U8qibbarrPX5JB55ZzK1amSHVmSDuYk5MIMc/U3NnSQNnvd1DO5v/zMcGgj563hrtg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/preview-web@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) ansi-to-html: 0.6.15 core-js: 3.37.1 global: 4.4.0 @@ -28224,13 +39567,9 @@ packages: unfetch: 4.2.0 util-deprecate: 1.0.2 - /@storybook/react-docgen-typescript-plugin@1.0.2-canary.253f8c1.0(typescript@4.9.5)(webpack@5.84.1): - resolution: {integrity: sha512-mmoRG/rNzAiTbh+vGP8d57dfcR2aP+5/Ll03KKFyfy5FqWFm/Gh7u27ikx1I3LmVMI8n6jh5SdWMkMKon7/tDw==} - peerDependencies: - typescript: '>= 3.x' - webpack: 5.84.1 + '@storybook/react-docgen-typescript-plugin@1.0.2-canary.253f8c1.0(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) endent: 2.1.0 find-cache-dir: 3.3.2 flat-cache: 3.2.0 @@ -28238,18 +39577,13 @@ packages: react-docgen-typescript: 2.2.2(typescript@4.9.5) tslib: 2.6.3 typescript: 4.9.5 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) transitivePeerDependencies: - supports-color - dev: true - /@storybook/react-docgen-typescript-plugin@1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.84.1): - resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==} - peerDependencies: - typescript: '>= 3.x' - webpack: 5.84.1 + '@storybook/react-docgen-typescript-plugin@1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) endent: 2.1.0 find-cache-dir: 3.3.2 flat-cache: 3.2.0 @@ -28257,36 +39591,21 @@ packages: react-docgen-typescript: 2.2.2(typescript@4.9.5) tslib: 2.6.3 typescript: 4.9.5 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) transitivePeerDependencies: - supports-color - dev: false - /@storybook/react@6.4.22(@babel/core@7.24.7)(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3): - resolution: {integrity: sha512-5BFxtiguOcePS5Ty/UoH7C6odmvBYIZutfiy4R3Ua6FYmtxac5vP9r5KjCz1IzZKT8mCf4X+PuK1YvDrPPROgQ==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - '@babel/core': ^7.11.5 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - '@babel/core': - optional: true - typescript: - optional: true + '@storybook/react@6.4.22(@babel/core@7.24.7)(@storybook/builder-webpack5@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(encoding@0.1.13)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(@types/webpack@4.41.38)(encoding@0.1.13)(eslint@7.32.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)': dependencies: - '@babel/core': 7.24.7 '@babel/preset-flow': 7.24.7(@babel/core@7.24.7) '@babel/preset-react': 7.24.7(@babel/core@7.24.7) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.11.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(@types/webpack@4.41.38)(react-refresh@0.11.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@storybook/addons': 6.4.22 - '@storybook/core': 6.4.22(@storybook/builder-webpack5@6.4.22)(@storybook/manager-webpack5@6.4.22)(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1) - '@storybook/core-common': 6.4.22(@swc/core@1.6.5)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/core': 6.4.22(@storybook/builder-webpack5@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(encoding@0.1.13)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/react@18.0.18)(encoding@0.1.13)(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/core-common': 6.4.22(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/node-logger': 6.4.22 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0(typescript@4.9.5)(webpack@5.84.1) + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@storybook/semver': 7.3.2 '@storybook/store': 6.4.22 '@types/webpack-env': 1.18.5 @@ -28301,8 +39620,10 @@ packages: read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + '@babel/core': 7.24.7 typescript: 4.9.5 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) transitivePeerDependencies: - '@storybook/builder-webpack5' - '@storybook/manager-webpack5' @@ -28324,52 +39645,22 @@ packages: - webpack-dev-server - webpack-hot-middleware - webpack-plugin-serve - dev: true - /@storybook/react@6.5.16(@babel/core@7.24.7)(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(require-from-string@2.0.2)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3): - resolution: {integrity: sha512-cBtNlOzf/MySpNLBK22lJ8wFU22HnfTB2xJyBk7W7Zi71Lm7Uxkhv1Pz8HdiQndJ0SlsAAQOWjQYsSZsGkZIaA==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - '@babel/core': ^7.11.5 - '@storybook/builder-webpack4': '*' - '@storybook/builder-webpack5': '*' - '@storybook/manager-webpack4': '*' - '@storybook/manager-webpack5': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - require-from-string: ^2.0.2 - typescript: '*' - peerDependenciesMeta: - '@babel/core': - optional: true - '@storybook/builder-webpack4': - optional: true - '@storybook/builder-webpack5': - optional: true - '@storybook/manager-webpack4': - optional: true - '@storybook/manager-webpack5': - optional: true - typescript: - optional: true - dependencies: - '@babel/core': 7.24.7 + ? '@storybook/react@6.5.16(@babel/core@7.24.7)(@storybook/builder-webpack5@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/webpack@4.41.38)(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(require-from-string@2.0.2)(sockjs-client@1.6.1)(type-fest@4.20.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)' + : dependencies: '@babel/preset-flow': 7.24.7(@babel/core@7.24.7) '@babel/preset-react': 7.24.7(@babel/core@7.24.7) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.11.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/builder-webpack5': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(@types/webpack@4.41.38)(react-refresh@0.11.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/core': 6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1) - '@storybook/core-common': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/core': 6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/core-common': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/docs-tools': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/manager-webpack5': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/docs-tools': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/node-logger': 6.5.16 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.84.1) + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/estree': 0.0.51 '@types/node': 16.18.101 '@types/webpack-env': 1.18.5 @@ -28387,15 +39678,19 @@ packages: prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-element-to-jsx-string: 14.3.4(react-dom@18.3.1)(react@18.3.1) + react-element-to-jsx-string: 14.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-refresh: 0.11.0 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 require-from-string: 2.0.2 ts-dedent: 2.2.0 - typescript: 4.9.5 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + '@babel/core': 7.24.7 + '@storybook/builder-webpack5': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/manager-webpack5': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + typescript: 4.9.5 transitivePeerDependencies: - '@storybook/mdx2-csf' - '@swc/core' @@ -28415,13 +39710,8 @@ packages: - webpack-dev-server - webpack-hot-middleware - webpack-plugin-serve - dev: false - /@storybook/router@6.4.22: - resolution: {integrity: sha512-zeuE8ZgFhNerQX8sICQYNYL65QEi3okyzw7ynF58Ud6nRw4fMxSOHcj2T+nZCIU5ufozRL4QWD/Rg9P2s/HtLw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + '@storybook/router@6.4.22': dependencies: '@storybook/client-logger': 6.4.22 core-js: 3.37.1 @@ -28431,16 +39721,11 @@ packages: lodash: 4.17.21 memoizerific: 1.11.3 qs: 6.12.1 - react-router: 6.23.1(react@16.14.0) - react-router-dom: 6.23.1(react-dom@16.14.0)(react@16.14.0) + react-router: 6.23.1(react@18.3.1) + react-router-dom: 6.23.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) ts-dedent: 2.2.0 - dev: true - /@storybook/router@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-ZgeP8a5YV/iuKbv31V8DjPxlV4AzorRiR8OuSt/KqaiYXNXlOoQDz/qMmiNcrshrfLpmkzoq7fSo4T8lWo2UwQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/router@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 6.5.16 core-js: 3.37.1 @@ -28450,21 +39735,14 @@ packages: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 - /@storybook/semver@7.3.2: - resolution: {integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==} - engines: {node: '>=10'} - hasBin: true + '@storybook/semver@7.3.2': dependencies: core-js: 3.37.1 find-up: 4.1.0 - /@storybook/source-loader@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-fyVl4jrM/5JLrb48aqXPu7sTsmySQaVGFp1zfeqvPPlJRFMastDrePm5XGPN7Qjv1wsKmpuBvuweFKOT1pru3g==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/source-loader@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.37.1 @@ -28476,13 +39754,8 @@ packages: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 - dev: true - /@storybook/store@6.4.22: - resolution: {integrity: sha512-lrmcZtYJLc2emO+1l6AG4Txm9445K6Pyv9cGAuhOJ9Kks0aYe0YtvMkZVVry0RNNAIv6Ypz72zyKc/QK+tZLAQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + '@storybook/store@6.4.22': dependencies: '@storybook/addons': 6.4.22 '@storybook/client-logger': 6.4.22 @@ -28501,15 +39774,10 @@ packages: util-deprecate: 1.0.2 transitivePeerDependencies: - supports-color - dev: true - /@storybook/store@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-g+bVL5hmMq/9cM51K04e37OviUPHT0rHHrRm5wj/hrf18Kd9120b3sxdQ5Dc+HZ292yuME0n+cyrQPTYx9Epmw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/store@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 @@ -28527,18 +39795,17 @@ packages: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - /@storybook/telemetry@6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-CWr5Uko1l9jJW88yTXsZTj/3GTabPvw0o7pDPOXPp8JRZiJTxv1JFaFCafhK9UzYbgcRuGfCC8kEWPZims7iKA==} + '@storybook/telemetry@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@storybook/client-logger': 6.5.16 - '@storybook/core-common': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/core-common': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) chalk: 4.1.2 core-js: 3.37.1 detect-package-manager: 2.0.1 fetch-retry: 5.0.6 fs-extra: 9.1.0 global: 4.4.0 - isomorphic-unfetch: 3.1.0 + isomorphic-unfetch: 3.1.0(encoding@0.1.13) nanoid: 3.3.7 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 @@ -28554,13 +39821,8 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: false - /@storybook/theming@6.4.22: - resolution: {integrity: sha512-NVMKH/jxSPtnMTO4VCN1k47uztq+u9fWv4GSnzq/eezxdGg9ceGL4/lCrNGoNajht9xbrsZ4QvsJ/V2sVGM8wA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + '@storybook/theming@6.4.22': dependencies: '@emotion/core': 10.3.1 '@emotion/is-prop-valid': 0.8.8 @@ -28576,13 +39838,8 @@ packages: ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color - dev: true - /@storybook/theming@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-hNLctkjaYLRdk1+xYTkC1mg4dYz2wSv6SqbLpcKMbkPHTE0ElhddGPHQqB362md/w9emYXNkt1LSMD8Xk9JzVQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/theming@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 6.5.16 core-js: 3.37.1 @@ -28591,18 +39848,14 @@ packages: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 - /@storybook/ui@6.4.22: - resolution: {integrity: sha512-UVjMoyVsqPr+mkS1L7m30O/xrdIEgZ5SCWsvqhmyMUok3F3tRB+6M+OA5Yy+cIVfvObpA7MhxirUT1elCGXsWQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + '@storybook/ui@6.4.22(@types/react@18.0.18)': dependencies: '@emotion/core': 10.3.1 '@storybook/addons': 6.4.22 '@storybook/api': 6.4.22 '@storybook/channels': 6.4.22 '@storybook/client-logger': 6.4.22 - '@storybook/components': 6.4.22 + '@storybook/components': 6.4.22(@types/react@18.0.18) '@storybook/core-events': 6.4.22 '@storybook/router': 6.4.22 '@storybook/semver': 7.3.2 @@ -28619,7 +39872,7 @@ packages: memoizerific: 1.11.3 polished: 4.3.1 qs: 6.12.1 - react-draggable: 4.4.6(react-dom@18.3.1)(react@18.3.1) + react-draggable: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet-async: 1.3.0 react-sizeme: 3.0.2 regenerator-runtime: 0.13.11 @@ -28628,23 +39881,18 @@ packages: transitivePeerDependencies: - '@types/react' - supports-color - dev: true - /@storybook/ui@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-rHn/n12WM8BaXtZ3IApNZCiS+C4Oc5+Lkl4MoctX8V7QSml0SxZBB5hsJ/AiWkgbRxjQpa/L/Nt7/Qw0FjTH/A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/ui@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 6.5.16 - '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.37.1 memoizerific: 1.11.3 qs: 6.12.1 @@ -28652,155 +39900,72 @@ packages: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 resolve-from: 5.0.0 - dev: false - /@svgr/babel-plugin-add-jsx-attribute@4.2.0: - resolution: {integrity: sha512-j7KnilGyZzYr/jhcrSYS3FGWMZVaqyCG0vzMCwzvei0coIkczuYMcniK07nI0aHJINciujjH11T72ICW5eL5Ig==} - engines: {node: '>=8'} + '@svgr/babel-plugin-add-jsx-attribute@4.2.0': {} - /@svgr/babel-plugin-add-jsx-attribute@5.4.0: - resolution: {integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==} - engines: {node: '>=10'} - dev: true + '@svgr/babel-plugin-add-jsx-attribute@5.4.0': {} - /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.24.7): - resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - dev: true - /@svgr/babel-plugin-remove-jsx-attribute@4.2.0: - resolution: {integrity: sha512-3XHLtJ+HbRCH4n28S7y/yZoEQnRpl0tvTZQsHqvaeNXPra+6vE5tbRliH3ox1yZYPCxrlqaJT/Mg+75GpDKlvQ==} - engines: {node: '>=8'} + '@svgr/babel-plugin-remove-jsx-attribute@4.2.0': {} - /@svgr/babel-plugin-remove-jsx-attribute@5.4.0: - resolution: {integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==} - engines: {node: '>=10'} - dev: true + '@svgr/babel-plugin-remove-jsx-attribute@5.4.0': {} - /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.7): - resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - dev: true - /@svgr/babel-plugin-remove-jsx-empty-expression@4.2.0: - resolution: {integrity: sha512-yTr2iLdf6oEuUE9MsRdvt0NmdpMBAkgK8Bjhl6epb+eQWk6abBaX3d65UZ3E3FWaOwePyUgNyNCMVG61gGCQ7w==} - engines: {node: '>=8'} + '@svgr/babel-plugin-remove-jsx-empty-expression@4.2.0': {} - /@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1: - resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==} - engines: {node: '>=10'} - dev: true + '@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1': {} - /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.7): - resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - dev: true - /@svgr/babel-plugin-replace-jsx-attribute-value@4.2.0: - resolution: {integrity: sha512-U9m870Kqm0ko8beHawRXLGLvSi/ZMrl89gJ5BNcT452fAjtF2p4uRzXkdzvGJJJYBgx7BmqlDjBN/eCp5AAX2w==} - engines: {node: '>=8'} + '@svgr/babel-plugin-replace-jsx-attribute-value@4.2.0': {} - /@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1: - resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==} - engines: {node: '>=10'} - dev: true + '@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1': {} - /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.24.7): - resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - dev: true - /@svgr/babel-plugin-svg-dynamic-title@4.3.3: - resolution: {integrity: sha512-w3Be6xUNdwgParsvxkkeZb545VhXEwjGMwExMVBIdPQJeyMQHqm9Msnb2a1teHBqUYL66qtwfhNkbj1iarCG7w==} - engines: {node: '>=8'} + '@svgr/babel-plugin-svg-dynamic-title@4.3.3': {} - /@svgr/babel-plugin-svg-dynamic-title@5.4.0: - resolution: {integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==} - engines: {node: '>=10'} - dev: true + '@svgr/babel-plugin-svg-dynamic-title@5.4.0': {} - /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.24.7): - resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - dev: true - /@svgr/babel-plugin-svg-em-dimensions@4.2.0: - resolution: {integrity: sha512-C0Uy+BHolCHGOZ8Dnr1zXy/KgpBOkEUYY9kI/HseHVPeMbluaX3CijJr7D4C5uR8zrc1T64nnq/k63ydQuGt4w==} - engines: {node: '>=8'} + '@svgr/babel-plugin-svg-em-dimensions@4.2.0': {} - /@svgr/babel-plugin-svg-em-dimensions@5.4.0: - resolution: {integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==} - engines: {node: '>=10'} - dev: true + '@svgr/babel-plugin-svg-em-dimensions@5.4.0': {} - /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.24.7): - resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - dev: true - /@svgr/babel-plugin-transform-react-native-svg@4.2.0: - resolution: {integrity: sha512-7YvynOpZDpCOUoIVlaaOUU87J4Z6RdD6spYN4eUb5tfPoKGSF9OG2NuhgYnq4jSkAxcpMaXWPf1cePkzmqTPNw==} - engines: {node: '>=8'} + '@svgr/babel-plugin-transform-react-native-svg@4.2.0': {} - /@svgr/babel-plugin-transform-react-native-svg@5.4.0: - resolution: {integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==} - engines: {node: '>=10'} - dev: true + '@svgr/babel-plugin-transform-react-native-svg@5.4.0': {} - /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.24.7): - resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - dev: true - /@svgr/babel-plugin-transform-svg-component@4.2.0: - resolution: {integrity: sha512-hYfYuZhQPCBVotABsXKSCfel2slf/yvJY8heTVX1PCTaq/IgASq1IyxPPKJ0chWREEKewIU/JMSsIGBtK1KKxw==} - engines: {node: '>=8'} + '@svgr/babel-plugin-transform-svg-component@4.2.0': {} - /@svgr/babel-plugin-transform-svg-component@5.5.0: - resolution: {integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==} - engines: {node: '>=10'} - dev: true + '@svgr/babel-plugin-transform-svg-component@5.5.0': {} - /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.24.7): - resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} - engines: {node: '>=12'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - dev: true - /@svgr/babel-preset@4.3.3: - resolution: {integrity: sha512-6PG80tdz4eAlYUN3g5GZiUjg2FMcp+Wn6rtnz5WJG9ITGEF1pmFdzq02597Hn0OmnQuCVaBYQE1OVFAnwOl+0A==} - engines: {node: '>=8'} + '@svgr/babel-preset@4.3.3': dependencies: '@svgr/babel-plugin-add-jsx-attribute': 4.2.0 '@svgr/babel-plugin-remove-jsx-attribute': 4.2.0 @@ -28811,9 +39976,7 @@ packages: '@svgr/babel-plugin-transform-react-native-svg': 4.2.0 '@svgr/babel-plugin-transform-svg-component': 4.2.0 - /@svgr/babel-preset@5.5.0: - resolution: {integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==} - engines: {node: '>=10'} + '@svgr/babel-preset@5.5.0': dependencies: '@svgr/babel-plugin-add-jsx-attribute': 5.4.0 '@svgr/babel-plugin-remove-jsx-attribute': 5.4.0 @@ -28823,13 +39986,8 @@ packages: '@svgr/babel-plugin-svg-em-dimensions': 5.4.0 '@svgr/babel-plugin-transform-react-native-svg': 5.4.0 '@svgr/babel-plugin-transform-svg-component': 5.5.0 - dev: true - /@svgr/babel-preset@6.5.1(@babel/core@7.24.7): - resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-preset@6.5.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.24.7) @@ -28840,11 +39998,8 @@ packages: '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.24.7) '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.24.7) '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.24.7) - dev: true - /@svgr/core@4.3.3: - resolution: {integrity: sha512-qNuGF1QON1626UCaZamWt5yedpgOytvLj5BQZe2j1k1B8DUG4OyugZyfEwBeXozCUwhLEpsrgPrE+eCu4fY17w==} - engines: {node: '>=8'} + '@svgr/core@4.3.3': dependencies: '@svgr/plugin-jsx': 4.3.3 camelcase: 5.3.1 @@ -28852,20 +40007,15 @@ packages: transitivePeerDependencies: - supports-color - /@svgr/core@5.5.0: - resolution: {integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==} - engines: {node: '>=10'} + '@svgr/core@5.5.0': dependencies: '@svgr/plugin-jsx': 5.5.0 camelcase: 6.3.0 cosmiconfig: 7.1.0 transitivePeerDependencies: - supports-color - dev: true - /@svgr/core@6.5.1: - resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} - engines: {node: '>=10'} + '@svgr/core@6.5.1': dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 6.5.1(@babel/core@7.24.7) @@ -28874,32 +40024,21 @@ packages: cosmiconfig: 7.1.0 transitivePeerDependencies: - supports-color - dev: true - /@svgr/hast-util-to-babel-ast@4.3.2: - resolution: {integrity: sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg==} - engines: {node: '>=8'} + '@svgr/hast-util-to-babel-ast@4.3.2': dependencies: '@babel/types': 7.24.7 - /@svgr/hast-util-to-babel-ast@5.5.0: - resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} - engines: {node: '>=10'} + '@svgr/hast-util-to-babel-ast@5.5.0': dependencies: '@babel/types': 7.24.7 - dev: true - /@svgr/hast-util-to-babel-ast@6.5.1: - resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} - engines: {node: '>=10'} + '@svgr/hast-util-to-babel-ast@6.5.1': dependencies: '@babel/types': 7.24.7 entities: 4.5.0 - dev: true - /@svgr/plugin-jsx@4.3.3: - resolution: {integrity: sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w==} - engines: {node: '>=8'} + '@svgr/plugin-jsx@4.3.3': dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 4.3.3 @@ -28908,9 +40047,7 @@ packages: transitivePeerDependencies: - supports-color - /@svgr/plugin-jsx@5.5.0: - resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} - engines: {node: '>=10'} + '@svgr/plugin-jsx@5.5.0': dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 5.5.0 @@ -28918,13 +40055,8 @@ packages: svg-parser: 2.0.4 transitivePeerDependencies: - supports-color - dev: true - /@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1): - resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==} - engines: {node: '>=10'} - peerDependencies: - '@svgr/core': ^6.0.0 + '@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1)': dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 6.5.1(@babel/core@7.24.7) @@ -28933,40 +40065,27 @@ packages: svg-parser: 2.0.4 transitivePeerDependencies: - supports-color - dev: true - /@svgr/plugin-svgo@4.3.1: - resolution: {integrity: sha512-PrMtEDUWjX3Ea65JsVCwTIXuSqa3CG9px+DluF1/eo9mlDrgrtFE7NE/DjdhjJgSM9wenlVBzkzneSIUgfUI/w==} - engines: {node: '>=8'} + '@svgr/plugin-svgo@4.3.1': dependencies: cosmiconfig: 5.2.1 merge-deep: 3.0.3 svgo: 1.3.2 - /@svgr/plugin-svgo@5.5.0: - resolution: {integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==} - engines: {node: '>=10'} + '@svgr/plugin-svgo@5.5.0': dependencies: cosmiconfig: 7.1.0 deepmerge: 4.3.1 svgo: 1.3.2 - dev: true - /@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1): - resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==} - engines: {node: '>=10'} - peerDependencies: - '@svgr/core': '*' + '@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1)': dependencies: '@svgr/core': 6.5.1 cosmiconfig: 7.1.0 deepmerge: 4.3.1 svgo: 2.8.0 - dev: true - /@svgr/rollup@6.5.1: - resolution: {integrity: sha512-GeUfq0grJfpcn2jRWRaZ4npn27nnWK21vUj6MqDqknuJnEqGADcZZjO9wrUAaPLr3InAnQi0Z7nwiNUdzkaj6A==} - engines: {node: '>=10'} + '@svgr/rollup@6.5.1': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) @@ -28979,11 +40098,8 @@ packages: '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1) transitivePeerDependencies: - supports-color - dev: true - /@svgr/webpack@4.3.2: - resolution: {integrity: sha512-F3VE5OvyOWBEd2bF7BdtFRyI6E9it3mN7teDw0JQTlVtc4HZEYiiLSl+Uf9Uub6IYHVGc+qIrxxDyeedkQru2w==} - engines: {node: '>=8'} + '@svgr/webpack@4.3.2': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) @@ -28996,9 +40112,7 @@ packages: transitivePeerDependencies: - supports-color - /@svgr/webpack@5.5.0: - resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==} - engines: {node: '>=10'} + '@svgr/webpack@5.5.0': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) @@ -29010,11 +40124,8 @@ packages: loader-utils: 2.0.4 transitivePeerDependencies: - supports-color - dev: true - /@svgr/webpack@6.5.1: - resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==} - engines: {node: '>=10'} + '@svgr/webpack@6.5.1': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) @@ -29026,55 +40137,32 @@ packages: '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1) transitivePeerDependencies: - supports-color - dev: true - /@swc-node/core@1.13.1(@swc/core@1.6.5)(@swc/types@0.1.9): - resolution: {integrity: sha512-emB5l2nZsXjUEAuusqjYvWnQMLWZp6K039Mv8aq5SX1rsNM/N7DNhw1i4/DX7AyzNZ0tT+ASWyTvqEURldp5HA==} - engines: {node: '>= 10'} - peerDependencies: - '@swc/core': '>= 1.4.13' - '@swc/types': '>= 0.1' + '@swc-node/core@1.13.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)': dependencies: '@swc/core': 1.6.5(@swc/helpers@0.3.17) '@swc/types': 0.1.9 - dev: true - /@swc-node/register@1.9.2(@swc/core@1.6.5)(@swc/types@0.1.9)(typescript@4.9.5): - resolution: {integrity: sha512-BBjg0QNuEEmJSoU/++JOXhrjWdu3PTyYeJWsvchsI0Aqtj8ICkz/DqlwtXbmZVZ5vuDPpTfFlwDBZe81zgShMA==} - peerDependencies: - '@swc/core': '>= 1.4.13' - typescript: '>= 4.3' + '@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5)': dependencies: - '@swc-node/core': 1.13.1(@swc/core@1.6.5)(@swc/types@0.1.9) + '@swc-node/core': 1.13.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9) '@swc-node/sourcemap-support': 0.5.0 '@swc/core': 1.6.5(@swc/helpers@0.3.17) colorette: 2.0.20 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) pirates: 4.0.6 tslib: 2.6.3 typescript: 4.9.5 transitivePeerDependencies: - '@swc/types' - supports-color - dev: true - /@swc-node/sourcemap-support@0.5.0: - resolution: {integrity: sha512-fbhjL5G0YvFoWwNhWleuBUfotiX+USiA9oJqu9STFw+Hb0Cgnddn+HVS/K5fI45mn92e8V+cHD2jgFjk4w2T9Q==} + '@swc-node/sourcemap-support@0.5.0': dependencies: source-map-support: 0.5.21 tslib: 2.6.3 - dev: true - /@swc/cli@0.1.65(@swc/core@1.6.5): - resolution: {integrity: sha512-4NcgsvJVHhA7trDnMmkGLLvWMHu2kSy+qHx6QwRhhJhdiYdNUrhdp+ERxen73sYtaeEOYeLJcWrQ60nzKi6rpg==} - engines: {node: '>= 12.13'} - hasBin: true - peerDependencies: - '@swc/core': ^1.2.66 - chokidar: ^3.5.1 - peerDependenciesMeta: - chokidar: - optional: true + '@swc/cli@0.1.65(@swc/core@1.6.5(@swc/helpers@0.3.17))(chokidar@3.6.0)': dependencies: '@mole-inc/bin-wrapper': 8.0.1 '@swc/core': 1.6.5(@swc/helpers@0.3.17) @@ -29084,100 +40172,42 @@ packages: semver: 7.6.2 slash: 3.0.0 source-map: 0.7.4 - dev: true + optionalDependencies: + chokidar: 3.6.0 - /@swc/core-darwin-arm64@1.6.5: - resolution: {integrity: sha512-RGQhMdni2v1/ANQ/2K+F+QYdzaucekYBewZcX1ogqJ8G5sbPaBdYdDN1qQ4kHLCIkPtGP6qC7c71qPEqL2RidQ==} - engines: {node: '>=10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true + '@swc/core-darwin-arm64@1.6.5': optional: true - /@swc/core-darwin-x64@1.6.5: - resolution: {integrity: sha512-/pSN0/Jtcbbb9+ovS9rKxR3qertpFAM3OEJr/+Dh/8yy7jK5G5EFPIrfsw/7Q5987ERPIJIH6BspK2CBB2tgcg==} - engines: {node: '>=10'} - cpu: [x64] - os: [darwin] - requiresBuild: true + '@swc/core-darwin-x64@1.6.5': optional: true - /@swc/core-linux-arm-gnueabihf@1.6.5: - resolution: {integrity: sha512-B0g/dROCE747RRegs/jPHuKJgwXLracDhnqQa80kFdgWEMjlcb7OMCgs5OX86yJGRS4qcYbiMGD0Pp7Kbqn3yw==} - engines: {node: '>=10'} - cpu: [arm] - os: [linux] - requiresBuild: true + '@swc/core-linux-arm-gnueabihf@1.6.5': optional: true - /@swc/core-linux-arm64-gnu@1.6.5: - resolution: {integrity: sha512-W8meapgXTq8AOtSvDG4yKR8ant2WWD++yOjgzAleB5VAC+oC+aa8YJROGxj8HepurU8kurqzcialwoMeq5SZZQ==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@swc/core-linux-arm64-gnu@1.6.5': optional: true - /@swc/core-linux-arm64-musl@1.6.5: - resolution: {integrity: sha512-jyCKqoX50Fg8rJUQqh4u5PqnE7nqYKXHjVH2WcYr114/MU21zlsI+YL6aOQU1XP8bJQ2gPQ1rnlnGJdEHiKS/w==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@swc/core-linux-arm64-musl@1.6.5': optional: true - /@swc/core-linux-x64-gnu@1.6.5: - resolution: {integrity: sha512-G6HmUn/RRIlXC0YYFfBz2qh6OZkHS/KUPkhoG4X9ADcgWXXjOFh6JrefwsYj8VBAJEnr5iewzjNfj+nztwHaeA==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - requiresBuild: true + '@swc/core-linux-x64-gnu@1.6.5': optional: true - /@swc/core-linux-x64-musl@1.6.5: - resolution: {integrity: sha512-AQpBjBnelQDSbeTJA50AXdS6+CP66LsXIMNTwhPSgUfE7Bx1ggZV11Fsi4Q5SGcs6a8Qw1cuYKN57ZfZC5QOuA==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - requiresBuild: true + '@swc/core-linux-x64-musl@1.6.5': optional: true - /@swc/core-win32-arm64-msvc@1.6.5: - resolution: {integrity: sha512-MZTWM8kUwS30pVrtbzSGEXtek46aXNb/mT9D6rsS7NvOuv2w+qZhjR1rzf4LNbbn5f8VnR4Nac1WIOYZmfC5ng==} - engines: {node: '>=10'} - cpu: [arm64] - os: [win32] - requiresBuild: true + '@swc/core-win32-arm64-msvc@1.6.5': optional: true - /@swc/core-win32-ia32-msvc@1.6.5: - resolution: {integrity: sha512-WZdu4gISAr3yOm1fVwKhhk6+MrP7kVX0KMP7+ZQFTN5zXQEiDSDunEJKVgjMVj3vlR+6mnAqa/L0V9Qa8+zKlQ==} - engines: {node: '>=10'} - cpu: [ia32] - os: [win32] - requiresBuild: true + '@swc/core-win32-ia32-msvc@1.6.5': optional: true - /@swc/core-win32-x64-msvc@1.6.5: - resolution: {integrity: sha512-ezXgucnMTzlFIxQZw7ls/5r2hseFaRoDL04cuXUOs97E8r+nJSmFsRQm/ygH5jBeXNo59nyZCalrjJAjwfgACA==} - engines: {node: '>=10'} - cpu: [x64] - os: [win32] - requiresBuild: true + '@swc/core-win32-x64-msvc@1.6.5': optional: true - /@swc/core@1.6.5(@swc/helpers@0.3.17): - resolution: {integrity: sha512-tyVvUK/HDOUUsK6/GmWvnqUtD9oDpPUA4f7f7JCOV8hXxtfjMtAZeBKf93yrB1XZet69TDR7EN0hFC6i4MF0Ig==} - engines: {node: '>=10'} - requiresBuild: true - peerDependencies: - '@swc/helpers': '*' - peerDependenciesMeta: - '@swc/helpers': - optional: true + '@swc/core@1.6.5(@swc/helpers@0.3.17)': dependencies: '@swc/counter': 0.1.3 - '@swc/helpers': 0.3.17 '@swc/types': 0.1.9 optionalDependencies: '@swc/core-darwin-arm64': 1.6.5 @@ -29190,37 +40220,27 @@ packages: '@swc/core-win32-arm64-msvc': 1.6.5 '@swc/core-win32-ia32-msvc': 1.6.5 '@swc/core-win32-x64-msvc': 1.6.5 + '@swc/helpers': 0.3.17 - /@swc/counter@0.1.3: - resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} + '@swc/counter@0.1.3': {} - /@swc/helpers@0.3.17: - resolution: {integrity: sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==} + '@swc/helpers@0.3.17': dependencies: tslib: 2.6.3 - /@swc/types@0.1.9: - resolution: {integrity: sha512-qKnCno++jzcJ4lM4NTfYifm1EFSCeIfKiAHAfkENZAV5Kl9PjJIyd2yeeVv6c/2CckuLyv2NmRC5pv6pm2WQBg==} + '@swc/types@0.1.9': dependencies: '@swc/counter': 0.1.3 - /@szmarczak/http-timer@1.1.2: - resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} - engines: {node: '>=6'} + '@szmarczak/http-timer@1.1.2': dependencies: defer-to-connect: 1.1.3 - dev: false - /@szmarczak/http-timer@4.0.6: - resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} - engines: {node: '>=10'} + '@szmarczak/http-timer@4.0.6': dependencies: defer-to-connect: 2.0.1 - dev: true - /@testing-library/dom@7.31.2: - resolution: {integrity: sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==} - engines: {node: '>=10'} + '@testing-library/dom@7.31.2': dependencies: '@babel/code-frame': 7.24.7 '@babel/runtime': 7.24.7 @@ -29230,11 +40250,8 @@ packages: dom-accessibility-api: 0.5.16 lz-string: 1.5.0 pretty-format: 26.6.2 - dev: true - /@testing-library/dom@8.20.1: - resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==} - engines: {node: '>=12'} + '@testing-library/dom@8.20.1': dependencies: '@babel/code-frame': 7.24.7 '@babel/runtime': 7.24.7 @@ -29244,11 +40261,8 @@ packages: dom-accessibility-api: 0.5.16 lz-string: 1.5.0 pretty-format: 27.5.1 - dev: true - /@testing-library/dom@9.3.4: - resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} - engines: {node: '>=14'} + '@testing-library/dom@9.3.4': dependencies: '@babel/code-frame': 7.24.7 '@babel/runtime': 7.24.7 @@ -29258,11 +40272,8 @@ packages: dom-accessibility-api: 0.5.16 lz-string: 1.5.0 pretty-format: 27.5.1 - dev: true - /@testing-library/jest-dom@5.17.0: - resolution: {integrity: sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==} - engines: {node: '>=8', npm: '>=6', yarn: '>=1'} + '@testing-library/jest-dom@5.17.0': dependencies: '@adobe/css-tools': 4.4.0 '@babel/runtime': 7.24.7 @@ -29273,114 +40284,60 @@ packages: dom-accessibility-api: 0.5.16 lodash: 4.17.21 redent: 3.0.0 - dev: true - /@testing-library/jest-dom@6.4.6(@types/jest@29.5.12)(jest@29.7.0): - resolution: {integrity: sha512-8qpnGVincVDLEcQXWaHOf6zmlbwTKc6Us6PPu4CRnPXCzo2OGBS5cwgMMOWdxDpEz1mkbvXHpEy99M5Yvt682w==} - engines: {node: '>=14', npm: '>=6', yarn: '>=1'} - peerDependencies: - '@jest/globals': '>= 28' - '@types/bun': latest - '@types/jest': '>= 28' - jest: '>= 28' - vitest: '>= 0.32' - peerDependenciesMeta: - '@jest/globals': - optional: true - '@types/bun': - optional: true - '@types/jest': - optional: true - jest: - optional: true - vitest: - optional: true + '@testing-library/jest-dom@6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))': dependencies: '@adobe/css-tools': 4.4.0 '@babel/runtime': 7.24.7 - '@types/jest': 29.5.12 aria-query: 5.3.0 chalk: 3.0.0 css.escape: 1.5.1 dom-accessibility-api: 0.6.3 - jest: 29.7.0(@types/node@13.13.52)(ts-node@10.9.2) lodash: 4.17.21 redent: 3.0.0 - dev: true + optionalDependencies: + '@jest/globals': 29.7.0 + '@types/jest': 29.5.12 + jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) - /@testing-library/react@14.3.1(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==} - engines: {node: '>=14'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + '@testing-library/react@14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 '@testing-library/dom': 9.3.4 '@types/react-dom': 18.3.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: true - /@testing-library/user-event@12.8.3(@testing-library/dom@7.31.2): - resolution: {integrity: sha512-IR0iWbFkgd56Bu5ZI/ej8yQwrkCv8Qydx6RzwbKz9faXazR/+5tvYKsZQgyXJiwgpcva127YO6JcWy7YlCfofQ==} - engines: {node: '>=10', npm: '>=6'} - peerDependencies: - '@testing-library/dom': '>=7.21.4' + '@testing-library/user-event@12.8.3(@testing-library/dom@7.31.2)': dependencies: '@babel/runtime': 7.24.7 '@testing-library/dom': 7.31.2 - dev: true - /@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4): - resolution: {integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==} - engines: {node: '>=12', npm: '>=6'} - peerDependencies: - '@testing-library/dom': '>=7.21.4' + '@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4)': dependencies: '@testing-library/dom': 9.3.4 - dev: true - /@tokenizer/token@0.3.0: - resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} - dev: true + '@tokenizer/token@0.3.0': {} - /@tootallnate/once@1.1.2: - resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} - engines: {node: '>= 6'} - dev: true + '@tootallnate/once@1.1.2': {} - /@tootallnate/once@2.0.0: - resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} - engines: {node: '>= 10'} - dev: true + '@tootallnate/once@2.0.0': {} - /@trysound/sax@0.2.0: - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} - engines: {node: '>=10.13.0'} + '@trysound/sax@0.2.0': {} - /@tsconfig/node10@1.0.11: - resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} + '@tsconfig/node10@1.0.11': {} - /@tsconfig/node12@1.0.11: - resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + '@tsconfig/node12@1.0.11': {} - /@tsconfig/node14@1.0.3: - resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + '@tsconfig/node14@1.0.3': {} - /@tsconfig/node16@1.0.4: - resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + '@tsconfig/node16@1.0.4': {} - /@types/aria-query@4.2.2: - resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} - dev: true + '@types/aria-query@4.2.2': {} - /@types/aria-query@5.0.4: - resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} - dev: true + '@types/aria-query@5.0.4': {} - /@types/babel__core@7.20.5: - resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + '@types/babel__core@7.20.5': dependencies: '@babel/parser': 7.24.7 '@babel/types': 7.24.7 @@ -29388,230 +40345,145 @@ packages: '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.6 - /@types/babel__generator@7.6.8: - resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} + '@types/babel__generator@7.6.8': dependencies: '@babel/types': 7.24.7 - /@types/babel__template@7.4.4: - resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + '@types/babel__template@7.4.4': dependencies: '@babel/parser': 7.24.7 '@babel/types': 7.24.7 - /@types/babel__traverse@7.20.6: - resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} + '@types/babel__traverse@7.20.6': dependencies: '@babel/types': 7.24.7 - /@types/body-parser@1.19.5: - resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} + '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 '@types/node': 13.13.52 - dev: true - /@types/bonjour@3.5.13: - resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} + '@types/bonjour@3.5.13': dependencies: '@types/node': 13.13.52 - dev: true - /@types/cacheable-request@6.0.3: - resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} + '@types/cacheable-request@6.0.3': dependencies: '@types/http-cache-semantics': 4.0.4 '@types/keyv': 3.1.4 '@types/node': 13.13.52 '@types/responselike': 1.0.3 - dev: true - /@types/color-convert@2.0.3: - resolution: {integrity: sha512-2Q6wzrNiuEvYxVQqhh7sXM2mhIhvZR/Paq4FdsQkOMgWsCIkKvSGj8Le1/XalulrmgOzPMqNa0ix+ePY4hTrfg==} + '@types/color-convert@2.0.3': dependencies: '@types/color-name': 1.1.4 - dev: true - /@types/color-name@1.1.4: - resolution: {integrity: sha512-hulKeREDdLFesGQjl96+4aoJSHY5b2GRjagzzcqCfIrWhe5vkCqIvrLbqzBaI1q94Vg8DNJZZqTR5ocdWmWclg==} - dev: true + '@types/color-name@1.1.4': {} - /@types/connect-history-api-fallback@1.5.4: - resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} + '@types/connect-history-api-fallback@1.5.4': dependencies: '@types/express-serve-static-core': 4.19.5 '@types/node': 13.13.52 - dev: true - /@types/connect@3.4.38: - resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + '@types/connect@3.4.38': dependencies: '@types/node': 13.13.52 - dev: true - /@types/cookie@0.4.1: - resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==} - dev: true + '@types/cookie@0.4.1': {} - /@types/crypto-js@3.1.47: - resolution: {integrity: sha512-eI6gvpcGHLk3dAuHYnRCAjX+41gMv1nz/VP55wAe5HtmAKDOoPSfr3f6vkMc08ov1S0NsjvUBxDtHHxqQY1LGA==} - dev: true + '@types/crypto-js@3.1.47': {} - /@types/cssnano@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-ikR+18UpFGgvaWSur4og6SJYF/6QEYHXvrIt36dp81p1MG3cAPTYDMBJGeyWa3LCnqEbgNMHKRb+FP0NrXtoWQ==} - deprecated: This is a stub types definition. cssnano provides its own type definitions, so you do not need this installed. + '@types/cssnano@5.1.0(postcss@8.4.38)': dependencies: cssnano: 5.1.15(postcss@8.4.38) transitivePeerDependencies: - postcss - dev: true - /@types/d3-array@3.2.1: - resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==} - dev: false + '@types/d3-array@3.2.1': {} - /@types/d3-axis@3.0.6: - resolution: {integrity: sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==} + '@types/d3-axis@3.0.6': dependencies: '@types/d3-selection': 3.0.10 - dev: false - /@types/d3-brush@3.0.6: - resolution: {integrity: sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==} + '@types/d3-brush@3.0.6': dependencies: '@types/d3-selection': 3.0.10 - dev: false - /@types/d3-chord@3.0.6: - resolution: {integrity: sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==} - dev: false + '@types/d3-chord@3.0.6': {} - /@types/d3-color@3.1.3: - resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==} - dev: false + '@types/d3-color@3.1.3': {} - /@types/d3-contour@3.0.6: - resolution: {integrity: sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==} + '@types/d3-contour@3.0.6': dependencies: '@types/d3-array': 3.2.1 '@types/geojson': 7946.0.14 - dev: false - /@types/d3-delaunay@6.0.4: - resolution: {integrity: sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==} - dev: false + '@types/d3-delaunay@6.0.4': {} - /@types/d3-dispatch@3.0.6: - resolution: {integrity: sha512-4fvZhzMeeuBJYZXRXrRIQnvUYfyXwYmLsdiN7XXmVNQKKw1cM8a5WdID0g1hVFZDqT9ZqZEY5pD44p24VS7iZQ==} - dev: false + '@types/d3-dispatch@3.0.6': {} - /@types/d3-drag@3.0.7: - resolution: {integrity: sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==} + '@types/d3-drag@3.0.7': dependencies: '@types/d3-selection': 3.0.10 - dev: false - /@types/d3-dsv@3.0.7: - resolution: {integrity: sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==} - dev: false + '@types/d3-dsv@3.0.7': {} - /@types/d3-ease@3.0.2: - resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==} - dev: false + '@types/d3-ease@3.0.2': {} - /@types/d3-fetch@3.0.7: - resolution: {integrity: sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==} + '@types/d3-fetch@3.0.7': dependencies: '@types/d3-dsv': 3.0.7 - dev: false - /@types/d3-force@3.0.10: - resolution: {integrity: sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==} - dev: false + '@types/d3-force@3.0.10': {} - /@types/d3-format@3.0.4: - resolution: {integrity: sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==} - dev: false + '@types/d3-format@3.0.4': {} - /@types/d3-geo@3.1.0: - resolution: {integrity: sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==} + '@types/d3-geo@3.1.0': dependencies: '@types/geojson': 7946.0.14 - dev: false - /@types/d3-hierarchy@3.1.7: - resolution: {integrity: sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==} - dev: false + '@types/d3-hierarchy@3.1.7': {} - /@types/d3-interpolate@3.0.4: - resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==} + '@types/d3-interpolate@3.0.4': dependencies: '@types/d3-color': 3.1.3 - dev: false - /@types/d3-path@3.1.0: - resolution: {integrity: sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==} - dev: false + '@types/d3-path@3.1.0': {} - /@types/d3-polygon@3.0.2: - resolution: {integrity: sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==} - dev: false + '@types/d3-polygon@3.0.2': {} - /@types/d3-quadtree@3.0.6: - resolution: {integrity: sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==} - dev: false + '@types/d3-quadtree@3.0.6': {} - /@types/d3-random@3.0.3: - resolution: {integrity: sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==} - dev: false + '@types/d3-random@3.0.3': {} - /@types/d3-scale-chromatic@3.0.3: - resolution: {integrity: sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==} - dev: false + '@types/d3-scale-chromatic@3.0.3': {} - /@types/d3-scale@4.0.8: - resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==} + '@types/d3-scale@4.0.8': dependencies: '@types/d3-time': 3.0.3 - dev: false - /@types/d3-selection@3.0.10: - resolution: {integrity: sha512-cuHoUgS/V3hLdjJOLTT691+G2QoqAjCVLmr4kJXR4ha56w1Zdu8UUQ5TxLRqudgNjwXeQxKMq4j+lyf9sWuslg==} - dev: false + '@types/d3-selection@3.0.10': {} - /@types/d3-shape@3.1.6: - resolution: {integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==} + '@types/d3-shape@3.1.6': dependencies: '@types/d3-path': 3.1.0 - dev: false - /@types/d3-time-format@4.0.3: - resolution: {integrity: sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==} - dev: false + '@types/d3-time-format@4.0.3': {} - /@types/d3-time@3.0.3: - resolution: {integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==} - dev: false + '@types/d3-time@3.0.3': {} - /@types/d3-timer@3.0.2: - resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==} - dev: false + '@types/d3-timer@3.0.2': {} - /@types/d3-transition@3.0.8: - resolution: {integrity: sha512-ew63aJfQ/ms7QQ4X7pk5NxQ9fZH/z+i24ZfJ6tJSfqxJMrYLiK01EAs2/Rtw/JreGUsS3pLPNV644qXFGnoZNQ==} + '@types/d3-transition@3.0.8': dependencies: '@types/d3-selection': 3.0.10 - dev: false - /@types/d3-zoom@3.0.8: - resolution: {integrity: sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==} + '@types/d3-zoom@3.0.8': dependencies: '@types/d3-interpolate': 3.0.4 '@types/d3-selection': 3.0.10 - dev: false - /@types/d3@7.4.3: - resolution: {integrity: sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==} + '@types/d3@7.4.3': dependencies: '@types/d3-array': 3.2.1 '@types/d3-axis': 3.0.6 @@ -29643,507 +40515,362 @@ packages: '@types/d3-timer': 3.0.2 '@types/d3-transition': 3.0.8 '@types/d3-zoom': 3.0.8 - dev: false - /@types/eslint-scope@3.7.7: - resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} + '@types/debug@4.1.12': + dependencies: + '@types/ms': 0.7.34 + + '@types/eslint-scope@3.7.7': dependencies: '@types/eslint': 8.56.10 '@types/estree': 1.0.5 - /@types/eslint@7.29.0: - resolution: {integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==} + '@types/eslint@7.29.0': dependencies: '@types/estree': 1.0.5 '@types/json-schema': 7.0.15 - dev: true - /@types/eslint@8.56.10: - resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==} + '@types/eslint@8.56.10': dependencies: '@types/estree': 1.0.5 '@types/json-schema': 7.0.15 - /@types/estree@0.0.39: - resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} - dev: true + '@types/estree-jsx@1.0.5': + dependencies: + '@types/estree': 1.0.5 - /@types/estree@0.0.51: - resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} - dev: false + '@types/estree@0.0.39': {} - /@types/estree@1.0.5: - resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + '@types/estree@0.0.51': {} - /@types/express-serve-static-core@4.19.5: - resolution: {integrity: sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==} + '@types/estree@1.0.5': {} + + '@types/express-serve-static-core@4.19.5': dependencies: '@types/node': 13.13.52 '@types/qs': 6.9.15 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 - dev: true - /@types/express@4.17.21: - resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} + '@types/express@4.17.21': dependencies: '@types/body-parser': 1.19.5 '@types/express-serve-static-core': 4.19.5 '@types/qs': 6.9.15 '@types/serve-static': 1.15.7 - dev: true - /@types/file-saver@2.0.7: - resolution: {integrity: sha512-dNKVfHd/jk0SkR/exKGj2ggkB45MAkzvWCaqLUUgkyjITkGNzH8H+yUwr+BLJUBjZOe9w8X3wgmXhZDRg1ED6A==} - dev: true + '@types/file-saver@2.0.7': {} - /@types/fs-extra@8.1.5: - resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==} + '@types/fs-extra@8.1.5': dependencies: '@types/node': 13.13.52 - dev: true - /@types/geojson@7946.0.14: - resolution: {integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==} - dev: false + '@types/geojson@7946.0.14': {} - /@types/glob@7.2.0: - resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} + '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 '@types/node': 13.13.52 - /@types/glob@8.1.0: - resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==} + '@types/glob@8.1.0': dependencies: '@types/minimatch': 5.1.2 '@types/node': 13.13.52 - /@types/graceful-fs@4.1.9: - resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} + '@types/graceful-fs@4.1.9': dependencies: '@types/node': 13.13.52 - /@types/hast@2.3.10: - resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} + '@types/hast@2.3.10': dependencies: '@types/unist': 2.0.10 - /@types/history@4.7.11: - resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==} - dev: true + '@types/hast@3.0.4': + dependencies: + '@types/unist': 2.0.10 - /@types/hoist-non-react-statics@3.3.5: - resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==} + '@types/history@4.7.11': {} + + '@types/hoist-non-react-statics@3.3.5': dependencies: '@types/react': 18.0.18 hoist-non-react-statics: 3.3.2 - /@types/html-minifier-terser@5.1.2: - resolution: {integrity: sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==} + '@types/html-minifier-terser@5.1.2': {} - /@types/html-minifier-terser@6.1.0: - resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} + '@types/html-minifier-terser@6.1.0': {} - /@types/http-cache-semantics@4.0.4: - resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} - dev: true + '@types/http-cache-semantics@4.0.4': {} - /@types/http-errors@2.0.4: - resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} - dev: true + '@types/http-errors@2.0.4': {} - /@types/http-proxy@1.17.14: - resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} + '@types/http-proxy@1.17.14': dependencies: '@types/node': 13.13.52 - dev: true - /@types/i18next-xhr-backend@1.4.2: - resolution: {integrity: sha512-uykS5BvdSoN+G7j7D19xzR12pEVkWmUrIEIxMsj2brVVzjc3gIthWCQKYqbe/b1q87SLbWb/ZHN9bR4qxi1H6A==} - deprecated: This is a stub types definition. i18next-xhr-backend provides its own type definitions, so you do not need this installed. + '@types/i18next-xhr-backend@1.4.2': dependencies: i18next-xhr-backend: 3.2.2 - dev: true - /@types/i18next@8.4.3: - resolution: {integrity: sha512-ayqHEU+i9H7/Fkefnhyvml1ChKEZXcDwmVqo3jmrxy7PoAtTSY1t4/hr58Xz8hkXLPoCGS1hTc6bLJOUaOAjfQ==} - dev: true + '@types/i18next@8.4.3': {} - /@types/inquirer@8.2.10: - resolution: {integrity: sha512-IdD5NmHyVjWM8SHWo/kPBgtzXatwPkfwzyP3fN1jF2g9BWt5WO+8hL2F4o2GKIYsU40PpqeevuUWvkS/roXJkA==} + '@types/inquirer@8.2.10': dependencies: '@types/through': 0.0.33 rxjs: 7.8.1 - dev: true - /@types/is-function@1.0.3: - resolution: {integrity: sha512-/CLhCW79JUeLKznI6mbVieGbl4QU5Hfn+6udw1YHZoofASjbQ5zaP5LzAUZYDpRYEjS4/P+DhEgyJ/PQmGGTWw==} + '@types/is-function@1.0.3': {} - /@types/istanbul-lib-coverage@2.0.6: - resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} + '@types/istanbul-lib-coverage@2.0.6': {} - /@types/istanbul-lib-report@3.0.3: - resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} + '@types/istanbul-lib-report@3.0.3': dependencies: '@types/istanbul-lib-coverage': 2.0.6 - /@types/istanbul-reports@3.0.4: - resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + '@types/istanbul-reports@3.0.4': dependencies: '@types/istanbul-lib-report': 3.0.3 - /@types/jest@26.0.24: - resolution: {integrity: sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==} + '@types/jest@26.0.24': dependencies: jest-diff: 26.6.2 pretty-format: 26.6.2 - dev: true - /@types/jest@29.5.12: - resolution: {integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==} + '@types/jest@29.5.12': dependencies: expect: 29.7.0 pretty-format: 29.7.0 - /@types/js-beautify@1.14.3: - resolution: {integrity: sha512-FMbQHz+qd9DoGvgLHxeqqVPaNRffpIu5ZjozwV8hf9JAGpIOzuAf4wGbRSo8LNITHqGjmmVjaMggTT5P4v4IHg==} - dev: true + '@types/js-beautify@1.14.3': {} - /@types/js-levenshtein@1.1.3: - resolution: {integrity: sha512-jd+Q+sD20Qfu9e2aEXogiO3vpOC1PYJOUdyN9gvs4Qrvkg4wF43L5OhqrPeokdv8TL0/mXoYfpkcoGZMNN2pkQ==} - dev: true + '@types/js-levenshtein@1.1.3': {} - /@types/js-yaml@3.12.3: - resolution: {integrity: sha512-otRe77JNNWzoVGLKw8TCspKswRoQToys4tuL6XYVBFxjgeM0RUrx7m3jkaTdxILxeGry3zM8mGYkGXMeQ02guA==} - dev: true + '@types/js-yaml@3.12.3': {} - /@types/jsdom@20.0.1: - resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} + '@types/jsdom@20.0.1': dependencies: '@types/node': 13.13.52 '@types/tough-cookie': 4.0.5 parse5: 7.1.2 - dev: true - /@types/json-schema@7.0.15: - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + '@types/json-schema@7.0.15': {} - /@types/json5@0.0.29: - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} - dev: true + '@types/json5@0.0.29': {} - /@types/keyv@3.1.4: - resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} + '@types/keyv@3.1.4': dependencies: '@types/node': 13.13.52 - /@types/lodash-es@4.17.12: - resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==} + '@types/lodash-es@4.17.12': dependencies: '@types/lodash': 4.17.5 - dev: true - /@types/lodash@4.17.5: - resolution: {integrity: sha512-MBIOHVZqVqgfro1euRDWX7OO0fBVUUMrN6Pwm8LQsz8cWhEpihlvR70ENj3f40j58TNxZaWv2ndSkInykNBBJw==} + '@types/lodash@4.17.5': {} - /@types/mdast@3.0.15: - resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} + '@types/mdast@3.0.15': dependencies: '@types/unist': 2.0.10 - /@types/mime-types@2.1.4: - resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==} - dev: false + '@types/mdast@4.0.4': + dependencies: + '@types/unist': 2.0.10 - /@types/mime@1.3.5: - resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} - dev: true + '@types/mime-types@2.1.4': {} - /@types/minimatch@3.0.5: - resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} - dev: true + '@types/mime@1.3.5': {} - /@types/minimatch@5.1.2: - resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} + '@types/minimatch@3.0.5': {} - /@types/minimist@1.2.5: - resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} - dev: true + '@types/minimatch@5.1.2': {} - /@types/node-fetch@2.6.11: - resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==} + '@types/minimist@1.2.5': {} + + '@types/ms@0.7.34': {} + + '@types/node-fetch@2.6.11': dependencies: '@types/node': 13.13.52 form-data: 4.0.0 - /@types/node-forge@0.9.10: - resolution: {integrity: sha512-+BbPlhZeYs/WETWftQi2LeRx9VviWSwawNo+Pid5qNrSZHb60loYjpph3OrbwXMMseadu9rE9NeK34r4BHT+QQ==} + '@types/node-forge@0.9.10': dependencies: '@types/node': 13.13.52 - dev: true - /@types/node-forge@1.3.11: - resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} + '@types/node-forge@1.3.11': dependencies: '@types/node': 13.13.52 - dev: true - /@types/node@12.20.55: - resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - dev: true + '@types/node@12.20.55': {} - /@types/node@13.13.52: - resolution: {integrity: sha512-s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ==} + '@types/node@13.13.52': {} - /@types/node@14.18.63: - resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==} - dev: true + '@types/node@14.18.63': {} - /@types/node@16.18.101: - resolution: {integrity: sha512-AAsx9Rgz2IzG8KJ6tXd6ndNkVcu+GYB6U/SnFAaokSPNx2N7dcIIfnighYUNumvj6YS2q39Dejz5tT0NCV7CWA==} + '@types/node@16.18.101': {} - /@types/normalize-package-data@2.4.4: - resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + '@types/normalize-package-data@2.4.4': {} - /@types/npmlog@4.1.6: - resolution: {integrity: sha512-0l3z16vnlJGl2Mi/rgJFrdwfLZ4jfNYgE6ZShEpjqhHuGTqdEzNles03NpYHwUMVYZa+Tj46UxKIEpE78lQ3DQ==} + '@types/npmlog@4.1.6': dependencies: '@types/node': 13.13.52 - /@types/overlayscrollbars@1.12.5: - resolution: {integrity: sha512-1yMmgFrq1DQ3sCHyb3DNfXnE0dB463MjG47ugX3cyade3sOt3U8Fjxk/Com0JJguTLPtw766TSDaO4NC65Wgkw==} - dev: true + '@types/overlayscrollbars@1.12.5': {} - /@types/parse-json@4.0.2: - resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + '@types/parse-json@4.0.2': {} - /@types/parse5@5.0.3: - resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==} + '@types/parse5@5.0.3': {} - /@types/prettier@2.7.3: - resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} - dev: true + '@types/prettier@2.7.3': {} - /@types/pretty-hrtime@1.0.3: - resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==} + '@types/pretty-hrtime@1.0.3': {} - /@types/prop-types@15.7.12: - resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} + '@types/prop-types@15.7.12': {} - /@types/q@1.5.8: - resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==} + '@types/q@1.5.8': {} - /@types/qs@6.9.15: - resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==} + '@types/qs@6.9.15': {} - /@types/range-parser@1.2.7: - resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - dev: true + '@types/range-parser@1.2.7': {} - /@types/react-color@3.0.12: - resolution: {integrity: sha512-pr3uKE3lSvf7GFo1Rn2K3QktiZQFFrSgSGJ/3iMvSOYWt2pPAJ97rVdVfhWxYJZ8prAEXzoP2XX//3qGSQgu7Q==} + '@types/react-color@3.0.12': dependencies: '@types/react': 18.0.18 '@types/reactcss': 1.2.12 - dev: true - /@types/react-dom@18.3.0: - resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} + '@types/react-dom@18.3.0': dependencies: '@types/react': 18.0.18 - dev: true - /@types/react-notification-system@0.2.39: - resolution: {integrity: sha512-yfptO86dbfW4qaw34CIedfakdKWV3sPM0xb4T5EQZOza80WLvOUUKjdmZTeGyEKk/7n2za8RJa6aZpz/A+2Qbw==} + '@types/react-notification-system@0.2.39': dependencies: '@types/react': 18.0.18 - dev: true - /@types/react-redux@7.1.33: - resolution: {integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==} + '@types/react-redux@7.1.33': dependencies: '@types/hoist-non-react-statics': 3.3.5 '@types/react': 18.0.18 hoist-non-react-statics: 3.3.2 redux: 4.2.1 - /@types/react-router-dom@5.3.3: - resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==} + '@types/react-router-dom@5.3.3': dependencies: '@types/history': 4.7.11 '@types/react': 18.0.18 '@types/react-router': 5.1.20 - dev: true - /@types/react-router@5.1.20: - resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==} + '@types/react-router@5.1.20': dependencies: '@types/history': 4.7.11 '@types/react': 18.0.18 - dev: true - /@types/react-syntax-highlighter@11.0.5: - resolution: {integrity: sha512-VIOi9i2Oj5XsmWWoB72p3KlZoEbdRAcechJa8Ztebw7bDl2YmR+odxIqhtJGp1q2EozHs02US+gzxJ9nuf56qg==} + '@types/react-syntax-highlighter@11.0.5': dependencies: '@types/react': 18.0.18 - dev: true - /@types/react-transition-group@4.4.10: - resolution: {integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==} + '@types/react-transition-group@4.4.10': dependencies: '@types/react': 18.0.18 - dev: false - /@types/react@18.0.18: - resolution: {integrity: sha512-6hI08umYs6NaiHFEEGioXnxJ+oEhY3eRz8VCUaudZmGdtvPviCJB8mgaMxaDWAdPSYd4eFavrPk2QIolwbLYrg==} + '@types/react@18.0.18': dependencies: '@types/prop-types': 15.7.12 '@types/scheduler': 0.23.0 csstype: 3.1.3 - /@types/reactcss@1.2.12: - resolution: {integrity: sha512-BrXUQ86/wbbFiZv8h/Q1/Q1XOsaHneYmCb/tHe9+M8XBAAUc2EHfdY0DY22ZZjVSaXr5ix7j+zsqO2eGZub8lQ==} + '@types/reactcss@1.2.12': dependencies: '@types/react': 18.0.18 - dev: true - /@types/reactour@1.18.5: - resolution: {integrity: sha512-Pl5yh9bXeXaFcioDk6XVmUzdJGZDAKesVmwoh2KvN/1FXSd9saN8pIprLvfspnXANMcgl3AtSlD4zs0cJIhGIw==} + '@types/reactour@1.18.5': dependencies: '@types/react': 18.0.18 - dev: true - /@types/redux-mock-store@1.0.6: - resolution: {integrity: sha512-eg5RDfhJTXuoJjOMyXiJbaDb1B8tfTaJixscmu+jOusj6adGC0Krntz09Tf4gJgXeCqCrM5bBMd+B7ez0izcAQ==} + '@types/redux-mock-store@1.0.6': dependencies: redux: 4.2.1 - dev: true - /@types/resolve@1.17.1: - resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} + '@types/resolve@1.17.1': dependencies: '@types/node': 13.13.52 - dev: true - /@types/resolve@1.20.2: - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} - dev: true + '@types/resolve@1.20.2': {} - /@types/responselike@1.0.3: - resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} + '@types/responselike@1.0.3': dependencies: '@types/node': 13.13.52 - /@types/retry@0.12.0: - resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} - dev: true + '@types/retry@0.12.0': {} - /@types/scheduler@0.23.0: - resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==} + '@types/scheduler@0.23.0': {} - /@types/semver@7.5.8: - resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} - dev: true + '@types/semver@7.5.8': {} - /@types/send@0.17.4: - resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} + '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 '@types/node': 13.13.52 - dev: true - /@types/serve-index@1.9.4: - resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} + '@types/serve-index@1.9.4': dependencies: '@types/express': 4.17.21 - dev: true - /@types/serve-static@1.15.7: - resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} + '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 '@types/node': 13.13.52 '@types/send': 0.17.4 - dev: true - /@types/set-cookie-parser@2.4.9: - resolution: {integrity: sha512-bCorlULvl0xTdjj4BPUHX4cqs9I+go2TfW/7Do1nnFYWS0CPP429Qr1AY42kiFhCwLpvAkWFr1XIBHd8j6/MCQ==} + '@types/set-cookie-parser@2.4.9': dependencies: '@types/node': 13.13.52 - dev: true - /@types/sinonjs__fake-timers@8.1.1: - resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} - dev: true + '@types/sinonjs__fake-timers@8.1.1': {} - /@types/sizzle@2.3.8: - resolution: {integrity: sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==} - dev: true + '@types/sizzle@2.3.8': {} - /@types/sockjs@0.3.36: - resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} + '@types/sockjs@0.3.36': dependencies: '@types/node': 13.13.52 - dev: true - /@types/source-list-map@0.1.6: - resolution: {integrity: sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==} + '@types/source-list-map@0.1.6': {} - /@types/stack-utils@2.0.3: - resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} + '@types/stack-utils@2.0.3': {} - /@types/tapable@1.0.12: - resolution: {integrity: sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==} + '@types/tapable@1.0.12': {} - /@types/testing-library__jest-dom@5.14.9: - resolution: {integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==} + '@types/testing-library__jest-dom@5.14.9': dependencies: '@types/jest': 29.5.12 - dev: true - /@types/through@0.0.33: - resolution: {integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==} + '@types/through@0.0.33': dependencies: '@types/node': 13.13.52 - dev: true - /@types/tough-cookie@4.0.5: - resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} - dev: true + '@types/tough-cookie@4.0.5': {} - /@types/ua-parser-js@0.7.36: - resolution: {integrity: sha512-N1rW+njavs70y2cApeIw1vLMYXRwfBy+7trgavGuuTfOd7j1Yh7QTRc/yqsPl6ncokt72ZXuxEU0PiCp9bSwNQ==} - dev: true + '@types/ua-parser-js@0.7.36': {} - /@types/uglify-js@3.17.5: - resolution: {integrity: sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==} + '@types/uglify-js@3.17.5': dependencies: source-map: 0.6.1 - /@types/unist@2.0.10: - resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} + '@types/unist@2.0.10': {} - /@types/uuid@9.0.8: - resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==} - dev: true + '@types/unist@3.0.2': {} - /@types/webappsec-credential-management@0.6.8: - resolution: {integrity: sha512-DES/SkK54U7AG8hmMkGCJkOSlywM3R+TzaWT+rBnX3lQTJ3K57jWr+UccWY8ImkuKekC9BjB+AH4zLJB4JKpvQ==} - dev: true + '@types/uuid@9.0.8': {} - /@types/webpack-env@1.18.5: - resolution: {integrity: sha512-wz7kjjRRj8/Lty4B+Kr0LN6Ypc/3SymeCCGSbaXp2leH0ZVg/PriNiOwNj4bD4uphI7A8NXS4b6Gl373sfO5mA==} + '@types/webappsec-credential-management@0.6.8': {} - /@types/webpack-sources@3.2.3: - resolution: {integrity: sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==} + '@types/webpack-env@1.18.5': {} + + '@types/webpack-sources@3.2.3': dependencies: '@types/node': 13.13.52 '@types/source-list-map': 0.1.6 source-map: 0.7.4 - /@types/webpack@4.41.38: - resolution: {integrity: sha512-oOW7E931XJU1mVfCnxCVgv8GLFL768pDO5u2Gzk82i8yTIgX6i7cntyZOkZYb/JtYM8252SN9bQp9tgkVDSsRw==} + '@types/webpack@4.41.38': dependencies: '@types/node': 13.13.52 '@types/tapable': 1.0.12 @@ -30152,64 +40879,43 @@ packages: anymatch: 3.1.3 source-map: 0.6.1 - /@types/ws@8.5.10: - resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} + '@types/ws@8.5.10': dependencies: '@types/node': 13.13.52 - dev: true - /@types/yargs-parser@21.0.3: - resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} + '@types/yargs-parser@21.0.3': {} - /@types/yargs@15.0.19: - resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} + '@types/yargs@15.0.19': dependencies: '@types/yargs-parser': 21.0.3 - /@types/yargs@17.0.32: - resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} + '@types/yargs@17.0.32': dependencies: '@types/yargs-parser': 21.0.3 - /@types/yauzl@2.10.3: - resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} - requiresBuild: true + '@types/yauzl@2.10.3': dependencies: '@types/node': 13.13.52 - dev: true optional: true - /@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5): - resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - '@typescript-eslint/parser': ^4.0.0 - eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5)': dependencies: '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/scope-manager': 4.33.0 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) eslint: 7.32.0 functional-red-black-tree: 1.0.1 ignore: 5.3.1 regexpp: 3.2.0 semver: 7.6.2 tsutils: 3.21.0(typescript@4.9.5) + optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/experimental-utils@4.33.0(eslint@7.32.0)(typescript@4.9.5): - resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - eslint: '*' + '@typescript-eslint/experimental-utils@4.33.0(eslint@7.32.0)(typescript@4.9.5)': dependencies: '@types/json-schema': 7.0.15 '@typescript-eslint/scope-manager': 4.33.0 @@ -30221,101 +40927,62 @@ packages: transitivePeerDependencies: - supports-color - typescript - dev: true - /@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5): - resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5)': dependencies: '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.5) - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) eslint: 7.32.0 + optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/scope-manager@4.33.0: - resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + '@typescript-eslint/scope-manager@4.33.0': dependencies: '@typescript-eslint/types': 4.33.0 '@typescript-eslint/visitor-keys': 4.33.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} + '@typescript-eslint/scope-manager@5.62.0': dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - dev: true - /@typescript-eslint/types@4.33.0: - resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - dev: true + '@typescript-eslint/types@4.33.0': {} - /@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/types@5.62.0': {} - /@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} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@typescript-eslint/typescript-estree@4.33.0(typescript@4.9.5)': dependencies: '@typescript-eslint/types': 4.33.0 '@typescript-eslint/visitor-keys': 4.33.0 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.2 tsutils: 3.21.0(typescript@4.9.5) + optionalDependencies: typescript: 4.9.5 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 + '@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5)': dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.2 tsutils: 3.21.0(typescript@4.9.5) + optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/utils@5.62.0(eslint@7.32.0)(typescript@4.9.5): - resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + '@typescript-eslint/utils@5.62.0(eslint@7.32.0)(typescript@4.9.5)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0) '@types/json-schema': 7.0.15 @@ -30329,72 +40996,56 @@ packages: transitivePeerDependencies: - supports-color - typescript - dev: true - /@typescript-eslint/visitor-keys@4.33.0: - resolution: {integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + '@typescript-eslint/visitor-keys@4.33.0': dependencies: '@typescript-eslint/types': 4.33.0 eslint-visitor-keys: 2.1.0 - 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} + '@typescript-eslint/visitor-keys@5.62.0': dependencies: '@typescript-eslint/types': 5.62.0 eslint-visitor-keys: 3.4.3 - dev: true - /@webassemblyjs/ast@1.12.1: - resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} + '@ungap/structured-clone@1.2.0': {} + + '@webassemblyjs/ast@1.12.1': dependencies: '@webassemblyjs/helper-numbers': 1.11.6 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - /@webassemblyjs/floating-point-hex-parser@1.11.6: - resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} + '@webassemblyjs/floating-point-hex-parser@1.11.6': {} - /@webassemblyjs/helper-api-error@1.11.6: - resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} + '@webassemblyjs/helper-api-error@1.11.6': {} - /@webassemblyjs/helper-buffer@1.12.1: - resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==} + '@webassemblyjs/helper-buffer@1.12.1': {} - /@webassemblyjs/helper-numbers@1.11.6: - resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} + '@webassemblyjs/helper-numbers@1.11.6': dependencies: '@webassemblyjs/floating-point-hex-parser': 1.11.6 '@webassemblyjs/helper-api-error': 1.11.6 '@xtuc/long': 4.2.2 - /@webassemblyjs/helper-wasm-bytecode@1.11.6: - resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} + '@webassemblyjs/helper-wasm-bytecode@1.11.6': {} - /@webassemblyjs/helper-wasm-section@1.12.1: - resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==} + '@webassemblyjs/helper-wasm-section@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-buffer': 1.12.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 '@webassemblyjs/wasm-gen': 1.12.1 - /@webassemblyjs/ieee754@1.11.6: - resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} + '@webassemblyjs/ieee754@1.11.6': dependencies: '@xtuc/ieee754': 1.2.0 - /@webassemblyjs/leb128@1.11.6: - resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} + '@webassemblyjs/leb128@1.11.6': dependencies: '@xtuc/long': 4.2.2 - /@webassemblyjs/utf8@1.11.6: - resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} + '@webassemblyjs/utf8@1.11.6': {} - /@webassemblyjs/wasm-edit@1.12.1: - resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==} + '@webassemblyjs/wasm-edit@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-buffer': 1.12.1 @@ -30405,8 +41056,7 @@ packages: '@webassemblyjs/wasm-parser': 1.12.1 '@webassemblyjs/wast-printer': 1.12.1 - /@webassemblyjs/wasm-gen@1.12.1: - resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==} + '@webassemblyjs/wasm-gen@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 @@ -30414,16 +41064,14 @@ packages: '@webassemblyjs/leb128': 1.11.6 '@webassemblyjs/utf8': 1.11.6 - /@webassemblyjs/wasm-opt@1.12.1: - resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==} + '@webassemblyjs/wasm-opt@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-buffer': 1.12.1 '@webassemblyjs/wasm-gen': 1.12.1 '@webassemblyjs/wasm-parser': 1.12.1 - /@webassemblyjs/wasm-parser@1.12.1: - resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==} + '@webassemblyjs/wasm-parser@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-api-error': 1.11.6 @@ -30432,217 +41080,130 @@ packages: '@webassemblyjs/leb128': 1.11.6 '@webassemblyjs/utf8': 1.11.6 - /@webassemblyjs/wast-printer@1.12.1: - resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==} + '@webassemblyjs/wast-printer@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 '@xtuc/long': 4.2.2 - /@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0)(webpack@5.84.1): - resolution: {integrity: sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==} - peerDependencies: - webpack: 5.84.1 - webpack-cli: 4.x.x + '@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) - /@webpack-cli/info@1.5.0(webpack-cli@4.10.0): - resolution: {integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==} - peerDependencies: - webpack-cli: 4.x.x + '@webpack-cli/info@1.5.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: envinfo: 7.13.0 webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) - /@webpack-cli/serve@1.7.0(webpack-cli@4.10.0)(webpack-dev-server@3.11.3): - resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==} - peerDependencies: - webpack-cli: 4.x.x - webpack-dev-server: '*' - peerDependenciesMeta: - webpack-dev-server: - optional: true + '@webpack-cli/serve@1.7.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))': dependencies: webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) - webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) + optionalDependencies: + webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - /@webpack-contrib/schema-utils@1.0.0-beta.0(webpack@5.84.1): - resolution: {integrity: sha512-LonryJP+FxQQHsjGBi6W786TQB1Oym+agTpY0c+Kj8alnIw+DLUJb6SI8Y1GHGhLCH1yPRrucjObUmxNICQ1pg==} - engines: {node: '>= 6.9.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 + '@webpack-contrib/schema-utils@1.0.0-beta.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) chalk: 2.4.2 strip-ansi: 4.0.0 text-table: 0.2.0 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) webpack-log: 1.2.0 - dev: true - /@xmldom/xmldom@0.7.13: - resolution: {integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==} - engines: {node: '>=10.0.0'} - dev: true + '@xmldom/xmldom@0.7.13': {} - /@xtuc/ieee754@1.2.0: - resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + '@xtuc/ieee754@1.2.0': {} - /@xtuc/long@4.2.2: - resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + '@xtuc/long@4.2.2': {} - /@yarn-tool/resolve-package@1.0.47: - resolution: {integrity: sha512-Zaw58gQxjQceJqhqybJi1oUDaORT8i2GTgwICPs8v/X/Pkx35FXQba69ldHVg5pQZ6YLKpROXgyHvBaCJOFXiA==} + '@yarn-tool/resolve-package@1.0.47': dependencies: pkg-dir: 5.0.0 tslib: 2.6.3 upath2: 3.1.19 - dev: true - /@yarnpkg/lockfile@1.1.0: - resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} - dev: true + '@yarnpkg/lockfile@1.1.0': {} - /@yarnpkg/parsers@3.0.2: - resolution: {integrity: sha512-/HcYgtUSiJiot/XWGLOlGxPYUG65+/31V8oqk17vZLW1xlCoR4PampyePljOxY2n8/3jz9+tIFzICsyGujJZoA==} - engines: {node: '>=18.12.0'} + '@yarnpkg/parsers@3.0.2': dependencies: js-yaml: 3.13.1 tslib: 2.6.3 - dev: true - /@zkochan/js-yaml@0.0.6: - resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} - hasBin: true + '@zkochan/js-yaml@0.0.6': dependencies: argparse: 2.0.1 - dev: true - /JSONStream@1.3.5: - resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} - hasBin: true + JSONStream@1.3.5: dependencies: jsonparse: 1.3.1 through: 2.3.8 - dev: true - /abab@2.0.6: - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} - deprecated: Use your platform's native atob() and btoa() methods instead - dev: true + abab@2.0.6: {} - /abbrev@1.1.1: - resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} - dev: true + abbrev@1.1.1: {} - /abbrev@2.0.0: - resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: false + abbrev@2.0.0: {} - /accepts@1.3.8: - resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} - engines: {node: '>= 0.6'} + accepts@1.3.8: dependencies: mime-types: 2.1.35 negotiator: 0.6.3 - /acorn-globals@6.0.0: - resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} + acorn-globals@6.0.0: dependencies: acorn: 7.4.1 acorn-walk: 7.2.0 - dev: true - /acorn-globals@7.0.1: - resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} + acorn-globals@7.0.1: dependencies: acorn: 8.12.0 acorn-walk: 8.3.3 - dev: true - /acorn-import-assertions@1.9.0(acorn@8.12.0): - resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} - peerDependencies: - acorn: ^8 + acorn-import-assertions@1.9.0(acorn@8.12.0): dependencies: acorn: 8.12.0 - /acorn-jsx@5.3.2(acorn@7.4.1): - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + acorn-jsx@5.3.2(acorn@7.4.1): dependencies: acorn: 7.4.1 - /acorn-jsx@5.3.2(acorn@8.12.0): - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + acorn-jsx@5.3.2(acorn@8.12.0): dependencies: acorn: 8.12.0 - dev: true - /acorn-walk@7.2.0: - resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} - engines: {node: '>=0.4.0'} + acorn-walk@7.2.0: {} - /acorn-walk@8.3.3: - resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==} - engines: {node: '>=0.4.0'} + acorn-walk@8.3.3: dependencies: acorn: 8.12.0 - /acorn@7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: '>=0.4.0'} - hasBin: true + acorn@7.4.1: {} - /acorn@8.12.0: - resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==} - engines: {node: '>=0.4.0'} - hasBin: true + acorn@8.12.0: {} - /add-stream@1.0.0: - resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} - dev: true + add-stream@1.0.0: {} - /address@1.2.2: - resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} - engines: {node: '>= 10.0.0'} + address@1.2.2: {} - /agent-base@5.1.1: - resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==} - engines: {node: '>= 6.0.0'} - dev: false + agent-base@5.1.1: {} - /agent-base@6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} - engines: {node: '>= 6.0.0'} + agent-base@6.0.2: dependencies: - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: true - /agentkeepalive@4.5.0: - resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} - engines: {node: '>= 8.0.0'} + agentkeepalive@4.5.0: dependencies: humanize-ms: 1.2.1 - dev: true - /aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} + aggregate-error@3.1.0: dependencies: clean-stack: 2.2.0 indent-string: 4.0.0 - /airbnb-js-shims@2.2.1: - resolution: {integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==} + airbnb-js-shims@2.2.1: dependencies: array-includes: 3.1.8 array.prototype.flat: 1.3.2 @@ -30662,273 +41223,161 @@ packages: string.prototype.padstart: 3.1.6 symbol.prototype.description: 1.0.6 - /ajv-errors@1.0.1(ajv@6.12.6): - resolution: {integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==} - peerDependencies: - ajv: '>=5.0.0' + ajv-errors@1.0.1(ajv@6.12.6): dependencies: ajv: 6.12.6 - /ajv-formats@2.1.1(ajv@8.16.0): - resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} - peerDependencies: - ajv: ^8.0.0 - peerDependenciesMeta: - ajv: - optional: true - dependencies: + ajv-formats@2.1.1(ajv@8.16.0): + optionalDependencies: ajv: 8.16.0 - /ajv-keywords@3.5.2(ajv@6.12.6): - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} - peerDependencies: - ajv: ^6.9.1 + ajv-keywords@3.5.2(ajv@6.12.6): dependencies: ajv: 6.12.6 - /ajv-keywords@5.1.0(ajv@8.16.0): - resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} - peerDependencies: - ajv: ^8.8.2 + ajv-keywords@5.1.0(ajv@8.16.0): dependencies: ajv: 8.16.0 fast-deep-equal: 3.1.3 - /ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + ajv@6.12.6: dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 json-schema-traverse: 0.4.1 uri-js: 4.4.1 - /ajv@8.16.0: - resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==} + ajv@8.16.0: dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 uri-js: 4.4.1 - /ansi-align@3.0.1: - resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + ansi-align@3.0.1: dependencies: string-width: 4.2.3 - /ansi-colors@3.2.4: - resolution: {integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==} - engines: {node: '>=6'} + ansi-colors@3.2.4: {} - /ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} + ansi-colors@4.1.3: {} - /ansi-escapes@4.3.2: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} - engines: {node: '>=8'} + ansi-escapes@4.3.2: dependencies: type-fest: 0.21.3 - /ansi-html-community@0.0.8: - resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} - engines: {'0': node >= 0.8.0} - hasBin: true + ansi-html-community@0.0.8: {} - /ansi-html@0.0.7: - resolution: {integrity: sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA==} - engines: {'0': node >= 0.8.0} - hasBin: true - dev: true + ansi-html@0.0.7: {} - /ansi-html@0.0.9: - resolution: {integrity: sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==} - engines: {'0': node >= 0.8.0} - hasBin: true + ansi-html@0.0.9: {} - /ansi-regex@2.1.1: - resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} - engines: {node: '>=0.10.0'} + ansi-regex@2.1.1: {} - /ansi-regex@3.0.1: - resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} - engines: {node: '>=4'} - dev: true + ansi-regex@3.0.1: {} - /ansi-regex@4.1.1: - resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} - engines: {node: '>=6'} + ansi-regex@4.1.1: {} - /ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} + ansi-regex@5.0.1: {} - /ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} - engines: {node: '>=12'} - dev: false + ansi-regex@6.0.1: {} - /ansi-styles@2.2.1: - resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} - engines: {node: '>=0.10.0'} - dev: true + ansi-styles@2.2.1: {} - /ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} + ansi-styles@3.2.1: dependencies: color-convert: 1.9.3 - /ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} + ansi-styles@4.3.0: dependencies: color-convert: 2.0.1 - /ansi-styles@5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} - engines: {node: '>=10'} + ansi-styles@5.2.0: {} - /ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} - dev: false + ansi-styles@6.2.1: {} - /ansi-to-html@0.6.15: - resolution: {integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==} - engines: {node: '>=8.0.0'} - hasBin: true + ansi-to-html@0.6.15: dependencies: entities: 2.2.0 - /anymatch@2.0.0(supports-color@6.1.0): - resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==} + anymatch@2.0.0(supports-color@6.1.0): dependencies: micromatch: 3.1.10(supports-color@6.1.0) normalize-path: 2.1.1 transitivePeerDependencies: - supports-color - /anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} + anymatch@3.1.3: dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 - /app-root-dir@1.0.2: - resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==} + app-root-dir@1.0.2: {} - /append-transform@2.0.0: - resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==} - engines: {node: '>=8'} + append-transform@2.0.0: dependencies: default-require-extensions: 3.0.1 - dev: true - /aproba@2.0.0: - resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} + aproba@2.0.0: {} - /arch@2.2.0: - resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} - dev: true + arch@2.2.0: {} - /archy@1.0.0: - resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} - dev: true + archy@1.0.0: {} - /are-we-there-yet@2.0.0: - resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} - engines: {node: '>=10'} - deprecated: This package is no longer supported. + are-we-there-yet@2.0.0: dependencies: delegates: 1.0.0 readable-stream: 3.6.2 - /are-we-there-yet@3.0.1: - resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. + are-we-there-yet@3.0.1: dependencies: delegates: 1.0.0 readable-stream: 3.6.2 - dev: true - /arg@4.1.3: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + arg@4.1.3: {} - /argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + argparse@1.0.10: dependencies: sprintf-js: 1.0.3 - /argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - dev: true + argparse@2.0.1: {} - /aria-query@4.2.2: - resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} - engines: {node: '>=6.0'} + aria-query@4.2.2: dependencies: '@babel/runtime': 7.24.7 '@babel/runtime-corejs3': 7.24.7 - dev: true - /aria-query@5.1.3: - resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + aria-query@5.1.3: dependencies: deep-equal: 2.2.3 - dev: true - /aria-query@5.3.0: - resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + aria-query@5.3.0: dependencies: dequal: 2.0.3 - dev: true - /arr-diff@4.0.0: - resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} - engines: {node: '>=0.10.0'} + arr-diff@4.0.0: {} - /arr-flatten@1.1.0: - resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} - engines: {node: '>=0.10.0'} + arr-flatten@1.1.0: {} - /arr-union@3.1.0: - resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} - engines: {node: '>=0.10.0'} + arr-union@3.1.0: {} - /array-buffer-byte-length@1.0.1: - resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} - engines: {node: '>= 0.4'} + array-buffer-byte-length@1.0.1: dependencies: call-bind: 1.0.7 is-array-buffer: 3.0.4 - /array-differ@3.0.0: - resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} - engines: {node: '>=8'} - dev: true + array-differ@3.0.0: {} - /array-find-index@1.0.2: - resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} - engines: {node: '>=0.10.0'} - requiresBuild: true - dev: false + array-find-index@1.0.2: optional: true - /array-flatten@1.1.1: - resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} + array-flatten@1.1.1: {} - /array-flatten@2.1.2: - resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} + array-flatten@2.1.2: {} - /array-ify@1.0.0: - resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} - dev: true + array-ify@1.0.0: {} - /array-includes@3.1.8: - resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} - engines: {node: '>= 0.4'} + array-includes@3.1.8: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -30937,32 +41386,19 @@ packages: get-intrinsic: 1.2.4 is-string: 1.0.7 - /array-union@1.0.2: - resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==} - engines: {node: '>=0.10.0'} + array-union@1.0.2: dependencies: array-uniq: 1.0.3 - /array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} + array-union@2.1.0: {} - /array-union@3.0.1: - resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==} - engines: {node: '>=12'} - dev: true + array-union@3.0.1: {} - /array-uniq@1.0.3: - resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} - engines: {node: '>=0.10.0'} + array-uniq@1.0.3: {} - /array-unique@0.3.2: - resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} - engines: {node: '>=0.10.0'} + array-unique@0.3.2: {} - /array.prototype.findlast@1.2.5: - resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} - engines: {node: '>= 0.4'} + array.prototype.findlast@1.2.5: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -30970,11 +41406,8 @@ packages: es-errors: 1.3.0 es-object-atoms: 1.0.0 es-shim-unscopables: 1.0.2 - dev: true - /array.prototype.findlastindex@1.2.5: - resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} - engines: {node: '>= 0.4'} + array.prototype.findlastindex@1.2.5: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -30982,29 +41415,22 @@ packages: es-errors: 1.3.0 es-object-atoms: 1.0.0 es-shim-unscopables: 1.0.2 - dev: true - /array.prototype.flat@1.3.2: - resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} - engines: {node: '>= 0.4'} + array.prototype.flat@1.3.2: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-shim-unscopables: 1.0.2 - /array.prototype.flatmap@1.3.2: - resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} - engines: {node: '>= 0.4'} + array.prototype.flatmap@1.3.2: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-shim-unscopables: 1.0.2 - /array.prototype.map@1.0.7: - resolution: {integrity: sha512-XpcFfLoBEAhezrrNw1V+yLXkE7M6uR7xJEsxbG6c/V9v043qurwVJB9r9UTnoSioFDoz1i1VOydpWGmJpfVZbg==} - engines: {node: '>= 0.4'} + array.prototype.map@1.0.7: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -31013,9 +41439,7 @@ packages: es-object-atoms: 1.0.0 is-string: 1.0.7 - /array.prototype.reduce@1.0.7: - resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==} - engines: {node: '>= 0.4'} + array.prototype.reduce@1.0.7: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -31025,29 +41449,22 @@ packages: es-object-atoms: 1.0.0 is-string: 1.0.7 - /array.prototype.toreversed@1.1.2: - resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==} + array.prototype.toreversed@1.1.2: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-shim-unscopables: 1.0.2 - dev: true - /array.prototype.tosorted@1.1.4: - resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} - engines: {node: '>= 0.4'} + array.prototype.tosorted@1.1.4: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-errors: 1.3.0 es-shim-unscopables: 1.0.2 - dev: true - /arraybuffer.prototype.slice@1.0.3: - resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} - engines: {node: '>= 0.4'} + arraybuffer.prototype.slice@1.0.3: dependencies: array-buffer-byte-length: 1.0.1 call-bind: 1.0.7 @@ -31058,90 +41475,49 @@ packages: is-array-buffer: 3.0.4 is-shared-array-buffer: 1.0.3 - /arrify@1.0.1: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: '>=0.10.0'} - dev: true + arrify@1.0.1: {} - /arrify@2.0.1: - resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} - engines: {node: '>=8'} + arrify@2.0.1: {} - /asap@2.0.6: - resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} + asap@2.0.6: {} - /asn1@0.2.6: - resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} + asn1@0.2.6: dependencies: safer-buffer: 2.1.2 - dev: true - /assert-plus@1.0.0: - resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} - engines: {node: '>=0.8'} - dev: true + assert-plus@1.0.0: {} - /assign-symbols@1.0.0: - resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} - engines: {node: '>=0.10.0'} + assign-symbols@1.0.0: {} - /ast-types-flow@0.0.7: - resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} - dev: true + ast-types-flow@0.0.7: {} - /ast-types@0.13.3: - resolution: {integrity: sha512-XTZ7xGML849LkQP86sWdQzfhwbt3YwIO6MqbX9mUNYY98VKaaVZP7YNNm70IpwecbkkxmfC5IYAzOQ/2p29zRA==} - engines: {node: '>=4'} - dev: false + ast-types@0.13.3: {} - /ast-types@0.14.2: - resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==} - engines: {node: '>=4'} + ast-types@0.14.2: dependencies: tslib: 2.6.3 - /astral-regex@2.0.0: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} - engines: {node: '>=8'} + astral-regex@2.0.0: {} - /astring@1.8.6: - resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==} - hasBin: true - dev: true + astring@1.8.6: {} - /async-each@1.0.6: - resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==} + async-each@1.0.6: {} - /async-limiter@1.0.1: - resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} + async-limiter@1.0.1: {} - /async@2.6.4: - resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} + async@2.6.4: dependencies: lodash: 4.17.21 - /async@3.2.5: - resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} - dev: true + async@3.2.5: {} - /asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + asynckit@0.4.0: {} - /at-least-node@1.0.0: - resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} - engines: {node: '>= 4.0.0'} + at-least-node@1.0.0: {} - /atob@2.1.2: - resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} - engines: {node: '>= 4.5.0'} - hasBin: true + atob@2.1.2: {} - /autoprefixer@10.4.19(postcss@8.4.38): - resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==} - engines: {node: ^10 || ^12 || >=14} - hasBin: true - peerDependencies: - postcss: ^8.1.0 + autoprefixer@10.4.19(postcss@8.4.38): dependencies: browserslist: 4.23.1 caniuse-lite: 1.0.30001636 @@ -31150,11 +41526,8 @@ packages: picocolors: 1.0.1 postcss: 8.4.38 postcss-value-parser: 4.2.0 - dev: true - /autoprefixer@9.8.8: - resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} - hasBin: true + autoprefixer@9.8.8: dependencies: browserslist: 4.23.1 caniuse-lite: 1.0.30001636 @@ -31164,137 +41537,57 @@ packages: postcss: 7.0.39 postcss-value-parser: 4.2.0 - /available-typed-arrays@1.0.7: - resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} - engines: {node: '>= 0.4'} + available-typed-arrays@1.0.7: dependencies: possible-typed-array-names: 1.0.0 - /await-semaphore@0.1.3: - resolution: {integrity: sha512-d1W2aNSYcz/sxYO4pMGX9vq65qOTu0P800epMud+6cYYX0QcT7zyqcxec3VWzpgvdXo57UWmVbZpLMjX2m1I7Q==} - dev: false + await-semaphore@0.1.3: {} - /aws-sign2@0.7.0: - resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} - dev: true + aws-sign2@0.7.0: {} - /aws4@1.13.0: - resolution: {integrity: sha512-3AungXC4I8kKsS9PuS4JH2nc+0bVY/mjgrephHTIi8fpEeGsTHBUJeosp0Wc1myYMElmD0B3Oc4XL/HVJ4PV2g==} - dev: true + aws4@1.13.0: {} - /axe-core@4.9.1: - resolution: {integrity: sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==} - engines: {node: '>=4'} - dev: true + axe-core@4.9.1: {} - /axios@0.19.2: - resolution: {integrity: sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==} - deprecated: Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410 + axios@0.19.2: dependencies: follow-redirects: 1.5.10 transitivePeerDependencies: - supports-color - dev: false - /axios@0.21.4: - resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} + axios@0.21.4: dependencies: - follow-redirects: 1.15.6(debug@4.3.5) + follow-redirects: 1.15.6(debug@4.3.5(supports-color@6.1.0)) transitivePeerDependencies: - debug - dev: false - /axios@0.26.1: - resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==} + axios@0.26.1: dependencies: - follow-redirects: 1.15.6(debug@4.3.5) + follow-redirects: 1.15.6(debug@4.3.5(supports-color@6.1.0)) transitivePeerDependencies: - debug - dev: false - /axios@1.7.2: - resolution: {integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==} + axios@1.7.2: dependencies: - follow-redirects: 1.15.6(debug@4.3.5) + follow-redirects: 1.15.6(debug@4.3.5(supports-color@6.1.0)) form-data: 4.0.0 proxy-from-env: 1.1.0 transitivePeerDependencies: - debug - dev: true - /axobject-query@2.2.0: - resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} - dev: true + axobject-query@2.2.0: {} - /babel-code-frame@6.26.0: - resolution: {integrity: sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==} + babel-code-frame@6.26.0: dependencies: chalk: 1.1.3 esutils: 2.0.3 js-tokens: 3.0.2 - dev: true - - /babel-core@6.26.3: - resolution: {integrity: sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==} - dependencies: - babel-code-frame: 6.26.0 - babel-generator: 6.26.1 - babel-helpers: 6.24.1 - babel-messages: 6.23.0 - babel-register: 6.26.0 - babel-runtime: 6.26.0 - babel-template: 6.26.0 - babel-traverse: 6.26.0 - babel-types: 6.26.0 - babylon: 6.18.0 - convert-source-map: 1.9.0 - debug: 2.6.9(supports-color@6.1.0) - json5: 0.5.1 - lodash: 4.17.21 - minimatch: 3.1.2 - path-is-absolute: 1.0.1 - private: 0.1.8 - slash: 1.0.0 - source-map: 0.5.7 - transitivePeerDependencies: - - supports-color - dev: true - /babel-core@7.0.0-bridge.0(@babel/core@7.24.7): - resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} - peerDependencies: - '@babel/core': ^7.0.0-0 + babel-core@7.0.0-bridge.0(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 - dev: false - - /babel-generator@6.26.1: - resolution: {integrity: sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==} - dependencies: - babel-messages: 6.23.0 - babel-runtime: 6.26.0 - babel-types: 6.26.0 - detect-indent: 4.0.0 - jsesc: 1.3.0 - lodash: 4.17.21 - source-map: 0.5.7 - trim-right: 1.0.1 - dev: true - - /babel-helpers@6.24.1: - resolution: {integrity: sha512-n7pFrqQm44TCYvrCDb0MqabAF+JUBq+ijBvNMUxpkLjJaAu32faIexewMumrH5KLLJ1HDyT0PTEqRyAe/GwwuQ==} - dependencies: - babel-runtime: 6.26.0 - babel-template: 6.26.0 - transitivePeerDependencies: - - supports-color - dev: true - /babel-jest@26.6.3(@babel/core@7.24.7): - resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} - engines: {node: '>= 10.14.2'} - peerDependencies: - '@babel/core': ^7.0.0 + babel-jest@26.6.3(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 '@jest/transform': 26.6.2 @@ -31308,11 +41601,7 @@ packages: transitivePeerDependencies: - supports-color - /babel-jest@28.1.3(@babel/core@7.24.7): - resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - '@babel/core': ^7.8.0 + babel-jest@28.1.3(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 '@jest/transform': 28.1.3 @@ -31324,13 +41613,8 @@ packages: slash: 3.0.0 transitivePeerDependencies: - supports-color - dev: true - /babel-jest@29.7.0(@babel/core@7.24.7): - resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': ^7.8.0 + babel-jest@29.7.0(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 '@jest/transform': 29.7.0 @@ -31343,42 +41627,28 @@ packages: transitivePeerDependencies: - supports-color - /babel-loader@8.3.0(@babel/core@7.24.7)(webpack@5.84.1): - resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} - engines: {node: '>= 8.9'} - peerDependencies: - '@babel/core': ^7.0.0 - webpack: 5.84.1 + babel-loader@8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@babel/core': 7.24.7 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /babel-messages@6.23.0: - resolution: {integrity: sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==} + babel-messages@6.23.0: dependencies: babel-runtime: 6.26.0 - dev: true - /babel-plugin-add-react-displayname@0.0.5: - resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} + babel-plugin-add-react-displayname@0.0.5: {} - /babel-plugin-apply-mdx-type-prop@1.6.22(@babel/core@7.12.9): - resolution: {integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==} - peerDependencies: - '@babel/core': ^7.11.6 + babel-plugin-apply-mdx-type-prop@1.6.22(@babel/core@7.12.9): dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 '@mdx-js/util': 1.6.22 - /babel-plugin-const-enum@1.2.0(@babel/core@7.24.7): - resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==} - peerDependencies: - '@babel/core': ^7.0.0-0 + babel-plugin-const-enum@1.2.0(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -31386,10 +41656,8 @@ packages: '@babel/traverse': 7.24.7 transitivePeerDependencies: - supports-color - dev: true - /babel-plugin-emotion@10.2.2: - resolution: {integrity: sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==} + babel-plugin-emotion@10.2.2: dependencies: '@babel/helper-module-imports': 7.24.7 '@emotion/hash': 0.8.0 @@ -31403,16 +41671,12 @@ packages: source-map: 0.5.7 transitivePeerDependencies: - supports-color - dev: true - /babel-plugin-extract-import-names@1.6.22: - resolution: {integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==} + babel-plugin-extract-import-names@1.6.22: dependencies: '@babel/helper-plugin-utils': 7.10.4 - /babel-plugin-istanbul@6.1.1: - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} - engines: {node: '>=8'} + babel-plugin-istanbul@6.1.1: dependencies: '@babel/helper-plugin-utils': 7.24.7 '@istanbuljs/load-nyc-config': 1.1.0 @@ -31422,66 +41686,46 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-jest-hoist@26.6.2: - resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==} - engines: {node: '>= 10.14.2'} + babel-plugin-jest-hoist@26.6.2: dependencies: '@babel/template': 7.24.7 '@babel/types': 7.24.7 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.6 - /babel-plugin-jest-hoist@28.1.3: - resolution: {integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + babel-plugin-jest-hoist@28.1.3: dependencies: '@babel/template': 7.24.7 '@babel/types': 7.24.7 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.6 - dev: true - /babel-plugin-jest-hoist@29.6.3: - resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + babel-plugin-jest-hoist@29.6.3: dependencies: '@babel/template': 7.24.7 '@babel/types': 7.24.7 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.6 - /babel-plugin-macros@2.8.0: - resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} + babel-plugin-macros@2.8.0: dependencies: '@babel/runtime': 7.24.7 cosmiconfig: 6.0.0 resolve: 1.22.8 - dev: true - /babel-plugin-macros@3.1.0: - resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} - engines: {node: '>=10', npm: '>=6'} + babel-plugin-macros@3.1.0: dependencies: '@babel/runtime': 7.24.7 cosmiconfig: 7.1.0 resolve: 1.22.8 - /babel-plugin-named-asset-import@0.3.8(@babel/core@7.24.7): - resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==} - peerDependencies: - '@babel/core': ^7.1.0 + babel-plugin-named-asset-import@0.3.8(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 - dev: true - /babel-plugin-named-exports-order@0.0.2: - resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==} - dev: false + babel-plugin-named-exports-order@0.0.2: {} - /babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.7): - resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.7): dependencies: '@babel/compat-data': 7.24.7 '@babel/core': 7.24.7 @@ -31490,10 +41734,7 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.24.7): - resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} - peerDependencies: - '@babel/core': ^7.0.0-0 + babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.24.7) @@ -31501,10 +41742,7 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.7): - resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7) @@ -31512,18 +41750,14 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.7): - resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - /babel-plugin-react-docgen@4.2.1: - resolution: {integrity: sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==} + babel-plugin-react-docgen@4.2.1: dependencies: ast-types: 0.14.2 lodash: 4.17.21 @@ -31531,40 +41765,27 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-rename-jsx-attribute@0.2.4(babel-core@6.26.3): - resolution: {integrity: sha512-R3kRggMmkXAd465a2q2Y2IceIUJHoyw9q/c0I7i3JdQDHGbUj59OTOR6QjRuB/bII1yH2Xuy/KM5+NNs9NzCGw==} - peerDependencies: - babel-core: ^6.26.3 + babel-plugin-rename-jsx-attribute@0.2.4(babel-core@7.0.0-bridge.0(@babel/core@7.24.7)): dependencies: - babel-core: 6.26.3 - dev: true + babel-core: 7.0.0-bridge.0(@babel/core@7.24.7) - /babel-plugin-styled-components@2.1.4(@babel/core@7.24.7)(styled-components@4.4.1)(supports-color@5.5.0): - resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==} - peerDependencies: - styled-components: '>= 2' + babel-plugin-styled-components@2.1.4(@babel/core@7.24.7)(styled-components@4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(supports-color@5.5.0): dependencies: '@babel/helper-annotate-as-pure': 7.24.7 '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0) '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7) lodash: 4.17.21 picomatch: 2.3.1 - styled-components: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + styled-components: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - '@babel/core' - supports-color - dev: false - /babel-plugin-syntax-jsx@6.18.0: - resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==} - dev: true + babel-plugin-syntax-jsx@6.18.0: {} - /babel-plugin-transform-async-to-promises@0.8.18: - resolution: {integrity: sha512-WpOrF76nUHijnNn10eBGOHZmXQC8JYRME9rOLxStOga7Av2VO53ehVFvVNImMksVtQuL2/7ZNxEgxnx7oo/3Hw==} - dev: true + babel-plugin-transform-async-to-promises@0.8.18: {} - /babel-plugin-transform-es2015-modules-commonjs@6.26.2: - resolution: {integrity: sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==} + babel-plugin-transform-es2015-modules-commonjs@6.26.2: dependencies: babel-plugin-transform-strict-mode: 6.24.1 babel-runtime: 6.26.0 @@ -31572,39 +41793,26 @@ packages: babel-types: 6.26.0 transitivePeerDependencies: - supports-color - dev: true - /babel-plugin-transform-strict-mode@6.24.1: - resolution: {integrity: sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw==} + babel-plugin-transform-strict-mode@6.24.1: dependencies: babel-runtime: 6.26.0 babel-types: 6.26.0 - dev: true - /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.24.7): - resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} - peerDependencies: - '@babel/core': ^7 - '@babel/traverse': ^7 - peerDependenciesMeta: - '@babel/traverse': - optional: true + babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.24.7)(@babel/traverse@7.24.7): dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - dev: true + optionalDependencies: + '@babel/traverse': 7.24.7 - /babel-polyfill@6.26.0: - resolution: {integrity: sha512-F2rZGQnAdaHWQ8YAoeRbukc7HS9QgdgeyJ0rQDd485v9opwuPvjpPFcOOT/WmkKTdgy9ESgSPXDcTNpzrGr6iQ==} + babel-polyfill@6.26.0: dependencies: babel-runtime: 6.26.0 core-js: 2.6.12 regenerator-runtime: 0.10.5 - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.7): - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} - peerDependencies: - '@babel/core': ^7.0.0 + babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7) @@ -31620,59 +41828,30 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.7) - /babel-preset-jest@26.6.2(@babel/core@7.24.7): - resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} - engines: {node: '>= 10.14.2'} - peerDependencies: - '@babel/core': ^7.0.0 + babel-preset-jest@26.6.2(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 babel-plugin-jest-hoist: 26.6.2 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7) - /babel-preset-jest@28.1.3(@babel/core@7.24.7): - resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - '@babel/core': ^7.0.0 + babel-preset-jest@28.1.3(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 babel-plugin-jest-hoist: 28.1.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7) - dev: true - /babel-preset-jest@29.6.3(@babel/core@7.24.7): - resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': ^7.0.0 + babel-preset-jest@29.6.3(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 babel-plugin-jest-hoist: 29.6.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7) - /babel-register@6.26.0: - resolution: {integrity: sha512-veliHlHX06wjaeY8xNITbveXSiI+ASFnOqvne/LaIJIqOWi2Ogmj91KOugEz/hoh/fwMhXNBJPCv8Xaz5CyM4A==} - dependencies: - babel-core: 6.26.3 - babel-runtime: 6.26.0 - core-js: 2.6.12 - home-or-tmp: 2.0.0 - lodash: 4.17.21 - mkdirp: 0.5.6 - source-map-support: 0.4.18 - transitivePeerDependencies: - - supports-color - dev: true - - /babel-runtime@6.26.0: - resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==} + babel-runtime@6.26.0: dependencies: core-js: 2.6.12 regenerator-runtime: 0.11.1 - /babel-template@6.26.0: - resolution: {integrity: sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg==} + babel-template@6.26.0: dependencies: babel-runtime: 6.26.0 babel-traverse: 6.26.0 @@ -31681,10 +41860,8 @@ packages: lodash: 4.17.21 transitivePeerDependencies: - supports-color - dev: true - /babel-traverse@6.26.0: - resolution: {integrity: sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA==} + babel-traverse@6.26.0: dependencies: babel-code-frame: 6.26.0 babel-messages: 6.23.0 @@ -31697,39 +41874,27 @@ packages: lodash: 4.17.21 transitivePeerDependencies: - supports-color - dev: true - /babel-types@6.26.0: - resolution: {integrity: sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==} + babel-types@6.26.0: dependencies: babel-runtime: 6.26.0 esutils: 2.0.3 lodash: 4.17.21 to-fast-properties: 1.0.3 - dev: true - /babylon@6.18.0: - resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==} - hasBin: true - dev: true + babylon@6.18.0: {} - /bail@1.0.5: - resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} + bail@1.0.5: {} - /balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + bail@2.0.2: {} - /base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + balanced-match@1.0.2: {} - /base64url@3.0.1: - resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==} - engines: {node: '>=6.0.0'} - dev: false + base64-js@1.5.1: {} - /base@0.11.2: - resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} - engines: {node: '>=0.10.0'} + base64url@3.0.1: {} + + base@0.11.2: dependencies: cache-base: 1.0.1 class-utils: 0.3.6 @@ -31739,64 +41904,39 @@ packages: mixin-deep: 1.3.2 pascalcase: 0.1.1 - /basic-auth@2.0.1: - resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} - engines: {node: '>= 0.8'} + basic-auth@2.0.1: dependencies: safe-buffer: 5.1.2 - dev: true - /batch-processor@1.0.0: - resolution: {integrity: sha512-xoLQD8gmmR32MeuBHgH0Tzd5PuSZx71ZsbhVxOCRbgktZEPe4SQy7s9Z50uPp0F/f7iw2XmkHN2xkgbMfckMDA==} - dev: true + batch-processor@1.0.0: {} - /batch@0.6.1: - resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} + batch@0.6.1: {} - /bcrypt-pbkdf@1.0.2: - resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} + bcrypt-pbkdf@1.0.2: dependencies: tweetnacl: 0.14.5 - dev: true - /before-after-hook@2.2.3: - resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} - dev: true + before-after-hook@2.2.3: {} - /better-opn@2.1.1: - resolution: {integrity: sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==} - engines: {node: '>8.0.0'} + better-opn@2.1.1: dependencies: open: 7.4.2 - /better-path-resolve@1.0.0: - resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} - engines: {node: '>=4'} + better-path-resolve@1.0.0: dependencies: is-windows: 1.0.2 - dev: true - /big-integer@1.6.52: - resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} - engines: {node: '>=0.6'} - requiresBuild: true - dev: false + big-integer@1.6.52: optional: true - /big.js@5.2.2: - resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + big.js@5.2.2: {} - /bin-check@4.1.0: - resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==} - engines: {node: '>=4'} + bin-check@4.1.0: dependencies: execa: 0.7.0 executable: 4.1.1 - dev: true - /bin-links@3.0.3: - resolution: {integrity: sha512-zKdnMPWEdh4F5INR07/eBrodC7QrF5JKvqskjz/ZZRXg5YSAZIbn8zGhbhUrElzHBZ2fvEQdOU59RHcTG3GiwA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + bin-links@3.0.3: dependencies: cmd-shim: 5.0.0 mkdirp-infer-owner: 2.0.0 @@ -31804,63 +41944,40 @@ packages: read-cmd-shim: 3.0.1 rimraf: 3.0.2 write-file-atomic: 4.0.2 - dev: true - /bin-version-check@5.1.0: - resolution: {integrity: sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==} - engines: {node: '>=12'} + bin-version-check@5.1.0: dependencies: bin-version: 6.0.0 semver: 7.6.2 semver-truncate: 3.0.0 - dev: true - /bin-version@6.0.0: - resolution: {integrity: sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==} - engines: {node: '>=12'} + bin-version@6.0.0: dependencies: execa: 5.1.1 find-versions: 5.1.0 - dev: true - /binary-extensions@1.13.1: - resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==} - engines: {node: '>=0.10.0'} + binary-extensions@1.13.1: {} - /binary-extensions@2.3.0: - resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} - engines: {node: '>=8'} + binary-extensions@2.3.0: {} - /bindings@1.5.0: - resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} - requiresBuild: true + bindings@1.5.0: dependencies: file-uri-to-path: 1.0.0 optional: true - /bl@4.1.0: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + bl@4.1.0: dependencies: buffer: 5.7.1 inherits: 2.0.4 readable-stream: 3.6.2 - dev: true - /blob-util@2.0.2: - resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} - dev: true + blob-util@2.0.2: {} - /bluebird@3.7.1: - resolution: {integrity: sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg==} - dev: true + bluebird@3.7.1: {} - /bluebird@3.7.2: - resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} - dev: true + bluebird@3.7.2: {} - /body-parser@1.20.2(supports-color@6.1.0): - resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + body-parser@1.20.2(supports-color@6.1.0): dependencies: bytes: 3.1.2 content-type: 1.0.5 @@ -31877,15 +41994,12 @@ packages: transitivePeerDependencies: - supports-color - /bonjour-service@1.2.1: - resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==} + bonjour-service@1.2.1: dependencies: fast-deep-equal: 3.1.3 multicast-dns: 7.2.5 - dev: true - /bonjour@3.5.0: - resolution: {integrity: sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==} + bonjour@3.5.0: dependencies: array-flatten: 2.1.2 deep-equal: 1.1.2 @@ -31894,12 +42008,9 @@ packages: multicast-dns: 6.2.3 multicast-dns-service-types: 1.1.0 - /boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + boolbase@1.0.0: {} - /boxen@5.1.2: - resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} - engines: {node: '>=10'} + boxen@5.1.2: dependencies: ansi-align: 3.0.1 camelcase: 6.3.0 @@ -31910,28 +42021,21 @@ packages: widest-line: 3.1.0 wrap-ansi: 7.0.0 - /bplist-parser@0.1.1: - resolution: {integrity: sha512-2AEM0FXy8ZxVLBuqX0hqt1gDwcnz2zygEkQ6zaD5Wko/sB9paUNwlpawrFtKeHUAQUOzjVy9AO4oeonqIHKA9Q==} - requiresBuild: true + bplist-parser@0.1.1: dependencies: big-integer: 1.6.52 - dev: false optional: true - /brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + brace-expansion@1.1.11: dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 - /brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + brace-expansion@2.0.1: dependencies: balanced-match: 1.0.2 - /braces@2.3.2(supports-color@6.1.0): - resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} - engines: {node: '>=0.10.0'} + braces@2.3.2(supports-color@6.1.0): dependencies: arr-flatten: 1.1.0 array-unique: 0.3.2 @@ -31946,102 +42050,64 @@ packages: transitivePeerDependencies: - supports-color - /braces@3.0.3: - resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} - engines: {node: '>=8'} + braces@3.0.3: dependencies: fill-range: 7.1.1 - /breakword@1.0.6: - resolution: {integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==} + breakword@1.0.6: dependencies: wcwidth: 1.0.1 - dev: true - /browser-assert@1.2.1: - resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==} - dev: false + browser-assert@1.2.1: {} - /browser-process-hrtime@1.0.0: - resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} - dev: true + browser-process-hrtime@1.0.0: {} - /browserslist@4.23.1: - resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true + browserslist@4.23.1: dependencies: caniuse-lite: 1.0.30001636 electron-to-chromium: 1.4.810 node-releases: 2.0.14 update-browserslist-db: 1.0.16(browserslist@4.23.1) - /bs-logger@0.2.6: - resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} - engines: {node: '>= 6'} + bs-logger@0.2.6: dependencies: fast-json-stable-stringify: 2.1.0 - /bser@2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + bser@2.1.1: dependencies: node-int64: 0.4.0 - /buffer-crc32@0.2.13: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + buffer-crc32@0.2.13: {} - /buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + buffer-from@1.1.2: {} - /buffer-indexof@1.1.1: - resolution: {integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==} + buffer-indexof@1.1.1: {} - /buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + buffer@5.7.1: dependencies: base64-js: 1.5.1 ieee754: 1.2.1 - dev: true - /buffer@6.0.3: - resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + buffer@6.0.3: dependencies: base64-js: 1.5.1 ieee754: 1.2.1 - dev: false - /builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: '>=6'} - dev: true + builtin-modules@3.3.0: {} - /builtins@1.0.3: - resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==} - dev: true + builtins@1.0.3: {} - /builtins@5.1.0: - resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==} + builtins@5.1.0: dependencies: semver: 7.6.2 - dev: true - /byte-size@7.0.1: - resolution: {integrity: sha512-crQdqyCwhokxwV1UyDzLZanhkugAgft7vt0qbbdt60C6Zf3CAiGmtUCylbtYwrU6loOUw3euGrNtW1J651ot1A==} - engines: {node: '>=10'} - dev: true + byte-size@7.0.1: {} - /bytes@3.0.0: - resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} - engines: {node: '>= 0.8'} + bytes@3.0.0: {} - /bytes@3.1.2: - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} - engines: {node: '>= 0.8'} + bytes@3.1.2: {} - /c8@7.14.0: - resolution: {integrity: sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw==} - engines: {node: '>=10.12.0'} - hasBin: true + c8@7.14.0: dependencies: '@bcoe/v8-coverage': 0.2.3 '@istanbuljs/schema': 0.1.3 @@ -32056,9 +42122,7 @@ packages: yargs: 16.2.0 yargs-parser: 20.2.9 - /cacache@15.3.0: - resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==} - engines: {node: '>= 10'} + cacache@15.3.0: dependencies: '@npmcli/fs': 1.1.1 '@npmcli/move-file': 1.1.2 @@ -32081,9 +42145,7 @@ packages: transitivePeerDependencies: - bluebird - /cacache@16.1.3: - resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + cacache@16.1.3: dependencies: '@npmcli/fs': 2.1.2 '@npmcli/move-file': 2.0.1 @@ -32105,11 +42167,8 @@ packages: unique-filename: 2.0.1 transitivePeerDependencies: - bluebird - dev: true - /cache-base@1.0.1: - resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} - engines: {node: '>=0.10.0'} + cache-base@1.0.1: dependencies: collection-visit: 1.0.0 component-emitter: 1.3.1 @@ -32121,14 +42180,9 @@ packages: union-value: 1.0.1 unset-value: 1.0.0 - /cacheable-lookup@5.0.4: - resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} - engines: {node: '>=10.6.0'} - dev: true + cacheable-lookup@5.0.4: {} - /cacheable-request@6.1.0: - resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} - engines: {node: '>=8'} + cacheable-request@6.1.0: dependencies: clone-response: 1.0.3 get-stream: 5.2.0 @@ -32137,11 +42191,8 @@ packages: lowercase-keys: 2.0.0 normalize-url: 4.5.1 responselike: 1.0.2 - dev: false - /cacheable-request@7.0.4: - resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} - engines: {node: '>=8'} + cacheable-request@7.0.4: dependencies: clone-response: 1.0.3 get-stream: 5.2.0 @@ -32150,26 +42201,17 @@ packages: lowercase-keys: 2.0.0 normalize-url: 6.1.0 responselike: 2.0.1 - dev: true - /cachedir@2.4.0: - resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==} - engines: {node: '>=6'} - dev: true + cachedir@2.4.0: {} - /caching-transform@4.0.0: - resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==} - engines: {node: '>=8'} + caching-transform@4.0.0: dependencies: hasha: 5.2.2 make-dir: 3.1.0 package-hash: 4.0.0 write-file-atomic: 3.0.3 - dev: true - /call-bind@1.0.7: - resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} - engines: {node: '>= 0.4'} + call-bind@1.0.7: dependencies: es-define-property: 1.0.0 es-errors: 1.3.0 @@ -32177,185 +42219,126 @@ packages: get-intrinsic: 1.2.4 set-function-length: 1.2.2 - /call-me-maybe@1.0.2: - resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} + call-me-maybe@1.0.2: {} - /caller-callsite@2.0.0: - resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} - engines: {node: '>=4'} + caller-callsite@2.0.0: dependencies: callsites: 2.0.0 - /caller-path@2.0.0: - resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} - engines: {node: '>=4'} + caller-path@2.0.0: dependencies: caller-callsite: 2.0.0 - /callsites@2.0.0: - resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} - engines: {node: '>=4'} + callsites@2.0.0: {} - /callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} + callsites@3.1.0: {} - /camel-case@4.1.2: - resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} + camel-case@4.1.2: dependencies: pascal-case: 3.1.2 tslib: 2.6.3 - /camelcase-css@2.0.1: - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: '>= 6'} + camelcase-css@2.0.1: {} - /camelcase-keys@2.1.0: - resolution: {integrity: sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==} - engines: {node: '>=0.10.0'} - requiresBuild: true + camelcase-keys@2.1.0: dependencies: camelcase: 2.1.1 map-obj: 1.0.1 - dev: false optional: true - /camelcase-keys@6.2.2: - resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} - engines: {node: '>=8'} + camelcase-keys@6.2.2: dependencies: camelcase: 5.3.1 map-obj: 4.3.0 quick-lru: 4.0.1 - dev: true - /camelcase@2.1.1: - resolution: {integrity: sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==} - engines: {node: '>=0.10.0'} - requiresBuild: true - dev: false + camelcase@2.1.1: optional: true - /camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} + camelcase@5.3.1: {} - /camelcase@6.3.0: - resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} - engines: {node: '>=10'} + camelcase@6.3.0: {} - /camelize@1.0.1: - resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} - dev: false + camelize@1.0.1: {} - /caniuse-api@3.0.0: - resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} + caniuse-api@3.0.0: dependencies: browserslist: 4.23.1 caniuse-lite: 1.0.30001636 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 - dev: true - /caniuse-lite@1.0.30001636: - resolution: {integrity: sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==} + caniuse-lite@1.0.30001636: {} - /capture-exit@2.0.0: - resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} - engines: {node: 6.* || 8.* || >= 10.*} + capture-exit@2.0.0: dependencies: rsvp: 4.8.5 - /case-sensitive-paths-webpack-plugin@2.4.0: - resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} - engines: {node: '>=4'} + case-sensitive-paths-webpack-plugin@2.4.0: {} - /caseless@0.12.0: - resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} - dev: true + caseless@0.12.0: {} - /ccount@1.1.0: - resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==} + ccount@1.1.0: {} - /chalk@1.1.3: - resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} - engines: {node: '>=0.10.0'} + ccount@2.0.1: {} + + chalk@1.1.3: dependencies: ansi-styles: 2.2.1 escape-string-regexp: 1.0.5 has-ansi: 2.0.0 strip-ansi: 3.0.1 supports-color: 2.0.0 - dev: true - /chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} + chalk@2.4.2: dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 supports-color: 5.5.0 - /chalk@3.0.0: - resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} - engines: {node: '>=8'} + chalk@3.0.0: dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 - dev: true - /chalk@4.1.0: - resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==} - engines: {node: '>=10'} + chalk@4.1.0: dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 - dev: true - /chalk@4.1.1: - resolution: {integrity: sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==} - engines: {node: '>=10'} + chalk@4.1.1: dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 - dev: true - /chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} + chalk@4.1.2: dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 - /char-regex@1.0.2: - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} - engines: {node: '>=10'} + char-regex@1.0.2: {} - /character-entities-legacy@1.1.4: - resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} + character-entities-html4@2.1.0: {} - /character-entities@1.2.4: - resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} + character-entities-legacy@1.1.4: {} - /character-reference-invalid@1.1.4: - resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} + character-entities-legacy@3.0.0: {} - /chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} - dev: true + character-entities@1.2.4: {} - /check-more-types@2.24.0: - resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} - engines: {node: '>= 0.8.0'} - dev: true + character-entities@2.0.2: {} - /child_process@1.0.2: - resolution: {integrity: sha512-Wmza/JzL0SiWz7kl6MhIKT5ceIlnFPJX+lwUGj7Clhy5MMldsSoJR0+uvRzOS5Kv45Mq7t1PoE8TsOA9bzvb6g==} - dev: true + character-reference-invalid@1.1.4: {} - /chokidar@2.1.8(supports-color@6.1.0): - resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==} - deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies + character-reference-invalid@2.0.1: {} + + chardet@0.7.0: {} + + check-more-types@2.24.0: {} + + child_process@1.0.2: {} + + chokidar@2.1.8(supports-color@6.1.0): dependencies: anymatch: 2.0.0(supports-color@6.1.0) async-each: 1.0.6 @@ -32373,9 +42356,7 @@ packages: transitivePeerDependencies: - supports-color - /chokidar@3.6.0: - resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} - engines: {node: '>= 8.10.0'} + chokidar@3.6.0: dependencies: anymatch: 3.1.3 braces: 3.0.3 @@ -32387,147 +42368,94 @@ packages: optionalDependencies: fsevents: 2.3.3 - /chownr@2.0.0: - resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} - engines: {node: '>=10'} + chownr@2.0.0: {} - /chrome-trace-event@1.0.4: - resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} - engines: {node: '>=6.0'} + chrome-trace-event@1.0.4: {} - /ci-info@2.0.0: - resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} + ci-info@2.0.0: {} - /ci-info@3.9.0: - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} - engines: {node: '>=8'} + ci-info@3.9.0: {} - /cjs-module-lexer@0.6.0: - resolution: {integrity: sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==} - dev: true + cjs-module-lexer@0.6.0: {} - /cjs-module-lexer@1.3.1: - resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==} + cjs-module-lexer@1.3.1: {} - /class-utils@0.3.6: - resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} - engines: {node: '>=0.10.0'} + class-utils@0.3.6: dependencies: arr-union: 3.1.0 define-property: 0.2.5 isobject: 3.0.1 static-extend: 0.1.2 - /classcat@5.0.5: - resolution: {integrity: sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==} - dev: false + classcat@5.0.5: {} - /classnames@2.5.1: - resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==} + classnames@2.5.1: {} - /clean-css@4.2.4: - resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==} - engines: {node: '>= 4.0'} + clean-css@4.2.4: dependencies: source-map: 0.6.1 - /clean-css@5.3.3: - resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} - engines: {node: '>= 10.0'} + clean-css@5.3.3: dependencies: source-map: 0.6.1 - /clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} + clean-stack@2.2.0: {} - /cli-boxes@2.2.1: - resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} - engines: {node: '>=6'} + cli-boxes@2.2.1: {} - /cli-cursor@3.1.0: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} - engines: {node: '>=8'} + cli-cursor@3.1.0: dependencies: restore-cursor: 3.1.0 - dev: true - /cli-spinners@2.6.1: - resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} - engines: {node: '>=6'} - dev: true + cli-spinners@2.6.1: {} - /cli-spinners@2.9.2: - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} - engines: {node: '>=6'} - dev: true + cli-spinners@2.9.2: {} - /cli-table3@0.6.5: - resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} - engines: {node: 10.* || >= 12.*} + cli-table3@0.6.5: dependencies: string-width: 4.2.3 optionalDependencies: '@colors/colors': 1.5.0 - /cli-truncate@2.1.0: - resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} - engines: {node: '>=8'} + cli-truncate@2.1.0: dependencies: slice-ansi: 3.0.0 string-width: 4.2.3 - dev: true - /cli-width@3.0.0: - resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} - engines: {node: '>= 10'} - dev: true + cli-width@3.0.0: {} - /cli@1.0.1: - resolution: {integrity: sha512-41U72MB56TfUMGndAKK8vJ78eooOD4Z5NOL4xEfjc0c23s+6EYKXlXsmACBVclLP1yOfWCgEganVzddVrSNoTg==} - engines: {node: '>=0.2.5'} + cli@1.0.1: dependencies: exit: 0.1.2 glob: 7.2.3 - dev: false - /client-only@0.0.1: - resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} - dev: false + client-only@0.0.1: {} - /cliui@5.0.0: - resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==} + cliui@5.0.0: dependencies: string-width: 3.1.0 strip-ansi: 5.2.0 wrap-ansi: 5.1.0 - /cliui@6.0.0: - resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + cliui@6.0.0: dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 6.2.0 - dev: true - /cliui@7.0.4: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + cliui@7.0.4: dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - /cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} + cliui@8.0.1: dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - /clone-deep@0.2.4: - resolution: {integrity: sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==} - engines: {node: '>=0.10.0'} + clone-deep@0.2.4: dependencies: for-own: 0.1.5 is-plain-object: 2.0.4 @@ -32535,193 +42463,118 @@ packages: lazy-cache: 1.0.4 shallow-clone: 0.1.2 - /clone-deep@4.0.1: - resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} - engines: {node: '>=6'} + clone-deep@4.0.1: dependencies: is-plain-object: 2.0.4 kind-of: 6.0.3 shallow-clone: 3.0.1 - /clone-response@1.0.3: - resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} + clone-response@1.0.3: dependencies: mimic-response: 1.0.1 - /clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} - dev: true + clone@1.0.4: {} - /clone@2.1.2: - resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} - engines: {node: '>=0.8'} - dev: true + clone@2.1.2: {} - /clsx@1.2.1: - resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} - engines: {node: '>=6'} + clsx@1.2.1: {} - /clsx@2.1.1: - resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} - engines: {node: '>=6'} - dev: false + clsx@2.1.1: {} - /cmd-shim@5.0.0: - resolution: {integrity: sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + cmd-shim@5.0.0: dependencies: mkdirp-infer-owner: 2.0.0 - dev: true - /co@4.6.0: - resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + co@4.6.0: {} - /coa@2.0.2: - resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} - engines: {node: '>= 4.0'} + coa@2.0.2: dependencies: '@types/q': 1.5.8 chalk: 2.4.2 q: 1.5.1 - /codemirror@5.65.16: - resolution: {integrity: sha512-br21LjYmSlVL0vFCPWPfhzUCT34FM/pAdK7rRIZwa0rrtrIdotvP4Oh4GUHsu2E3IrQMCfRkL/fN3ytMNxVQvg==} - dev: false + codemirror@5.65.16: {} - /collapse-white-space@1.0.6: - resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==} + collapse-white-space@1.0.6: {} - /collect-v8-coverage@1.0.2: - resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} + collect-v8-coverage@1.0.2: {} - /collection-visit@1.0.0: - resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} - engines: {node: '>=0.10.0'} + collection-visit@1.0.0: dependencies: map-visit: 1.0.0 object-visit: 1.0.1 - /color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + color-convert@1.9.3: dependencies: color-name: 1.1.3 - /color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} + color-convert@2.0.1: dependencies: color-name: 1.1.4 - /color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + color-name@1.1.3: {} - /color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + color-name@1.1.4: {} - /color-support@1.1.3: - resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} - hasBin: true + color-support@1.1.3: {} - /colord@2.9.3: - resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} - dev: true + colord@2.9.3: {} - /colorette@1.4.0: - resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} + colorette@1.4.0: {} - /colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + colorette@2.0.20: {} - /columnify@1.6.0: - resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==} - engines: {node: '>=8.0.0'} + columnify@1.6.0: dependencies: strip-ansi: 6.0.1 wcwidth: 1.0.1 - dev: true - /combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} + combined-stream@1.0.8: dependencies: delayed-stream: 1.0.0 - /comma-separated-tokens@1.0.8: - resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} + comma-separated-tokens@1.0.8: {} - /commander@10.0.1: - resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} - engines: {node: '>=14'} - dev: false + comma-separated-tokens@2.0.3: {} - /commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + commander@10.0.1: {} - /commander@4.1.1: - resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} - engines: {node: '>= 6'} + commander@2.20.3: {} - /commander@5.1.0: - resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} - engines: {node: '>= 6'} - dev: true + commander@4.1.1: {} - /commander@6.2.1: - resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} - engines: {node: '>= 6'} + commander@5.1.0: {} - /commander@7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} - engines: {node: '>= 10'} + commander@6.2.1: {} - /commander@8.3.0: - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} - engines: {node: '>= 12'} + commander@7.2.0: {} - /common-ancestor-path@1.0.1: - resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} - dev: true + commander@8.3.0: {} - /common-tags@1.8.2: - resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} - engines: {node: '>=4.0.0'} - dev: true + common-ancestor-path@1.0.1: {} - /commondir@1.0.1: - resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + common-tags@1.8.2: {} - /compare-func@2.0.0: - resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + commondir@1.0.1: {} + + compare-func@2.0.0: dependencies: array-ify: 1.0.0 dot-prop: 5.3.0 - dev: true - /component-emitter@1.3.1: - resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==} + component-emitter@1.3.1: {} - /compressible@2.0.18: - resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} - engines: {node: '>= 0.6'} + compressible@2.0.18: dependencies: mime-db: 1.52.0 - /compression-webpack-plugin@7.1.2(webpack@5.84.1): - resolution: {integrity: sha512-9DKNW6ILLjx+bNBoviHDgLx6swBhWWH9ApClC9sTH2NoFfQM47BapQfovCm9zjD9v1uZwInF5a925FB9ErGQeQ==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 + compression-webpack-plugin@7.1.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: schema-utils: 3.3.0 serialize-javascript: 5.0.1 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /compression@1.7.4(supports-color@6.1.0): - resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} - engines: {node: '>= 0.8.0'} + compression@1.7.4(supports-color@6.1.0): dependencies: accepts: 1.3.8 bytes: 3.0.0 @@ -32733,48 +42586,34 @@ packages: transitivePeerDependencies: - supports-color - /compute-scroll-into-view@1.0.20: - resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==} - dev: true + compute-scroll-into-view@1.0.20: {} - /concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + concat-map@0.0.1: {} - /concat-stream@1.6.2: - resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} - engines: {'0': node >= 0.8} + concat-stream@1.6.2: dependencies: buffer-from: 1.1.2 inherits: 2.0.4 readable-stream: 2.3.8 typedarray: 0.0.6 - dev: false - /concat-stream@2.0.0: - resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} - engines: {'0': node >= 6.0} + concat-stream@2.0.0: dependencies: buffer-from: 1.1.2 inherits: 2.0.4 readable-stream: 3.6.2 typedarray: 0.0.6 - dev: true - /concat-with-sourcemaps@1.1.0: - resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==} + concat-with-sourcemaps@1.1.0: dependencies: source-map: 0.6.1 - dev: true - /config-chain@1.1.13: - resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} + config-chain@1.1.13: dependencies: ini: 1.3.8 proto-list: 1.2.4 - /configstore@5.0.1: - resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} - engines: {node: '>=8'} + configstore@5.0.1: dependencies: dot-prop: 5.3.0 graceful-fs: 4.2.11 @@ -32782,51 +42621,31 @@ packages: unique-string: 2.0.0 write-file-atomic: 3.0.3 xdg-basedir: 4.0.0 - dev: false - /confusing-browser-globals@1.0.11: - resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} - dev: true + confusing-browser-globals@1.0.11: {} - /connect-history-api-fallback@1.6.0: - resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==} - engines: {node: '>=0.8'} + connect-history-api-fallback@1.6.0: {} - /connect-history-api-fallback@2.0.0: - resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} - engines: {node: '>=0.8'} - dev: true + connect-history-api-fallback@2.0.0: {} - /console-browserify@1.1.0: - resolution: {integrity: sha512-duS7VP5pvfsNLDvL1O4VOEbw37AI3A4ZUQYemvDlnpGrNu9tprR7BYWpDYwC0Xia0Zxz5ZupdiIrUp0GH1aXfg==} + console-browserify@1.1.0: dependencies: date-now: 0.1.4 - dev: false - /console-control-strings@1.1.0: - resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + console-control-strings@1.1.0: {} - /content-disposition@0.5.4: - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} - engines: {node: '>= 0.6'} + content-disposition@0.5.4: dependencies: safe-buffer: 5.2.1 - /content-type@1.0.5: - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} - engines: {node: '>= 0.6'} + content-type@1.0.5: {} - /conventional-changelog-angular@5.0.13: - resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} - engines: {node: '>=10'} + conventional-changelog-angular@5.0.13: dependencies: compare-func: 2.0.0 q: 1.5.1 - dev: true - /conventional-changelog-core@4.2.4: - resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==} - engines: {node: '>=10'} + conventional-changelog-core@4.2.4: dependencies: add-stream: 1.0.0 conventional-changelog-writer: 5.0.1 @@ -32842,17 +42661,10 @@ packages: read-pkg: 3.0.0 read-pkg-up: 3.0.0 through2: 4.0.2 - dev: true - /conventional-changelog-preset-loader@2.3.4: - resolution: {integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==} - engines: {node: '>=10'} - dev: true + conventional-changelog-preset-loader@2.3.4: {} - /conventional-changelog-writer@5.0.1: - resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==} - engines: {node: '>=10'} - hasBin: true + conventional-changelog-writer@5.0.1: dependencies: conventional-commits-filter: 2.0.7 dateformat: 3.0.3 @@ -32863,20 +42675,13 @@ packages: semver: 6.3.1 split: 1.0.1 through2: 4.0.2 - dev: true - /conventional-commits-filter@2.0.7: - resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==} - engines: {node: '>=10'} + conventional-commits-filter@2.0.7: dependencies: lodash.ismatch: 4.4.0 modify-values: 1.0.1 - dev: true - /conventional-commits-parser@3.2.4: - resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} - engines: {node: '>=10'} - hasBin: true + conventional-commits-parser@3.2.4: dependencies: JSONStream: 1.3.5 is-text-path: 1.0.1 @@ -32884,12 +42689,8 @@ packages: meow: 8.1.2 split2: 3.2.2 through2: 4.0.2 - dev: true - /conventional-recommended-bump@6.1.0: - resolution: {integrity: sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==} - engines: {node: '>=10'} - hasBin: true + conventional-recommended-bump@6.1.0: dependencies: concat-stream: 2.0.0 conventional-changelog-preset-loader: 2.3.4 @@ -32899,47 +42700,28 @@ packages: git-semver-tags: 4.1.1 meow: 8.1.2 q: 1.5.1 - dev: true - /convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + convert-source-map@1.9.0: {} - /convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + convert-source-map@2.0.0: {} - /cookie-signature@1.0.6: - resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + cookie-signature@1.0.6: {} - /cookie@0.4.2: - resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} - engines: {node: '>= 0.6'} - dev: true + cookie@0.4.2: {} - /cookie@0.6.0: - resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} - engines: {node: '>= 0.6'} + cookie@0.6.0: {} - /copy-anything@2.0.6: - resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} + copy-anything@2.0.6: dependencies: is-what: 3.14.1 - dev: true - /copy-descriptor@0.1.1: - resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} - engines: {node: '>=0.10.0'} + copy-descriptor@0.1.1: {} - /copy-to-clipboard@3.3.3: - resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==} + copy-to-clipboard@3.3.3: dependencies: toggle-selection: 1.0.6 - dev: true - /copy-webpack-plugin@10.2.4(webpack@5.84.1): - resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==} - engines: {node: '>= 12.20.0'} - peerDependencies: - webpack: 5.84.1 + copy-webpack-plugin@10.2.4(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: fast-glob: 3.3.2 glob-parent: 6.0.2 @@ -32947,14 +42729,9 @@ packages: normalize-path: 3.0.0 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /copy-webpack-plugin@12.0.2(webpack@5.84.1): - resolution: {integrity: sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==} - engines: {node: '>= 18.12.0'} - peerDependencies: - webpack: 5.84.1 + copy-webpack-plugin@12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: fast-glob: 3.3.2 glob-parent: 6.0.2 @@ -32962,51 +42739,32 @@ packages: normalize-path: 3.0.0 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /core-js-compat@3.37.1: - resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==} + core-js-compat@3.37.1: dependencies: browserslist: 4.23.1 - /core-js-pure@3.37.1: - resolution: {integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==} - requiresBuild: true + core-js-pure@3.37.1: {} - /core-js@2.6.12: - resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} - deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. - requiresBuild: true + core-js@2.6.12: {} - /core-js@3.37.1: - resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==} - requiresBuild: true + core-js@3.37.1: {} - /core-util-is@1.0.2: - resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} - dev: true + core-util-is@1.0.2: {} - /core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + core-util-is@1.0.3: {} - /corser@2.0.1: - resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==} - engines: {node: '>= 0.4.0'} - dev: true + corser@2.0.1: {} - /cosmiconfig@5.2.1: - resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} - engines: {node: '>=4'} + cosmiconfig@5.2.1: dependencies: import-fresh: 2.0.0 is-directory: 0.3.1 js-yaml: 3.13.1 parse-json: 4.0.0 - /cosmiconfig@6.0.0: - resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} - engines: {node: '>=8'} + cosmiconfig@6.0.0: dependencies: '@types/parse-json': 4.0.2 import-fresh: 3.3.0 @@ -33014,9 +42772,7 @@ packages: path-type: 4.0.0 yaml: 1.10.2 - /cosmiconfig@7.1.0: - resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} - engines: {node: '>=10'} + cosmiconfig@7.1.0: dependencies: '@types/parse-json': 4.0.2 import-fresh: 3.3.0 @@ -33024,25 +42780,19 @@ packages: path-type: 4.0.0 yaml: 1.10.2 - /country-language@0.1.7: - resolution: {integrity: sha512-QH8GvZehR0IsFSR8ZPzteaCq/JjsLKk+tHWSQciXVpredI/2Xaf1VAdCuo/XPFWSrRCkSLaZNqnOcot4zceAIw==} + country-language@0.1.7: dependencies: underscore: 1.7.0 underscore.deep: 0.5.3(underscore@1.7.0) - dev: false - /cp-file@7.0.0: - resolution: {integrity: sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==} - engines: {node: '>=8'} + cp-file@7.0.0: dependencies: graceful-fs: 4.2.11 make-dir: 3.1.0 nested-error-stacks: 2.1.1 p-event: 4.2.0 - /cpy@8.1.2: - resolution: {integrity: sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==} - engines: {node: '>=8'} + cpy@8.1.2: dependencies: arrify: 2.0.1 cp-file: 7.0.0 @@ -33056,16 +42806,13 @@ packages: transitivePeerDependencies: - supports-color - /create-jest@29.7.0(@types/node@13.13.52)(ts-node@10.9.2): - resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true + create-jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@13.13.52)(ts-node@10.9.2) + jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -33074,16 +42821,13 @@ packages: - supports-color - ts-node - /create-jest@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): - resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true + create-jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -33091,22 +42835,16 @@ packages: - babel-plugin-macros - supports-color - ts-node - dev: true - /create-require@1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + create-require@1.1.1: {} - /cross-spawn@5.1.0: - resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} + cross-spawn@5.1.0: dependencies: lru-cache: 4.1.5 shebang-command: 1.2.0 which: 1.3.1 - dev: true - /cross-spawn@6.0.5: - resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} - engines: {node: '>=4.8'} + cross-spawn@6.0.5: dependencies: nice-try: 1.0.5 path-key: 2.0.1 @@ -33114,42 +42852,23 @@ packages: shebang-command: 1.2.0 which: 1.3.1 - /cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} + cross-spawn@7.0.3: dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 - /crypto-js@3.3.0: - resolution: {integrity: sha512-DIT51nX0dCfKltpRiXV+/TVZq+Qq2NgF4644+K7Ttnla7zEzqc+kjJyiB96BHNyUTBxyjzRcZYpUdZa+QAqi6Q==} - dev: false + crypto-js@3.3.0: {} - /crypto-random-string@2.0.0: - resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} - engines: {node: '>=8'} - dev: false + crypto-random-string@2.0.0: {} - /css-color-keywords@1.0.0: - resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} - engines: {node: '>=4'} - dev: false + css-color-keywords@1.0.0: {} - /css-declaration-sorter@6.4.1(postcss@8.4.38): - resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} - engines: {node: ^10 || ^12 || >=14} - peerDependencies: - postcss: ^8.0.9 + css-declaration-sorter@6.4.1(postcss@8.4.38): dependencies: postcss: 8.4.38 - dev: true - /css-loader@1.0.1(webpack@5.84.1): - resolution: {integrity: sha512-+ZHAZm/yqvJ2kDtPne3uX0C+Vr3Zn5jFn2N4HywtS5ujwvsVkyg0VArEXpl3BgczDA8anieki1FIzhchX4yrDw==} - engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 + css-loader@1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: babel-code-frame: 6.26.0 css-selector-tokenizer: 0.7.3 @@ -33163,14 +42882,9 @@ packages: postcss-modules-values: 1.3.0 postcss-value-parser: 3.3.1 source-list-map: 2.0.1 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /css-loader@3.6.0(webpack@5.84.1): - resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==} - engines: {node: '>= 8.9.0'} - peerDependencies: - webpack: 5.84.1 + css-loader@3.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: camelcase: 5.3.1 cssesc: 3.0.0 @@ -33185,13 +42899,9 @@ packages: postcss-value-parser: 4.2.0 schema-utils: 2.7.1 semver: 6.3.1 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /css-loader@5.2.7(webpack@5.84.1): - resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 + css-loader@5.2.7(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: icss-utils: 5.1.0(postcss@8.4.38) loader-utils: 2.0.4 @@ -33203,19 +42913,9 @@ packages: postcss-value-parser: 4.2.0 schema-utils: 3.3.0 semver: 7.6.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /css-loader@6.11.0(webpack@5.84.1): - resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==} - engines: {node: '>= 12.13.0'} - peerDependencies: - '@rspack/core': 0.x || 1.x - webpack: 5.84.1 - peerDependenciesMeta: - '@rspack/core': - optional: true - webpack: - optional: true + css-loader@6.11.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: icss-utils: 5.1.0(postcss@8.4.38) postcss: 8.4.38 @@ -33225,27 +42925,10 @@ packages: postcss-modules-values: 4.0.0(postcss@8.4.38) postcss-value-parser: 4.2.0 semver: 7.6.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + optionalDependencies: + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /css-minimizer-webpack-plugin@3.4.1(webpack@5.84.1): - resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} - engines: {node: '>= 12.13.0'} - peerDependencies: - '@parcel/css': '*' - clean-css: '*' - csso: '*' - esbuild: '*' - webpack: 5.84.1 - peerDependenciesMeta: - '@parcel/css': - optional: true - clean-css: - optional: true - csso: - optional: true - esbuild: - optional: true + css-minimizer-webpack-plugin@3.4.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: cssnano: 5.1.15(postcss@8.4.38) jest-worker: 27.5.1 @@ -33253,22 +42936,18 @@ packages: schema-utils: 4.2.0 serialize-javascript: 6.0.2 source-map: 0.6.1 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /css-select-base-adapter@0.1.1: - resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} + css-select-base-adapter@0.1.1: {} - /css-select@2.1.0: - resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==} + css-select@2.1.0: dependencies: boolbase: 1.0.0 css-what: 3.4.2 domutils: 1.7.0 nth-check: 1.0.2 - /css-select@4.3.0: - resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + css-select@4.3.0: dependencies: boolbase: 1.0.0 css-what: 6.1.0 @@ -33276,91 +42955,60 @@ packages: domutils: 2.8.0 nth-check: 2.1.1 - /css-select@5.1.0: - resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + css-select@5.1.0: dependencies: boolbase: 1.0.0 css-what: 6.1.0 domhandler: 5.0.3 domutils: 3.1.0 nth-check: 2.1.1 - dev: false - /css-selector-tokenizer@0.7.3: - resolution: {integrity: sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==} + css-selector-tokenizer@0.7.3: dependencies: cssesc: 3.0.0 fastparse: 1.1.2 - dev: true - /css-to-react-native@2.3.2: - resolution: {integrity: sha512-VOFaeZA053BqvvvqIA8c9n0+9vFppVBAHCp6JgFTtTMU3Mzi+XnelJ9XC9ul3BqFzZyQ5N+H0SnwsWT2Ebchxw==} + css-to-react-native@2.3.2: dependencies: camelize: 1.0.1 css-color-keywords: 1.0.0 postcss-value-parser: 3.3.1 - dev: false - /css-tree@1.0.0-alpha.37: - resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} - engines: {node: '>=8.0.0'} + css-tree@1.0.0-alpha.37: dependencies: mdn-data: 2.0.4 source-map: 0.6.1 - /css-tree@1.1.3: - resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} - engines: {node: '>=8.0.0'} + css-tree@1.1.3: dependencies: mdn-data: 2.0.14 source-map: 0.6.1 - /css-tree@2.2.1: - resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + css-tree@2.2.1: dependencies: mdn-data: 2.0.28 source-map-js: 1.2.0 - dev: false - /css-tree@2.3.1: - resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + css-tree@2.3.1: dependencies: mdn-data: 2.0.30 source-map-js: 1.2.0 - dev: false - /css-what@3.4.2: - resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} - engines: {node: '>= 6'} + css-what@3.4.2: {} - /css-what@6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: '>= 6'} + css-what@6.1.0: {} - /css.escape@1.5.1: - resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} - dev: true + css.escape@1.5.1: {} - /css@3.0.0: - resolution: {integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==} + css@3.0.0: dependencies: inherits: 2.0.4 source-map: 0.6.1 source-map-resolve: 0.6.0 - dev: true - /cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} - hasBin: true + cssesc@3.0.0: {} - /cssnano-preset-default@5.2.14(postcss@8.4.38): - resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + cssnano-preset-default@5.2.14(postcss@8.4.38): dependencies: css-declaration-sorter: 6.4.1(postcss@8.4.38) cssnano-utils: 3.1.0(postcss@8.4.38) @@ -33392,104 +43040,59 @@ packages: postcss-reduce-transforms: 5.1.0(postcss@8.4.38) postcss-svgo: 5.1.0(postcss@8.4.38) postcss-unique-selectors: 5.1.1(postcss@8.4.38) - dev: true - /cssnano-utils@3.1.0(postcss@8.4.38): - resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + cssnano-utils@3.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 - dev: true - /cssnano@5.1.15(postcss@8.4.38): - resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + cssnano@5.1.15(postcss@8.4.38): dependencies: cssnano-preset-default: 5.2.14(postcss@8.4.38) lilconfig: 2.1.0 postcss: 8.4.38 yaml: 1.10.2 - dev: true - /csso@4.2.0: - resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} - engines: {node: '>=8.0.0'} + csso@4.2.0: dependencies: css-tree: 1.1.3 - /csso@5.0.5: - resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + csso@5.0.5: dependencies: css-tree: 2.2.1 - dev: false - /cssom@0.3.8: - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} - dev: true + cssom@0.3.8: {} - /cssom@0.4.4: - resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} - dev: true + cssom@0.4.4: {} - /cssom@0.5.0: - resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} - dev: true + cssom@0.5.0: {} - /cssstyle@2.3.0: - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} - engines: {node: '>=8'} + cssstyle@2.3.0: dependencies: cssom: 0.3.8 - dev: true - /csstype@2.6.21: - resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==} - dev: true + csstype@2.6.21: {} - /csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + csstype@3.1.3: {} - /csv-generate@3.4.3: - resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} - dev: true + csv-generate@3.4.3: {} - /csv-parse@4.16.3: - resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} - dev: true + csv-parse@4.16.3: {} - /csv-stringify@5.6.5: - resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} - dev: true + csv-stringify@5.6.5: {} - /csv@5.5.3: - resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} - engines: {node: '>= 0.1.90'} + csv@5.5.3: dependencies: csv-generate: 3.4.3 csv-parse: 4.16.3 csv-stringify: 5.6.5 stream-transform: 2.1.3 - dev: true - /currently-unhandled@0.4.1: - resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} - engines: {node: '>=0.10.0'} - requiresBuild: true + currently-unhandled@0.4.1: dependencies: array-find-index: 1.0.2 - dev: false optional: true - /cypress@9.7.0: - resolution: {integrity: sha512-+1EE1nuuuwIt/N1KXRR2iWHU+OiIt7H28jJDyyI4tiUftId/DrXYEwoDa5+kH2pki1zxnA0r6HrUGHV5eLbF5Q==} - engines: {node: '>=12.0.0'} - hasBin: true - requiresBuild: true + cypress@9.7.0: dependencies: '@cypress/request': 2.88.12 '@cypress/xvfb': 1.2.4(supports-color@8.1.1) @@ -33533,102 +43136,55 @@ packages: tmp: 0.2.3 untildify: 4.0.0 yauzl: 2.10.0 - dev: true - /d3-array@3.2.4: - resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} - engines: {node: '>=12'} + d3-array@3.2.4: dependencies: internmap: 2.0.3 - dev: false - /d3-color@3.1.0: - resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} - engines: {node: '>=12'} - dev: false + d3-color@3.1.0: {} - /d3-dispatch@3.0.1: - resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} - engines: {node: '>=12'} - dev: false + d3-dispatch@3.0.1: {} - /d3-drag@3.0.0: - resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} - engines: {node: '>=12'} + d3-drag@3.0.0: dependencies: d3-dispatch: 3.0.1 d3-selection: 3.0.0 - dev: false - /d3-ease@3.0.1: - resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} - engines: {node: '>=12'} - dev: false + d3-ease@3.0.1: {} - /d3-format@3.1.0: - resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} - engines: {node: '>=12'} - dev: false + d3-format@3.1.0: {} - /d3-interpolate@3.0.1: - resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} - engines: {node: '>=12'} + d3-interpolate@3.0.1: dependencies: d3-color: 3.1.0 - dev: false - /d3-path@3.1.0: - resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==} - engines: {node: '>=12'} - dev: false + d3-path@3.1.0: {} - /d3-scale@4.0.2: - resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} - engines: {node: '>=12'} + d3-scale@4.0.2: dependencies: d3-array: 3.2.4 d3-format: 3.1.0 d3-interpolate: 3.0.1 d3-time: 3.1.0 d3-time-format: 4.1.0 - dev: false - /d3-selection@3.0.0: - resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} - engines: {node: '>=12'} - dev: false + d3-selection@3.0.0: {} - /d3-shape@3.2.0: - resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==} - engines: {node: '>=12'} + d3-shape@3.2.0: dependencies: d3-path: 3.1.0 - dev: false - /d3-time-format@4.1.0: - resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} - engines: {node: '>=12'} + d3-time-format@4.1.0: dependencies: d3-time: 3.1.0 - dev: false - /d3-time@3.1.0: - resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} - engines: {node: '>=12'} + d3-time@3.1.0: dependencies: d3-array: 3.2.4 - dev: false - /d3-timer@3.0.1: - resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} - engines: {node: '>=12'} - dev: false + d3-timer@3.0.1: {} - /d3-transition@3.0.1(d3-selection@3.0.0): - resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} - engines: {node: '>=12'} - peerDependencies: - d3-selection: 2 - 3 + d3-transition@3.0.1(d3-selection@3.0.0): dependencies: d3-color: 3.1.0 d3-dispatch: 3.0.1 @@ -33636,253 +43192,146 @@ packages: d3-interpolate: 3.0.1 d3-selection: 3.0.0 d3-timer: 3.0.1 - dev: false - /d3-zoom@3.0.0: - resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} - engines: {node: '>=12'} + d3-zoom@3.0.0: dependencies: d3-dispatch: 3.0.1 d3-drag: 3.0.0 d3-interpolate: 3.0.1 d3-selection: 3.0.0 d3-transition: 3.0.1(d3-selection@3.0.0) - dev: false - /d@1.0.2: - resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==} - engines: {node: '>=0.12'} + d@1.0.2: dependencies: es5-ext: 0.10.64 type: 2.7.3 - dev: true - /damerau-levenshtein@1.0.8: - resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} - dev: true + damerau-levenshtein@1.0.8: {} - /dargs@7.0.0: - resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} - engines: {node: '>=8'} - dev: true + dargs@7.0.0: {} - /dashdash@1.14.1: - resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} - engines: {node: '>=0.10'} + dashdash@1.14.1: dependencies: assert-plus: 1.0.0 - dev: true - /data-urls@2.0.0: - resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} - engines: {node: '>=10'} + data-urls@2.0.0: dependencies: abab: 2.0.6 whatwg-mimetype: 2.3.0 whatwg-url: 8.7.0 - dev: true - /data-urls@3.0.2: - resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} - engines: {node: '>=12'} + data-urls@3.0.2: dependencies: abab: 2.0.6 whatwg-mimetype: 3.0.0 whatwg-url: 11.0.0 - dev: true - /data-view-buffer@1.0.1: - resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} - engines: {node: '>= 0.4'} + data-view-buffer@1.0.1: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-data-view: 1.0.1 - /data-view-byte-length@1.0.1: - resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} - engines: {node: '>= 0.4'} + data-view-byte-length@1.0.1: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-data-view: 1.0.1 - /data-view-byte-offset@1.0.0: - resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} - engines: {node: '>= 0.4'} + data-view-byte-offset@1.0.0: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-data-view: 1.0.1 - /dataloader@1.4.0: - resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} - dev: true - - /date-format@2.1.0: - resolution: {integrity: sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==} - engines: {node: '>=4.0'} - deprecated: 2.x is no longer supported. Please upgrade to 4.x or higher. - dev: true + dataloader@1.4.0: {} - /date-now@0.1.4: - resolution: {integrity: sha512-AsElvov3LoNB7tf5k37H2jYSB+ZZPMT5sG2QjJCcdlV5chIv6htBUBUui2IKRjgtKAKtCBN7Zbwa+MtwLjSeNw==} - dev: false + date-format@2.1.0: {} - /dateformat@3.0.3: - resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} - dev: true + date-now@0.1.4: {} - /dayjs@1.11.11: - resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==} - dev: true + dateformat@3.0.3: {} - /debounce@1.2.1: - resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} + dayjs@1.11.11: {} - /debug@2.6.9(supports-color@6.1.0): - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.0.0 - supports-color: 6.1.0 + debounce@1.2.1: {} - /debug@3.1.0: - resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@2.6.9(supports-color@6.1.0): dependencies: ms: 2.0.0 + optionalDependencies: + supports-color: 6.1.0 - /debug@3.2.7(supports-color@6.1.0): - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@3.1.0: + dependencies: + ms: 2.0.0 + + debug@3.2.7(supports-color@6.1.0): dependencies: ms: 2.1.3 + optionalDependencies: supports-color: 6.1.0 - /debug@3.2.7(supports-color@8.1.1): - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@3.2.7(supports-color@8.1.1): dependencies: ms: 2.1.3 + optionalDependencies: supports-color: 8.1.1 - dev: true - /debug@4.3.5(supports-color@5.5.0): - resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@4.3.5(supports-color@5.5.0): dependencies: ms: 2.1.2 + optionalDependencies: supports-color: 5.5.0 - dev: false - /debug@4.3.5(supports-color@6.1.0): - resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@4.3.5(supports-color@6.1.0): dependencies: ms: 2.1.2 + optionalDependencies: supports-color: 6.1.0 - /debug@4.3.5(supports-color@8.1.1): - resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@4.3.5(supports-color@8.1.1): dependencies: ms: 2.1.2 + optionalDependencies: supports-color: 8.1.1 - dev: true - /debuglog@1.0.1: - resolution: {integrity: sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - dev: true + debuglog@1.0.1: {} - /decamelize-keys@1.1.1: - resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} - engines: {node: '>=0.10.0'} + decamelize-keys@1.1.1: dependencies: decamelize: 1.2.0 map-obj: 1.0.1 - dev: true - /decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} + decamelize@1.2.0: {} - /decimal.js-light@2.5.1: - resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==} - dev: false + decimal.js-light@2.5.1: {} - /decimal.js@10.4.3: - resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} - dev: true + decimal.js@10.4.3: {} - /decode-uri-component@0.2.2: - resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} - engines: {node: '>=0.10'} + decode-named-character-reference@1.0.2: + dependencies: + character-entities: 2.0.2 - /decompress-response@3.3.0: - resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} - engines: {node: '>=4'} + decode-uri-component@0.2.2: {} + + decompress-response@3.3.0: dependencies: mimic-response: 1.0.1 - dev: false - /decompress-response@6.0.0: - resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} - engines: {node: '>=10'} + decompress-response@6.0.0: dependencies: mimic-response: 3.1.0 - dev: true - /dedent@0.7.0: - resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} + dedent@0.7.0: {} - /dedent@1.5.3: - resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} - peerDependencies: - babel-plugin-macros: ^3.1.0 - peerDependenciesMeta: - babel-plugin-macros: - optional: true + dedent@1.5.3(babel-plugin-macros@3.1.0): + optionalDependencies: + babel-plugin-macros: 3.1.0 - /deep-diff@1.0.2: - resolution: {integrity: sha512-aWS3UIVH+NPGCD1kki+DCU9Dua032iSsO43LqQpcs4R3+dVv7tX0qBGjiVHJHjplsoUM2XRO/KB92glqc68awg==} - dev: false + deep-diff@1.0.2: {} - /deep-equal@1.1.2: - resolution: {integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==} - engines: {node: '>= 0.4'} + deep-equal@1.1.2: dependencies: is-arguments: 1.1.1 is-date-object: 1.0.5 @@ -33891,9 +43340,7 @@ packages: object-keys: 1.1.1 regexp.prototype.flags: 1.5.2 - /deep-equal@2.2.3: - resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} - engines: {node: '>= 0.4'} + deep-equal@2.2.3: dependencies: array-buffer-byte-length: 1.0.1 call-bind: 1.0.7 @@ -33914,112 +43361,70 @@ packages: which-collection: 1.0.2 which-typed-array: 1.1.15 - /deep-extend@0.6.0: - resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} - engines: {node: '>=4.0.0'} - dev: false + deep-extend@0.6.0: {} - /deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + deep-is@0.1.4: {} - /deep-object-diff@1.1.9: - resolution: {integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==} - dev: true + deep-object-diff@1.1.9: {} - /deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: '>=0.10.0'} + deepmerge@4.3.1: {} - /default-browser-id@1.0.4: - resolution: {integrity: sha512-qPy925qewwul9Hifs+3sx1ZYn14obHxpkX+mPD369w4Rzg+YkJBgi3SOvwUq81nWSjqGUegIgEPwD8u+HUnxlw==} - engines: {node: '>=0.10.0'} - hasBin: true - requiresBuild: true + default-browser-id@1.0.4: dependencies: bplist-parser: 0.1.1 meow: 3.7.0 untildify: 2.1.0 - dev: false optional: true - /default-gateway@4.2.0: - resolution: {integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==} - engines: {node: '>=6'} + default-gateway@4.2.0: dependencies: execa: 1.0.0 ip-regex: 2.1.0 - /default-gateway@6.0.3: - resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} - engines: {node: '>= 10'} + default-gateway@6.0.3: dependencies: execa: 5.1.1 - dev: true - /default-require-extensions@3.0.1: - resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==} - engines: {node: '>=8'} + default-require-extensions@3.0.1: dependencies: strip-bom: 4.0.0 - dev: true - /defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + defaults@1.0.4: dependencies: clone: 1.0.4 - dev: true - /defer-to-connect@1.1.3: - resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} - dev: false + defer-to-connect@1.1.3: {} - /defer-to-connect@2.0.1: - resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} - engines: {node: '>=10'} - dev: true + defer-to-connect@2.0.1: {} - /define-data-property@1.1.4: - resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} - engines: {node: '>= 0.4'} + define-data-property@1.1.4: dependencies: es-define-property: 1.0.0 es-errors: 1.3.0 gopd: 1.0.1 - /define-lazy-prop@2.0.0: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} - engines: {node: '>=8'} + define-lazy-prop@2.0.0: {} - /define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: '>= 0.4'} + define-properties@1.2.1: dependencies: define-data-property: 1.1.4 has-property-descriptors: 1.0.2 object-keys: 1.1.1 - /define-property@0.2.5: - resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} - engines: {node: '>=0.10.0'} + define-property@0.2.5: dependencies: is-descriptor: 0.1.7 - /define-property@1.0.0: - resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} - engines: {node: '>=0.10.0'} + define-property@1.0.0: dependencies: is-descriptor: 1.0.3 - /define-property@2.0.2: - resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} - engines: {node: '>=0.10.0'} + define-property@2.0.2: dependencies: is-descriptor: 1.0.3 isobject: 3.0.1 - /del@4.1.1: - resolution: {integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==} - engines: {node: '>=6'} + del@4.1.1: dependencies: '@types/glob': 7.2.0 globby: 6.1.0 @@ -34029,512 +43434,317 @@ packages: pify: 4.0.1 rimraf: 2.7.1 - /delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} + delayed-stream@1.0.0: {} - /delegates@1.0.0: - resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} + delegates@1.0.0: {} - /depd@1.1.2: - resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} - engines: {node: '>= 0.6'} + depd@1.1.2: {} - /depd@2.0.0: - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} - engines: {node: '>= 0.8'} + depd@2.0.0: {} - /deprecation@2.3.1: - resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} - dev: true + deprecation@2.3.1: {} - /dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} - dev: true + dequal@2.0.3: {} - /destroy@1.2.0: - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + destroy@1.2.0: {} - /detab@2.0.4: - resolution: {integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==} + detab@2.0.4: dependencies: repeat-string: 1.6.1 - /detect-indent@4.0.0: - resolution: {integrity: sha512-BDKtmHlOzwI7iRuEkhzsnPoi5ypEhWAJB5RvHWe1kMr06js3uK5B3734i3ui5Yd+wOJV1cpE4JnivPD283GU/A==} - engines: {node: '>=0.10.0'} - dependencies: - repeating: 2.0.1 - dev: true - - /detect-indent@5.0.0: - resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==} - engines: {node: '>=4'} - dev: true + detect-indent@5.0.0: {} - /detect-indent@6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: '>=8'} - dev: true + detect-indent@6.1.0: {} - /detect-newline@3.1.0: - resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} - engines: {node: '>=8'} + detect-newline@3.1.0: {} - /detect-node@2.1.0: - resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} + detect-node@2.1.0: {} - /detect-package-manager@2.0.1: - resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==} - engines: {node: '>=12'} + detect-package-manager@2.0.1: dependencies: execa: 5.1.1 - dev: false - /detect-port@1.6.1: - resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==} - engines: {node: '>= 4.0.0'} - hasBin: true + detect-port@1.6.1: dependencies: address: 1.2.2 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color - /dezalgo@1.0.4: - resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==} + devlop@1.1.0: + dependencies: + dequal: 2.0.3 + + dezalgo@1.0.4: dependencies: asap: 2.0.6 wrappy: 1.0.2 - dev: true - /diff-sequences@26.6.2: - resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==} - engines: {node: '>= 10.14.2'} - dev: true + diff-sequences@26.6.2: {} - /diff-sequences@28.1.1: - resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dev: true + diff-sequences@28.1.1: {} - /diff-sequences@29.6.3: - resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + diff-sequences@29.6.3: {} - /diff@4.0.2: - resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} - engines: {node: '>=0.3.1'} + diff@4.0.2: {} - /dir-glob@2.2.2: - resolution: {integrity: sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==} - engines: {node: '>=4'} + dir-glob@2.2.2: dependencies: path-type: 3.0.0 - /dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} + dir-glob@3.0.1: dependencies: path-type: 4.0.0 - /dns-equal@1.0.0: - resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} + dns-equal@1.0.0: {} - /dns-packet@1.3.4: - resolution: {integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==} + dns-packet@1.3.4: dependencies: ip: 1.1.9 safe-buffer: 5.2.1 - /dns-packet@5.6.1: - resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} - engines: {node: '>=6'} + dns-packet@5.6.1: dependencies: '@leichtgewicht/ip-codec': 2.0.5 - dev: true - /dns-txt@2.0.2: - resolution: {integrity: sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==} + dns-txt@2.0.2: dependencies: buffer-indexof: 1.1.1 - /doctrine@2.1.0: - resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} - engines: {node: '>=0.10.0'} + doctrine@2.1.0: dependencies: esutils: 2.0.3 - dev: true - /doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} + doctrine@3.0.0: dependencies: esutils: 2.0.3 - /dom-accessibility-api@0.5.16: - resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} - dev: true + dom-accessibility-api@0.5.16: {} - /dom-accessibility-api@0.6.3: - resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} - dev: true + dom-accessibility-api@0.6.3: {} - /dom-converter@0.2.0: - resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} + dom-converter@0.2.0: dependencies: utila: 0.4.0 - /dom-helpers@5.2.1: - resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} + dom-helpers@5.2.1: dependencies: '@babel/runtime': 7.24.7 csstype: 3.1.3 - dev: false - /dom-serializer@0.2.2: - resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} + dom-serializer@0.2.2: dependencies: domelementtype: 2.3.0 entities: 2.2.0 - /dom-serializer@1.4.1: - resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + dom-serializer@1.4.1: dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 entities: 2.2.0 - /dom-serializer@2.0.0: - resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + dom-serializer@2.0.0: dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 entities: 4.5.0 - dev: false - /dom-walk@0.1.2: - resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==} + dom-walk@0.1.2: {} - /domelementtype@1.3.1: - resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} + domelementtype@1.3.1: {} - /domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + domelementtype@2.3.0: {} - /domexception@2.0.1: - resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} - engines: {node: '>=8'} - deprecated: Use your platform's native DOMException instead + domexception@2.0.1: dependencies: webidl-conversions: 5.0.0 - dev: true - /domexception@4.0.0: - resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} - engines: {node: '>=12'} - deprecated: Use your platform's native DOMException instead + domexception@4.0.0: dependencies: webidl-conversions: 7.0.0 - dev: true - /domhandler@2.3.0: - resolution: {integrity: sha512-q9bUwjfp7Eif8jWxxxPSykdRZAb6GkguBGSgvvCrhI9wB71W2K/Kvv4E61CF/mcCfnVJDeDWx/Vb/uAqbDj6UQ==} + domhandler@2.3.0: dependencies: domelementtype: 1.3.1 - dev: false - /domhandler@4.3.1: - resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} - engines: {node: '>= 4'} + domhandler@4.3.1: dependencies: domelementtype: 2.3.0 - /domhandler@5.0.3: - resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} - engines: {node: '>= 4'} + domhandler@5.0.3: dependencies: domelementtype: 2.3.0 - dev: false - /dompurify@3.1.5: - resolution: {integrity: sha512-lwG+n5h8QNpxtyrJW/gJWckL+1/DQiYMX8f7t8Z2AZTPw1esVrqjI63i7Zc2Gz0aKzLVMYC1V1PL/ky+aY/NgA==} - dev: false + dompurify@3.1.5: {} - /domutils@1.5.1: - resolution: {integrity: sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==} + domutils@1.5.1: dependencies: dom-serializer: 0.2.2 domelementtype: 1.3.1 - dev: false - /domutils@1.7.0: - resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} + domutils@1.7.0: dependencies: dom-serializer: 0.2.2 domelementtype: 1.3.1 - /domutils@2.8.0: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + domutils@2.8.0: dependencies: dom-serializer: 1.4.1 domelementtype: 2.3.0 domhandler: 4.3.1 - /domutils@3.1.0: - resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} + domutils@3.1.0: dependencies: dom-serializer: 2.0.0 domelementtype: 2.3.0 domhandler: 5.0.3 - dev: false - /dot-case@3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + dot-case@3.0.4: dependencies: no-case: 3.0.4 tslib: 2.6.3 - /dot-prop@5.3.0: - resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} - engines: {node: '>=8'} + dot-prop@5.3.0: dependencies: is-obj: 2.0.0 - /dot-prop@6.0.1: - resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} - engines: {node: '>=10'} + dot-prop@6.0.1: dependencies: is-obj: 2.0.0 - dev: true - /dotenv-expand@5.1.0: - resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} + dotenv-expand@5.1.0: {} - /dotenv@10.0.0: - resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} - engines: {node: '>=10'} - dev: true + dotenv@10.0.0: {} - /dotenv@16.4.5: - resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} - engines: {node: '>=12'} - dev: true + dotenv@16.4.5: {} - /dotenv@8.6.0: - resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} - engines: {node: '>=10'} + dotenv@8.6.0: {} - /downshift@6.1.12: - resolution: {integrity: sha512-7XB/iaSJVS4T8wGFT3WRXmSF1UlBHAA40DshZtkrIscIN+VC+Lh363skLxFTvJwtNgHxAMDGEHT4xsyQFWL+UA==} - peerDependencies: - react: '>=16.12.0' + downshift@6.1.12: dependencies: '@babel/runtime': 7.24.7 compute-scroll-into-view: 1.0.20 prop-types: 15.8.1 react-is: 17.0.2 tslib: 2.6.3 - dev: true - /duplexer3@0.1.5: - resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} - dev: false + duplexer3@0.1.5: {} - /duplexer@0.1.2: - resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + duplexer@0.1.2: {} - /eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - dev: false + eastasianwidth@0.2.0: {} - /ecc-jsbn@0.1.2: - resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} + ecc-jsbn@0.1.2: dependencies: jsbn: 0.1.1 safer-buffer: 2.1.2 - dev: true - /editorconfig@1.0.4: - resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==} - engines: {node: '>=14'} - hasBin: true + editorconfig@1.0.4: dependencies: '@one-ini/wasm': 0.1.1 commander: 10.0.1 minimatch: 9.0.1 semver: 7.6.2 - dev: false - /ee-first@1.1.1: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + ee-first@1.1.1: {} - /ejs@3.1.10: - resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} - engines: {node: '>=0.10.0'} - hasBin: true + ejs@3.1.10: dependencies: jake: 10.9.1 - dev: true - /electron-to-chromium@1.4.810: - resolution: {integrity: sha512-Kaxhu4T7SJGpRQx99tq216gCq2nMxJo+uuT6uzz9l8TVN2stL7M06MIIXAtr9jsrLs2Glflgf2vMQRepxawOdQ==} + electron-to-chromium@1.4.810: {} - /element-resize-detector@1.2.4: - resolution: {integrity: sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==} + element-resize-detector@1.2.4: dependencies: batch-processor: 1.0.0 - dev: true - /emittery@0.10.2: - resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} - engines: {node: '>=12'} - dev: true + emittery@0.10.2: {} - /emittery@0.13.1: - resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} - engines: {node: '>=12'} + emittery@0.13.1: {} - /emittery@0.7.2: - resolution: {integrity: sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==} - engines: {node: '>=10'} - dev: true + emittery@0.7.2: {} - /emoji-regex@7.0.3: - resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==} + emoji-regex@7.0.3: {} - /emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + emoji-regex@8.0.0: {} - /emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + emoji-regex@9.2.2: {} - /emojis-list@2.1.0: - resolution: {integrity: sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng==} - engines: {node: '>= 0.10'} - dev: true + emojis-list@2.1.0: {} - /emojis-list@3.0.0: - resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} - engines: {node: '>= 4'} + emojis-list@3.0.0: {} - /emotion-theming@10.3.0(@emotion/core@10.3.1): - resolution: {integrity: sha512-mXiD2Oj7N9b6+h/dC6oLf9hwxbtKHQjoIqtodEyL8CpkN4F3V4IK/BT4D0C7zSs4BBFOu4UlPJbvvBLa88SGEA==} - peerDependencies: - '@emotion/core': ^10.0.27 - react: '>=16.3.0' + emotion-theming@10.3.0(@emotion/core@10.3.1): dependencies: '@babel/runtime': 7.24.7 '@emotion/core': 10.3.1 '@emotion/weak-memoize': 0.2.5 hoist-non-react-statics: 3.3.2 - dev: true - /encodeurl@1.0.2: - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} - engines: {node: '>= 0.8'} + encodeurl@1.0.2: {} - /encoding@0.1.13: - resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} - requiresBuild: true + encoding@0.1.13: dependencies: iconv-lite: 0.6.3 - dev: true optional: true - /end-of-stream@1.4.4: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + end-of-stream@1.4.4: dependencies: once: 1.4.0 - /endent@2.1.0: - resolution: {integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==} + endent@2.1.0: dependencies: dedent: 0.7.0 fast-json-parse: 1.0.3 objectorarray: 1.0.5 - /enhanced-resolve@4.5.0: - resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==} - engines: {node: '>=6.9.0'} + enhanced-resolve@4.5.0: dependencies: graceful-fs: 4.2.11 memory-fs: 0.5.0 tapable: 1.1.3 - dev: true - /enhanced-resolve@5.17.0: - resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==} - engines: {node: '>=10.13.0'} + enhanced-resolve@5.17.0: dependencies: graceful-fs: 4.2.11 tapable: 2.2.1 - /enquirer@2.3.6: - resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} - engines: {node: '>=8.6'} + enquirer@2.3.6: dependencies: ansi-colors: 4.1.3 - dev: true - /enquirer@2.4.1: - resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} - engines: {node: '>=8.6'} + enquirer@2.4.1: dependencies: ansi-colors: 4.1.3 strip-ansi: 6.0.1 - /entities@1.0.0: - resolution: {integrity: sha512-LbLqfXgJMmy81t+7c14mnulFHJ170cM6E+0vMXR9k/ZiZwgX8i5pNgjTCX3SO4VeUsFLV+8InixoretwU+MjBQ==} - dev: false + entities@1.0.0: {} - /entities@2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + entities@2.2.0: {} - /entities@3.0.1: - resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} - engines: {node: '>=0.12'} - dev: false + entities@3.0.1: {} - /entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} + entities@4.5.0: {} - /env-paths@2.2.1: - resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} - engines: {node: '>=6'} - dev: true + env-paths@2.2.1: {} - /envinfo@7.13.0: - resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==} - engines: {node: '>=4'} - hasBin: true + envinfo@7.13.0: {} - /err-code@2.0.3: - resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} - dev: true + err-code@2.0.3: {} - /errno@0.1.8: - resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} - hasBin: true + errno@0.1.8: dependencies: prr: 1.0.1 - /error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + error-ex@1.3.2: dependencies: is-arrayish: 0.2.1 - /error-stack-parser@2.1.4: - resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} + error-stack-parser@2.1.4: dependencies: stackframe: 1.3.4 - /es-abstract@1.23.3: - resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} - engines: {node: '>= 0.4'} + es-abstract@1.23.3: dependencies: array-buffer-byte-length: 1.0.1 arraybuffer.prototype.slice: 1.0.3 @@ -34583,21 +43793,15 @@ packages: unbox-primitive: 1.0.2 which-typed-array: 1.1.15 - /es-array-method-boxes-properly@1.0.0: - resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} + es-array-method-boxes-properly@1.0.0: {} - /es-define-property@1.0.0: - resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} - engines: {node: '>= 0.4'} + es-define-property@1.0.0: dependencies: get-intrinsic: 1.2.4 - /es-errors@1.3.0: - resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} - engines: {node: '>= 0.4'} + es-errors@1.3.0: {} - /es-get-iterator@1.1.3: - resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} + es-get-iterator@1.1.3: dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 @@ -34609,9 +43813,7 @@ packages: isarray: 2.0.5 stop-iteration-iterator: 1.0.0 - /es-iterator-helpers@1.0.19: - resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==} - engines: {node: '>= 0.4'} + es-iterator-helpers@1.0.19: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -34627,108 +43829,68 @@ packages: internal-slot: 1.0.7 iterator.prototype: 1.1.2 safe-array-concat: 1.1.2 - dev: true - /es-module-lexer@1.5.4: - resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} + es-module-lexer@1.5.4: {} - /es-object-atoms@1.0.0: - resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} - engines: {node: '>= 0.4'} + es-object-atoms@1.0.0: dependencies: es-errors: 1.3.0 - /es-set-tostringtag@2.0.3: - resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} - engines: {node: '>= 0.4'} + es-set-tostringtag@2.0.3: dependencies: get-intrinsic: 1.2.4 has-tostringtag: 1.0.2 hasown: 2.0.2 - /es-shim-unscopables@1.0.2: - resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} + es-shim-unscopables@1.0.2: dependencies: hasown: 2.0.2 - /es-to-primitive@1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} + es-to-primitive@1.2.1: dependencies: is-callable: 1.2.7 is-date-object: 1.0.5 is-symbol: 1.0.4 - /es5-ext@0.10.64: - resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==} - engines: {node: '>=0.10'} - requiresBuild: true + es5-ext@0.10.64: dependencies: es6-iterator: 2.0.3 es6-symbol: 3.1.4 esniff: 2.0.1 next-tick: 1.1.0 - dev: true - /es5-shim@4.6.7: - resolution: {integrity: sha512-jg21/dmlrNQI7JyyA2w7n+yifSxBng0ZralnSfVZjoCawgNTCnS+yBCyVM9DL5itm7SUnDGgv7hcq2XCZX4iRQ==} - engines: {node: '>=0.4.0'} + es5-shim@4.6.7: {} - /es6-error@4.1.1: - resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} + es6-error@4.1.1: {} - /es6-iterator@2.0.3: - resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} + es6-iterator@2.0.3: dependencies: d: 1.0.2 es5-ext: 0.10.64 es6-symbol: 3.1.4 - dev: true - /es6-shim@0.35.8: - resolution: {integrity: sha512-Twf7I2v4/1tLoIXMT8HlqaBSS5H2wQTs2wx3MNYCI8K1R1/clXyCazrcVCPm/FuO9cyV8+leEaZOWD5C253NDg==} + es6-shim@0.35.8: {} - /es6-symbol@3.1.4: - resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==} - engines: {node: '>=0.12'} + es6-symbol@3.1.4: dependencies: d: 1.0.2 ext: 1.7.0 - dev: true - /escalade@3.1.2: - resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} - engines: {node: '>=6'} + escalade@3.1.2: {} - /escape-goat@2.1.1: - resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==} - engines: {node: '>=8'} - dev: false + escape-goat@2.1.1: {} - /escape-html@1.0.3: - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + escape-html@1.0.3: {} - /escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} + escape-string-regexp@1.0.5: {} - /escape-string-regexp@2.0.0: - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} - engines: {node: '>=8'} + escape-string-regexp@2.0.0: {} - /escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} + escape-string-regexp@4.0.0: {} - /escape-string-regexp@5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} - engines: {node: '>=12'} - dev: true + escape-string-regexp@5.0.0: {} - /escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: '>=6.0'} - hasBin: true + escodegen@2.1.0: dependencies: esprima: 4.0.1 estraverse: 5.3.0 @@ -34736,93 +43898,53 @@ packages: optionalDependencies: source-map: 0.6.1 - /eslint-compat-utils@0.5.1(eslint@7.32.0): - resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} - engines: {node: '>=12'} - peerDependencies: - eslint: '>=6.0.0' + eslint-compat-utils@0.5.1(eslint@7.32.0): dependencies: eslint: 7.32.0 semver: 7.6.2 - dev: true - /eslint-config-prettier@8.1.0(eslint@7.32.0): - resolution: {integrity: sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==} - hasBin: true - peerDependencies: - eslint: '>=7.0.0' + eslint-config-prettier@8.1.0(eslint@7.32.0): dependencies: eslint: 7.32.0 - dev: true - /eslint-import-resolver-node@0.3.9: - resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + eslint-import-resolver-node@0.3.9: dependencies: - debug: 3.2.7(supports-color@6.1.0) + debug: 3.2.7(supports-color@8.1.1) is-core-module: 2.14.0 resolve: 1.22.8 transitivePeerDependencies: - supports-color - dev: true - /eslint-module-utils@2.8.1(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0): - resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} - 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 + eslint-module-utils@2.8.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0): dependencies: + debug: 3.2.7(supports-color@8.1.1) + optionalDependencies: '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) - debug: 3.2.7(supports-color@6.1.0) eslint: 7.32.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color - dev: true - /eslint-plugin-cypress@2.15.2(eslint@7.32.0): - resolution: {integrity: sha512-CtcFEQTDKyftpI22FVGpx8bkpKyYXBlNge6zSo0pl5/qJvBAnzaD76Vu2AsP16d6mTj478Ldn2mhgrWV+Xr0vQ==} - peerDependencies: - eslint: '>= 3.2.1' + eslint-plugin-cypress@2.15.2(eslint@7.32.0): dependencies: eslint: 7.32.0 globals: 13.24.0 - dev: true - /eslint-plugin-import@2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0): - resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true + eslint-plugin-header@https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3(eslint@7.32.0): + dependencies: + eslint: 7.32.0 + + eslint-plugin-import@2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0): dependencies: - '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 array.prototype.flat: 1.3.2 array.prototype.flatmap: 1.3.2 - debug: 3.2.7(supports-color@6.1.0) + debug: 3.2.7(supports-color@8.1.1) doctrine: 2.1.0 eslint: 7.32.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0) hasown: 2.0.2 is-core-module: 2.14.0 is-glob: 4.0.3 @@ -34832,29 +43954,21 @@ packages: object.values: 1.2.0 semver: 6.3.1 tsconfig-paths: 3.15.0 + optionalDependencies: + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - dev: true - /eslint-plugin-jest-dom@4.0.3(eslint@7.32.0): - resolution: {integrity: sha512-9j+n8uj0+V0tmsoS7bYC7fLhQmIvjRqRYEcbDSi+TKPsTThLLXCyj5swMSSf/hTleeMktACnn+HFqXBr5gbcbA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6', yarn: '>=1'} - peerDependencies: - eslint: ^6.8.0 || ^7.0.0 || ^8.0.0 + eslint-plugin-jest-dom@4.0.3(eslint@7.32.0): dependencies: '@babel/runtime': 7.24.7 '@testing-library/dom': 8.20.1 eslint: 7.32.0 requireindex: 1.2.0 - dev: true - /eslint-plugin-jsonc@2.16.0(eslint@7.32.0): - resolution: {integrity: sha512-Af/ZL5mgfb8FFNleH6KlO4/VdmDuTqmM+SPnWcdoWywTetv7kq+vQe99UyQb9XO3b0OWLVuTH7H0d/PXYCMdSg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '>=6.0.0' + eslint-plugin-jsonc@2.16.0(eslint@7.32.0): dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0) eslint: 7.32.0 @@ -34864,13 +43978,8 @@ packages: jsonc-eslint-parser: 2.4.0 natural-compare: 1.4.0 synckit: 0.6.2 - dev: true - /eslint-plugin-jsx-a11y@6.5.1(eslint@7.32.0): - resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==} - engines: {node: '>=4.0'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + eslint-plugin-jsx-a11y@6.5.1(eslint@7.32.0): dependencies: '@babel/runtime': 7.24.7 aria-query: 4.2.2 @@ -34885,22 +43994,12 @@ packages: jsx-ast-utils: 3.3.5 language-tags: 1.0.9 minimatch: 3.1.2 - dev: true - /eslint-plugin-react-hooks@4.6.2(eslint@7.32.0): - resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} - engines: {node: '>=10'} - peerDependencies: - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + eslint-plugin-react-hooks@4.6.2(eslint@7.32.0): dependencies: eslint: 7.32.0 - dev: true - /eslint-plugin-react@7.34.3(eslint@7.32.0): - resolution: {integrity: sha512-aoW4MV891jkUulwDApQbPYTVZmeuSyFrudpbTAQuj5Fv8VL+o6df2xIGpw8B0hPjAaih1/Fb0om9grCdyFYemA==} - engines: {node: '>=4'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + eslint-plugin-react@7.34.3(eslint@7.32.0): dependencies: array-includes: 3.1.8 array.prototype.findlast: 1.2.5 @@ -34921,70 +44020,41 @@ packages: resolve: 2.0.0-next.5 semver: 6.3.1 string.prototype.matchall: 4.0.11 - dev: true - /eslint-plugin-testing-library@5.11.1(eslint@7.32.0)(typescript@4.9.5): - resolution: {integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} - peerDependencies: - eslint: ^7.5.0 || ^8.0.0 + eslint-plugin-testing-library@5.11.1(eslint@7.32.0)(typescript@4.9.5): dependencies: '@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@4.9.5) eslint: 7.32.0 transitivePeerDependencies: - supports-color - typescript - dev: true - /eslint-plugin-tsdoc@0.2.17: - resolution: {integrity: sha512-xRmVi7Zx44lOBuYqG8vzTXuL6IdGOeF9nHX17bjJ8+VE6fsxpdGem0/SBTmAwgYMKYB1WBkqRJVQ+n8GK041pA==} + eslint-plugin-tsdoc@0.2.17: dependencies: '@microsoft/tsdoc': 0.14.2 '@microsoft/tsdoc-config': 0.16.2 - dev: true - /eslint-scope@5.1.1: - resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} - engines: {node: '>=8.0.0'} + eslint-scope@5.1.1: dependencies: esrecurse: 4.3.0 estraverse: 4.3.0 - /eslint-utils@2.1.0: - resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} - engines: {node: '>=6'} + eslint-utils@2.1.0: dependencies: eslint-visitor-keys: 1.3.0 - /eslint-utils@3.0.0(eslint@7.32.0): - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: '>=5' + eslint-utils@3.0.0(eslint@7.32.0): dependencies: eslint: 7.32.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'} + eslint-visitor-keys@1.3.0: {} - /eslint-visitor-keys@2.1.0: - resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} - engines: {node: '>=10'} + eslint-visitor-keys@2.1.0: {} - /eslint-visitor-keys@3.4.3: - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true + eslint-visitor-keys@3.4.3: {} - /eslint-webpack-plugin@2.7.0(eslint@7.32.0)(webpack@5.84.1): - resolution: {integrity: sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - webpack: 5.84.1 + eslint-webpack-plugin@2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@types/eslint': 7.29.0 arrify: 2.0.1 @@ -34993,15 +44063,9 @@ packages: micromatch: 4.0.7 normalize-path: 3.0.0 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /eslint-webpack-plugin@3.2.0(eslint@7.32.0)(webpack@5.84.1): - resolution: {integrity: sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==} - engines: {node: '>= 12.13.0'} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - webpack: 5.84.1 + eslint-webpack-plugin@3.2.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@types/eslint': 8.56.10 eslint: 7.32.0 @@ -35009,13 +44073,9 @@ packages: micromatch: 4.0.7 normalize-path: 3.0.0 schema-utils: 4.2.0 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /eslint@7.32.0: - resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} - engines: {node: ^10.12.0 || >=12.0.0} - hasBin: true + eslint@7.32.0: dependencies: '@babel/code-frame': 7.12.11 '@eslint/eslintrc': 0.4.3 @@ -35023,7 +44083,7 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) doctrine: 3.0.0 enquirer: 2.4.1 escape-string-regexp: 4.0.0 @@ -35060,61 +44120,40 @@ packages: transitivePeerDependencies: - supports-color - /esniff@2.0.1: - resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==} - engines: {node: '>=0.10'} + esniff@2.0.1: dependencies: d: 1.0.2 es5-ext: 0.10.64 event-emitter: 0.3.5 type: 2.7.3 - dev: true - /espree@7.3.1: - resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} - engines: {node: ^10.12.0 || >=12.0.0} + espree@7.3.1: dependencies: acorn: 7.4.1 acorn-jsx: 5.3.2(acorn@7.4.1) eslint-visitor-keys: 1.3.0 - /espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + espree@9.6.1: dependencies: acorn: 8.12.0 acorn-jsx: 5.3.2(acorn@8.12.0) eslint-visitor-keys: 3.4.3 - dev: true - /esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} - hasBin: true + esprima@4.0.1: {} - /esquery@1.5.0: - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} - engines: {node: '>=0.10'} + esquery@1.5.0: dependencies: estraverse: 5.3.0 - /esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} + esrecurse@4.3.0: dependencies: estraverse: 5.3.0 - /estraverse@4.3.0: - resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} - engines: {node: '>=4.0'} + estraverse@4.3.0: {} - /estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} + estraverse@5.3.0: {} - /estree-to-babel@3.2.1: - resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} - engines: {node: '>=8.3.0'} + estree-to-babel@3.2.1: dependencies: '@babel/traverse': 7.24.7 '@babel/types': 7.24.7 @@ -35122,64 +44161,40 @@ packages: transitivePeerDependencies: - supports-color - /estree-walker@0.2.1: - resolution: {integrity: sha512-6/I1dwNKk0N9iGOU3ydzAAurz4NPo/ttxZNCqgIVbWFvWyzWBSNonRrJ5CpjDuyBfmM7ENN7WCzUi9aT/UPXXQ==} - dev: true + estree-util-is-identifier-name@3.0.0: {} - /estree-walker@0.6.1: - resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} - dev: true + estree-walker@0.2.1: {} - /estree-walker@1.0.1: - resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} - dev: true + estree-walker@0.6.1: {} - /estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} - dev: true + estree-walker@1.0.1: {} - /esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} + estree-walker@2.0.2: {} - /etag@1.8.1: - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} - engines: {node: '>= 0.6'} + esutils@2.0.3: {} - /event-emitter@0.3.5: - resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} + etag@1.8.1: {} + + event-emitter@0.3.5: dependencies: d: 1.0.2 es5-ext: 0.10.64 - dev: true - /eventemitter2@6.4.9: - resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==} - dev: true + eventemitter2@6.4.9: {} - /eventemitter3@4.0.7: - resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + eventemitter3@4.0.7: {} - /events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: '>=0.8.x'} + events@3.3.0: {} - /eventsource@2.0.2: - resolution: {integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==} - engines: {node: '>=12.0.0'} + eventsource@2.0.2: {} - /exec-sh@0.2.2: - resolution: {integrity: sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==} + exec-sh@0.2.2: dependencies: merge: 1.2.1 - dev: true - /exec-sh@0.3.6: - resolution: {integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==} + exec-sh@0.3.6: {} - /execa@0.7.0: - resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==} - engines: {node: '>=4'} + execa@0.7.0: dependencies: cross-spawn: 5.1.0 get-stream: 3.0.0 @@ -35188,11 +44203,8 @@ packages: p-finally: 1.0.0 signal-exit: 3.0.7 strip-eof: 1.0.0 - dev: true - /execa@1.0.0: - resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} - engines: {node: '>=6'} + execa@1.0.0: dependencies: cross-spawn: 6.0.5 get-stream: 4.1.0 @@ -35202,9 +44214,7 @@ packages: signal-exit: 3.0.7 strip-eof: 1.0.0 - /execa@4.1.0: - resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} - engines: {node: '>=10'} + execa@4.1.0: dependencies: cross-spawn: 7.0.3 get-stream: 5.2.0 @@ -35215,11 +44225,8 @@ packages: onetime: 5.1.2 signal-exit: 3.0.7 strip-final-newline: 2.0.0 - dev: true - /execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} + execa@5.1.1: dependencies: cross-spawn: 7.0.3 get-stream: 6.0.1 @@ -35231,24 +44238,15 @@ packages: signal-exit: 3.0.7 strip-final-newline: 2.0.0 - /executable@4.1.1: - resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==} - engines: {node: '>=4'} + executable@4.1.1: dependencies: pify: 2.3.0 - dev: true - /exenv@1.2.2: - resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==} - dev: false + exenv@1.2.2: {} - /exit@0.1.2: - resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} - engines: {node: '>= 0.8.0'} + exit@0.1.2: {} - /expand-brackets@2.1.4(supports-color@6.1.0): - resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} - engines: {node: '>=0.10.0'} + expand-brackets@2.1.4(supports-color@6.1.0): dependencies: debug: 2.6.9(supports-color@6.1.0) define-property: 0.2.5 @@ -35260,9 +44258,7 @@ packages: transitivePeerDependencies: - supports-color - /expect@26.6.2: - resolution: {integrity: sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==} - engines: {node: '>= 10.14.2'} + expect@26.6.2: dependencies: '@jest/types': 26.6.2 ansi-styles: 4.3.0 @@ -35270,22 +44266,16 @@ packages: jest-matcher-utils: 26.6.2 jest-message-util: 26.6.2 jest-regex-util: 26.0.0 - dev: true - /expect@28.1.3: - resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + expect@28.1.3: dependencies: '@jest/expect-utils': 28.1.3 jest-get-type: 28.0.2 jest-matcher-utils: 28.1.3 jest-message-util: 28.1.3 jest-util: 28.1.3 - dev: true - /expect@29.7.0: - resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + expect@29.7.0: dependencies: '@jest/expect-utils': 29.7.0 jest-get-type: 29.6.3 @@ -35293,13 +44283,9 @@ packages: jest-message-util: 29.7.0 jest-util: 29.7.0 - /exponential-backoff@3.1.1: - resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} - dev: true + exponential-backoff@3.1.1: {} - /express@4.19.2(supports-color@6.1.0): - resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==} - engines: {node: '>= 0.10.0'} + express@4.19.2(supports-color@6.1.0): dependencies: accepts: 1.3.8 array-flatten: 1.1.1 @@ -35335,59 +44321,39 @@ packages: transitivePeerDependencies: - supports-color - /ext-list@2.2.2: - resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} - engines: {node: '>=0.10.0'} + ext-list@2.2.2: dependencies: mime-db: 1.52.0 - dev: true - /ext-name@5.0.0: - resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==} - engines: {node: '>=4'} + ext-name@5.0.0: dependencies: ext-list: 2.2.2 sort-keys-length: 1.0.1 - dev: true - /ext@1.7.0: - resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} + ext@1.7.0: dependencies: type: 2.7.3 - dev: true - /extend-shallow@2.0.1: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} - engines: {node: '>=0.10.0'} + extend-shallow@2.0.1: dependencies: is-extendable: 0.1.1 - /extend-shallow@3.0.2: - resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} - engines: {node: '>=0.10.0'} + extend-shallow@3.0.2: dependencies: assign-symbols: 1.0.0 is-extendable: 1.0.1 - /extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + extend@3.0.2: {} - /extendable-error@0.1.7: - resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} - dev: true + extendable-error@0.1.7: {} - /external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} + external-editor@3.1.0: dependencies: chardet: 0.7.0 iconv-lite: 0.4.24 tmp: 0.0.33 - dev: true - /extglob@2.0.4(supports-color@6.1.0): - resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} - engines: {node: '>=0.10.0'} + extglob@2.0.4(supports-color@6.1.0): dependencies: array-unique: 0.3.2 define-property: 1.0.0 @@ -35400,22 +44366,15 @@ packages: transitivePeerDependencies: - supports-color - /extract-text-webpack-plugin@4.0.0-beta.0(webpack@5.84.1): - resolution: {integrity: sha512-Hypkn9jUTnFr0DpekNam53X47tXn3ucY08BQumv7kdGgeVUBLq3DJHJTi6HNxv4jl9W+Skxjz9+RnK0sJyqqjA==} - engines: {node: '>= 6.9.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 + extract-text-webpack-plugin@4.0.0-beta.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: async: 2.6.4 loader-utils: 1.4.2 schema-utils: 0.4.7 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) webpack-sources: 1.4.3 - dev: true - /extract-zip@1.7.0: - resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==} - hasBin: true + extract-zip@1.7.0: dependencies: concat-stream: 1.6.2 debug: 2.6.9(supports-color@6.1.0) @@ -35423,12 +44382,8 @@ packages: yauzl: 2.10.0 transitivePeerDependencies: - supports-color - dev: false - /extract-zip@2.0.1(supports-color@8.1.1): - resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} - engines: {node: '>= 10.17.0'} - hasBin: true + extract-zip@2.0.1(supports-color@8.1.1): dependencies: debug: 4.3.5(supports-color@8.1.1) get-stream: 5.2.0 @@ -35437,24 +44392,14 @@ packages: '@types/yauzl': 2.10.3 transitivePeerDependencies: - supports-color - dev: true - /extsprintf@1.3.0: - resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} - engines: {'0': node >=0.6.0} - dev: true + extsprintf@1.3.0: {} - /fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + fast-deep-equal@3.1.3: {} - /fast-equals@5.0.1: - resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==} - engines: {node: '>=6.0.0'} - dev: false + fast-equals@5.0.1: {} - /fast-glob@2.2.7: - resolution: {integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==} - engines: {node: '>=4.0.0'} + fast-glob@2.2.7: dependencies: '@mrmlnc/readdir-enhanced': 2.2.1 '@nodelib/fs.stat': 1.1.3 @@ -35465,20 +44410,15 @@ packages: transitivePeerDependencies: - supports-color - /fast-glob@3.2.7: - resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} - engines: {node: '>=8'} + fast-glob@3.2.7: 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.7 - dev: true - /fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} - engines: {node: '>=8.6.0'} + fast-glob@3.3.2: dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 @@ -35486,186 +44426,116 @@ packages: merge2: 1.4.1 micromatch: 4.0.7 - /fast-json-parse@1.0.3: - resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==} + fast-json-parse@1.0.3: {} - /fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + fast-json-stable-stringify@2.1.0: {} - /fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + fast-levenshtein@2.0.6: {} - /fast-sha256@1.3.0: - resolution: {integrity: sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==} - dev: false + fast-sha256@1.3.0: {} - /fast-sort@3.4.0: - resolution: {integrity: sha512-c/cMBGA5mH3OYjaXedtLIM3hQjv+KuZuiD2QEH5GofNOZeQVDIYIN7Okc2AW1KPhk44g5PTZnXp8t2lOMl8qhQ==} - dev: true + fast-sort@3.4.0: {} - /fast-xml-parser@3.21.1: - resolution: {integrity: sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==} - hasBin: true + fast-xml-parser@3.21.1: dependencies: strnum: 1.0.5 - dev: true - /fastest-levenshtein@1.0.16: - resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} - engines: {node: '>= 4.9.1'} + fastest-levenshtein@1.0.16: {} - /fastestsmallesttextencoderdecoder@1.0.22: - resolution: {integrity: sha512-Pb8d48e+oIuY4MaM64Cd7OW1gt4nxCHs7/ddPPZ/Ic3sg8yVGM7O9wDvZ7us6ScaUupzM+pfBolwtYhN1IxBIw==} - dev: false + fastestsmallesttextencoderdecoder@1.0.22: {} - /fastparse@1.1.2: - resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==} - dev: true + fastparse@1.1.2: {} - /fastq@1.17.1: - resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + fastq@1.17.1: dependencies: reusify: 1.0.4 - /fault@1.0.4: - resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==} + fault@1.0.4: dependencies: format: 0.2.2 - dev: true - /faye-websocket@0.11.4: - resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} - engines: {node: '>=0.8.0'} + faye-websocket@0.11.4: dependencies: websocket-driver: 0.7.4 - /fb-watchman@2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + fb-watchman@2.0.2: dependencies: bser: 2.1.1 - /fd-slicer@1.1.0: - resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + fd-slicer@1.1.0: dependencies: pend: 1.2.0 - /fetch-retry@5.0.6: - resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==} - dev: false + fetch-retry@5.0.6: {} - /figures@3.2.0: - resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} - engines: {node: '>=8'} + figures@3.2.0: dependencies: escape-string-regexp: 1.0.5 - dev: true - /file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} + file-entry-cache@6.0.1: dependencies: flat-cache: 3.2.0 - /file-loader@2.0.0(webpack@5.84.1): - resolution: {integrity: sha512-YCsBfd1ZGCyonOKLxPiKPdu+8ld9HAaMEvJewzz+b2eTF7uL5Zm/HdBF6FjCrpCMRq25Mi0U1gl4pwn2TlH7hQ==} - engines: {node: '>= 6.9.0 < 7.0.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 + file-loader@2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: loader-utils: 1.4.2 schema-utils: 1.0.0 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /file-loader@6.2.0(webpack@5.84.1): - resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 + file-loader@6.2.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /file-saver@2.0.5: - resolution: {integrity: sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==} - dev: false + file-saver@2.0.5: {} - /file-system-cache@1.1.0: - resolution: {integrity: sha512-IzF5MBq+5CR0jXx5RxPe4BICl/oEhBSXKaL9fLhAXrIfIUS77Hr4vzrYyqYMHN6uTt+BOqi3fDCTjjEBCjERKw==} + file-system-cache@1.1.0: dependencies: fs-extra: 10.1.0 ramda: 0.28.0 - /file-type@17.1.6: - resolution: {integrity: sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + file-type@17.1.6: dependencies: readable-web-to-node-stream: 3.0.2 strtok3: 7.0.0 token-types: 5.0.1 - dev: true - /file-uri-to-path@1.0.0: - resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} - requiresBuild: true + file-uri-to-path@1.0.0: optional: true - /filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + filelist@1.0.4: dependencies: minimatch: 5.1.6 - dev: true - /filename-reserved-regex@3.0.0: - resolution: {integrity: sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + filename-reserved-regex@3.0.0: {} - /filenamify@5.1.1: - resolution: {integrity: sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==} - engines: {node: '>=12.20'} + filenamify@5.1.1: dependencies: filename-reserved-regex: 3.0.0 strip-outer: 2.0.0 trim-repeated: 2.0.0 - dev: true - /filesize@3.6.1: - resolution: {integrity: sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==} - engines: {node: '>= 0.4.0'} - dev: true + filesize@3.6.1: {} - /fill-range@4.0.0: - resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} - engines: {node: '>=0.10.0'} + fill-range@4.0.0: dependencies: extend-shallow: 2.0.1 is-number: 3.0.0 repeat-string: 1.6.1 to-regex-range: 2.1.1 - /fill-range@7.1.1: - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} - engines: {node: '>=8'} + fill-range@7.1.1: dependencies: to-regex-range: 5.0.1 - /filter-obj@1.1.0: - resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} - engines: {node: '>=0.10.0'} - dev: true + filter-obj@1.1.0: {} - /final-form@4.20.10: - resolution: {integrity: sha512-TL48Pi1oNHeMOHrKv1bCJUrWZDcD3DIG6AGYVNOnyZPr7Bd/pStN0pL+lfzF5BNoj/FclaoiaLenk4XUIFVYng==} - engines: {node: '>=8'} + final-form@4.20.10: dependencies: '@babel/runtime': 7.24.7 - dev: false - /finalhandler@1.2.0(supports-color@6.1.0): - resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} - engines: {node: '>= 0.8'} + finalhandler@1.2.0(supports-color@6.1.0): dependencies: debug: 2.6.9(supports-color@6.1.0) encodeurl: 1.0.2 @@ -35677,198 +44547,118 @@ packages: transitivePeerDependencies: - supports-color - /find-cache-dir@2.1.0: - resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} - engines: {node: '>=6'} + find-cache-dir@2.1.0: dependencies: commondir: 1.0.1 make-dir: 2.1.0 pkg-dir: 3.0.0 - /find-cache-dir@3.3.2: - resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} - engines: {node: '>=8'} + find-cache-dir@3.3.2: dependencies: commondir: 1.0.1 make-dir: 3.1.0 pkg-dir: 4.2.0 - /find-root@1.1.0: - resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} + find-root@1.1.0: {} - /find-up@1.1.2: - resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==} - engines: {node: '>=0.10.0'} - requiresBuild: true + find-up@1.1.2: dependencies: path-exists: 2.1.0 pinkie-promise: 2.0.1 - dev: false optional: true - /find-up@2.1.0: - resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} - engines: {node: '>=4'} + find-up@2.1.0: dependencies: locate-path: 2.0.0 - dev: true - /find-up@3.0.0: - resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} - engines: {node: '>=6'} + find-up@3.0.0: dependencies: locate-path: 3.0.0 - /find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} + find-up@4.1.0: dependencies: locate-path: 5.0.0 path-exists: 4.0.0 - /find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} + find-up@5.0.0: dependencies: locate-path: 6.0.0 path-exists: 4.0.0 - /find-versions@5.1.0: - resolution: {integrity: sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==} - engines: {node: '>=12'} + find-versions@5.1.0: dependencies: semver-regex: 4.0.5 - dev: true - /find-yarn-workspace-root2@1.2.16: - resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} + find-yarn-workspace-root2@1.2.16: dependencies: micromatch: 4.0.7 pkg-dir: 4.2.0 - dev: true - /flat-cache@3.2.0: - resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} - engines: {node: ^10.12.0 || >=12.0.0} + flat-cache@3.2.0: dependencies: flatted: 3.3.1 keyv: 4.5.4 rimraf: 3.0.2 - /flat@5.0.2: - resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} - hasBin: true + flat@5.0.2: {} - /flatted@2.0.2: - resolution: {integrity: sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==} - dev: true + flatted@2.0.2: {} - /flatted@3.3.1: - resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} + flatted@3.3.1: {} - /flow-parser@0.238.0: - resolution: {integrity: sha512-VE7XSv1epljsIN2YeBnxCmGJihpNIAnLLu/pPOdA+Gkso7qDltJwUi6vfHjgxdBbjSdAuPGnhuOHJUQG+yYwIg==} - engines: {node: '>=0.4.0'} - dev: false + flow-parser@0.238.0: {} - /follow-redirects@1.15.6(debug@4.3.5): - resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} - engines: {node: '>=4.0'} - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true - dependencies: + follow-redirects@1.15.6(debug@4.3.5(supports-color@6.1.0)): + optionalDependencies: debug: 4.3.5(supports-color@6.1.0) - /follow-redirects@1.5.10: - resolution: {integrity: sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==} - engines: {node: '>=4.0'} + follow-redirects@1.5.10: dependencies: debug: 3.1.0 transitivePeerDependencies: - supports-color - dev: false - /for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + for-each@0.3.3: dependencies: is-callable: 1.2.7 - /for-in@0.1.8: - resolution: {integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==} - engines: {node: '>=0.10.0'} + for-in@0.1.8: {} - /for-in@1.0.2: - resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} - engines: {node: '>=0.10.0'} + for-in@1.0.2: {} - /for-own@0.1.5: - resolution: {integrity: sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==} - engines: {node: '>=0.10.0'} + for-own@0.1.5: dependencies: for-in: 1.0.2 - /foreground-child@2.0.0: - resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} - engines: {node: '>=8.0.0'} + foreground-child@2.0.0: dependencies: cross-spawn: 7.0.3 signal-exit: 3.0.7 - /foreground-child@3.2.1: - resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==} - engines: {node: '>=14'} + foreground-child@3.2.1: dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 - dev: false - /forever-agent@0.6.1: - resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} - dev: true + forever-agent@0.6.1: {} - /fork-ts-checker-webpack-plugin@4.1.6(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1): - resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} - engines: {node: '>=6.11.5', yarn: '>=1.0.0'} - peerDependencies: - eslint: '>= 6' - typescript: '>= 2.7' - vue-template-compiler: '*' - webpack: 5.84.1 - peerDependenciesMeta: - eslint: - optional: true - vue-template-compiler: - optional: true + fork-ts-checker-webpack-plugin@4.1.6(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@babel/code-frame': 7.24.7 chalk: 2.4.2 - eslint: 7.32.0 micromatch: 3.1.10(supports-color@6.1.0) minimatch: 3.1.2 semver: 5.7.2 tapable: 1.1.3 typescript: 4.9.5 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) worker-rpc: 0.1.1 + optionalDependencies: + eslint: 7.32.0 transitivePeerDependencies: - supports-color - /fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1): - resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} - engines: {node: '>=10', yarn: '>=1.0.0'} - peerDependencies: - eslint: '>= 6' - typescript: '>= 2.7' - vue-template-compiler: '*' - webpack: 5.84.1 - peerDependenciesMeta: - eslint: - optional: true - vue-template-compiler: - optional: true + fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@babel/code-frame': 7.24.7 '@types/json-schema': 7.0.15 @@ -35876,7 +44666,6 @@ packages: chokidar: 3.6.0 cosmiconfig: 6.0.0 deepmerge: 4.3.1 - eslint: 7.32.0 fs-extra: 9.1.0 glob: 7.2.3 memfs: 3.5.3 @@ -35885,18 +44674,11 @@ packages: semver: 7.6.2 tapable: 1.1.3 typescript: 4.9.5 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + eslint: 7.32.0 - /fork-ts-checker-webpack-plugin@7.2.13(typescript@4.9.5)(webpack@5.84.1): - resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==} - engines: {node: '>=12.13.0', yarn: '>=1.0.0'} - peerDependencies: - typescript: '>3.6.0' - vue-template-compiler: '*' - webpack: 5.84.1 - peerDependenciesMeta: - vue-template-compiler: - optional: true + fork-ts-checker-webpack-plugin@7.2.13(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@babel/code-frame': 7.24.7 chalk: 4.1.2 @@ -35911,185 +44693,112 @@ packages: semver: 7.6.2 tapable: 2.2.1 typescript: 4.9.5 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /form-data@2.3.3: - resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} - engines: {node: '>= 0.12'} + form-data@2.3.3: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 - dev: true - /form-data@3.0.1: - resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} - engines: {node: '>= 6'} + form-data@3.0.1: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 - dev: true - /form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} - engines: {node: '>= 6'} + form-data@4.0.0: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 - /format@0.2.2: - resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} - engines: {node: '>=0.4.x'} - dev: true + format@0.2.2: {} - /forwarded@0.2.0: - resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} - engines: {node: '>= 0.6'} + forwarded@0.2.0: {} - /fraction.js@4.3.7: - resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} - dev: true + fraction.js@4.3.7: {} - /fragment-cache@0.2.1: - resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} - engines: {node: '>=0.10.0'} + fragment-cache@0.2.1: dependencies: map-cache: 0.2.2 - /framer-motion@11.2.11(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-n+ozoEzgJu/2h9NoQMokF+CwNqIRVyuRC4RwMPwklfrrTjbVV32k9uBIgqYAwn7Jfpt5LuDVCtT57MWz1FbaLw==} - peerDependencies: - '@emotion/is-prop-valid': '*' - react: ^18.0.0 - react-dom: ^18.0.0 - peerDependenciesMeta: - '@emotion/is-prop-valid': - optional: true - react: - optional: true - react-dom: - optional: true + framer-motion@11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: + tslib: 2.6.3 + optionalDependencies: + '@emotion/is-prop-valid': 1.2.2 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - tslib: 2.6.3 - dev: false - /fresh@0.5.2: - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} - engines: {node: '>= 0.6'} + fresh@0.5.2: {} - /fromentries@1.3.2: - resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==} - dev: true + fromentries@1.3.2: {} - /fs-constants@1.0.0: - resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} - dev: true + fs-constants@1.0.0: {} - /fs-extra@10.1.0: - resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} - engines: {node: '>=12'} + fs-extra@10.1.0: dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 - /fs-extra@7.0.1: - resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} - engines: {node: '>=6 <7 || >=8'} + fs-extra@7.0.1: dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 - dev: true - /fs-extra@8.1.0: - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} - engines: {node: '>=6 <7 || >=8'} + fs-extra@8.1.0: dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 - dev: true - /fs-extra@9.1.0: - resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} - engines: {node: '>=10'} + fs-extra@9.1.0: dependencies: at-least-node: 1.0.0 graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 - /fs-minipass@2.1.0: - resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} - engines: {node: '>= 8'} + fs-minipass@2.1.0: dependencies: minipass: 3.3.6 - /fs-monkey@1.0.6: - resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==} + fs-monkey@1.0.6: {} - /fs-readdir-recursive@1.1.0: - resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==} - dev: true + fs-readdir-recursive@1.1.0: {} - /fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + fs.realpath@1.0.0: {} - /fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - dev: true + fs@0.0.1-security: {} - /fsevents@1.2.13: - resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==} - engines: {node: '>= 4.0'} - os: [darwin] - deprecated: The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2 - requiresBuild: true + fsevents@1.2.13: dependencies: bindings: 1.5.0 nan: 2.20.0 optional: true - /fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - requiresBuild: true + fsevents@2.3.3: optional: true - /function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + function-bind@1.1.2: {} - /function.prototype.name@1.1.6: - resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} - engines: {node: '>= 0.4'} + function.prototype.name@1.1.6: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 functions-have-names: 1.2.3 - /functional-red-black-tree@1.0.1: - resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} + functional-red-black-tree@1.0.1: {} - /functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + functions-have-names@1.2.3: {} - /fuse.js@3.6.1: - resolution: {integrity: sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw==} - engines: {node: '>=6'} - dev: true + fuse.js@3.6.1: {} - /gauge@3.0.2: - resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} - engines: {node: '>=10'} - deprecated: This package is no longer supported. + gauge@3.0.2: dependencies: aproba: 2.0.0 color-support: 1.1.3 @@ -36101,10 +44810,7 @@ packages: strip-ansi: 6.0.1 wide-align: 1.1.5 - /gauge@4.0.4: - resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. + gauge@4.0.4: dependencies: aproba: 2.0.0 color-support: 1.1.3 @@ -36114,25 +44820,16 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 wide-align: 1.1.5 - dev: true - /generic-names@4.0.0: - resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} + generic-names@4.0.0: dependencies: loader-utils: 3.3.1 - dev: true - /gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} + gensync@1.0.0-beta.2: {} - /get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} + get-caller-file@2.0.5: {} - /get-intrinsic@1.2.4: - resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} - engines: {node: '>= 0.4'} + get-intrinsic@1.2.4: dependencies: es-errors: 1.3.0 function-bind: 1.1.2 @@ -36140,167 +44837,104 @@ packages: has-symbols: 1.0.3 hasown: 2.0.2 - /get-package-type@0.1.0: - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} - engines: {node: '>=8.0.0'} + get-package-type@0.1.0: {} - /get-pkg-repo@4.2.1: - resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} - engines: {node: '>=6.9.0'} - hasBin: true + get-pkg-repo@4.2.1: dependencies: '@hutson/parse-repository-url': 3.0.2 hosted-git-info: 4.1.0 through2: 2.0.5 yargs: 16.2.0 - dev: true - /get-port@5.1.1: - resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} - engines: {node: '>=8'} + get-port@5.1.1: {} - /get-stdin@4.0.1: - resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==} - engines: {node: '>=0.10.0'} - requiresBuild: true - dev: false + get-stdin@4.0.1: optional: true - /get-stream@3.0.0: - resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==} - engines: {node: '>=4'} - dev: true + get-stream@3.0.0: {} - /get-stream@4.1.0: - resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} - engines: {node: '>=6'} + get-stream@4.1.0: dependencies: pump: 3.0.0 - /get-stream@5.2.0: - resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} - engines: {node: '>=8'} + get-stream@5.2.0: dependencies: pump: 3.0.0 - /get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} + get-stream@6.0.1: {} - /get-symbol-description@1.0.2: - resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} - engines: {node: '>= 0.4'} + get-symbol-description@1.0.2: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 get-intrinsic: 1.2.4 - /get-value@2.0.6: - resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} - engines: {node: '>=0.10.0'} + get-value@2.0.6: {} - /getos@3.2.1: - resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} + getos@3.2.1: dependencies: async: 3.2.5 - dev: true - /getpass@0.1.7: - resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} + getpass@0.1.7: dependencies: assert-plus: 1.0.0 - dev: true - /git-raw-commits@2.0.11: - resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} - engines: {node: '>=10'} - hasBin: true + git-raw-commits@2.0.11: dependencies: dargs: 7.0.0 lodash: 4.17.21 meow: 8.1.2 split2: 3.2.2 through2: 4.0.2 - dev: true - /git-remote-origin-url@2.0.0: - resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} - engines: {node: '>=4'} + git-remote-origin-url@2.0.0: dependencies: gitconfiglocal: 1.0.0 pify: 2.3.0 - dev: true - /git-semver-tags@4.1.1: - resolution: {integrity: sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==} - engines: {node: '>=10'} - hasBin: true + git-semver-tags@4.1.1: dependencies: meow: 8.1.2 semver: 6.3.1 - dev: true - /git-up@7.0.0: - resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} + git-up@7.0.0: dependencies: is-ssh: 1.4.0 parse-url: 8.1.0 - dev: true - /git-url-parse@13.1.1: - resolution: {integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==} + git-url-parse@13.1.1: dependencies: git-up: 7.0.0 - dev: true - /gitconfiglocal@1.0.0: - resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==} + gitconfiglocal@1.0.0: dependencies: ini: 1.3.8 - dev: true - /github-slugger@1.5.0: - resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} - dev: true + github-slugger@1.5.0: {} - /glob-parent@3.1.0: - resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==} + glob-parent@3.1.0: dependencies: is-glob: 3.1.0 path-dirname: 1.0.2 - /glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} + glob-parent@5.1.2: dependencies: is-glob: 4.0.3 - /glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} + glob-parent@6.0.2: dependencies: is-glob: 4.0.3 - dev: true - /glob-promise@3.4.0(glob@7.2.3): - resolution: {integrity: sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==} - engines: {node: '>=4'} - peerDependencies: - glob: '*' + glob-promise@3.4.0(glob@7.2.3): dependencies: '@types/glob': 8.1.0 glob: 7.2.3 - /glob-to-regexp@0.3.0: - resolution: {integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==} + glob-to-regexp@0.3.0: {} - /glob-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + glob-to-regexp@0.4.1: {} - /glob@10.4.2: - resolution: {integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==} - engines: {node: '>=16 || 14 >=14.18'} - hasBin: true + glob@10.4.2: dependencies: foreground-child: 3.2.1 jackspeak: 3.4.0 @@ -36308,11 +44942,8 @@ packages: minipass: 7.1.2 package-json-from-dist: 1.0.0 path-scurry: 1.11.1 - dev: false - /glob@7.1.4: - resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} - deprecated: Glob versions prior to v9 are no longer supported + glob@7.1.4: dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -36320,11 +44951,8 @@ packages: minimatch: 3.0.5 once: 1.4.0 path-is-absolute: 1.0.1 - dev: true - /glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - deprecated: Glob versions prior to v9 are no longer supported + glob@7.2.3: dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -36333,55 +44961,37 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 - /glob@8.1.0: - resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} - engines: {node: '>=12'} - deprecated: Glob versions prior to v9 are no longer supported + glob@8.1.0: dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 minimatch: 5.1.6 once: 1.4.0 - dev: true - /global-dirs@3.0.1: - resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} - engines: {node: '>=10'} + global-dirs@3.0.1: dependencies: ini: 2.0.0 - /global@4.4.0: - resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==} + global@4.4.0: dependencies: min-document: 2.19.0 process: 0.11.10 - /globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} + globals@11.12.0: {} - /globals@13.24.0: - resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} - engines: {node: '>=8'} + globals@13.24.0: dependencies: type-fest: 0.20.2 - /globals@9.18.0: - resolution: {integrity: sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==} - engines: {node: '>=0.10.0'} - dev: true + globals@9.18.0: {} - /globalthis@1.0.4: - resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} - engines: {node: '>= 0.4'} + globalthis@1.0.4: dependencies: define-properties: 1.2.1 gopd: 1.0.1 - /globby@10.0.1: - resolution: {integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==} - engines: {node: '>=8'} + globby@10.0.1: dependencies: '@types/glob': 7.2.0 array-union: 2.1.0 @@ -36391,11 +45001,8 @@ packages: ignore: 5.3.1 merge2: 1.4.1 slash: 3.0.0 - dev: true - /globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} + globby@11.1.0: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 @@ -36404,9 +45011,7 @@ packages: merge2: 1.4.1 slash: 3.0.0 - /globby@12.2.0: - resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + globby@12.2.0: dependencies: array-union: 3.0.1 dir-glob: 3.0.1 @@ -36414,11 +45019,8 @@ packages: ignore: 5.3.1 merge2: 1.4.1 slash: 4.0.0 - dev: true - /globby@14.0.1: - resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==} - engines: {node: '>=18'} + globby@14.0.1: dependencies: '@sindresorhus/merge-streams': 2.3.0 fast-glob: 3.3.2 @@ -36426,11 +45028,8 @@ packages: path-type: 5.0.0 slash: 5.1.0 unicorn-magic: 0.1.0 - dev: true - /globby@6.1.0: - resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==} - engines: {node: '>=0.10.0'} + globby@6.1.0: dependencies: array-union: 1.0.2 glob: 7.2.3 @@ -36438,9 +45037,7 @@ packages: pify: 2.3.0 pinkie-promise: 2.0.1 - /globby@9.2.0: - resolution: {integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==} - engines: {node: '>=6'} + globby@9.2.0: dependencies: '@types/glob': 7.2.0 array-union: 1.0.2 @@ -36453,14 +45050,11 @@ packages: transitivePeerDependencies: - supports-color - /gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + gopd@1.0.1: dependencies: get-intrinsic: 1.2.4 - /got@11.8.6: - resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} - engines: {node: '>=10.19.0'} + got@11.8.6: dependencies: '@sindresorhus/is': 4.6.0 '@szmarczak/http-timer': 4.0.6 @@ -36473,11 +45067,8 @@ packages: lowercase-keys: 2.0.0 p-cancelable: 2.1.1 responselike: 2.0.1 - dev: true - /got@9.6.0: - resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} - engines: {node: '>=8.6'} + got@9.6.0: dependencies: '@sindresorhus/is': 0.14.0 '@szmarczak/http-timer': 1.1.2 @@ -36492,43 +45083,25 @@ packages: p-cancelable: 1.1.0 to-readable-stream: 1.0.0 url-parse-lax: 3.0.0 - dev: false - /graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + graceful-fs@4.2.11: {} - /grapheme-splitter@1.0.4: - resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} - dev: true + grapheme-splitter@1.0.4: {} - /graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} - dev: true + graphemer@1.4.0: {} - /graphql@15.9.0: - resolution: {integrity: sha512-GCOQdvm7XxV1S4U4CGrsdlEN37245eC8P9zaYCMr6K1BG0IPGy5lUwmJsEOGyl1GD6HXjOtl2keCP9asRBwNvA==} - engines: {node: '>= 10.x'} - dev: true + graphql@15.9.0: {} - /growly@1.3.0: - resolution: {integrity: sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==} - requiresBuild: true - dev: true + growly@1.3.0: optional: true - /gzip-size@6.0.0: - resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} - engines: {node: '>=10'} + gzip-size@6.0.0: dependencies: duplexer: 0.1.2 - /handle-thing@2.0.1: - resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} + handle-thing@2.0.1: {} - /handlebars@4.7.8: - resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} - engines: {node: '>=0.4.7'} - hasBin: true + handlebars@4.7.8: dependencies: minimist: 1.2.8 neo-async: 2.6.2 @@ -36537,114 +45110,71 @@ packages: optionalDependencies: uglify-js: 3.18.0 - /hard-rejection@2.1.0: - resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} - engines: {node: '>=6'} - dev: true + hard-rejection@2.1.0: {} - /harmony-reflect@1.6.2: - resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} - dev: true + harmony-reflect@1.6.2: {} - /has-ansi@2.0.0: - resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} - engines: {node: '>=0.10.0'} + has-ansi@2.0.0: dependencies: ansi-regex: 2.1.1 - dev: true - /has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + has-bigints@1.0.2: {} - /has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} + has-flag@3.0.0: {} - /has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} + has-flag@4.0.0: {} - /has-glob@1.0.0: - resolution: {integrity: sha512-D+8A457fBShSEI3tFCj65PAbT++5sKiFtdCdOam0gnfBgw9D277OERk+HM9qYJXmdVLZ/znez10SqHN0BBQ50g==} - engines: {node: '>=0.10.0'} + has-glob@1.0.0: dependencies: is-glob: 3.1.0 - /has-property-descriptors@1.0.2: - resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + has-property-descriptors@1.0.2: dependencies: es-define-property: 1.0.0 - /has-proto@1.0.3: - resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} - engines: {node: '>= 0.4'} + has-proto@1.0.3: {} - /has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} + has-symbols@1.0.3: {} - /has-tostringtag@1.0.2: - resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} - engines: {node: '>= 0.4'} + has-tostringtag@1.0.2: dependencies: has-symbols: 1.0.3 - /has-unicode@2.0.1: - resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + has-unicode@2.0.1: {} - /has-value@0.3.1: - resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} - engines: {node: '>=0.10.0'} + has-value@0.3.1: dependencies: get-value: 2.0.6 has-values: 0.1.4 isobject: 2.1.0 - /has-value@1.0.0: - resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} - engines: {node: '>=0.10.0'} + has-value@1.0.0: dependencies: get-value: 2.0.6 has-values: 1.0.0 isobject: 3.0.1 - /has-values@0.1.4: - resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} - engines: {node: '>=0.10.0'} + has-values@0.1.4: {} - /has-values@1.0.0: - resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} - engines: {node: '>=0.10.0'} + has-values@1.0.0: dependencies: is-number: 3.0.0 kind-of: 4.0.0 - /has-yarn@2.1.0: - resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==} - engines: {node: '>=8'} - dev: false + has-yarn@2.1.0: {} - /has@1.0.4: - resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} - engines: {node: '>= 0.4.0'} - dev: true + has@1.0.4: {} - /hasha@5.2.2: - resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} - engines: {node: '>=8'} + hasha@5.2.2: dependencies: is-stream: 2.0.1 type-fest: 0.8.1 - dev: true - /hasown@2.0.2: - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} - engines: {node: '>= 0.4'} + hasown@2.0.2: dependencies: function-bind: 1.1.2 - /hast-to-hyperscript@9.0.1: - resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==} + hast-to-hyperscript@9.0.1: dependencies: '@types/unist': 2.0.10 comma-separated-tokens: 1.0.8 @@ -36654,8 +45184,7 @@ packages: unist-util-is: 4.1.0 web-namespaces: 1.1.4 - /hast-util-from-parse5@6.0.1: - resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==} + hast-util-from-parse5@6.0.1: dependencies: '@types/parse5': 5.0.3 hastscript: 6.0.0 @@ -36664,11 +45193,9 @@ packages: vfile-location: 3.2.0 web-namespaces: 1.1.4 - /hast-util-parse-selector@2.2.5: - resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==} + hast-util-parse-selector@2.2.5: {} - /hast-util-raw@6.0.1: - resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==} + hast-util-raw@6.0.1: dependencies: '@types/hast': 2.3.10 hast-util-from-parse5: 6.0.1 @@ -36681,8 +45208,27 @@ packages: xtend: 4.0.2 zwitch: 1.0.5 - /hast-util-to-parse5@6.0.0: - resolution: {integrity: sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==} + hast-util-to-jsx-runtime@2.3.0: + dependencies: + '@types/estree': 1.0.5 + '@types/hast': 3.0.4 + '@types/unist': 3.0.2 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + hast-util-whitespace: 3.0.0 + mdast-util-mdx-expression: 2.0.0 + mdast-util-mdx-jsx: 3.1.2 + mdast-util-mdxjs-esm: 2.0.1 + property-information: 6.5.0 + space-separated-tokens: 2.0.2 + style-to-object: 1.0.6 + unist-util-position: 5.0.0 + vfile-message: 4.0.2 + transitivePeerDependencies: + - supports-color + + hast-util-to-parse5@6.0.0: dependencies: hast-to-hyperscript: 9.0.1 property-information: 5.6.0 @@ -36690,8 +45236,11 @@ packages: xtend: 4.0.2 zwitch: 1.0.5 - /hastscript@6.0.0: - resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} + hast-util-whitespace@3.0.0: + dependencies: + '@types/hast': 3.0.4 + + hastscript@6.0.0: dependencies: '@types/hast': 2.3.10 comma-separated-tokens: 1.0.8 @@ -36699,20 +45248,13 @@ packages: property-information: 5.6.0 space-separated-tokens: 1.1.5 - /he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} - hasBin: true + he@1.2.0: {} - /headers-utils@3.0.2: - resolution: {integrity: sha512-xAxZkM1dRyGV2Ou5bzMxBPNLoRCjcX+ya7KSWybQD2KwLphxsapUVK6x/02o7f4VU6GPSXch9vNY2+gkU8tYWQ==} - dev: true + headers-utils@3.0.2: {} - /highlight.js@10.7.3: - resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} - dev: true + highlight.js@10.7.3: {} - /history@4.10.1: - resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==} + history@4.10.1: dependencies: '@babel/runtime': 7.24.7 loose-envify: 1.4.0 @@ -36720,97 +45262,58 @@ packages: tiny-invariant: 1.3.3 tiny-warning: 1.0.3 value-equal: 1.0.1 - dev: false - /history@5.0.0: - resolution: {integrity: sha512-3NyRMKIiFSJmIPdq7FxkNMJkQ7ZEtVblOQ38VtKaA0zZMW1Eo6Q6W8oDKEflr1kNNTItSnk4JMCO1deeSgbLLg==} + history@5.0.0: dependencies: '@babel/runtime': 7.24.7 - dev: true - /hoist-non-react-statics@2.5.5: - resolution: {integrity: sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==} - dev: false + hoist-non-react-statics@2.5.5: {} - /hoist-non-react-statics@3.3.2: - resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} + hoist-non-react-statics@3.3.2: dependencies: react-is: 16.13.1 - /home-or-tmp@2.0.0: - resolution: {integrity: sha512-ycURW7oUxE2sNiPVw1HVEFsW+ecOpJ5zaj7eC0RlwhibhRBod20muUN8qu/gzx956YrLolVvs1MTXwKgC2rVEg==} - engines: {node: '>=0.10.0'} - dependencies: - os-homedir: 1.0.2 - os-tmpdir: 1.0.2 - dev: true - - /hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + hosted-git-info@2.8.9: {} - /hosted-git-info@3.0.8: - resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==} - engines: {node: '>=10'} + hosted-git-info@3.0.8: dependencies: lru-cache: 6.0.0 - dev: true - /hosted-git-info@4.1.0: - resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} - engines: {node: '>=10'} + hosted-git-info@4.1.0: dependencies: lru-cache: 6.0.0 - dev: true - /hosted-git-info@5.2.1: - resolution: {integrity: sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hosted-git-info@5.2.1: dependencies: lru-cache: 7.18.3 - dev: true - /hpack.js@2.1.6: - resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} + hpack.js@2.1.6: dependencies: inherits: 2.0.4 obuf: 1.1.2 readable-stream: 2.3.8 wbuf: 1.7.3 - /html-dom-parser@2.0.0: - resolution: {integrity: sha512-PwVjg12yfWunpH2WjwjaYNKcZyKKm20kclTfMQohiRzfgYiXX0dR7nXIIKnHneghMDvB0rKFZLEAe11ykOfpcg==} + html-dom-parser@2.0.0: dependencies: domhandler: 4.3.1 htmlparser2: 7.2.0 - dev: false - /html-encoding-sniffer@2.0.1: - resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} - engines: {node: '>=10'} + html-encoding-sniffer@2.0.1: dependencies: whatwg-encoding: 1.0.5 - dev: true - /html-encoding-sniffer@3.0.0: - resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} - engines: {node: '>=12'} + html-encoding-sniffer@3.0.0: dependencies: whatwg-encoding: 2.0.0 - dev: true - /html-entities@1.4.0: - resolution: {integrity: sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==} + html-entities@1.4.0: {} - /html-entities@2.5.2: - resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} + html-entities@2.5.2: {} - /html-escaper@2.0.2: - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + html-escaper@2.0.2: {} - /html-minifier-terser@5.1.1: - resolution: {integrity: sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==} - engines: {node: '>=6'} - hasBin: true + html-minifier-terser@5.1.1: dependencies: camel-case: 4.1.2 clean-css: 4.2.4 @@ -36820,10 +45323,7 @@ packages: relateurl: 0.2.7 terser: 4.8.1 - /html-minifier-terser@6.1.0: - resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} - engines: {node: '>=12'} - hasBin: true + html-minifier-terser@6.1.0: dependencies: camel-case: 4.1.2 clean-css: 5.3.3 @@ -36833,48 +45333,25 @@ packages: relateurl: 0.2.7 terser: 5.31.1 - /html-parse-stringify@3.0.1: - resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==} + html-parse-stringify@3.0.1: dependencies: void-elements: 3.1.0 - dev: false - /html-react-parser@2.0.0(react@18.3.1): - resolution: {integrity: sha512-AI1lhybWGi8w4QkGtEIS3iSGAjeFGaonxl/+CzqzCeNT3g3z/yx2NKsA93trnv2BLjhe+juGLmLeTSUkyYWk9Q==} - peerDependencies: - react: 0.14 || 15 || 16 || 17 || 18 + html-react-parser@2.0.0(react@18.3.1): dependencies: domhandler: 4.3.1 html-dom-parser: 2.0.0 react: 18.3.1 react-property: 2.0.0 style-to-js: 1.1.1 - dev: false - /html-tags@3.3.1: - resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} - engines: {node: '>=8'} - dev: false + html-tags@3.3.1: {} - /html-to-react@1.7.0(react@18.3.1): - resolution: {integrity: sha512-b5HTNaTGyOj5GGIMiWVr1k57egAZ/vGy0GGefnCQ1VW5hu9+eku8AXHtf2/DeD95cj/FKBKYa1J7SWBOX41yUQ==} - peerDependencies: - react: ^0.13.0 || ^0.14.0 || >=15 - dependencies: - domhandler: 5.0.3 - htmlparser2: 9.1.0 - lodash.camelcase: 4.3.0 - react: 18.3.1 - dev: false + html-url-attributes@3.0.0: {} - /html-void-elements@1.0.5: - resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==} + html-void-elements@1.0.5: {} - /html-webpack-plugin@4.5.2(webpack@5.84.1): - resolution: {integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==} - engines: {node: '>=6.9'} - peerDependencies: - webpack: 5.84.1 + html-webpack-plugin@4.5.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@types/html-minifier-terser': 5.1.2 '@types/tapable': 1.0.12 @@ -36885,81 +45362,52 @@ packages: pretty-error: 2.1.2 tapable: 1.1.3 util.promisify: 1.0.0 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /html-webpack-plugin@5.6.0(webpack@5.84.1): - resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==} - engines: {node: '>=10.13.0'} - peerDependencies: - '@rspack/core': 0.x || 1.x - webpack: 5.84.1 - peerDependenciesMeta: - '@rspack/core': - optional: true - webpack: - optional: true + html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + optionalDependencies: + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /htmlparser2@3.8.3: - resolution: {integrity: sha512-hBxEg3CYXe+rPIua8ETe7tmG3XDn9B0edOE/e9wH2nLczxzgdu0m0aNHY+5wFZiviLWLdANPJTssa92dMcXQ5Q==} + htmlparser2@3.8.3: dependencies: domelementtype: 1.3.1 domhandler: 2.3.0 domutils: 1.5.1 entities: 1.0.0 readable-stream: 1.1.14 - dev: false - /htmlparser2@6.1.0: - resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} + htmlparser2@6.1.0: dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 domutils: 2.8.0 entities: 2.2.0 - /htmlparser2@7.2.0: - resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} + htmlparser2@7.2.0: dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 domutils: 2.8.0 entities: 3.0.1 - dev: false - - /htmlparser2@9.1.0: - resolution: {integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==} - dependencies: - domelementtype: 2.3.0 - domhandler: 5.0.3 - domutils: 3.1.0 - entities: 4.5.0 - dev: false - /http-cache-semantics@4.1.1: - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} + http-cache-semantics@4.1.1: {} - /http-deceiver@1.2.7: - resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} + http-deceiver@1.2.7: {} - /http-errors@1.6.3: - resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} - engines: {node: '>= 0.6'} + http-errors@1.6.3: dependencies: depd: 1.1.2 inherits: 2.0.3 setprototypeof: 1.1.0 statuses: 1.5.0 - /http-errors@2.0.0: - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: '>= 0.8'} + http-errors@2.0.0: dependencies: depd: 2.0.0 inherits: 2.0.4 @@ -36967,36 +45415,27 @@ packages: statuses: 2.0.1 toidentifier: 1.0.1 - /http-parser-js@0.5.8: - resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} + http-parser-js@0.5.8: {} - /http-proxy-agent@4.0.1: - resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} - engines: {node: '>= 6'} + http-proxy-agent@4.0.1: dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: true - /http-proxy-agent@5.0.0: - resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} - engines: {node: '>= 6'} + http-proxy-agent@5.0.0: dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: true - /http-proxy-middleware@0.19.1(debug@4.3.5)(supports-color@6.1.0): - resolution: {integrity: sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==} - engines: {node: '>=4.0.0'} + http-proxy-middleware@0.19.1(debug@4.3.5(supports-color@6.1.0))(supports-color@6.1.0): dependencies: - http-proxy: 1.18.1(debug@4.3.5) + http-proxy: 1.18.1(debug@4.3.5(supports-color@6.1.0)) is-glob: 4.0.3 lodash: 4.17.21 micromatch: 3.1.10(supports-color@6.1.0) @@ -37004,310 +45443,196 @@ packages: - debug - supports-color - /http-proxy-middleware@2.0.6(@types/express@4.17.21): - resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/express': ^4.17.13 - peerDependenciesMeta: - '@types/express': - optional: true + http-proxy-middleware@2.0.6(@types/express@4.17.21): dependencies: - '@types/express': 4.17.21 '@types/http-proxy': 1.17.14 - http-proxy: 1.18.1(debug@4.3.5) + http-proxy: 1.18.1(debug@4.3.5(supports-color@6.1.0)) is-glob: 4.0.3 is-plain-obj: 3.0.0 micromatch: 4.0.7 + optionalDependencies: + '@types/express': 4.17.21 transitivePeerDependencies: - debug - dev: true - /http-proxy@1.18.1(debug@4.3.5): - resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} - engines: {node: '>=8.0.0'} + http-proxy@1.18.1(debug@4.3.5(supports-color@6.1.0)): dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.15.6(debug@4.3.5) + follow-redirects: 1.15.6(debug@4.3.5(supports-color@6.1.0)) requires-port: 1.0.0 transitivePeerDependencies: - debug - /http-server@14.1.1: - resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==} - engines: {node: '>=12'} - hasBin: true + http-server@14.1.1: dependencies: basic-auth: 2.0.1 chalk: 4.1.2 corser: 2.0.1 he: 1.2.0 html-encoding-sniffer: 3.0.0 - http-proxy: 1.18.1(debug@4.3.5) + http-proxy: 1.18.1(debug@4.3.5(supports-color@6.1.0)) mime: 1.6.0 minimist: 1.2.8 opener: 1.5.2 - portfinder: 1.0.32(supports-color@6.1.0) + portfinder: 1.0.32 secure-compare: 3.0.1 union: 0.5.0 url-join: 4.0.1 transitivePeerDependencies: - debug - supports-color - dev: true - /http-signature@1.3.6: - resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} - engines: {node: '>=0.10'} + http-signature@1.3.6: dependencies: assert-plus: 1.0.0 jsprim: 2.0.2 sshpk: 1.18.0 - dev: true - /http2-wrapper@1.0.3: - resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} - engines: {node: '>=10.19.0'} + http2-wrapper@1.0.3: dependencies: quick-lru: 5.1.1 resolve-alpn: 1.2.1 - dev: true - /https-proxy-agent@4.0.0: - resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==} - engines: {node: '>= 6.0.0'} + https-proxy-agent@4.0.0: dependencies: agent-base: 5.1.1 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: false - /https-proxy-agent@5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} - engines: {node: '>= 6'} + https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: true - /human-id@1.0.2: - resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} - dev: true + human-id@1.0.2: {} - /human-signals@1.1.1: - resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} - engines: {node: '>=8.12.0'} - dev: true + human-signals@1.1.1: {} - /human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} + human-signals@2.1.0: {} - /humanize-ms@1.2.1: - resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} + humanize-ms@1.2.1: dependencies: ms: 2.1.3 - dev: true - /i18next-browser-languagedetector@6.1.8: - resolution: {integrity: sha512-Svm+MduCElO0Meqpj1kJAriTC6OhI41VhlT/A0UPjGoPZBhAHIaGE5EfsHlTpgdH09UVX7rcc72pSDDBeKSQQA==} + i18next-browser-languagedetector@6.1.8: dependencies: '@babel/runtime': 7.24.7 - dev: false - /i18next-xhr-backend@3.2.2: - resolution: {integrity: sha512-OtRf2Vo3IqAxsttQbpjYnmMML12IMB5e0fc5B7qKJFLScitYaXa1OhMX0n0X/3vrfFlpHL9Ro/H+ps4Ej2j7QQ==} - deprecated: replaced by i18next-http-backend + i18next-xhr-backend@3.2.2: dependencies: '@babel/runtime': 7.24.7 - /i18next@21.10.0: - resolution: {integrity: sha512-YeuIBmFsGjUfO3qBmMOc0rQaun4mIpGKET5WDwvu8lU7gvwpcariZLNtL0Fzj+zazcHUrlXHiptcFhBMFaxzfg==} + i18next@21.10.0: dependencies: '@babel/runtime': 7.24.7 - dev: false - /iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} + iconv-lite@0.4.24: dependencies: safer-buffer: 2.1.2 - /iconv-lite@0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: '>=0.10.0'} + iconv-lite@0.6.3: dependencies: safer-buffer: 2.1.2 - dev: true - /icss-replace-symbols@1.1.0: - resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} - dev: true + icss-replace-symbols@1.1.0: {} - /icss-utils@2.1.0: - resolution: {integrity: sha512-bsVoyn/1V4R1kYYjLcWLedozAM4FClZUdjE9nIr8uWY7xs78y9DATgwz2wGU7M+7z55KenmmTkN2DVJ7bqzjAA==} + icss-utils@2.1.0: dependencies: postcss: 6.0.23 - dev: true - /icss-utils@4.1.1: - resolution: {integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==} - engines: {node: '>= 6'} + icss-utils@4.1.1: dependencies: postcss: 7.0.39 - /icss-utils@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + icss-utils@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 - /identity-obj-proxy@3.0.0: - resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} - engines: {node: '>=4'} + identity-obj-proxy@3.0.0: dependencies: harmony-reflect: 1.6.2 - dev: true - /ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + ieee754@1.2.1: {} - /ignore-walk@5.0.1: - resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + ignore-walk@5.0.1: dependencies: minimatch: 5.1.6 - dev: true - /ignore@4.0.6: - resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} - engines: {node: '>= 4'} + ignore@4.0.6: {} - /ignore@5.3.1: - resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} - engines: {node: '>= 4'} + ignore@5.3.1: {} - /image-size@0.5.5: - resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} - engines: {node: '>=0.10.0'} - hasBin: true - requiresBuild: true - dev: true + image-size@0.5.5: optional: true - /immutable@4.3.6: - resolution: {integrity: sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==} - dev: true + immutable@4.3.6: {} - /import-cwd@2.1.0: - resolution: {integrity: sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==} - engines: {node: '>=4'} + import-cwd@2.1.0: dependencies: import-from: 2.1.0 - /import-cwd@3.0.0: - resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} - engines: {node: '>=8'} + import-cwd@3.0.0: dependencies: import-from: 3.0.0 - dev: true - - /import-fresh@2.0.0: - resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} - engines: {node: '>=4'} + + import-fresh@2.0.0: dependencies: caller-path: 2.0.0 resolve-from: 3.0.0 - /import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} + import-fresh@3.3.0: dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 - /import-from@2.1.0: - resolution: {integrity: sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==} - engines: {node: '>=4'} + import-from@2.1.0: dependencies: resolve-from: 3.0.0 - /import-from@3.0.0: - resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==} - engines: {node: '>=8'} + import-from@3.0.0: dependencies: resolve-from: 5.0.0 - dev: true - /import-lazy@2.1.0: - resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==} - engines: {node: '>=4'} - dev: false + import-lazy@2.1.0: {} - /import-local@2.0.0: - resolution: {integrity: sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==} - engines: {node: '>=6'} - hasBin: true + import-local@2.0.0: dependencies: pkg-dir: 3.0.0 resolve-cwd: 2.0.0 - /import-local@3.1.0: - resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} - engines: {node: '>=8'} - hasBin: true + import-local@3.1.0: dependencies: pkg-dir: 4.2.0 resolve-cwd: 3.0.0 - /imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} + imurmurhash@0.1.4: {} - /indent-string@2.1.0: - resolution: {integrity: sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==} - engines: {node: '>=0.10.0'} - requiresBuild: true + indent-string@2.1.0: dependencies: repeating: 2.0.1 - dev: false optional: true - /indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} + indent-string@4.0.0: {} - /infer-owner@1.0.4: - resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} + infer-owner@1.0.4: {} - /inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} - deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + inflight@1.0.6: dependencies: once: 1.4.0 wrappy: 1.0.2 - /inherits@2.0.3: - resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} + inherits@2.0.3: {} - /inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + inherits@2.0.4: {} - /ini@1.3.8: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + ini@1.3.8: {} - /ini@2.0.0: - resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} - engines: {node: '>=10'} + ini@2.0.0: {} - /init-package-json@3.0.2: - resolution: {integrity: sha512-YhlQPEjNFqlGdzrBfDNRLhvoSgX7iQRgSxgsNknRQ9ITXFT7UMfVMWhBTOh2Y+25lRnGrv5Xz8yZwQ3ACR6T3A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + init-package-json@3.0.2: dependencies: npm-package-arg: 9.1.2 promzard: 0.3.0 @@ -37316,14 +45641,12 @@ packages: semver: 7.6.2 validate-npm-package-license: 3.0.4 validate-npm-package-name: 4.0.0 - dev: true - /inline-style-parser@0.1.1: - resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} + inline-style-parser@0.1.1: {} - /inquirer@8.2.6: - resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} - engines: {node: '>=12.0.0'} + inline-style-parser@0.2.3: {} + + inquirer@8.2.6: dependencies: ansi-escapes: 4.3.2 chalk: 4.1.1 @@ -37340,596 +45663,372 @@ packages: strip-ansi: 6.0.1 through: 2.3.8 wrap-ansi: 6.2.0 - dev: true - /internal-ip@4.3.0: - resolution: {integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==} - engines: {node: '>=6'} + internal-ip@4.3.0: dependencies: default-gateway: 4.2.0 ipaddr.js: 1.9.1 - /internal-slot@1.0.7: - resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} - engines: {node: '>= 0.4'} + internal-slot@1.0.7: dependencies: es-errors: 1.3.0 hasown: 2.0.2 side-channel: 1.0.6 - /internmap@2.0.3: - resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} - engines: {node: '>=12'} - dev: false + internmap@2.0.3: {} - /interpret@1.4.0: - resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} - engines: {node: '>= 0.10'} - dev: false + interpret@1.4.0: {} - /interpret@2.2.0: - resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==} - engines: {node: '>= 0.10'} + interpret@2.2.0: {} - /invariant@2.2.4: - resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + invariant@2.2.4: dependencies: loose-envify: 1.4.0 - /ip-address@9.0.5: - resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} - engines: {node: '>= 12'} + ip-address@9.0.5: dependencies: jsbn: 1.1.0 sprintf-js: 1.1.3 - dev: true - /ip-regex@2.1.0: - resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==} - engines: {node: '>=4'} + ip-regex@2.1.0: {} - /ip@1.1.9: - resolution: {integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==} + ip@1.1.9: {} - /ip@2.0.1: - resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==} - dev: false + ip@2.0.1: {} - /ipaddr.js@1.9.1: - resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} - engines: {node: '>= 0.10'} + ipaddr.js@1.9.1: {} - /ipaddr.js@2.2.0: - resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==} - engines: {node: '>= 10'} - dev: true + ipaddr.js@2.2.0: {} - /is-absolute-url@3.0.3: - resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==} - engines: {node: '>=8'} + is-absolute-url@3.0.3: {} - /is-accessor-descriptor@1.0.1: - resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==} - engines: {node: '>= 0.10'} + is-accessor-descriptor@1.0.1: dependencies: hasown: 2.0.2 - /is-alphabetical@1.0.4: - resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} + is-alphabetical@1.0.4: {} - /is-alphanumerical@1.0.4: - resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} + is-alphabetical@2.0.1: {} + + is-alphanumerical@1.0.4: dependencies: is-alphabetical: 1.0.4 is-decimal: 1.0.4 - /is-arguments@1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: '>= 0.4'} + is-alphanumerical@2.0.1: + dependencies: + is-alphabetical: 2.0.1 + is-decimal: 2.0.1 + + is-arguments@1.1.1: dependencies: call-bind: 1.0.7 has-tostringtag: 1.0.2 - /is-array-buffer@3.0.4: - resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} - engines: {node: '>= 0.4'} + is-array-buffer@3.0.4: dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 - /is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + is-arrayish@0.2.1: {} - /is-async-function@2.0.0: - resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} - engines: {node: '>= 0.4'} + is-async-function@2.0.0: dependencies: has-tostringtag: 1.0.2 - dev: true - /is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + is-bigint@1.0.4: dependencies: has-bigints: 1.0.2 - /is-binary-path@1.0.1: - resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==} - engines: {node: '>=0.10.0'} + is-binary-path@1.0.1: dependencies: binary-extensions: 1.13.1 - /is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} + is-binary-path@2.1.0: dependencies: binary-extensions: 2.3.0 - /is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} + is-boolean-object@1.1.2: dependencies: call-bind: 1.0.7 has-tostringtag: 1.0.2 - /is-buffer@1.1.6: - resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + is-buffer@1.1.6: {} - /is-buffer@2.0.5: - resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} - engines: {node: '>=4'} + is-buffer@2.0.5: {} - /is-builtin-module@3.2.1: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} - engines: {node: '>=6'} + is-builtin-module@3.2.1: dependencies: builtin-modules: 3.3.0 - dev: true - /is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} + is-callable@1.2.7: {} - /is-ci@2.0.0: - resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} - hasBin: true + is-ci@2.0.0: dependencies: ci-info: 2.0.0 - /is-ci@3.0.1: - resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} - hasBin: true + is-ci@3.0.1: dependencies: ci-info: 3.9.0 - dev: true - /is-core-module@2.14.0: - resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==} - engines: {node: '>= 0.4'} + is-core-module@2.14.0: dependencies: hasown: 2.0.2 - /is-data-descriptor@1.0.1: - resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==} - engines: {node: '>= 0.4'} + is-data-descriptor@1.0.1: dependencies: hasown: 2.0.2 - /is-data-view@1.0.1: - resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} - engines: {node: '>= 0.4'} + is-data-view@1.0.1: dependencies: is-typed-array: 1.1.13 - /is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} + is-date-object@1.0.5: dependencies: has-tostringtag: 1.0.2 - /is-decimal@1.0.4: - resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} + is-decimal@1.0.4: {} - /is-descriptor@0.1.7: - resolution: {integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==} - engines: {node: '>= 0.4'} + is-decimal@2.0.1: {} + + is-descriptor@0.1.7: dependencies: is-accessor-descriptor: 1.0.1 is-data-descriptor: 1.0.1 - /is-descriptor@1.0.3: - resolution: {integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==} - engines: {node: '>= 0.4'} + is-descriptor@1.0.3: dependencies: is-accessor-descriptor: 1.0.1 is-data-descriptor: 1.0.1 - /is-directory@0.3.1: - resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} - engines: {node: '>=0.10.0'} + is-directory@0.3.1: {} - /is-docker@2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: '>=8'} - hasBin: true + is-docker@2.2.1: {} - /is-dom@1.1.0: - resolution: {integrity: sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==} + is-dom@1.1.0: dependencies: is-object: 1.0.2 is-window: 1.0.2 - dev: true - /is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} - engines: {node: '>=0.10.0'} + is-extendable@0.1.1: {} - /is-extendable@1.0.1: - resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} - engines: {node: '>=0.10.0'} + is-extendable@1.0.1: dependencies: is-plain-object: 2.0.4 - /is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} + is-extglob@2.1.1: {} - /is-finalizationregistry@1.0.2: - resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} + is-finalizationregistry@1.0.2: dependencies: call-bind: 1.0.7 - dev: true - /is-finite@1.1.0: - resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==} - engines: {node: '>=0.10.0'} - requiresBuild: true + is-finite@1.1.0: + optional: true - /is-fullwidth-code-point@2.0.0: - resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} - engines: {node: '>=4'} + is-fullwidth-code-point@2.0.0: {} - /is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} + is-fullwidth-code-point@3.0.0: {} - /is-function@1.0.2: - resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==} + is-function@1.0.2: {} - /is-generator-fn@2.1.0: - resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} - engines: {node: '>=6'} + is-generator-fn@2.1.0: {} - /is-generator-function@1.0.10: - resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} - engines: {node: '>= 0.4'} + is-generator-function@1.0.10: dependencies: has-tostringtag: 1.0.2 - dev: true - /is-glob@3.1.0: - resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==} - engines: {node: '>=0.10.0'} + is-glob@3.1.0: dependencies: is-extglob: 2.1.1 - /is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} + is-glob@4.0.3: dependencies: is-extglob: 2.1.1 - /is-hexadecimal@1.0.4: - resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} + is-hexadecimal@1.0.4: {} - /is-installed-globally@0.4.0: - resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} - engines: {node: '>=10'} + is-hexadecimal@2.0.1: {} + + is-installed-globally@0.4.0: dependencies: global-dirs: 3.0.1 is-path-inside: 3.0.3 - /is-interactive@1.0.0: - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} - engines: {node: '>=8'} - dev: true + is-interactive@1.0.0: {} - /is-lambda@1.0.1: - resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} - dev: true + is-lambda@1.0.1: {} - /is-lite@0.8.2: - resolution: {integrity: sha512-JZfH47qTsslwaAsqbMI3Q6HNNjUuq6Cmzzww50TdP5Esb6e1y2sK2UAaZZuzfAzpoI2AkxoPQapZdlDuP6Vlsw==} - dev: false + is-lite@0.8.2: {} - /is-lite@1.2.1: - resolution: {integrity: sha512-pgF+L5bxC+10hLBgf6R2P4ZZUBOQIIacbdo8YvuCP8/JvsWxG7aZ9p10DYuLtifFci4l3VITphhMlMV4Y+urPw==} - dev: false + is-lite@1.2.1: {} - /is-map@2.0.3: - resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} - engines: {node: '>= 0.4'} + is-map@2.0.3: {} - /is-module@1.0.0: - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} - dev: true + is-module@1.0.0: {} - /is-negative-zero@2.0.3: - resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} - engines: {node: '>= 0.4'} + is-negative-zero@2.0.3: {} - /is-node-process@1.2.0: - resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==} - dev: true + is-node-process@1.2.0: {} - /is-npm@5.0.0: - resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==} - engines: {node: '>=10'} - dev: false + is-npm@5.0.0: {} - /is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} + is-number-object@1.0.7: dependencies: has-tostringtag: 1.0.2 - /is-number@3.0.0: - resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} - engines: {node: '>=0.10.0'} + is-number@3.0.0: dependencies: kind-of: 3.2.2 - /is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} + is-number@7.0.0: {} - /is-obj@2.0.0: - resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} - engines: {node: '>=8'} + is-obj@2.0.0: {} - /is-object@1.0.2: - resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==} - dev: true + is-object@1.0.2: {} - /is-path-cwd@2.2.0: - resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} - engines: {node: '>=6'} + is-path-cwd@2.2.0: {} - /is-path-in-cwd@2.1.0: - resolution: {integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==} - engines: {node: '>=6'} + is-path-in-cwd@2.1.0: dependencies: is-path-inside: 2.1.0 - /is-path-inside@2.1.0: - resolution: {integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==} - engines: {node: '>=6'} + is-path-inside@2.1.0: dependencies: path-is-inside: 1.0.2 - /is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} + is-path-inside@3.0.3: {} - /is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} + is-plain-obj@1.1.0: {} - /is-plain-obj@2.1.0: - resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} - engines: {node: '>=8'} + is-plain-obj@2.1.0: {} - /is-plain-obj@3.0.0: - resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} - engines: {node: '>=10'} - dev: true + is-plain-obj@3.0.0: {} - /is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: '>=0.10.0'} + is-plain-obj@4.1.0: {} + + is-plain-object@2.0.4: dependencies: isobject: 3.0.1 - /is-plain-object@3.0.1: - resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==} - engines: {node: '>=0.10.0'} - dev: true + is-plain-object@3.0.1: {} - /is-plain-object@5.0.0: - resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} - engines: {node: '>=0.10.0'} + is-plain-object@5.0.0: {} - /is-potential-custom-element-name@1.0.1: - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} - dev: true + is-potential-custom-element-name@1.0.1: {} - /is-promise@2.2.2: - resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} - dev: false + is-promise@2.2.2: {} - /is-reference@1.2.1: - resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} + is-reference@1.2.1: dependencies: '@types/estree': 1.0.5 - dev: true - /is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} + is-regex@1.1.4: dependencies: call-bind: 1.0.7 has-tostringtag: 1.0.2 - /is-set@2.0.3: - resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} - engines: {node: '>= 0.4'} + is-set@2.0.3: {} - /is-shared-array-buffer@1.0.3: - resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} - engines: {node: '>= 0.4'} + is-shared-array-buffer@1.0.3: dependencies: call-bind: 1.0.7 - /is-ssh@1.4.0: - resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} + is-ssh@1.4.0: dependencies: protocols: 2.0.1 - dev: true - /is-stream@1.1.0: - resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} - engines: {node: '>=0.10.0'} + is-stream@1.1.0: {} - /is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} + is-stream@2.0.1: {} - /is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} + is-string@1.0.7: dependencies: has-tostringtag: 1.0.2 - /is-subdir@1.2.0: - resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} - engines: {node: '>=4'} + is-subdir@1.2.0: dependencies: better-path-resolve: 1.0.0 - dev: true - /is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} + is-symbol@1.0.4: dependencies: has-symbols: 1.0.3 - /is-text-path@1.0.1: - resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} - engines: {node: '>=0.10.0'} + is-text-path@1.0.1: dependencies: text-extensions: 1.9.0 - dev: true - /is-typed-array@1.1.13: - resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} - engines: {node: '>= 0.4'} + is-typed-array@1.1.13: dependencies: which-typed-array: 1.1.15 - /is-typedarray@1.0.0: - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + is-typedarray@1.0.0: {} - /is-unicode-supported@0.1.0: - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} - engines: {node: '>=10'} - dev: true + is-unicode-supported@0.1.0: {} - /is-utf8@0.2.1: - resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} - requiresBuild: true - dev: false + is-utf8@0.2.1: optional: true - /is-weakmap@2.0.2: - resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} - engines: {node: '>= 0.4'} + is-weakmap@2.0.2: {} - /is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + is-weakref@1.0.2: dependencies: call-bind: 1.0.7 - /is-weakset@2.0.3: - resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} - engines: {node: '>= 0.4'} + is-weakset@2.0.3: dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 - /is-what@3.14.1: - resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} + is-what@3.14.1: {} - /is-whitespace-character@1.0.4: - resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==} + is-whitespace-character@1.0.4: {} - /is-window@1.0.2: - resolution: {integrity: sha512-uj00kdXyZb9t9RcAUAwMZAnkBUwdYGhYlt7djMXhfyhUCzwNba50tIiBKR7q0l7tdoBtFVw/3JmLY6fI3rmZmg==} - dev: true + is-window@1.0.2: {} - /is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} + is-windows@1.0.2: {} - /is-word-character@1.0.4: - resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==} + is-word-character@1.0.4: {} - /is-wsl@1.1.0: - resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} - engines: {node: '>=4'} + is-wsl@1.1.0: {} - /is-wsl@2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: '>=8'} + is-wsl@2.2.0: dependencies: is-docker: 2.2.1 - /is-yarn-global@0.3.0: - resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==} - dev: false + is-yarn-global@0.3.0: {} - /isarray@0.0.1: - resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} - dev: false + isarray@0.0.1: {} - /isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + isarray@1.0.0: {} - /isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + isarray@2.0.5: {} - /isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + isexe@2.0.0: {} - /isobject@2.1.0: - resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} - engines: {node: '>=0.10.0'} + isobject@2.1.0: dependencies: isarray: 1.0.0 - /isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: '>=0.10.0'} + isobject@3.0.1: {} - /isobject@4.0.0: - resolution: {integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==} - engines: {node: '>=0.10.0'} + isobject@4.0.0: {} - /isomorphic-unfetch@3.1.0: - resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==} + isomorphic-unfetch@3.1.0(encoding@0.1.13): dependencies: - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) unfetch: 4.2.0 transitivePeerDependencies: - encoding - dev: false - /isstream@0.1.2: - resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} - dev: true + isstream@0.1.2: {} - /istanbul-lib-coverage@3.2.2: - resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} - engines: {node: '>=8'} + istanbul-lib-coverage@3.2.2: {} - /istanbul-lib-hook@3.0.0: - resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==} - engines: {node: '>=8'} + istanbul-lib-hook@3.0.0: dependencies: append-transform: 2.0.0 - dev: true - /istanbul-lib-instrument@4.0.3: - resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} - engines: {node: '>=8'} + istanbul-lib-instrument@4.0.3: dependencies: '@babel/core': 7.24.7 '@istanbuljs/schema': 0.1.3 @@ -37937,11 +46036,8 @@ packages: semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true - /istanbul-lib-instrument@5.2.1: - resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} - engines: {node: '>=8'} + istanbul-lib-instrument@5.2.1: dependencies: '@babel/core': 7.24.7 '@babel/parser': 7.24.7 @@ -37951,9 +46047,7 @@ packages: transitivePeerDependencies: - supports-color - /istanbul-lib-instrument@6.0.2: - resolution: {integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==} - engines: {node: '>=10'} + istanbul-lib-instrument@6.0.2: dependencies: '@babel/core': 7.24.7 '@babel/parser': 7.24.7 @@ -37963,9 +46057,7 @@ packages: transitivePeerDependencies: - supports-color - /istanbul-lib-processinfo@2.0.3: - resolution: {integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==} - engines: {node: '>=8'} + istanbul-lib-processinfo@2.0.3: dependencies: archy: 1.0.0 cross-spawn: 7.0.3 @@ -37973,92 +46065,67 @@ packages: p-map: 3.0.0 rimraf: 3.0.2 uuid: 8.3.2 - dev: true - /istanbul-lib-report@3.0.1: - resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} - engines: {node: '>=10'} + istanbul-lib-report@3.0.1: dependencies: istanbul-lib-coverage: 3.2.2 make-dir: 4.0.0 supports-color: 7.2.0 - /istanbul-lib-source-maps@4.0.1: - resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} - engines: {node: '>=10'} + istanbul-lib-source-maps@4.0.1: dependencies: - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) istanbul-lib-coverage: 3.2.2 source-map: 0.6.1 transitivePeerDependencies: - supports-color - /istanbul-reports@3.1.7: - resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} - engines: {node: '>=8'} + istanbul-reports@3.1.7: dependencies: html-escaper: 2.0.2 istanbul-lib-report: 3.0.1 - /iterate-iterator@1.0.2: - resolution: {integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==} + iterate-iterator@1.0.2: {} - /iterate-value@1.0.2: - resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==} + iterate-value@1.0.2: dependencies: es-get-iterator: 1.1.3 iterate-iterator: 1.0.2 - /iterator.prototype@1.1.2: - resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} + iterator.prototype@1.1.2: dependencies: define-properties: 1.2.1 get-intrinsic: 1.2.4 has-symbols: 1.0.3 reflect.getprototypeof: 1.0.6 set-function-name: 2.0.2 - dev: true - /jackspeak@3.4.0: - resolution: {integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==} - engines: {node: '>=14'} + jackspeak@3.4.0: dependencies: '@isaacs/cliui': 8.0.2 optionalDependencies: '@pkgjs/parseargs': 0.11.0 - dev: false - /jake@10.9.1: - resolution: {integrity: sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==} - engines: {node: '>=10'} - hasBin: true + jake@10.9.1: dependencies: async: 3.2.5 chalk: 4.1.2 filelist: 1.0.4 minimatch: 3.1.2 - dev: true - /jest-changed-files@26.6.2: - resolution: {integrity: sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==} - engines: {node: '>= 10.14.2'} + jest-changed-files@26.6.2: dependencies: '@jest/types': 26.6.2 execa: 4.1.0 throat: 5.0.0 - dev: true - /jest-changed-files@29.7.0: - resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-changed-files@29.7.0: dependencies: execa: 5.1.1 jest-util: 29.7.0 p-limit: 3.1.0 - /jest-circus@28.1.3: - resolution: {integrity: sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-circus@28.1.3: dependencies: '@jest/environment': 28.1.3 '@jest/expect': 28.1.3 @@ -38081,11 +46148,8 @@ packages: stack-utils: 2.0.6 transitivePeerDependencies: - supports-color - dev: true - /jest-circus@29.7.0: - resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-circus@29.7.0(babel-plugin-macros@3.1.0): dependencies: '@jest/environment': 29.7.0 '@jest/expect': 29.7.0 @@ -38094,7 +46158,7 @@ packages: '@types/node': 13.13.52 chalk: 4.1.2 co: 4.6.0 - dedent: 1.5.3 + dedent: 1.5.3(babel-plugin-macros@3.1.0) is-generator-fn: 2.1.0 jest-each: 29.7.0 jest-matcher-utils: 29.7.0 @@ -38111,12 +46175,9 @@ packages: - babel-plugin-macros - supports-color - /jest-cli@26.6.3(ts-node@10.9.2): - resolution: {integrity: sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==} - engines: {node: '>= 10.14.2'} - hasBin: true + jest-cli@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)): dependencies: - '@jest/core': 26.6.3(ts-node@10.9.2) + '@jest/core': 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 chalk: 4.1.2 @@ -38124,7 +46185,7 @@ packages: graceful-fs: 4.2.11 import-local: 3.1.0 is-ci: 2.0.0 - jest-config: 26.6.3(ts-node@10.9.2) + jest-config: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-util: 26.6.2 jest-validate: 26.6.2 prompts: 2.4.2 @@ -38135,74 +46196,53 @@ packages: - supports-color - ts-node - utf-8-validate - dev: true - /jest-cli@29.7.0(@types/node@13.13.52)(ts-node@10.9.2): - resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest-cli@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@13.13.52)(ts-node@10.9.2) + create-jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@13.13.52)(ts-node@10.9.2) + jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - /jest-cli@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): - resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest-cli@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)): dependencies: - '@jest/core': 29.7.0(ts-node@8.10.2) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + create-jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - dev: true - /jest-config@26.6.3(ts-node@10.9.2): - resolution: {integrity: sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==} - engines: {node: '>= 10.14.2'} - peerDependencies: - ts-node: '>=9.0.0' - peerDependenciesMeta: - ts-node: - optional: true + jest-config@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)): dependencies: '@babel/core': 7.24.7 - '@jest/test-sequencer': 26.6.3(ts-node@10.9.2) + '@jest/test-sequencer': 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) '@jest/types': 26.6.2 babel-jest: 26.6.3(@babel/core@7.24.7) chalk: 4.1.2 @@ -38212,37 +46252,26 @@ packages: jest-environment-jsdom: 26.6.2 jest-environment-node: 26.6.2 jest-get-type: 26.3.0 - jest-jasmine2: 26.6.3(ts-node@10.9.2) + jest-jasmine2: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-regex-util: 26.0.0 jest-resolve: 26.6.2 jest-util: 26.6.2 jest-validate: 26.6.2 micromatch: 4.0.7 pretty-format: 26.6.2 - ts-node: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + optionalDependencies: + ts-node: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) transitivePeerDependencies: - bufferutil - canvas - supports-color - utf-8-validate - dev: true - /jest-config@28.1.1(@types/node@13.13.52)(ts-node@10.9.1): - resolution: {integrity: sha512-tASynMhS+jVV85zKvjfbJ8nUyJS/jUSYZ5KQxLUN2ZCvcQc/OmhQl2j6VEL3ezQkNofxn5pQ3SPYWPHb0unTZA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true + jest-config@28.1.1(@types/node@13.13.52)(ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)): dependencies: '@babel/core': 7.24.7 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 13.13.52 babel-jest: 28.1.3(@babel/core@7.24.7) chalk: 4.1.0 ci-info: 3.9.0 @@ -38262,27 +46291,17 @@ packages: pretty-format: 28.1.3 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + optionalDependencies: + '@types/node': 13.13.52 + ts-node: 10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) transitivePeerDependencies: - supports-color - dev: true - /jest-config@28.1.1(@types/node@13.13.52)(ts-node@10.9.2): - resolution: {integrity: sha512-tASynMhS+jVV85zKvjfbJ8nUyJS/jUSYZ5KQxLUN2ZCvcQc/OmhQl2j6VEL3ezQkNofxn5pQ3SPYWPHb0unTZA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true + jest-config@28.1.1(@types/node@13.13.52)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)): dependencies: '@babel/core': 7.24.7 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 13.13.52 babel-jest: 28.1.3(@babel/core@7.24.7) chalk: 4.1.0 ci-info: 3.9.0 @@ -38302,34 +46321,24 @@ packages: pretty-format: 28.1.3 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + optionalDependencies: + '@types/node': 13.13.52 + ts-node: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) transitivePeerDependencies: - supports-color - dev: true - /jest-config@29.7.0(@types/node@13.13.52)(ts-node@10.9.2): - resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true + jest-config@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)): dependencies: '@babel/core': 7.24.7 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 13.13.52 babel-jest: 29.7.0(@babel/core@7.24.7) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 - jest-circus: 29.7.0 + jest-circus: 29.7.0(babel-plugin-macros@3.1.0) jest-environment-node: 29.7.0 jest-get-type: 29.6.3 jest-regex-util: 29.6.3 @@ -38342,34 +46351,25 @@ packages: pretty-format: 29.7.0 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) + optionalDependencies: + '@types/node': 13.13.52 + ts-node: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) transitivePeerDependencies: - babel-plugin-macros - supports-color - /jest-config@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): - resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true + jest-config@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)): dependencies: '@babel/core': 7.24.7 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 13.13.52 babel-jest: 29.7.0(@babel/core@7.24.7) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 - jest-circus: 29.7.0 + jest-circus: 29.7.0(babel-plugin-macros@3.1.0) jest-environment-node: 29.7.0 jest-get-type: 29.6.3 jest-regex-util: 29.6.3 @@ -38382,86 +46382,63 @@ packages: pretty-format: 29.7.0 slash: 3.0.0 strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 13.13.52 ts-node: 8.10.2(typescript@4.9.5) transitivePeerDependencies: - babel-plugin-macros - supports-color - dev: true - /jest-diff@26.6.2: - resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==} - engines: {node: '>= 10.14.2'} + jest-diff@26.6.2: dependencies: chalk: 4.1.2 diff-sequences: 26.6.2 jest-get-type: 26.3.0 pretty-format: 26.6.2 - dev: true - /jest-diff@28.1.3: - resolution: {integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-diff@28.1.3: dependencies: chalk: 4.1.0 diff-sequences: 28.1.1 jest-get-type: 28.0.2 pretty-format: 28.1.3 - dev: true - /jest-diff@29.7.0: - resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-diff@29.7.0: dependencies: chalk: 4.1.2 diff-sequences: 29.6.3 jest-get-type: 29.6.3 pretty-format: 29.7.0 - /jest-docblock@26.0.0: - resolution: {integrity: sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==} - engines: {node: '>= 10.14.2'} + jest-docblock@26.0.0: dependencies: detect-newline: 3.1.0 - dev: true - /jest-docblock@28.1.1: - resolution: {integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-docblock@28.1.1: dependencies: detect-newline: 3.1.0 - dev: true - /jest-docblock@29.7.0: - resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-docblock@29.7.0: dependencies: detect-newline: 3.1.0 - /jest-each@26.6.2: - resolution: {integrity: sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==} - engines: {node: '>= 10.14.2'} + jest-each@26.6.2: dependencies: '@jest/types': 26.6.2 chalk: 4.1.2 jest-get-type: 26.3.0 jest-util: 26.6.2 pretty-format: 26.6.2 - dev: true - /jest-each@28.1.3: - resolution: {integrity: sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-each@28.1.3: dependencies: '@jest/types': 28.1.3 chalk: 4.1.0 jest-get-type: 28.0.2 jest-util: 28.1.3 pretty-format: 28.1.3 - dev: true - /jest-each@29.7.0: - resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-each@29.7.0: dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 @@ -38469,35 +46446,19 @@ packages: jest-util: 29.7.0 pretty-format: 29.7.0 - /jest-environment-jsdom-global@2.0.4(jest-environment-jsdom@26.6.2): - resolution: {integrity: sha512-1vB8q+PrszXW4Pf7Zgp3eQ4oNVbA7GY6+jmrg1qi6RtYRWDJ60/xdkhjqAbQpX8BRyvqQJYQi66LXER5YNeHXg==} - peerDependencies: - jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x + jest-environment-jsdom-global@2.0.4(jest-environment-jsdom@26.6.2): dependencies: jest-environment-jsdom: 26.6.2 - dev: true - /jest-environment-jsdom-global@4.0.0(jest-environment-jsdom@26.6.2): - resolution: {integrity: sha512-qEV8j61oV5XhOBUQbrld2nMYKnp/AGINUaoYTtkwJ9rjvMNRN7ZaZ/dgoPpW83oFtrSiVM1gie6ajdsKFBUlLA==} - engines: {node: '>= 14'} - peerDependencies: - jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x || 27.x || 28.x || 29.x + jest-environment-jsdom-global@4.0.0(jest-environment-jsdom@26.6.2): dependencies: jest-environment-jsdom: 26.6.2 - dev: true - /jest-environment-jsdom-global@4.0.0(jest-environment-jsdom@29.7.0): - resolution: {integrity: sha512-qEV8j61oV5XhOBUQbrld2nMYKnp/AGINUaoYTtkwJ9rjvMNRN7ZaZ/dgoPpW83oFtrSiVM1gie6ajdsKFBUlLA==} - engines: {node: '>= 14'} - peerDependencies: - jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x || 27.x || 28.x || 29.x + jest-environment-jsdom-global@4.0.0(jest-environment-jsdom@29.7.0): dependencies: jest-environment-jsdom: 29.7.0 - dev: true - /jest-environment-jsdom@26.6.2: - resolution: {integrity: sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==} - engines: {node: '>= 10.14.2'} + jest-environment-jsdom@26.6.2: dependencies: '@jest/environment': 26.6.2 '@jest/fake-timers': 26.6.2 @@ -38511,16 +46472,8 @@ packages: - canvas - supports-color - utf-8-validate - dev: true - /jest-environment-jsdom@29.7.0: - resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true + jest-environment-jsdom@29.7.0: dependencies: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 @@ -38534,11 +46487,8 @@ packages: - bufferutil - supports-color - utf-8-validate - dev: true - /jest-environment-node@26.6.2: - resolution: {integrity: sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==} - engines: {node: '>= 10.14.2'} + jest-environment-node@26.6.2: dependencies: '@jest/environment': 26.6.2 '@jest/fake-timers': 26.6.2 @@ -38546,11 +46496,8 @@ packages: '@types/node': 13.13.52 jest-mock: 26.6.2 jest-util: 26.6.2 - dev: true - /jest-environment-node@28.1.3: - resolution: {integrity: sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-environment-node@28.1.3: dependencies: '@jest/environment': 28.1.3 '@jest/fake-timers': 28.1.3 @@ -38558,11 +46505,8 @@ packages: '@types/node': 13.13.52 jest-mock: 28.1.3 jest-util: 28.1.3 - dev: true - /jest-environment-node@29.7.0: - resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-environment-node@29.7.0: dependencies: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 @@ -38571,23 +46515,13 @@ packages: jest-mock: 29.7.0 jest-util: 29.7.0 - /jest-get-type@26.3.0: - resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==} - engines: {node: '>= 10.14.2'} - dev: true + jest-get-type@26.3.0: {} - /jest-get-type@28.0.2: - resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dev: true + jest-get-type@28.0.2: {} - /jest-get-type@29.6.3: - resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-get-type@29.6.3: {} - /jest-haste-map@26.6.2: - resolution: {integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==} - engines: {node: '>= 10.14.2'} + jest-haste-map@26.6.2: dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.9 @@ -38607,9 +46541,7 @@ packages: transitivePeerDependencies: - supports-color - /jest-haste-map@28.1.3: - resolution: {integrity: sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-haste-map@28.1.3: dependencies: '@jest/types': 28.1.3 '@types/graceful-fs': 4.1.9 @@ -38624,11 +46556,8 @@ packages: walker: 1.0.8 optionalDependencies: fsevents: 2.3.3 - dev: true - /jest-haste-map@29.7.0: - resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-haste-map@29.7.0: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.9 @@ -38644,9 +46573,7 @@ packages: optionalDependencies: fsevents: 2.3.3 - /jest-jasmine2@26.6.3(ts-node@10.9.2): - resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==} - engines: {node: '>= 10.14.2'} + jest-jasmine2@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)): dependencies: '@babel/traverse': 7.24.7 '@jest/environment': 26.6.2 @@ -38661,7 +46588,7 @@ packages: jest-each: 26.6.2 jest-matcher-utils: 26.6.2 jest-message-util: 26.6.2 - jest-runtime: 26.6.3(ts-node@10.9.2) + jest-runtime: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-snapshot: 26.6.2 jest-util: 26.6.2 pretty-format: 26.6.2 @@ -38672,63 +46599,44 @@ packages: - supports-color - ts-node - utf-8-validate - dev: true - /jest-leak-detector@26.6.2: - resolution: {integrity: sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==} - engines: {node: '>= 10.14.2'} + jest-leak-detector@26.6.2: dependencies: jest-get-type: 26.3.0 pretty-format: 26.6.2 - dev: true - /jest-leak-detector@28.1.3: - resolution: {integrity: sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-leak-detector@28.1.3: dependencies: jest-get-type: 28.0.2 pretty-format: 28.1.3 - dev: true - /jest-leak-detector@29.7.0: - resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-leak-detector@29.7.0: dependencies: jest-get-type: 29.6.3 pretty-format: 29.7.0 - /jest-matcher-utils@26.6.2: - resolution: {integrity: sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==} - engines: {node: '>= 10.14.2'} + jest-matcher-utils@26.6.2: dependencies: chalk: 4.1.2 jest-diff: 26.6.2 jest-get-type: 26.3.0 pretty-format: 26.6.2 - dev: true - /jest-matcher-utils@28.1.3: - resolution: {integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-matcher-utils@28.1.3: dependencies: chalk: 4.1.0 jest-diff: 28.1.3 jest-get-type: 28.0.2 pretty-format: 28.1.3 - dev: true - /jest-matcher-utils@29.7.0: - resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-matcher-utils@29.7.0: dependencies: chalk: 4.1.2 jest-diff: 29.7.0 jest-get-type: 29.6.3 pretty-format: 29.7.0 - /jest-message-util@26.6.2: - resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==} - engines: {node: '>= 10.14.2'} + jest-message-util@26.6.2: dependencies: '@babel/code-frame': 7.24.7 '@jest/types': 26.6.2 @@ -38739,11 +46647,8 @@ packages: pretty-format: 26.6.2 slash: 3.0.0 stack-utils: 2.0.6 - dev: true - /jest-message-util@28.1.3: - resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-message-util@28.1.3: dependencies: '@babel/code-frame': 7.24.7 '@jest/types': 28.1.3 @@ -38754,11 +46659,8 @@ packages: pretty-format: 28.1.3 slash: 3.0.0 stack-utils: 2.0.6 - dev: true - /jest-message-util@29.7.0: - resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-message-util@29.7.0: dependencies: '@babel/code-frame': 7.24.7 '@jest/types': 29.6.3 @@ -38770,113 +46672,60 @@ packages: slash: 3.0.0 stack-utils: 2.0.6 - /jest-mock@26.6.2: - resolution: {integrity: sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==} - engines: {node: '>= 10.14.2'} + jest-mock@26.6.2: dependencies: '@jest/types': 26.6.2 '@types/node': 13.13.52 - dev: true - /jest-mock@28.1.3: - resolution: {integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-mock@28.1.3: dependencies: '@jest/types': 28.1.3 '@types/node': 13.13.52 - dev: true - /jest-mock@29.7.0: - resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 '@types/node': 13.13.52 jest-util: 29.7.0 - /jest-pnp-resolver@1.2.3(jest-resolve@26.6.2): - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} - engines: {node: '>=6'} - peerDependencies: - jest-resolve: '*' - peerDependenciesMeta: - jest-resolve: - optional: true - dependencies: + jest-pnp-resolver@1.2.3(jest-resolve@26.6.2): + optionalDependencies: jest-resolve: 26.6.2 - dev: true - /jest-pnp-resolver@1.2.3(jest-resolve@28.1.1): - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} - engines: {node: '>=6'} - peerDependencies: - jest-resolve: '*' - peerDependenciesMeta: - jest-resolve: - optional: true - dependencies: + jest-pnp-resolver@1.2.3(jest-resolve@28.1.1): + optionalDependencies: jest-resolve: 28.1.1 - dev: true - /jest-pnp-resolver@1.2.3(jest-resolve@28.1.3): - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} - engines: {node: '>=6'} - peerDependencies: - jest-resolve: '*' - peerDependenciesMeta: - jest-resolve: - optional: true - dependencies: + jest-pnp-resolver@1.2.3(jest-resolve@28.1.3): + optionalDependencies: jest-resolve: 28.1.3 - dev: true - /jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} - engines: {node: '>=6'} - peerDependencies: - jest-resolve: '*' - peerDependenciesMeta: - jest-resolve: - optional: true - dependencies: + jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): + optionalDependencies: jest-resolve: 29.7.0 - /jest-regex-util@26.0.0: - resolution: {integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==} - engines: {node: '>= 10.14.2'} + jest-regex-util@26.0.0: {} - /jest-regex-util@28.0.2: - resolution: {integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dev: true + jest-regex-util@28.0.2: {} - /jest-regex-util@29.6.3: - resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-regex-util@29.6.3: {} - /jest-resolve-dependencies@26.6.3: - resolution: {integrity: sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==} - engines: {node: '>= 10.14.2'} + jest-resolve-dependencies@26.6.3: dependencies: '@jest/types': 26.6.2 jest-regex-util: 26.0.0 jest-snapshot: 26.6.2 transitivePeerDependencies: - supports-color - dev: true - /jest-resolve-dependencies@29.7.0: - resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-resolve-dependencies@29.7.0: dependencies: jest-regex-util: 29.6.3 jest-snapshot: 29.7.0 transitivePeerDependencies: - supports-color - /jest-resolve@26.6.2: - resolution: {integrity: sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==} - engines: {node: '>= 10.14.2'} + jest-resolve@26.6.2: dependencies: '@jest/types': 26.6.2 chalk: 4.1.2 @@ -38886,11 +46735,8 @@ packages: read-pkg-up: 7.0.1 resolve: 1.22.8 slash: 3.0.0 - dev: true - /jest-resolve@28.1.1: - resolution: {integrity: sha512-/d1UbyUkf9nvsgdBildLe6LAD4DalgkgZcKd0nZ8XUGPyA/7fsnaQIlKVnDiuUXv/IeZhPEDrRJubVSulxrShA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-resolve@28.1.1: dependencies: chalk: 4.1.0 graceful-fs: 4.2.11 @@ -38901,11 +46747,8 @@ packages: resolve: 1.22.8 resolve.exports: 1.1.0 slash: 3.0.0 - dev: true - /jest-resolve@28.1.3: - resolution: {integrity: sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-resolve@28.1.3: dependencies: chalk: 4.1.0 graceful-fs: 4.2.11 @@ -38916,11 +46759,8 @@ packages: resolve: 1.22.8 resolve.exports: 1.1.0 slash: 3.0.0 - dev: true - /jest-resolve@29.7.0: - resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-resolve@29.7.0: dependencies: chalk: 4.1.2 graceful-fs: 4.2.11 @@ -38932,9 +46772,7 @@ packages: resolve.exports: 2.0.2 slash: 3.0.0 - /jest-runner@26.6.3(ts-node@10.9.2): - resolution: {integrity: sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==} - engines: {node: '>= 10.14.2'} + jest-runner@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)): dependencies: '@jest/console': 26.6.2 '@jest/environment': 26.6.2 @@ -38945,13 +46783,13 @@ packages: emittery: 0.7.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 26.6.3(ts-node@10.9.2) + jest-config: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-docblock: 26.0.0 jest-haste-map: 26.6.2 jest-leak-detector: 26.6.2 jest-message-util: 26.6.2 jest-resolve: 26.6.2 - jest-runtime: 26.6.3(ts-node@10.9.2) + jest-runtime: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-util: 26.6.2 jest-worker: 26.6.2 source-map-support: 0.5.21 @@ -38962,11 +46800,8 @@ packages: - supports-color - ts-node - utf-8-validate - dev: true - /jest-runner@28.1.3: - resolution: {integrity: sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-runner@28.1.3: dependencies: '@jest/console': 28.1.3 '@jest/environment': 28.1.3 @@ -38991,11 +46826,8 @@ packages: source-map-support: 0.5.13 transitivePeerDependencies: - supports-color - dev: true - /jest-runner@29.7.0: - resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-runner@29.7.0: dependencies: '@jest/console': 29.7.0 '@jest/environment': 29.7.0 @@ -39021,10 +46853,7 @@ packages: transitivePeerDependencies: - supports-color - /jest-runtime@26.6.3(ts-node@10.9.2): - resolution: {integrity: sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==} - engines: {node: '>= 10.14.2'} - hasBin: true + jest-runtime@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)): dependencies: '@jest/console': 26.6.2 '@jest/environment': 26.6.2 @@ -39041,7 +46870,7 @@ packages: exit: 0.1.2 glob: 7.2.3 graceful-fs: 4.2.11 - jest-config: 26.6.3(ts-node@10.9.2) + jest-config: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-haste-map: 26.6.2 jest-message-util: 26.6.2 jest-mock: 26.6.2 @@ -39059,11 +46888,8 @@ packages: - supports-color - ts-node - utf-8-validate - dev: true - /jest-runtime@28.1.3: - resolution: {integrity: sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-runtime@28.1.3: dependencies: '@jest/environment': 28.1.3 '@jest/fake-timers': 28.1.3 @@ -39089,11 +46915,8 @@ packages: strip-bom: 4.0.0 transitivePeerDependencies: - supports-color - dev: true - /jest-runtime@29.7.0: - resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-runtime@29.7.0: dependencies: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 @@ -39120,16 +46943,12 @@ packages: transitivePeerDependencies: - supports-color - /jest-serializer@26.6.2: - resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} - engines: {node: '>= 10.14.2'} + jest-serializer@26.6.2: dependencies: '@types/node': 13.13.52 graceful-fs: 4.2.11 - /jest-snapshot@26.6.2: - resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==} - engines: {node: '>= 10.14.2'} + jest-snapshot@26.6.2: dependencies: '@babel/types': 7.24.7 '@jest/types': 26.6.2 @@ -39149,11 +46968,8 @@ packages: semver: 7.6.2 transitivePeerDependencies: - supports-color - dev: true - /jest-snapshot@28.1.3: - resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-snapshot@28.1.3: dependencies: '@babel/core': 7.24.7 '@babel/generator': 7.24.7 @@ -39180,11 +46996,8 @@ packages: semver: 7.6.2 transitivePeerDependencies: - supports-color - dev: true - /jest-snapshot@29.7.0: - resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-snapshot@29.7.0: dependencies: '@babel/core': 7.24.7 '@babel/generator': 7.24.7 @@ -39209,9 +47022,7 @@ packages: transitivePeerDependencies: - supports-color - /jest-util@26.6.2: - resolution: {integrity: sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==} - engines: {node: '>= 10.14.2'} + jest-util@26.6.2: dependencies: '@jest/types': 26.6.2 '@types/node': 13.13.52 @@ -39220,9 +47031,7 @@ packages: is-ci: 2.0.0 micromatch: 4.0.7 - /jest-util@28.1.1: - resolution: {integrity: sha512-FktOu7ca1DZSyhPAxgxB6hfh2+9zMoJ7aEQA759Z6p45NuO8mWcqujH+UdHlCm/V6JTWwDztM2ITCzU1ijJAfw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-util@28.1.1: dependencies: '@jest/types': 28.1.3 '@types/node': 13.13.52 @@ -39230,11 +47039,8 @@ packages: ci-info: 3.9.0 graceful-fs: 4.2.11 picomatch: 2.3.1 - dev: true - /jest-util@28.1.3: - resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-util@28.1.3: dependencies: '@jest/types': 28.1.3 '@types/node': 13.13.52 @@ -39242,11 +47048,8 @@ packages: ci-info: 3.9.0 graceful-fs: 4.2.11 picomatch: 2.3.1 - dev: true - /jest-util@29.7.0: - resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 '@types/node': 13.13.52 @@ -39255,9 +47058,7 @@ packages: graceful-fs: 4.2.11 picomatch: 2.3.1 - /jest-validate@26.6.2: - resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==} - engines: {node: '>= 10.14.2'} + jest-validate@26.6.2: dependencies: '@jest/types': 26.6.2 camelcase: 6.3.0 @@ -39265,11 +47066,8 @@ packages: jest-get-type: 26.3.0 leven: 3.1.0 pretty-format: 26.6.2 - dev: true - /jest-validate@28.1.3: - resolution: {integrity: sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-validate@28.1.3: dependencies: '@jest/types': 28.1.3 camelcase: 6.3.0 @@ -39277,11 +47075,8 @@ packages: jest-get-type: 28.0.2 leven: 3.1.0 pretty-format: 28.1.3 - dev: true - /jest-validate@29.7.0: - resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-validate@29.7.0: dependencies: '@jest/types': 29.6.3 camelcase: 6.3.0 @@ -39290,9 +47085,7 @@ packages: leven: 3.1.0 pretty-format: 29.7.0 - /jest-watcher@26.6.2: - resolution: {integrity: sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==} - engines: {node: '>= 10.14.2'} + jest-watcher@26.6.2: dependencies: '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 @@ -39301,11 +47094,8 @@ packages: chalk: 4.1.2 jest-util: 26.6.2 string-length: 4.0.2 - dev: true - /jest-watcher@28.1.3: - resolution: {integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-watcher@28.1.3: dependencies: '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 @@ -39315,11 +47105,8 @@ packages: emittery: 0.10.2 jest-util: 28.1.3 string-length: 4.0.2 - dev: true - /jest-watcher@29.7.0: - resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-watcher@29.7.0: dependencies: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 @@ -39330,179 +47117,117 @@ packages: jest-util: 29.7.0 string-length: 4.0.2 - /jest-worker@26.6.2: - resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} - engines: {node: '>= 10.13.0'} + jest-worker@26.6.2: dependencies: '@types/node': 13.13.52 merge-stream: 2.0.0 supports-color: 7.2.0 - /jest-worker@27.5.1: - resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} - engines: {node: '>= 10.13.0'} + jest-worker@27.5.1: dependencies: '@types/node': 13.13.52 merge-stream: 2.0.0 supports-color: 8.1.1 - /jest-worker@28.1.3: - resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-worker@28.1.3: dependencies: '@types/node': 13.13.52 merge-stream: 2.0.0 supports-color: 8.1.1 - dev: true - /jest-worker@29.7.0: - resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-worker@29.7.0: dependencies: '@types/node': 13.13.52 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 - /jest@26.6.3(ts-node@10.9.2): - resolution: {integrity: sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==} - engines: {node: '>= 10.14.2'} - hasBin: true + jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)): dependencies: - '@jest/core': 26.6.3(ts-node@10.9.2) + '@jest/core': 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) import-local: 3.1.0 - jest-cli: 26.6.3(ts-node@10.9.2) + jest-cli: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) transitivePeerDependencies: - bufferutil - canvas - supports-color - ts-node - utf-8-validate - dev: true - /jest@29.7.0(@types/node@13.13.52)(ts-node@10.9.2): - resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@13.13.52)(ts-node@10.9.2) + jest-cli: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - /jest@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): - resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)): dependencies: - '@jest/core': 29.7.0(ts-node@8.10.2) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + jest-cli: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - dev: true - /jju@1.4.0: - resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} - dev: true + jju@1.4.0: {} - /joi@17.13.3: - resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} + joi@17.13.3: dependencies: '@hapi/hoek': 9.3.0 '@hapi/topo': 5.1.0 '@sideway/address': 4.1.5 '@sideway/formula': 3.0.1 '@sideway/pinpoint': 2.0.0 - dev: false - /jose@4.15.7: - resolution: {integrity: sha512-L7ioP+JAuZe8v+T5+zVI9Tx8LtU8BL7NxkyDFVMv+Qr3JW0jSoYDedLtodaXwfqMpeCyx4WXFNyu9tJt4WvC1A==} - dev: false + jose@4.15.7: {} - /jquery@3.7.1: - resolution: {integrity: sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==} - dev: true + jquery@3.7.1: {} - /js-beautify@1.15.1: - resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==} - engines: {node: '>=14'} - hasBin: true + js-beautify@1.15.1: dependencies: config-chain: 1.1.13 editorconfig: 1.0.4 glob: 10.4.2 js-cookie: 3.0.5 nopt: 7.2.1 - dev: false - /js-cookie@3.0.5: - resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} - engines: {node: '>=14'} - dev: false + js-cookie@3.0.5: {} - /js-levenshtein@1.1.6: - resolution: {integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==} - engines: {node: '>=0.10.0'} - dev: true + js-levenshtein@1.1.6: {} - /js-string-escape@1.0.1: - resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} - engines: {node: '>= 0.8'} + js-string-escape@1.0.1: {} - /js-tokens@3.0.2: - resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==} - dev: true + js-tokens@3.0.2: {} - /js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + js-tokens@4.0.0: {} - /js-yaml@3.13.1: - resolution: {integrity: sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==} - hasBin: true + js-yaml@3.13.1: dependencies: argparse: 1.0.10 esprima: 4.0.1 - /js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true + js-yaml@4.1.0: dependencies: argparse: 2.0.1 - dev: true - /jsbn@0.1.1: - resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} - dev: true + jsbn@0.1.1: {} - /jsbn@1.1.0: - resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} - dev: true + jsbn@1.1.0: {} - /jscodeshift@0.13.1(@babel/preset-env@7.24.7): - resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==} - hasBin: true - peerDependencies: - '@babel/preset-env': ^7.1.6 + jscodeshift@0.13.1(@babel/preset-env@7.24.7(@babel/core@7.24.7)): dependencies: '@babel/core': 7.24.7 '@babel/parser': 7.24.7 @@ -39526,16 +47251,8 @@ packages: write-file-atomic: 2.4.3 transitivePeerDependencies: - supports-color - dev: false - /jsdom@16.7.0: - resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} - engines: {node: '>=10'} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true + jsdom@16.7.0: dependencies: abab: 2.0.6 acorn: 8.12.0 @@ -39568,16 +47285,8 @@ packages: - bufferutil - supports-color - utf-8-validate - dev: true - /jsdom@20.0.3: - resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} - engines: {node: '>=14'} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true + jsdom@20.0.3: dependencies: abab: 2.0.6 acorn: 8.12.0 @@ -39609,25 +47318,12 @@ packages: - bufferutil - supports-color - utf-8-validate - dev: true - /jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} - hasBin: true + jsesc@0.5.0: {} - /jsesc@1.3.0: - resolution: {integrity: sha512-Mke0DA0QjUWuJlhsE0ZPPhYiJkRap642SmI/4ztCFaUs6V2AiH1sfecc+57NgaryfAA2VR3v6O+CSjC1jZJKOA==} - hasBin: true - dev: true - - /jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} - hasBin: true + jsesc@2.5.2: {} - /jshint@2.13.6: - resolution: {integrity: sha512-IVdB4G0NTTeQZrBoM8C5JFVLjV2KtZ9APgybDA1MK73xb09qFs0jCXyQLnCOp1cSZZZbvhq/6mfXHUTaDkffuQ==} - hasBin: true + jshint@2.13.6: dependencies: cli: 1.0.1 console-browserify: 1.1.0 @@ -39636,240 +47332,140 @@ packages: lodash: 4.17.21 minimatch: 3.0.8 strip-json-comments: 1.0.4 - dev: false - /json-buffer@3.0.0: - resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} - dev: false + json-buffer@3.0.0: {} - /json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + json-buffer@3.0.1: {} - /json-minimizer-webpack-plugin@4.0.0(webpack@5.84.1): - resolution: {integrity: sha512-PJaNiSeZlZStdyLtJo/QOOC7uHRW9qvc//7F8M0ZH1huPSvmX5kR2qrq2Tn1ODYLi128bTkKepqtgYmtEOkPzQ==} - engines: {node: '>= 14.15.0'} - peerDependencies: - webpack: 5.84.1 + json-minimizer-webpack-plugin@4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: schema-utils: 4.2.0 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /json-minimizer-webpack-plugin@5.0.0(webpack@5.84.1): - resolution: {integrity: sha512-GT/SZolN2p405EMGjMTBvAVi2+y035p1tSOuLpWbp5QTMl080OHx4DEGXfUH6vbnGw5Z/QKfBe+KpP9Dj0qLmA==} - engines: {node: '>= 18.12.0'} - peerDependencies: - webpack: 5.84.1 + json-minimizer-webpack-plugin@5.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: schema-utils: 4.2.0 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true - - /json-parse-better-errors@1.0.2: - resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + json-parse-better-errors@1.0.2: {} - /json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + json-parse-even-better-errors@2.3.1: {} - /json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + json-schema-traverse@0.4.1: {} - /json-schema@0.4.0: - resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} - dev: true + json-schema-traverse@1.0.0: {} - /json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + json-schema@0.4.0: {} - /json-stringify-nice@1.1.4: - resolution: {integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==} - dev: true + json-stable-stringify-without-jsonify@1.0.1: {} - /json-stringify-safe@5.0.1: - resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} - dev: true + json-stringify-nice@1.1.4: {} - /json5@0.5.1: - resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==} - hasBin: true - dev: true + json-stringify-safe@5.0.1: {} - /json5@1.0.2: - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} - hasBin: true + json5@1.0.2: dependencies: minimist: 1.2.8 - /json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} - hasBin: true + json5@2.2.3: {} - /jsonc-eslint-parser@2.4.0: - resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + jsonc-eslint-parser@2.4.0: dependencies: acorn: 8.12.0 eslint-visitor-keys: 3.4.3 espree: 9.6.1 semver: 7.6.2 - dev: true - /jsonc-parser@3.2.0: - resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} - dev: true + jsonc-parser@3.2.0: {} - /jsonfile@4.0.0: - resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + jsonfile@4.0.0: optionalDependencies: graceful-fs: 4.2.11 - dev: true - /jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + jsonfile@6.1.0: dependencies: universalify: 2.0.1 optionalDependencies: graceful-fs: 4.2.11 - /jsonparse@1.3.1: - resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} - engines: {'0': node >= 0.2.0} - dev: true + jsonparse@1.3.1: {} - /jsprim@2.0.2: - resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==} - engines: {'0': node >=0.6.0} + jsprim@2.0.2: dependencies: assert-plus: 1.0.0 extsprintf: 1.3.0 json-schema: 0.4.0 verror: 1.10.0 - dev: true - /jsrsasign@10.9.0: - resolution: {integrity: sha512-QWLUikj1SBJGuyGK8tjKSx3K7Y69KYJnrs/pQ1KZ6wvZIkHkWjZ1PJDpuvc1/28c1uP0KW9qn1eI1LzHQqDOwQ==} - dev: false + jsrsasign@10.9.0: {} - /jsx-ast-utils@3.3.5: - resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} - engines: {node: '>=4.0'} + jsx-ast-utils@3.3.5: dependencies: array-includes: 3.1.8 array.prototype.flat: 1.3.2 object.assign: 4.1.5 object.values: 1.2.0 - dev: true - /junk@3.1.0: - resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==} - engines: {node: '>=8'} + junk@3.1.0: {} - /just-diff-apply@5.5.0: - resolution: {integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==} - dev: true + just-diff-apply@5.5.0: {} - /just-diff@5.2.0: - resolution: {integrity: sha512-6ufhP9SHjb7jibNFrNxyFZ6od3g+An6Ai9mhGRvcYe8UJlH0prseN64M+6ZBBUoKYHZsitDP42gAJ8+eVWr3lw==} - dev: true + just-diff@5.2.0: {} - /keyboard-key@1.1.0: - resolution: {integrity: sha512-qkBzPTi3rlAKvX7k0/ub44sqOfXeLc/jcnGGmj5c7BJpU8eDrEVPyhCvNYAaoubbsLm9uGWwQJO1ytQK1a9/dQ==} - dev: false + keyboard-key@1.1.0: {} - /keyv@3.1.0: - resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} + keyv@3.1.0: dependencies: json-buffer: 3.0.0 - dev: false - /keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + keyv@4.5.4: dependencies: json-buffer: 3.0.1 - /killable@1.0.1: - resolution: {integrity: sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==} + killable@1.0.1: {} - /kind-of@2.0.1: - resolution: {integrity: sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==} - engines: {node: '>=0.10.0'} + kind-of@2.0.1: dependencies: is-buffer: 1.1.6 - /kind-of@3.2.2: - resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} - engines: {node: '>=0.10.0'} + kind-of@3.2.2: dependencies: is-buffer: 1.1.6 - /kind-of@4.0.0: - resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} - engines: {node: '>=0.10.0'} + kind-of@4.0.0: dependencies: is-buffer: 1.1.6 - /kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} + kind-of@6.0.3: {} - /kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: '>=6'} + kleur@3.0.3: {} - /kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} - dev: true + kleur@4.1.5: {} - /klona@2.0.6: - resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} - engines: {node: '>= 8'} + klona@2.0.6: {} - /language-subtag-registry@0.3.23: - resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} - dev: true + language-subtag-registry@0.3.23: {} - /language-tags@1.0.9: - resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} - engines: {node: '>=0.10'} + language-tags@1.0.9: dependencies: language-subtag-registry: 0.3.23 - dev: true - /latest-version@5.1.0: - resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==} - engines: {node: '>=8'} + latest-version@5.1.0: dependencies: package-json: 6.5.0 - dev: false - /launch-editor@2.8.0: - resolution: {integrity: sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==} + launch-editor@2.8.0: dependencies: picocolors: 1.0.1 shell-quote: 1.8.1 - dev: true - /lazy-ass@1.6.0: - resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==} - engines: {node: '> 0.8'} - dev: true + lazy-ass@1.6.0: {} - /lazy-cache@0.2.7: - resolution: {integrity: sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==} - engines: {node: '>=0.10.0'} + lazy-cache@0.2.7: {} - /lazy-cache@1.0.4: - resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==} - engines: {node: '>=0.10.0'} + lazy-cache@1.0.4: {} - /lazy-universal-dotenv@3.0.1: - resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==} - engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'} + lazy-universal-dotenv@3.0.1: dependencies: '@babel/runtime': 7.24.7 app-root-dir: 1.0.2 @@ -39877,10 +47473,7 @@ packages: dotenv: 8.6.0 dotenv-expand: 5.1.0 - /lerna@5.6.2(@swc-node/register@1.9.2)(@swc/core@1.6.5): - resolution: {integrity: sha512-Y0yMPslvnBnTZi7Nrs/gDyYZYauNf61xWNCehISHIORxZmmpoluNkcWTfcyb47is5uJQCv5QJX5xKKubbs+a6w==} - engines: {node: ^14.15.0 || >=16.0.0} - hasBin: true + lerna@5.6.2(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13): dependencies: '@lerna/add': 5.6.2 '@lerna/bootstrap': 5.6.2 @@ -39896,14 +47489,14 @@ packages: '@lerna/init': 5.6.2 '@lerna/link': 5.6.2 '@lerna/list': 5.6.2 - '@lerna/publish': 5.6.2(nx@14.8.8)(typescript@4.9.5) + '@lerna/publish': 5.6.2(encoding@0.1.13)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) '@lerna/run': 5.6.2 - '@lerna/version': 5.6.2(nx@14.8.8)(typescript@4.9.5) - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) + '@lerna/version': 5.6.2(encoding@0.1.13)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) import-local: 3.1.0 inquirer: 8.2.6 npmlog: 6.0.2 - nx: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5) + nx: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)) typescript: 4.9.5 transitivePeerDependencies: - '@swc-node/register' @@ -39912,59 +47505,33 @@ packages: - debug - encoding - supports-color - dev: true - /less-loader@10.2.0(less@3.12.2)(webpack@5.84.1): - resolution: {integrity: sha512-AV5KHWvCezW27GT90WATaDnfXBv99llDbtaj4bshq6DvAihMdNjaPDcUMa6EXKLRF+P2opFenJp89BXg91XLYg==} - engines: {node: '>= 12.13.0'} - peerDependencies: - less: ^3.5.0 || ^4.0.0 - webpack: 5.84.1 + less-loader@10.2.0(less@3.12.2)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: klona: 2.0.6 less: 3.12.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /less-loader@5.0.0(less@3.13.1)(webpack@5.84.1): - resolution: {integrity: sha512-bquCU89mO/yWLaUq0Clk7qCsKhsF/TZpJUzETRvJa9KSVEL9SO3ovCvdEHISBhrC81OwC8QSVX7E0bzElZj9cg==} - engines: {node: '>= 4.8.0'} - peerDependencies: - less: ^2.3.1 || ^3.0.0 - webpack: 5.84.1 + less-loader@5.0.0(less@3.12.2)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: clone: 2.1.2 - less: 3.13.1 + less: 3.12.2 loader-utils: 1.4.2 pify: 4.0.1 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /less-plugin-inline-urls@1.2.0: - resolution: {integrity: sha512-QS9MLcg8Lo6ZHVS+9kncmHeLypIdnFgG/neqV3RPkXfiiSCJHn/jTQHKnXfDEL/F/JM+z6MQ6ukWr/xsOChHTA==} - engines: {node: '>=0.4.2'} - dev: true + less-plugin-inline-urls@1.2.0: {} - /less-plugin-npm-import@2.1.0: - resolution: {integrity: sha512-f7pVkEooRq2/jge/M/Y+spoPXj5rRIY30q1as+3kZsDG8Rs+loNJUCVQjzXB9Ao/9FeIJULiq2zrXymv+OMTbw==} - engines: {node: '>=0.4.2'} + less-plugin-npm-import@2.1.0: dependencies: promise: 7.0.4 resolve: 1.1.7 - dev: true - /less-plugin-rewrite-import@0.1.1: - resolution: {integrity: sha512-8FnuGhF0rS6P9DkaEH2+6pphx7pJ9hV4mHF2MhsXKSXNvwTVX9YCt5HnX99mhTOyQzc+2hu5JPPoRl/b9DAwuQ==} - dev: true + less-plugin-rewrite-import@0.1.1: {} - /less-plugin-rewrite-variable@0.1.0: - resolution: {integrity: sha512-cpIa1+wHssZRt2aUnoWODfDB0z0QM8ir9ZS/18802bX9S4+6s+/HXaK92C3VznniPjviKhA3u8o4/0K9HK0nEw==} - engines: {node: '>=0.4.2'} - dev: true + less-plugin-rewrite-variable@0.1.0: {} - /less-to-json@1.2.0: - resolution: {integrity: sha512-1ItmxVFw76yiQgr2MUTGy7bTHT2tT6CcZ28grgw/gWNy2Q3WwFfSHL88sWUBpTXGFonlKd2yCDhtJFJdGjzqHA==} - hasBin: true + less-to-json@1.2.0: dependencies: commander: 2.20.3 fs: 0.0.1-security @@ -39973,19 +47540,12 @@ packages: path: 0.12.7 transitivePeerDependencies: - supports-color - dev: true - /less-vars-to-js@1.3.0: - resolution: {integrity: sha512-xeiLLn/IMCGtdyCkYQnW8UuzoW2oYMCKg9boZRaGI58fLz5r90bNJDlqGzmVt/1Uqk75/DxIVtQSNCMkE5fRZQ==} - engines: {node: '>=8'} + less-vars-to-js@1.3.0: dependencies: strip-json-comments: 2.0.1 - dev: true - /less@3.12.2: - resolution: {integrity: sha512-+1V2PCMFkL+OIj2/HrtrvZw0BC0sYLMICJfbQjuj/K8CEnlrFX6R5cKKgzzttsZDHyxQNL1jqMREjKN3ja/E3Q==} - engines: {node: '>=6'} - hasBin: true + less@3.12.2: dependencies: tslib: 1.14.1 optionalDependencies: @@ -39996,12 +47556,8 @@ packages: mime: 1.6.0 native-request: 1.1.0 source-map: 0.6.1 - dev: true - /less@3.13.1: - resolution: {integrity: sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==} - engines: {node: '>=6'} - hasBin: true + less@3.13.1: dependencies: copy-anything: 2.0.6 tslib: 1.14.1 @@ -40013,22 +47569,15 @@ packages: mime: 1.6.0 native-request: 1.1.0 source-map: 0.6.1 - dev: true - /leven@3.1.0: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} - engines: {node: '>=6'} + leven@3.1.0: {} - /levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} + levn@0.4.1: dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 - /libnpmaccess@6.0.4: - resolution: {integrity: sha512-qZ3wcfIyUoW0+qSFkMBovcTrSGJ3ZeyvpR7d5N9pEYv/kXs8sHP2wiqEIXBKLFrZlmM0kR0RJD7mtfLngtlLag==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + libnpmaccess@6.0.4: dependencies: aproba: 2.0.0 minipass: 3.3.6 @@ -40037,11 +47586,8 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /libnpmpublish@6.0.5: - resolution: {integrity: sha512-LUR08JKSviZiqrYTDfywvtnsnxr+tOvBU0BF8H+9frt7HMvc6Qn6F8Ubm72g5hDTHbq8qupKfDvDAln2TVPvFg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + libnpmpublish@6.0.5: dependencies: normalize-package-data: 4.0.1 npm-package-arg: 9.1.2 @@ -40051,362 +47597,229 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /license-webpack-plugin@4.0.2(webpack@5.84.1): - resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==} - peerDependencies: - webpack: '*' - peerDependenciesMeta: - webpack: - optional: true - webpack-sources: - optional: true + license-webpack-plugin@4.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) webpack-sources: 3.2.3 - dev: true + optionalDependencies: + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /lilconfig@2.1.0: - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} - engines: {node: '>=10'} - dev: true + lilconfig@2.1.0: {} - /lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + lines-and-columns@1.2.4: {} - /listr2@3.14.0(enquirer@2.4.1): - resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==} - engines: {node: '>=10.0.0'} - peerDependencies: - enquirer: '>= 2.3.0 < 3' - peerDependenciesMeta: - enquirer: - optional: true + listr2@3.14.0(enquirer@2.4.1): dependencies: cli-truncate: 2.1.0 colorette: 2.0.20 - enquirer: 2.4.1 log-update: 4.0.0 p-map: 4.0.0 rfdc: 1.4.1 rxjs: 7.8.1 through: 2.3.8 wrap-ansi: 7.0.0 - dev: true + optionalDependencies: + enquirer: 2.4.1 - /load-json-file@1.1.0: - resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==} - engines: {node: '>=0.10.0'} - requiresBuild: true + load-json-file@1.1.0: dependencies: graceful-fs: 4.2.11 parse-json: 2.2.0 pify: 2.3.0 pinkie-promise: 2.0.1 strip-bom: 2.0.0 - dev: false optional: true - /load-json-file@4.0.0: - resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} - engines: {node: '>=4'} + load-json-file@4.0.0: dependencies: graceful-fs: 4.2.11 parse-json: 4.0.0 pify: 3.0.0 strip-bom: 3.0.0 - dev: true - /load-json-file@6.2.0: - resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==} - engines: {node: '>=8'} + load-json-file@6.2.0: dependencies: graceful-fs: 4.2.11 parse-json: 5.2.0 strip-bom: 4.0.0 type-fest: 0.6.0 - dev: true - /load-yaml-file@0.2.0: - resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} - engines: {node: '>=6'} + load-yaml-file@0.2.0: dependencies: graceful-fs: 4.2.11 js-yaml: 3.13.1 pify: 4.0.1 strip-bom: 3.0.0 - dev: true - /loader-runner@2.4.0: - resolution: {integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==} - engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} - dev: true + loader-runner@2.4.0: {} - /loader-runner@4.3.0: - resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} - engines: {node: '>=6.11.5'} + loader-runner@4.3.0: {} - /loader-utils@1.2.3: - resolution: {integrity: sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==} - engines: {node: '>=4.0.0'} + loader-utils@1.2.3: dependencies: big.js: 5.2.2 emojis-list: 2.1.0 json5: 1.0.2 - dev: true - /loader-utils@1.4.2: - resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} - engines: {node: '>=4.0.0'} + loader-utils@1.4.2: dependencies: big.js: 5.2.2 emojis-list: 3.0.0 json5: 1.0.2 - /loader-utils@2.0.4: - resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} - engines: {node: '>=8.9.0'} + loader-utils@2.0.4: dependencies: big.js: 5.2.2 emojis-list: 3.0.0 json5: 2.2.3 - /loader-utils@3.3.1: - resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} - engines: {node: '>= 12.13.0'} - dev: true + loader-utils@3.3.1: {} - /locate-path@2.0.0: - resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} - engines: {node: '>=4'} + locate-path@2.0.0: dependencies: p-locate: 2.0.0 path-exists: 3.0.0 - dev: true - /locate-path@3.0.0: - resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} - engines: {node: '>=6'} + locate-path@3.0.0: dependencies: p-locate: 3.0.0 path-exists: 3.0.0 - /locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} + locate-path@5.0.0: dependencies: p-locate: 4.1.0 - /locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} + locate-path@6.0.0: dependencies: p-locate: 5.0.0 - /lodash-es@4.17.21: - resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} - dev: false + lodash-es@4.17.21: {} - /lodash.camelcase@4.3.0: - resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + lodash.camelcase@4.3.0: {} - /lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + lodash.debounce@4.0.8: {} - /lodash.flattendeep@4.4.0: - resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} - dev: true + lodash.flattendeep@4.4.0: {} - /lodash.ismatch@4.4.0: - resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} - dev: true + lodash.ismatch@4.4.0: {} - /lodash.isplainobject@4.0.6: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} - dev: false + lodash.isplainobject@4.0.6: {} - /lodash.memoize@4.1.2: - resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + lodash.memoize@4.1.2: {} - /lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + lodash.merge@4.6.2: {} - /lodash.once@4.1.1: - resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} - dev: true + lodash.once@4.1.1: {} - /lodash.startcase@4.4.0: - resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} - dev: true + lodash.startcase@4.4.0: {} - /lodash.truncate@4.4.2: - resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} + lodash.truncate@4.4.2: {} - /lodash.uniq@4.5.0: - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + lodash.uniq@4.5.0: {} - /lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + lodash@4.17.21: {} - /log-symbols@2.2.0: - resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==} - engines: {node: '>=4'} + log-symbols@2.2.0: dependencies: chalk: 2.4.2 - dev: true - /log-symbols@4.1.0: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} - engines: {node: '>=10'} + log-symbols@4.1.0: dependencies: chalk: 4.1.2 is-unicode-supported: 0.1.0 - dev: true - /log-update@4.0.0: - resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} - engines: {node: '>=10'} + log-update@4.0.0: dependencies: ansi-escapes: 4.3.2 cli-cursor: 3.1.0 slice-ansi: 4.0.0 wrap-ansi: 6.2.0 - dev: true - /log4js@4.5.1: - resolution: {integrity: sha512-EEEgFcE9bLgaYUKuozyFfytQM2wDHtXn4tAN41pkaxpNjAykv11GVdeI4tHtmPWW4Xrgh9R/2d7XYghDVjbKKw==} - engines: {node: '>=6.0'} - deprecated: 4.x is no longer supported. Please upgrade to 6.x or higher. + log4js@4.5.1: dependencies: date-format: 2.1.0 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) flatted: 2.0.2 rfdc: 1.4.1 streamroller: 1.0.6 transitivePeerDependencies: - supports-color - dev: true - /loglevel@1.9.1: - resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==} - engines: {node: '>= 0.6.0'} + loglevel@1.9.1: {} - /loglevelnext@1.0.5: - resolution: {integrity: sha512-V/73qkPuJmx4BcBF19xPBr+0ZRVBhc4POxvZTZdMeXpJ4NItXSJ/MSwuFT0kQJlCbXvdlZoQQ/418bS1y9Jh6A==} - engines: {node: '>= 6'} + loglevelnext@1.0.5: dependencies: es6-symbol: 3.1.4 object.assign: 4.1.5 - dev: true - /loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} - hasBin: true + longest-streak@3.1.0: {} + + loose-envify@1.4.0: dependencies: js-tokens: 4.0.0 - /loud-rejection@1.6.0: - resolution: {integrity: sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==} - engines: {node: '>=0.10.0'} - requiresBuild: true + loud-rejection@1.6.0: dependencies: currently-unhandled: 0.4.1 signal-exit: 3.0.7 - dev: false optional: true - /lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + lower-case@2.0.2: dependencies: tslib: 2.6.3 - /lowercase-keys@1.0.1: - resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} - engines: {node: '>=0.10.0'} - dev: false + lowercase-keys@1.0.1: {} - /lowercase-keys@2.0.0: - resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} - engines: {node: '>=8'} + lowercase-keys@2.0.0: {} - /lowlight@1.20.0: - resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==} + lowlight@1.20.0: dependencies: fault: 1.0.4 highlight.js: 10.7.3 - dev: true - /lru-cache@10.2.2: - resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==} - engines: {node: 14 || >=16.14} - dev: false + lru-cache@10.2.2: {} - /lru-cache@4.1.5: - resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} + lru-cache@4.1.5: dependencies: pseudomap: 1.0.2 yallist: 2.1.2 - dev: true - /lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + lru-cache@5.1.1: dependencies: yallist: 3.1.1 - /lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} + lru-cache@6.0.0: dependencies: yallist: 4.0.0 - /lru-cache@7.18.3: - resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} - engines: {node: '>=12'} - dev: true + lru-cache@7.18.3: {} - /lz-string@1.5.0: - resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} - hasBin: true - dev: true + lz-string@1.5.0: {} - /magic-string@0.25.9: - resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + magic-string@0.25.9: dependencies: sourcemap-codec: 1.4.8 - dev: true - /magic-string@0.30.10: - resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} + magic-string@0.30.10: dependencies: '@jridgewell/sourcemap-codec': 1.4.15 - dev: true - /make-dir@2.1.0: - resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} - engines: {node: '>=6'} + make-dir@2.1.0: dependencies: pify: 4.0.1 semver: 5.7.2 - /make-dir@3.1.0: - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} - engines: {node: '>=8'} + make-dir@3.1.0: dependencies: semver: 6.3.1 - /make-dir@4.0.0: - resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} - engines: {node: '>=10'} + make-dir@4.0.0: dependencies: semver: 7.6.2 - /make-error@1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + make-error@1.3.6: {} - /make-fetch-happen@10.2.1: - resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + make-fetch-happen@10.2.1: dependencies: agentkeepalive: 4.5.0 cacache: 16.1.3 @@ -40427,73 +47840,104 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /makeerror@1.0.12: - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + makeerror@1.0.12: dependencies: tmpl: 1.0.5 - /map-age-cleaner@0.1.3: - resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==} - engines: {node: '>=6'} + map-age-cleaner@0.1.3: dependencies: p-defer: 1.0.0 - /map-cache@0.2.2: - resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} - engines: {node: '>=0.10.0'} + map-cache@0.2.2: {} - /map-obj@1.0.1: - resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} - engines: {node: '>=0.10.0'} + map-obj@1.0.1: {} - /map-obj@4.3.0: - resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} - engines: {node: '>=8'} - dev: true + map-obj@4.3.0: {} - /map-or-similar@1.5.0: - resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} + map-or-similar@1.5.0: {} - /map-visit@1.0.0: - resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} - engines: {node: '>=0.10.0'} + map-visit@1.0.0: dependencies: object-visit: 1.0.1 - /markdown-escapes@1.0.4: - resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==} - - /markdown-to-jsx@7.4.7: - resolution: {integrity: sha512-0+ls1IQZdU6cwM1yu0ZjjiVWYtkbExSyUIFU2ZeDIFuZM1W42Mh4OlJ4nb4apX4H8smxDHRdFaoIVJGwfv5hkg==} - engines: {node: '>= 10'} - peerDependencies: - react: '>= 0.14.0' - dev: true + markdown-escapes@1.0.4: {} - /material-colors@1.2.6: - resolution: {integrity: sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==} - dev: false + markdown-to-jsx@7.4.7: {} - /mdast-add-list-metadata@1.0.1: - resolution: {integrity: sha512-fB/VP4MJ0LaRsog7hGPxgOrSL3gE/2uEdZyDuSEnKCv/8IkYHiDkIQSbChiJoHyxZZXZ9bzckyRk+vNxFzh8rA==} - dependencies: - unist-util-visit-parents: 1.1.2 - dev: false + material-colors@1.2.6: {} - /mdast-squeeze-paragraphs@4.0.0: - resolution: {integrity: sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==} + mdast-squeeze-paragraphs@4.0.0: dependencies: unist-util-remove: 2.1.0 - /mdast-util-definitions@4.0.0: - resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==} + mdast-util-definitions@4.0.0: dependencies: unist-util-visit: 2.0.3 - /mdast-util-to-hast@10.0.1: - resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==} + mdast-util-from-markdown@2.0.1: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.2 + decode-named-character-reference: 1.0.2 + devlop: 1.1.0 + mdast-util-to-string: 4.0.0 + micromark: 4.0.0 + micromark-util-decode-numeric-character-reference: 2.0.1 + micromark-util-decode-string: 2.0.0 + micromark-util-normalize-identifier: 2.0.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + unist-util-stringify-position: 4.0.0 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx-expression@2.0.0: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.1 + mdast-util-to-markdown: 2.1.0 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx-jsx@3.1.2: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@types/unist': 3.0.2 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.1 + mdast-util-to-markdown: 2.1.0 + parse-entities: 4.0.1 + stringify-entities: 4.0.4 + unist-util-remove-position: 5.0.0 + unist-util-stringify-position: 4.0.0 + vfile-message: 4.0.2 + transitivePeerDependencies: + - supports-color + + mdast-util-mdxjs-esm@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.1 + mdast-util-to-markdown: 2.1.0 + transitivePeerDependencies: + - supports-color + + mdast-util-phrasing@4.1.0: + dependencies: + '@types/mdast': 4.0.4 + unist-util-is: 6.0.0 + + mdast-util-to-hast@10.0.1: dependencies: '@types/mdast': 3.0.15 '@types/unist': 2.0.10 @@ -40504,71 +47948,73 @@ packages: unist-util-position: 3.1.0 unist-util-visit: 2.0.3 - /mdast-util-to-string@1.1.0: - resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==} - dev: true + mdast-util-to-hast@13.2.0: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@ungap/structured-clone': 1.2.0 + devlop: 1.1.0 + micromark-util-sanitize-uri: 2.0.0 + trim-lines: 3.0.1 + unist-util-position: 5.0.0 + unist-util-visit: 5.0.0 + vfile: 6.0.1 - /mdn-data@2.0.14: - resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + mdast-util-to-markdown@2.1.0: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.2 + longest-streak: 3.1.0 + mdast-util-phrasing: 4.1.0 + mdast-util-to-string: 4.0.0 + micromark-util-decode-string: 2.0.0 + unist-util-visit: 5.0.0 + zwitch: 2.0.4 - /mdn-data@2.0.28: - resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} - dev: false + mdast-util-to-string@1.1.0: {} - /mdn-data@2.0.30: - resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} - dev: false + mdast-util-to-string@4.0.0: + dependencies: + '@types/mdast': 4.0.4 - /mdn-data@2.0.4: - resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} + mdn-data@2.0.14: {} - /mdurl@1.0.1: - resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} + mdn-data@2.0.28: {} - /media-typer@0.3.0: - resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} - engines: {node: '>= 0.6'} + mdn-data@2.0.30: {} - /mem@8.1.1: - resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==} - engines: {node: '>=10'} + mdn-data@2.0.4: {} + + mdurl@1.0.1: {} + + media-typer@0.3.0: {} + + mem@8.1.1: dependencies: map-age-cleaner: 0.1.3 mimic-fn: 3.1.0 - /memfs@3.5.3: - resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} - engines: {node: '>= 4.0.0'} + memfs@3.5.3: dependencies: fs-monkey: 1.0.6 - /memoize-one@5.2.1: - resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} - dev: false + memoize-one@5.2.1: {} - /memoizerific@1.11.3: - resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==} + memoizerific@1.11.3: dependencies: map-or-similar: 1.5.0 - /memory-fs@0.4.1: - resolution: {integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==} + memory-fs@0.4.1: dependencies: errno: 0.1.8 readable-stream: 2.3.8 - /memory-fs@0.5.0: - resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==} - engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} + memory-fs@0.5.0: dependencies: errno: 0.1.8 readable-stream: 2.3.8 - dev: true - /meow@3.7.0: - resolution: {integrity: sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==} - engines: {node: '>=0.10.0'} - requiresBuild: true + meow@3.7.0: dependencies: camelcase-keys: 2.1.0 decamelize: 1.2.0 @@ -40580,12 +48026,9 @@ packages: read-pkg-up: 1.0.1 redent: 1.0.0 trim-newlines: 1.0.0 - dev: false optional: true - /meow@6.1.1: - resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} - engines: {node: '>=8'} + meow@6.1.1: dependencies: '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 @@ -40598,11 +48041,8 @@ packages: trim-newlines: 3.0.1 type-fest: 0.13.1 yargs-parser: 18.1.3 - dev: true - /meow@8.1.2: - resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} - engines: {node: '>=10'} + meow@8.1.2: dependencies: '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 @@ -40615,52 +48055,167 @@ packages: trim-newlines: 3.0.1 type-fest: 0.18.1 yargs-parser: 20.2.9 - dev: true - /merge-anything@2.4.4: - resolution: {integrity: sha512-l5XlriUDJKQT12bH+rVhAHjwIuXWdAIecGwsYjv2LJo+dA1AeRTmeQS+3QBpO6lEthBMDi2IUMpLC1yyRvGlwQ==} + merge-anything@2.4.4: dependencies: is-what: 3.14.1 - dev: false - /merge-deep@3.0.3: - resolution: {integrity: sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==} - engines: {node: '>=0.10.0'} + merge-deep@3.0.3: dependencies: arr-union: 3.1.0 clone-deep: 0.2.4 kind-of: 3.2.2 - /merge-descriptors@1.0.1: - resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} + merge-descriptors@1.0.1: {} - /merge-files@0.1.2: - resolution: {integrity: sha512-WTvtH6ZwVy1/scvp1M+Re6PVni87QTjpSLAwxh0L+PlYIxc4VGFFpLjvP7jdJ43gaJ5n+RUIriJ6wKqmqvVVmg==} + merge-files@0.1.2: dependencies: multistream: 2.1.1 - dev: true - /merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + merge-stream@2.0.0: {} - /merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} + merge2@1.4.1: {} - /merge@1.2.1: - resolution: {integrity: sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==} - dev: true + merge@1.2.1: {} - /methods@1.1.2: - resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} - engines: {node: '>= 0.6'} + methods@1.1.2: {} - /microevent.ts@0.1.1: - resolution: {integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==} + microevent.ts@0.1.1: {} - /micromatch@3.1.10(supports-color@6.1.0): - resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} - engines: {node: '>=0.10.0'} + micromark-core-commonmark@2.0.1: + dependencies: + decode-named-character-reference: 1.0.2 + devlop: 1.1.0 + micromark-factory-destination: 2.0.0 + micromark-factory-label: 2.0.0 + micromark-factory-space: 2.0.0 + micromark-factory-title: 2.0.0 + micromark-factory-whitespace: 2.0.0 + micromark-util-character: 2.1.0 + micromark-util-chunked: 2.0.0 + micromark-util-classify-character: 2.0.0 + micromark-util-html-tag-name: 2.0.0 + micromark-util-normalize-identifier: 2.0.0 + micromark-util-resolve-all: 2.0.0 + micromark-util-subtokenize: 2.0.1 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-factory-destination@2.0.0: + dependencies: + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-factory-label@2.0.0: + dependencies: + devlop: 1.1.0 + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-factory-space@2.0.0: + dependencies: + micromark-util-character: 2.1.0 + micromark-util-types: 2.0.0 + + micromark-factory-title@2.0.0: + dependencies: + micromark-factory-space: 2.0.0 + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-factory-whitespace@2.0.0: + dependencies: + micromark-factory-space: 2.0.0 + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-util-character@2.1.0: + dependencies: + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-util-chunked@2.0.0: + dependencies: + micromark-util-symbol: 2.0.0 + + micromark-util-classify-character@2.0.0: + dependencies: + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-util-combine-extensions@2.0.0: + dependencies: + micromark-util-chunked: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-util-decode-numeric-character-reference@2.0.1: + dependencies: + micromark-util-symbol: 2.0.0 + + micromark-util-decode-string@2.0.0: + dependencies: + decode-named-character-reference: 1.0.2 + micromark-util-character: 2.1.0 + micromark-util-decode-numeric-character-reference: 2.0.1 + micromark-util-symbol: 2.0.0 + + micromark-util-encode@2.0.0: {} + + micromark-util-html-tag-name@2.0.0: {} + + micromark-util-normalize-identifier@2.0.0: + dependencies: + micromark-util-symbol: 2.0.0 + + micromark-util-resolve-all@2.0.0: + dependencies: + micromark-util-types: 2.0.0 + + micromark-util-sanitize-uri@2.0.0: + dependencies: + micromark-util-character: 2.1.0 + micromark-util-encode: 2.0.0 + micromark-util-symbol: 2.0.0 + + micromark-util-subtokenize@2.0.1: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-util-symbol@2.0.0: {} + + micromark-util-types@2.0.0: {} + + micromark@4.0.0: + dependencies: + '@types/debug': 4.1.12 + debug: 4.3.5(supports-color@8.1.1) + decode-named-character-reference: 1.0.2 + devlop: 1.1.0 + micromark-core-commonmark: 2.0.1 + micromark-factory-space: 2.0.0 + micromark-util-character: 2.1.0 + micromark-util-chunked: 2.0.0 + micromark-util-combine-extensions: 2.0.0 + micromark-util-decode-numeric-character-reference: 2.0.1 + micromark-util-encode: 2.0.0 + micromark-util-normalize-identifier: 2.0.0 + micromark-util-resolve-all: 2.0.0 + micromark-util-sanitize-uri: 2.0.0 + micromark-util-subtokenize: 2.0.1 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + transitivePeerDependencies: + - supports-color + + micromatch@3.1.10(supports-color@6.1.0): dependencies: arr-diff: 4.0.0 array-unique: 0.3.2 @@ -40678,274 +48233,166 @@ packages: transitivePeerDependencies: - supports-color - /micromatch@4.0.7: - resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} - engines: {node: '>=8.6'} + micromatch@4.0.7: dependencies: braces: 3.0.3 picomatch: 2.3.1 - /mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} + mime-db@1.52.0: {} - /mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} + mime-types@2.1.35: dependencies: mime-db: 1.52.0 - /mime@1.6.0: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} - engines: {node: '>=4'} - hasBin: true + mime@1.6.0: {} - /mime@2.6.0: - resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} - engines: {node: '>=4.0.0'} - hasBin: true + mime@2.6.0: {} - /mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} + mimic-fn@2.1.0: {} - /mimic-fn@3.1.0: - resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} - engines: {node: '>=8'} + mimic-fn@3.1.0: {} - /mimic-response@1.0.1: - resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} - engines: {node: '>=4'} + mimic-response@1.0.1: {} - /mimic-response@3.1.0: - resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} - engines: {node: '>=10'} - dev: true + mimic-response@3.1.0: {} - /min-document@2.19.0: - resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==} + min-document@2.19.0: dependencies: dom-walk: 0.1.2 - /min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} + min-indent@1.0.1: {} - /mini-css-extract-plugin@0.4.5(webpack@5.84.1): - resolution: {integrity: sha512-dqBanNfktnp2hwL2YguV9Jh91PFX7gu7nRLs4TGsbAfAG6WOtlynFRYzwDwmmeSb5uIwHo9nx1ta0f7vAZVp2w==} - engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 + mini-css-extract-plugin@0.4.5(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: loader-utils: 1.4.2 schema-utils: 1.0.0 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) webpack-sources: 1.4.3 - dev: true - /mini-css-extract-plugin@2.4.7(webpack@5.84.1): - resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: 5.84.1 + mini-css-extract-plugin@2.4.7(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: schema-utils: 4.2.0 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /mini-svg-data-uri@1.4.4: - resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} - hasBin: true - dev: true + mini-svg-data-uri@1.4.4: {} - /minimalistic-assert@1.0.1: - resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} + minimalistic-assert@1.0.1: {} - /minimatch@3.0.5: - resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} + minimatch@3.0.5: dependencies: brace-expansion: 1.1.11 - dev: true - /minimatch@3.0.8: - resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==} + minimatch@3.0.8: dependencies: brace-expansion: 1.1.11 - dev: false - /minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + minimatch@3.1.2: dependencies: brace-expansion: 1.1.11 - /minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} + minimatch@5.1.6: dependencies: brace-expansion: 2.0.1 - dev: true - /minimatch@9.0.1: - resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} - engines: {node: '>=16 || 14 >=14.17'} + minimatch@9.0.1: dependencies: brace-expansion: 2.0.1 - dev: false - /minimatch@9.0.4: - resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==} - engines: {node: '>=16 || 14 >=14.17'} + minimatch@9.0.4: dependencies: brace-expansion: 2.0.1 - /minimist-options@4.1.0: - resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} - engines: {node: '>= 6'} + minimist-options@4.1.0: dependencies: arrify: 1.0.1 is-plain-obj: 1.1.0 kind-of: 6.0.3 - dev: true - /minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + minimist@1.2.8: {} - /minipass-collect@1.0.2: - resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} - engines: {node: '>= 8'} + minipass-collect@1.0.2: dependencies: minipass: 3.3.6 - /minipass-fetch@2.1.2: - resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + minipass-fetch@2.1.2: dependencies: minipass: 3.3.6 minipass-sized: 1.0.3 minizlib: 2.1.2 optionalDependencies: encoding: 0.1.13 - dev: true - /minipass-flush@1.0.5: - resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} - engines: {node: '>= 8'} + minipass-flush@1.0.5: dependencies: minipass: 3.3.6 - /minipass-json-stream@1.0.1: - resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==} + minipass-json-stream@1.0.1: dependencies: jsonparse: 1.3.1 minipass: 3.3.6 - dev: true - /minipass-pipeline@1.2.4: - resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} - engines: {node: '>=8'} + minipass-pipeline@1.2.4: dependencies: minipass: 3.3.6 - /minipass-sized@1.0.3: - resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} - engines: {node: '>=8'} + minipass-sized@1.0.3: dependencies: minipass: 3.3.6 - dev: true - /minipass@3.3.6: - resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} - engines: {node: '>=8'} + minipass@3.3.6: dependencies: yallist: 4.0.0 - /minipass@5.0.0: - resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} - engines: {node: '>=8'} + minipass@5.0.0: {} - /minipass@7.1.2: - resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} - engines: {node: '>=16 || 14 >=14.17'} - dev: false + minipass@7.1.2: {} - /minizlib@2.1.2: - resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} - engines: {node: '>= 8'} + minizlib@2.1.2: dependencies: minipass: 3.3.6 yallist: 4.0.0 - /mixin-deep@1.3.2: - resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} - engines: {node: '>=0.10.0'} + mixin-deep@1.3.2: dependencies: for-in: 1.0.2 is-extendable: 1.0.1 - /mixin-object@2.0.1: - resolution: {integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==} - engines: {node: '>=0.10.0'} + mixin-object@2.0.1: dependencies: for-in: 0.1.8 is-extendable: 0.1.1 - /mixme@0.5.10: - resolution: {integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==} - engines: {node: '>= 8.0.0'} - dev: true + mixme@0.5.10: {} - /mkdirp-infer-owner@2.0.0: - resolution: {integrity: sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==} - engines: {node: '>=10'} + mkdirp-infer-owner@2.0.0: dependencies: chownr: 2.0.0 infer-owner: 1.0.4 mkdirp: 1.0.4 - dev: true - /mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} - hasBin: true + mkdirp@0.5.6: dependencies: minimist: 1.2.8 - /mkdirp@1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: '>=10'} - hasBin: true + mkdirp@1.0.4: {} - /modify-values@1.0.1: - resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} - engines: {node: '>=0.10.0'} - dev: true + modify-values@1.0.1: {} - /moment@2.30.1: - resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==} + moment@2.30.1: {} - /monaco-editor@0.50.0: - resolution: {integrity: sha512-8CclLCmrRRh+sul7C08BmPBP3P8wVWfBHomsTcndxg5NRCEPfu/mc2AGU8k37ajjDVXcXFc12ORAMUkmk+lkFA==} - dev: false + monaco-editor@0.50.0: {} - /mrmime@2.0.0: - resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} - engines: {node: '>=10'} + mrmime@2.0.0: {} - /ms@2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + ms@2.0.0: {} - /ms@2.1.1: - resolution: {integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==} + ms@2.1.1: {} - /ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + ms@2.1.2: {} - /ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + ms@2.1.3: {} - /msw@0.36.8: - resolution: {integrity: sha512-K7lOQoYqhGhTSChsmHMQbf/SDCsxh/m0uhN6Ipt206lGoe81fpTmaGD0KLh4jUxCONMOUnwCSj0jtX2CM4pEdw==} - hasBin: true - requiresBuild: true + msw@0.36.8(encoding@0.1.13): dependencies: '@mswjs/cookies': 0.1.7 '@mswjs/interceptors': 0.12.7 @@ -40961,7 +48408,7 @@ packages: inquirer: 8.2.6 is-node-process: 1.2.0 js-levenshtein: 1.1.6 - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) path-to-regexp: 6.2.2 statuses: 2.0.1 strict-event-emitter: 0.2.8 @@ -40970,66 +48417,42 @@ packages: transitivePeerDependencies: - encoding - supports-color - dev: true - /multicast-dns-service-types@1.1.0: - resolution: {integrity: sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==} + multicast-dns-service-types@1.1.0: {} - /multicast-dns@6.2.3: - resolution: {integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==} - hasBin: true + multicast-dns@6.2.3: dependencies: dns-packet: 1.3.4 thunky: 1.1.0 - /multicast-dns@7.2.5: - resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} - hasBin: true + multicast-dns@7.2.5: dependencies: dns-packet: 5.6.1 thunky: 1.1.0 - dev: true - /multimatch@5.0.0: - resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} - engines: {node: '>=10'} + multimatch@5.0.0: dependencies: '@types/minimatch': 3.0.5 array-differ: 3.0.0 array-union: 2.1.0 arrify: 2.0.1 minimatch: 3.1.2 - dev: true - /multistream@2.1.1: - resolution: {integrity: sha512-xasv76hl6nr1dEy3lPvy7Ej7K/Lx3O/FCvwge8PeVJpciPPoNCbaANcNiBug3IpdvTveZUcAV0DJzdnUDMesNQ==} + multistream@2.1.1: dependencies: inherits: 2.0.4 readable-stream: 2.3.8 - dev: true - /mustache@4.2.0: - resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} - hasBin: true - dev: false + mustache@4.2.0: {} - /mute-stream@0.0.8: - resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} - dev: true + mute-stream@0.0.8: {} - /nan@2.20.0: - resolution: {integrity: sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==} - requiresBuild: true + nan@2.20.0: optional: true - /nanoid@3.3.7: - resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true + nanoid@3.3.7: {} - /nanomatch@1.2.13(supports-color@6.1.0): - resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} - engines: {node: '>=0.10.0'} + nanomatch@1.2.13(supports-color@6.1.0): dependencies: arr-diff: 4.0.0 array-unique: 0.3.2 @@ -41045,87 +48468,51 @@ packages: transitivePeerDependencies: - supports-color - /native-request@1.1.0: - resolution: {integrity: sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==} - requiresBuild: true - dev: true + native-request@1.1.0: optional: true - /native-url@0.2.6: - resolution: {integrity: sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==} + native-url@0.2.6: dependencies: querystring: 0.2.1 - dev: true - /natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + natural-compare@1.4.0: {} - /negotiator@0.6.3: - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} - engines: {node: '>= 0.6'} + negotiator@0.6.3: {} - /neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + neo-async@2.6.2: {} - /nested-error-stacks@2.1.1: - resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==} + nested-error-stacks@2.1.1: {} - /next-tick@1.1.0: - resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} - dev: true + next-tick@1.1.0: {} - /nice-try@1.0.5: - resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + nice-try@1.0.5: {} - /no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + no-case@3.0.4: dependencies: lower-case: 2.0.2 tslib: 2.6.3 - /node-abort-controller@3.1.1: - resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} - dev: true + node-abort-controller@3.1.1: {} - /node-addon-api@3.2.1: - resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} - dev: true + node-addon-api@3.2.1: {} - /node-dir@0.1.17: - resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} - engines: {node: '>= 0.10.5'} + node-dir@0.1.17: dependencies: minimatch: 3.1.2 - /node-fetch@2.7.0: - resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true + node-fetch@2.7.0(encoding@0.1.13): dependencies: whatwg-url: 5.0.0 + optionalDependencies: + encoding: 0.1.13 - /node-forge@0.10.0: - resolution: {integrity: sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==} - engines: {node: '>= 6.0.0'} + node-forge@0.10.0: {} - /node-forge@1.3.1: - resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} - engines: {node: '>= 6.13.0'} - dev: true + node-forge@1.3.1: {} - /node-gyp-build@4.8.1: - resolution: {integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==} - hasBin: true - dev: true + node-gyp-build@4.8.1: {} - /node-gyp@9.4.1: - resolution: {integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==} - engines: {node: ^12.13 || ^14.13 || >=16} - hasBin: true + node-gyp@9.4.1: dependencies: env-paths: 2.2.1 exponential-backoff: 3.1.1 @@ -41141,14 +48528,10 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /node-int64@0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + node-int64@0.4.0: {} - /node-notifier@8.0.2: - resolution: {integrity: sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==} - requiresBuild: true + node-notifier@8.0.2: dependencies: growly: 1.3.0 is-wsl: 2.2.0 @@ -41156,167 +48539,103 @@ packages: shellwords: 0.1.1 uuid: 8.3.2 which: 2.0.2 - dev: true optional: true - /node-preload@0.2.1: - resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} - engines: {node: '>=8'} + node-preload@0.2.1: dependencies: process-on-spawn: 1.0.0 - dev: true - /node-releases@2.0.14: - resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + node-releases@2.0.14: {} - /nopt@5.0.0: - resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} - engines: {node: '>=6'} - hasBin: true + nopt@5.0.0: dependencies: abbrev: 1.1.1 - dev: true - /nopt@6.0.0: - resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true + nopt@6.0.0: dependencies: abbrev: 1.1.1 - dev: true - /nopt@7.2.1: - resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true + nopt@7.2.1: dependencies: abbrev: 2.0.0 - dev: false - /normalize-package-data@2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + normalize-package-data@2.5.0: dependencies: hosted-git-info: 2.8.9 resolve: 1.22.8 semver: 5.7.2 validate-npm-package-license: 3.0.4 - /normalize-package-data@3.0.3: - resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} - engines: {node: '>=10'} + normalize-package-data@3.0.3: dependencies: hosted-git-info: 4.1.0 is-core-module: 2.14.0 semver: 7.6.2 validate-npm-package-license: 3.0.4 - dev: true - /normalize-package-data@4.0.1: - resolution: {integrity: sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + normalize-package-data@4.0.1: dependencies: hosted-git-info: 5.2.1 is-core-module: 2.14.0 semver: 7.6.2 validate-npm-package-license: 3.0.4 - dev: true - /normalize-path@2.1.1: - resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} - engines: {node: '>=0.10.0'} + normalize-path@2.1.1: dependencies: remove-trailing-separator: 1.1.0 - /normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} + normalize-path@3.0.0: {} - /normalize-range@0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} + normalize-range@0.1.2: {} - /normalize-url@4.5.1: - resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} - engines: {node: '>=8'} - dev: false + normalize-url@4.5.1: {} - /normalize-url@6.1.0: - resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} - engines: {node: '>=10'} - dev: true + normalize-url@6.1.0: {} - /npm-bundled@1.1.2: - resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==} + npm-bundled@1.1.2: dependencies: npm-normalize-package-bin: 1.0.1 - dev: true - /npm-bundled@2.0.1: - resolution: {integrity: sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + npm-bundled@2.0.1: dependencies: npm-normalize-package-bin: 2.0.0 - dev: true - /npm-install-checks@5.0.0: - resolution: {integrity: sha512-65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + npm-install-checks@5.0.0: dependencies: semver: 7.6.2 - dev: true - /npm-normalize-package-bin@1.0.1: - resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} - dev: true + npm-normalize-package-bin@1.0.1: {} - /npm-normalize-package-bin@2.0.0: - resolution: {integrity: sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dev: true + npm-normalize-package-bin@2.0.0: {} - /npm-package-arg@8.1.1: - resolution: {integrity: sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==} - engines: {node: '>=10'} + npm-package-arg@8.1.1: dependencies: hosted-git-info: 3.0.8 semver: 7.6.2 validate-npm-package-name: 3.0.0 - dev: true - /npm-package-arg@9.1.2: - resolution: {integrity: sha512-pzd9rLEx4TfNJkovvlBSLGhq31gGu2QDexFPWT19yCDh0JgnRhlBLNo5759N0AJmBk+kQ9Y/hXoLnlgFD+ukmg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + npm-package-arg@9.1.2: dependencies: hosted-git-info: 5.2.1 proc-log: 2.0.1 semver: 7.6.2 validate-npm-package-name: 4.0.0 - dev: true - /npm-packlist@5.1.3: - resolution: {integrity: sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true + npm-packlist@5.1.3: dependencies: glob: 8.1.0 ignore-walk: 5.0.1 npm-bundled: 2.0.1 npm-normalize-package-bin: 2.0.0 - dev: true - /npm-pick-manifest@7.0.2: - resolution: {integrity: sha512-gk37SyRmlIjvTfcYl6RzDbSmS9Y4TOBXfsPnoYqTHARNgWbyDiCSMLUpmALDj4jjcTZpURiEfsSHJj9k7EV4Rw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + npm-pick-manifest@7.0.2: dependencies: npm-install-checks: 5.0.0 npm-normalize-package-bin: 2.0.0 npm-package-arg: 9.1.2 semver: 7.6.2 - dev: true - /npm-registry-fetch@13.3.1: - resolution: {integrity: sha512-eukJPi++DKRTjSBRcDZSDDsGqRK3ehbxfFUcgaRd0Yp6kRwOwh2WVn0r+8rMB4nnuzvAk6rQVzl6K5CkYOmnvw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + npm-registry-fetch@13.3.1: dependencies: make-fetch-happen: 10.2.1 minipass: 3.3.6 @@ -41328,75 +48647,46 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /npm-run-path@2.0.2: - resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} - engines: {node: '>=4'} + npm-run-path@2.0.2: dependencies: path-key: 2.0.1 - /npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} + npm-run-path@4.0.1: dependencies: path-key: 3.1.1 - /npmlog@5.0.1: - resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} - deprecated: This package is no longer supported. + npmlog@5.0.1: dependencies: are-we-there-yet: 2.0.0 console-control-strings: 1.1.0 gauge: 3.0.2 set-blocking: 2.0.0 - /npmlog@6.0.2: - resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. + npmlog@6.0.2: dependencies: are-we-there-yet: 3.0.1 console-control-strings: 1.1.0 gauge: 4.0.4 set-blocking: 2.0.0 - dev: true - /nth-check@1.0.2: - resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} + nth-check@1.0.2: dependencies: boolbase: 1.0.0 - /nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + nth-check@2.1.1: dependencies: boolbase: 1.0.0 - /num2fraction@1.2.2: - resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==} + num2fraction@1.2.2: {} - /nwsapi@2.2.10: - resolution: {integrity: sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==} - dev: true + nwsapi@2.2.10: {} - /nx@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5): - resolution: {integrity: sha512-hXoTcBjY+3+OituiSE9G44CjwfbFVEtw6W9Hl0DxcFW+Vb9V+sa/LHAQbIq1GXvr819sBduP0bncowUoOq6iBg==} - hasBin: true - requiresBuild: true - peerDependencies: - '@swc-node/register': ^1.4.2 - '@swc/core': ^1.2.173 - peerDependenciesMeta: - '@swc-node/register': - optional: true - '@swc/core': - optional: true + nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)): dependencies: - '@nrwl/cli': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5) - '@nrwl/tao': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5) + '@nrwl/cli': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)) + '@nrwl/tao': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)) '@parcel/watcher': 2.0.4 - '@swc-node/register': 1.9.2(@swc/core@1.6.5)(@swc/types@0.1.9)(typescript@4.9.5) - '@swc/core': 1.6.5(@swc/helpers@0.3.17) '@yarnpkg/lockfile': 1.1.0 '@yarnpkg/parsers': 3.0.2 '@zkochan/js-yaml': 0.0.6 @@ -41429,14 +48719,13 @@ packages: v8-compile-cache: 2.3.0 yargs: 17.7.2 yargs-parser: 21.0.1 + optionalDependencies: + '@swc-node/register': 1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5) + '@swc/core': 1.6.5(@swc/helpers@0.3.17) transitivePeerDependencies: - debug - dev: true - /nyc@15.1.0: - resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} - engines: {node: '>=8.9'} - hasBin: true + nyc@15.1.0: dependencies: '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.3 @@ -41467,70 +48756,49 @@ packages: yargs: 15.4.1 transitivePeerDependencies: - supports-color - dev: true - /object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} + object-assign@4.1.1: {} - /object-copy@0.1.0: - resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} - engines: {node: '>=0.10.0'} + object-copy@0.1.0: dependencies: copy-descriptor: 0.1.1 define-property: 0.2.5 kind-of: 3.2.2 - /object-inspect@1.13.2: - resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} - engines: {node: '>= 0.4'} + object-inspect@1.13.2: {} - /object-is@1.1.6: - resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} - engines: {node: '>= 0.4'} + object-is@1.1.6: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - /object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} + object-keys@1.1.1: {} - /object-visit@1.0.1: - resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} - engines: {node: '>=0.10.0'} + object-visit@1.0.1: dependencies: isobject: 3.0.1 - /object.assign@4.1.5: - resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} - engines: {node: '>= 0.4'} + object.assign@4.1.5: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 - /object.entries@1.1.8: - resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} - engines: {node: '>= 0.4'} + object.entries@1.1.8: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - /object.fromentries@2.0.8: - resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} - engines: {node: '>= 0.4'} + object.fromentries@2.0.8: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 - /object.getownpropertydescriptors@2.1.8: - resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==} - engines: {node: '>= 0.8'} + object.getownpropertydescriptors@2.1.8: dependencies: array.prototype.reduce: 1.0.7 call-bind: 1.0.7 @@ -41540,93 +48808,64 @@ packages: gopd: 1.0.1 safe-array-concat: 1.1.2 - /object.groupby@1.0.3: - resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} - engines: {node: '>= 0.4'} + object.groupby@1.0.3: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 - dev: true - /object.hasown@1.1.4: - resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} - engines: {node: '>= 0.4'} + object.hasown@1.1.4: dependencies: define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 - dev: true - /object.pick@1.3.0: - resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} - engines: {node: '>=0.10.0'} + object.pick@1.3.0: dependencies: isobject: 3.0.1 - /object.values@1.2.0: - resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} - engines: {node: '>= 0.4'} + object.values@1.2.0: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - /objectorarray@1.0.5: - resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==} + objectorarray@1.0.5: {} - /obuf@1.1.2: - resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} + obuf@1.1.2: {} - /on-finished@2.4.1: - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} - engines: {node: '>= 0.8'} + on-finished@2.4.1: dependencies: ee-first: 1.1.1 - /on-headers@1.0.2: - resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} - engines: {node: '>= 0.8'} + on-headers@1.0.2: {} - /once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + once@1.4.0: dependencies: wrappy: 1.0.2 - /onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} + onetime@5.1.2: dependencies: mimic-fn: 2.1.0 - /open@7.4.2: - resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} - engines: {node: '>=8'} + open@7.4.2: dependencies: is-docker: 2.2.1 is-wsl: 2.2.0 - /open@8.4.2: - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} - engines: {node: '>=12'} + open@8.4.2: dependencies: define-lazy-prop: 2.0.0 is-docker: 2.2.1 is-wsl: 2.2.0 - /opener@1.5.2: - resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} - hasBin: true + opener@1.5.2: {} - /opn@5.5.0: - resolution: {integrity: sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==} - engines: {node: '>=4'} + opn@5.5.0: dependencies: is-wsl: 1.1.0 - /optionator@0.9.4: - resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} - engines: {node: '>= 0.8.0'} + optionator@0.9.4: dependencies: deep-is: 0.1.4 fast-levenshtein: 2.0.6 @@ -41635,9 +48874,7 @@ packages: type-check: 0.4.0 word-wrap: 1.2.5 - /ora@5.4.1: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} - engines: {node: '>=10'} + ora@5.4.1: dependencies: bl: 4.1.0 chalk: 4.1.1 @@ -41648,228 +48885,133 @@ packages: log-symbols: 4.1.0 strip-ansi: 6.0.1 wcwidth: 1.0.1 - dev: true - /os-filter-obj@2.0.0: - resolution: {integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==} - engines: {node: '>=4'} + os-filter-obj@2.0.0: dependencies: arch: 2.2.0 - dev: true - /os-homedir@1.0.2: - resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} - engines: {node: '>=0.10.0'} + os-homedir@1.0.2: + optional: true - /os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} - dev: true + os-tmpdir@1.0.2: {} - /ospath@1.2.2: - resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==} - dev: true + ospath@1.2.2: {} - /outdent@0.5.0: - resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} - dev: true + outdent@0.5.0: {} - /outvariant@1.4.2: - resolution: {integrity: sha512-Ou3dJ6bA/UJ5GVHxah4LnqDwZRwAmWxrG3wtrHrbGnP4RnLCtA64A4F+ae7Y8ww660JaddSoArUR5HjipWSHAQ==} - dev: true + outvariant@1.4.2: {} - /overlayscrollbars@1.13.3: - resolution: {integrity: sha512-1nB/B5kaakJuHXaLXLRK0bUIilWhUGT6q5g+l2s5vqYdLle/sd0kscBHkQC1kuuDg9p9WR4MTdySDOPbeL/86g==} - dev: true + overlayscrollbars@1.13.3: {} - /p-all@2.1.0: - resolution: {integrity: sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==} - engines: {node: '>=6'} + p-all@2.1.0: dependencies: p-map: 2.1.0 - /p-cancelable@1.1.0: - resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} - engines: {node: '>=6'} - dev: false + p-cancelable@1.1.0: {} - /p-cancelable@2.1.1: - resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} - engines: {node: '>=8'} - dev: true + p-cancelable@2.1.1: {} - /p-defer@1.0.0: - resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} - engines: {node: '>=4'} + p-defer@1.0.0: {} - /p-each-series@2.2.0: - resolution: {integrity: sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==} - engines: {node: '>=8'} - dev: true + p-each-series@2.2.0: {} - /p-event@4.2.0: - resolution: {integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==} - engines: {node: '>=8'} + p-event@4.2.0: dependencies: p-timeout: 3.2.0 - /p-filter@2.1.0: - resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} - engines: {node: '>=8'} + p-filter@2.1.0: dependencies: p-map: 2.1.0 - /p-finally@1.0.0: - resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} - engines: {node: '>=4'} + p-finally@1.0.0: {} - /p-limit@1.3.0: - resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} - engines: {node: '>=4'} + p-limit@1.3.0: dependencies: p-try: 1.0.0 - dev: true - /p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} + p-limit@2.3.0: dependencies: p-try: 2.2.0 - /p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} + p-limit@3.1.0: dependencies: yocto-queue: 0.1.0 - /p-locate@2.0.0: - resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} - engines: {node: '>=4'} + p-locate@2.0.0: dependencies: p-limit: 1.3.0 - dev: true - /p-locate@3.0.0: - resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} - engines: {node: '>=6'} + p-locate@3.0.0: dependencies: p-limit: 2.3.0 - /p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} + p-locate@4.1.0: dependencies: p-limit: 2.3.0 - /p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} + p-locate@5.0.0: dependencies: p-limit: 3.1.0 - /p-map-series@2.1.0: - resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==} - engines: {node: '>=8'} - dev: true + p-map-series@2.1.0: {} - /p-map@2.1.0: - resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} - engines: {node: '>=6'} + p-map@2.1.0: {} - /p-map@3.0.0: - resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} - engines: {node: '>=8'} + p-map@3.0.0: dependencies: aggregate-error: 3.1.0 - /p-map@4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} + p-map@4.0.0: dependencies: aggregate-error: 3.1.0 - /p-pipe@3.1.0: - resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==} - engines: {node: '>=8'} - dev: true + p-pipe@3.1.0: {} - /p-queue@6.6.2: - resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} - engines: {node: '>=8'} + p-queue@6.6.2: dependencies: eventemitter3: 4.0.7 p-timeout: 3.2.0 - dev: true - /p-reduce@2.1.0: - resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} - engines: {node: '>=8'} - dev: true + p-reduce@2.1.0: {} - /p-retry@3.0.1: - resolution: {integrity: sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==} - engines: {node: '>=6'} + p-retry@3.0.1: dependencies: retry: 0.12.0 - /p-retry@4.6.2: - resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} - engines: {node: '>=8'} + p-retry@4.6.2: dependencies: '@types/retry': 0.12.0 retry: 0.13.1 - dev: true - /p-timeout@3.2.0: - resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} - engines: {node: '>=8'} + p-timeout@3.2.0: dependencies: p-finally: 1.0.0 - /p-try@1.0.0: - resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} - engines: {node: '>=4'} - dev: true + p-try@1.0.0: {} - /p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} + p-try@2.2.0: {} - /p-waterfall@2.1.1: - resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==} - engines: {node: '>=8'} + p-waterfall@2.1.1: dependencies: p-reduce: 2.1.0 - dev: true - /package-hash@4.0.0: - resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} - engines: {node: '>=8'} + package-hash@4.0.0: dependencies: graceful-fs: 4.2.11 hasha: 5.2.2 lodash.flattendeep: 4.4.0 release-zalgo: 1.0.0 - dev: true - /package-json-from-dist@1.0.0: - resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} - dev: false + package-json-from-dist@1.0.0: {} - /package-json@6.5.0: - resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} - engines: {node: '>=8'} + package-json@6.5.0: dependencies: got: 9.6.0 registry-auth-token: 4.2.2 registry-url: 5.1.0 semver: 6.3.1 - dev: false - /pacote@13.6.2: - resolution: {integrity: sha512-Gu8fU3GsvOPkak2CkbojR7vjs3k3P9cA6uazKTHdsdV0gpCEQq2opelnEv30KRQWgVzP5Vd/5umjcedma3MKtg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true + pacote@13.6.2: dependencies: '@npmcli/git': 3.0.2 '@npmcli/installed-package-contents': 1.0.7 @@ -41895,31 +49037,23 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /param-case@3.0.4: - resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} + param-case@3.0.4: dependencies: dot-case: 3.0.4 tslib: 2.6.3 - /parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} + parent-module@1.0.1: dependencies: callsites: 3.1.0 - /parse-conflict-json@2.0.2: - resolution: {integrity: sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + parse-conflict-json@2.0.2: dependencies: json-parse-even-better-errors: 2.3.1 just-diff: 5.2.0 just-diff-apply: 5.5.0 - dev: true - /parse-entities@1.2.2: - resolution: {integrity: sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==} + parse-entities@2.0.0: dependencies: character-entities: 1.2.4 character-entities-legacy: 1.1.4 @@ -41927,295 +49061,194 @@ packages: is-alphanumerical: 1.0.4 is-decimal: 1.0.4 is-hexadecimal: 1.0.4 - dev: false - /parse-entities@2.0.0: - resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} + parse-entities@4.0.1: dependencies: - character-entities: 1.2.4 - character-entities-legacy: 1.1.4 - character-reference-invalid: 1.1.4 - is-alphanumerical: 1.0.4 - is-decimal: 1.0.4 - is-hexadecimal: 1.0.4 + '@types/unist': 2.0.10 + character-entities: 2.0.2 + character-entities-legacy: 3.0.0 + character-reference-invalid: 2.0.1 + decode-named-character-reference: 1.0.2 + is-alphanumerical: 2.0.1 + is-decimal: 2.0.1 + is-hexadecimal: 2.0.1 - /parse-json@2.2.0: - resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==} - engines: {node: '>=0.10.0'} - requiresBuild: true + parse-json@2.2.0: dependencies: error-ex: 1.3.2 - dev: false optional: true - /parse-json@4.0.0: - resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} - engines: {node: '>=4'} + parse-json@4.0.0: dependencies: error-ex: 1.3.2 json-parse-better-errors: 1.0.2 - /parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} + parse-json@5.2.0: dependencies: '@babel/code-frame': 7.24.7 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - /parse-path@7.0.0: - resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} + parse-path@7.0.0: dependencies: protocols: 2.0.1 - dev: true - /parse-url@8.1.0: - resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} + parse-url@8.1.0: dependencies: parse-path: 7.0.0 - dev: true - /parse5-html-rewriting-stream@6.0.1: - resolution: {integrity: sha512-vwLQzynJVEfUlURxgnf51yAJDQTtVpNyGD8tKi2Za7m+akukNHxCcUQMAa/mUGLhCeicFdpy7Tlvj8ZNKadprg==} + parse5-html-rewriting-stream@6.0.1: dependencies: parse5: 6.0.1 parse5-sax-parser: 6.0.1 - dev: true - /parse5-sax-parser@6.0.1: - resolution: {integrity: sha512-kXX+5S81lgESA0LsDuGjAlBybImAChYRMT+/uKCEXFBFOeEhS52qUCydGhU3qLRD8D9DVjaUo821WK7DM4iCeg==} + parse5-sax-parser@6.0.1: dependencies: parse5: 6.0.1 - dev: true - /parse5@4.0.0: - resolution: {integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==} - dev: true + parse5@4.0.0: {} - /parse5@6.0.1: - resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} + parse5@6.0.1: {} - /parse5@7.1.2: - resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + parse5@7.1.2: dependencies: entities: 4.5.0 - dev: true - /parseurl@1.3.3: - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} - engines: {node: '>= 0.8'} + parseurl@1.3.3: {} - /pascal-case@3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} + pascal-case@3.1.2: dependencies: no-case: 3.0.4 tslib: 2.6.3 - /pascalcase@0.1.1: - resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} - engines: {node: '>=0.10.0'} + pascalcase@0.1.1: {} - /path-browserify@1.0.1: - resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + path-browserify@1.0.1: {} - /path-dirname@1.0.2: - resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==} + path-dirname@1.0.2: {} - /path-exists@2.1.0: - resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==} - engines: {node: '>=0.10.0'} - requiresBuild: true + path-exists@2.1.0: dependencies: pinkie-promise: 2.0.1 - dev: false optional: true - /path-exists@3.0.0: - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} - engines: {node: '>=4'} + path-exists@3.0.0: {} - /path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} + path-exists@4.0.0: {} - /path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} + path-is-absolute@1.0.1: {} - /path-is-inside@1.0.2: - resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==} + path-is-inside@1.0.2: {} - /path-is-network-drive@1.0.20: - resolution: {integrity: sha512-p5wCWlRB4+ggzxWshqHH9aF3kAuVu295NaENXmVhThbZPJQBeJdxZTP6CIoUR+kWHDUW56S9YcaO1gXnc/BOxw==} + path-is-network-drive@1.0.20: dependencies: tslib: 2.6.3 - dev: true - /path-key@2.0.1: - resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} - engines: {node: '>=4'} + path-key@2.0.1: {} - /path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} + path-key@3.1.1: {} - /path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + path-parse@1.0.7: {} - /path-scurry@1.11.1: - resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} - engines: {node: '>=16 || 14 >=14.18'} + path-scurry@1.11.1: dependencies: lru-cache: 10.2.2 minipass: 7.1.2 - dev: false - /path-strip-sep@1.0.17: - resolution: {integrity: sha512-+2zIC2fNgdilgV7pTrktY6oOxxZUo9x5zJYfTzxsGze5kSGDDwhA5/0WlBn+sUyv/WuuyYn3OfM+Ue5nhdQUgA==} + path-strip-sep@1.0.17: dependencies: tslib: 2.6.3 - dev: true - /path-to-regexp@0.1.7: - resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} + path-to-regexp@0.1.7: {} - /path-to-regexp@1.8.0: - resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==} + path-to-regexp@1.8.0: dependencies: isarray: 0.0.1 - dev: false - /path-to-regexp@6.2.2: - resolution: {integrity: sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==} - dev: true + path-to-regexp@6.2.2: {} - /path-type@1.1.0: - resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==} - engines: {node: '>=0.10.0'} - requiresBuild: true + path-type@1.1.0: dependencies: graceful-fs: 4.2.11 pify: 2.3.0 pinkie-promise: 2.0.1 - dev: false optional: true - /path-type@3.0.0: - resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} - engines: {node: '>=4'} + path-type@3.0.0: dependencies: pify: 3.0.0 - /path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} + path-type@4.0.0: {} - /path-type@5.0.0: - resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} - engines: {node: '>=12'} - dev: true + path-type@5.0.0: {} - /path@0.12.7: - resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} + path@0.12.7: dependencies: process: 0.11.10 util: 0.10.4 - dev: true - /peek-readable@5.0.0: - resolution: {integrity: sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==} - engines: {node: '>=14.16'} - dev: true + peek-readable@5.0.0: {} - /pend@1.2.0: - resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + pend@1.2.0: {} - /performance-now@2.1.0: - resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + performance-now@2.1.0: {} - /picocolors@0.2.1: - resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==} + picocolors@0.2.1: {} - /picocolors@1.0.1: - resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} + picocolors@1.0.1: {} - /picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} + picomatch@2.3.1: {} - /pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} + pify@2.3.0: {} - /pify@3.0.0: - resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} - engines: {node: '>=4'} + pify@3.0.0: {} - /pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} + pify@4.0.1: {} - /pify@5.0.0: - resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} - engines: {node: '>=10'} - dev: true + pify@5.0.0: {} - /pinkie-promise@2.0.1: - resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==} - engines: {node: '>=0.10.0'} + pinkie-promise@2.0.1: dependencies: pinkie: 2.0.4 - /pinkie@2.0.4: - resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==} - engines: {node: '>=0.10.0'} + pinkie@2.0.4: {} - /pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} - engines: {node: '>= 6'} + pirates@4.0.6: {} - /pkg-dir@3.0.0: - resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} - engines: {node: '>=6'} + pkg-dir@3.0.0: dependencies: find-up: 3.0.0 - /pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: '>=8'} + pkg-dir@4.2.0: dependencies: find-up: 4.1.0 - /pkg-dir@5.0.0: - resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} - engines: {node: '>=10'} + pkg-dir@5.0.0: dependencies: find-up: 5.0.0 - /pnp-webpack-plugin@1.6.4(typescript@4.9.5): - resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} - engines: {node: '>=6'} + pnp-webpack-plugin@1.6.4(typescript@4.9.5): dependencies: ts-pnp: 1.2.0(typescript@4.9.5) transitivePeerDependencies: - typescript - /polished@4.3.1: - resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==} - engines: {node: '>=10'} + polished@4.3.1: dependencies: '@babel/runtime': 7.24.7 - dev: true - /popper.js@1.16.1: - resolution: {integrity: sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==} - deprecated: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1 - dev: false + popper.js@1.16.1: {} - /portfinder@1.0.32(supports-color@6.1.0): - resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} - engines: {node: '>= 0.12.0'} + portfinder@1.0.32: + dependencies: + async: 2.6.4 + debug: 3.2.7(supports-color@8.1.1) + mkdirp: 0.5.6 + transitivePeerDependencies: + - supports-color + + portfinder@1.0.32(supports-color@6.1.0): dependencies: async: 2.6.4 debug: 3.2.7(supports-color@6.1.0) @@ -42223,152 +49256,92 @@ packages: transitivePeerDependencies: - supports-color - /posix-character-classes@0.1.1: - resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} - engines: {node: '>=0.10.0'} + posix-character-classes@0.1.1: {} - /possible-typed-array-names@1.0.0: - resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} - engines: {node: '>= 0.4'} + possible-typed-array-names@1.0.0: {} - /postcss-calc@8.2.4(postcss@8.4.38): - resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} - peerDependencies: - postcss: ^8.2.2 + postcss-calc@8.2.4(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 - dev: true - /postcss-colormin@5.3.1(postcss@8.4.38): - resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-colormin@5.3.1(postcss@8.4.38): dependencies: browserslist: 4.23.1 caniuse-api: 3.0.0 colord: 2.9.3 postcss: 8.4.38 postcss-value-parser: 4.2.0 - dev: true - /postcss-convert-values@5.1.3(postcss@8.4.38): - resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-convert-values@5.1.3(postcss@8.4.38): dependencies: browserslist: 4.23.1 postcss: 8.4.38 postcss-value-parser: 4.2.0 - dev: true - /postcss-discard-comments@5.1.2(postcss@8.4.38): - resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-discard-comments@5.1.2(postcss@8.4.38): dependencies: postcss: 8.4.38 - dev: true - /postcss-discard-duplicates@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-discard-duplicates@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 - dev: true - /postcss-discard-empty@5.1.1(postcss@8.4.38): - resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-discard-empty@5.1.1(postcss@8.4.38): dependencies: postcss: 8.4.38 - dev: true - /postcss-discard-overridden@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-discard-overridden@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 - dev: true - /postcss-flexbugs-fixes@4.2.1: - resolution: {integrity: sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==} + postcss-flexbugs-fixes@4.2.1: dependencies: postcss: 7.0.39 - /postcss-import-ext-glob@2.1.1(postcss@8.4.38): - resolution: {integrity: sha512-qd4ELOx2G0hyjgtmLnf/fSVJXXPhkcxcxhLT1y1mAnk53JYbMLoGg+AFtnJowOSvnv4CvjPAzpLpAcfWeofP5g==} - peerDependencies: - postcss: ^8.2.0 + postcss-import-ext-glob@2.1.1(postcss@7.0.39): dependencies: fast-glob: 3.3.2 fast-sort: 3.4.0 - postcss: 8.4.38 + postcss: 7.0.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-import@14.1.0(postcss@8.4.38): - resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} - engines: {node: '>=10.0.0'} - peerDependencies: - postcss: ^8.0.0 + postcss-import@14.1.0(postcss@7.0.39): + dependencies: + postcss: 7.0.39 + postcss-value-parser: 4.2.0 + read-cache: 1.0.0 + resolve: 1.22.8 + + postcss-import@14.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 - dev: true - /postcss-load-config@2.1.2: - resolution: {integrity: sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==} - engines: {node: '>= 4'} + postcss-load-config@2.1.2: dependencies: cosmiconfig: 5.2.1 import-cwd: 2.1.0 - /postcss-load-config@3.1.4(postcss@8.4.38)(ts-node@10.9.2): - resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} - engines: {node: '>= 10'} - peerDependencies: - postcss: '>=8.0.9' - ts-node: '>=9.0.0' - peerDependenciesMeta: - postcss: - optional: true - ts-node: - optional: true + postcss-load-config@3.1.4(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)): dependencies: lilconfig: 2.1.0 - postcss: 8.4.38 - ts-node: 10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5) yaml: 1.10.2 - dev: true + optionalDependencies: + postcss: 8.4.38 + ts-node: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) - /postcss-loader@3.0.0: - resolution: {integrity: sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==} - engines: {node: '>= 6'} + postcss-loader@3.0.0: dependencies: loader-utils: 1.4.2 postcss: 7.0.39 postcss-load-config: 2.1.2 schema-utils: 1.0.0 - /postcss-loader@4.3.0(postcss@7.0.39)(webpack@5.84.1): - resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} - engines: {node: '>= 10.13.0'} - peerDependencies: - postcss: ^7.0.0 || ^8.0.1 - webpack: 5.84.1 + postcss-loader@4.3.0(postcss@7.0.39)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: cosmiconfig: 7.1.0 klona: 2.0.6 @@ -42376,186 +49349,116 @@ packages: postcss: 7.0.39 schema-utils: 3.3.0 semver: 7.6.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /postcss-loader@6.2.1(postcss@8.4.38)(webpack@5.84.1): - resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} - engines: {node: '>= 12.13.0'} - peerDependencies: - postcss: ^7.0.0 || ^8.0.1 - webpack: 5.84.1 + postcss-loader@6.2.1(postcss@8.4.38)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: cosmiconfig: 7.1.0 klona: 2.0.6 postcss: 8.4.38 semver: 7.6.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /postcss-merge-longhand@5.1.7(postcss@8.4.38): - resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-merge-longhand@5.1.7(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 stylehacks: 5.1.1(postcss@8.4.38) - dev: true - /postcss-merge-rules@5.1.4(postcss@8.4.38): - resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-merge-rules@5.1.4(postcss@8.4.38): dependencies: browserslist: 4.23.1 caniuse-api: 3.0.0 cssnano-utils: 3.1.0(postcss@8.4.38) postcss: 8.4.38 postcss-selector-parser: 6.1.0 - dev: true - /postcss-minify-font-values@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-minify-font-values@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - dev: true - /postcss-minify-gradients@5.1.1(postcss@8.4.38): - resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-minify-gradients@5.1.1(postcss@8.4.38): dependencies: colord: 2.9.3 cssnano-utils: 3.1.0(postcss@8.4.38) postcss: 8.4.38 postcss-value-parser: 4.2.0 - dev: true - /postcss-minify-params@5.1.4(postcss@8.4.38): - resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-minify-params@5.1.4(postcss@8.4.38): dependencies: browserslist: 4.23.1 cssnano-utils: 3.1.0(postcss@8.4.38) postcss: 8.4.38 postcss-value-parser: 4.2.0 - dev: true - /postcss-minify-selectors@5.2.1(postcss@8.4.38): - resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-minify-selectors@5.2.1(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-selector-parser: 6.1.0 - dev: true - /postcss-modules-extract-imports@1.2.1: - resolution: {integrity: sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==} + postcss-modules-extract-imports@1.2.1: dependencies: postcss: 6.0.23 - dev: true - /postcss-modules-extract-imports@2.0.0: - resolution: {integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==} - engines: {node: '>= 6'} + postcss-modules-extract-imports@2.0.0: dependencies: postcss: 7.0.39 - /postcss-modules-extract-imports@3.1.0(postcss@8.4.38): - resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-modules-extract-imports@3.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 - /postcss-modules-local-by-default@1.2.0: - resolution: {integrity: sha512-X4cquUPIaAd86raVrBwO8fwRfkIdbwFu7CTfEOjiZQHVQwlHRSkTgH5NLDmMm5+1hQO8u6dZ+TOOJDbay1hYpA==} + postcss-modules-local-by-default@1.2.0: dependencies: css-selector-tokenizer: 0.7.3 postcss: 6.0.23 - dev: true - /postcss-modules-local-by-default@3.0.3: - resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==} - engines: {node: '>= 6'} + postcss-modules-local-by-default@3.0.3: dependencies: icss-utils: 4.1.1 postcss: 7.0.39 postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 - /postcss-modules-local-by-default@4.0.5(postcss@8.4.38): - resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-modules-local-by-default@4.0.5(postcss@8.4.38): dependencies: icss-utils: 5.1.0(postcss@8.4.38) postcss: 8.4.38 postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 - /postcss-modules-scope@1.1.0: - resolution: {integrity: sha512-LTYwnA4C1He1BKZXIx1CYiHixdSe9LWYVKadq9lK5aCCMkoOkFyZ7aigt+srfjlRplJY3gIol6KUNefdMQJdlw==} + postcss-modules-scope@1.1.0: dependencies: css-selector-tokenizer: 0.7.3 postcss: 6.0.23 - dev: true - /postcss-modules-scope@2.2.0: - resolution: {integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==} - engines: {node: '>= 6'} + postcss-modules-scope@2.2.0: dependencies: postcss: 7.0.39 postcss-selector-parser: 6.1.0 - /postcss-modules-scope@3.2.0(postcss@8.4.38): - resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-modules-scope@3.2.0(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-selector-parser: 6.1.0 - /postcss-modules-values@1.3.0: - resolution: {integrity: sha512-i7IFaR9hlQ6/0UgFuqM6YWaCfA1Ej8WMg8A5DggnH1UGKJvTV/ugqq/KaULixzzOi3T/tF6ClBXcHGCzdd5unA==} + postcss-modules-values@1.3.0: dependencies: icss-replace-symbols: 1.1.0 postcss: 6.0.23 - dev: true - /postcss-modules-values@3.0.0: - resolution: {integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==} + postcss-modules-values@3.0.0: dependencies: icss-utils: 4.1.1 postcss: 7.0.39 - /postcss-modules-values@4.0.0(postcss@8.4.38): - resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-modules-values@4.0.0(postcss@8.4.38): dependencies: icss-utils: 5.1.0(postcss@8.4.38) postcss: 8.4.38 - /postcss-modules@4.3.1(postcss@8.4.38): - resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==} - peerDependencies: - postcss: ^8.0.0 + postcss-modules@4.3.1(postcss@8.4.38): dependencies: generic-names: 4.0.0 icss-replace-symbols: 1.1.0 @@ -42566,347 +49469,194 @@ packages: postcss-modules-scope: 3.2.0(postcss@8.4.38) postcss-modules-values: 4.0.0(postcss@8.4.38) string-hash: 1.1.3 - dev: true - /postcss-normalize-charset@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-charset@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 - dev: true - /postcss-normalize-display-values@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-display-values@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-positions@5.1.1(postcss@8.4.38): - resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-positions@5.1.1(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-repeat-style@5.1.1(postcss@8.4.38): - resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-repeat-style@5.1.1(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-string@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-string@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-timing-functions@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-timing-functions@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-unicode@5.1.1(postcss@8.4.38): - resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-unicode@5.1.1(postcss@8.4.38): dependencies: browserslist: 4.23.1 postcss: 8.4.38 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-url@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-url@5.1.0(postcss@8.4.38): dependencies: normalize-url: 6.1.0 postcss: 8.4.38 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-whitespace@5.1.1(postcss@8.4.38): - resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-whitespace@5.1.1(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - dev: true - /postcss-ordered-values@5.1.3(postcss@8.4.38): - resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-ordered-values@5.1.3(postcss@8.4.38): dependencies: cssnano-utils: 3.1.0(postcss@8.4.38) postcss: 8.4.38 postcss-value-parser: 4.2.0 - dev: true - /postcss-reduce-initial@5.1.2(postcss@8.4.38): - resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-reduce-initial@5.1.2(postcss@8.4.38): dependencies: browserslist: 4.23.1 caniuse-api: 3.0.0 postcss: 8.4.38 - dev: true - /postcss-reduce-transforms@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-reduce-transforms@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - dev: true - /postcss-selector-parser@6.1.0: - resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==} - engines: {node: '>=4'} + postcss-selector-parser@6.1.0: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - /postcss-svgo@5.1.0(postcss@8.4.38): - resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-svgo@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 svgo: 2.8.0 - dev: true - /postcss-unique-selectors@5.1.1(postcss@8.4.38): - resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-unique-selectors@5.1.1(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-selector-parser: 6.1.0 - dev: true - /postcss-value-parser@3.3.1: - resolution: {integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==} + postcss-value-parser@3.3.1: {} - /postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + postcss-value-parser@4.2.0: {} - /postcss@6.0.23: - resolution: {integrity: sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==} - engines: {node: '>=4.0.0'} + postcss@6.0.23: dependencies: chalk: 2.4.2 source-map: 0.6.1 supports-color: 5.5.0 - dev: true - /postcss@7.0.39: - resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==} - engines: {node: '>=6.0.0'} + postcss@7.0.39: dependencies: picocolors: 0.2.1 source-map: 0.6.1 - /postcss@8.4.38: - resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} - engines: {node: ^10 || ^12 || >=14} + postcss@8.4.38: dependencies: nanoid: 3.3.7 picocolors: 1.0.1 source-map-js: 1.2.0 - /preferred-pm@3.1.3: - resolution: {integrity: sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w==} - engines: {node: '>=10'} + preferred-pm@3.1.3: dependencies: find-up: 5.0.0 find-yarn-workspace-root2: 1.2.16 path-exists: 4.0.0 which-pm: 2.0.0 - dev: true - /prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} + prelude-ls@1.2.1: {} - /prepend-http@2.0.0: - resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} - engines: {node: '>=4'} - dev: false + prepend-http@2.0.0: {} - /prettier@1.19.1: - resolution: {integrity: sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==} - engines: {node: '>=4'} - hasBin: true - dev: true + prettier@1.19.1: {} - /prettier@2.3.0: - resolution: {integrity: sha512-kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w==} - engines: {node: '>=10.13.0'} - hasBin: true + prettier@2.3.0: {} - /prettier@2.8.8: - resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} - engines: {node: '>=10.13.0'} - hasBin: true - dev: true + prettier@2.8.8: {} - /pretty-bytes@5.6.0: - resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} - engines: {node: '>=6'} - dev: true + pretty-bytes@5.6.0: {} - /pretty-error@2.1.2: - resolution: {integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==} + pretty-error@2.1.2: dependencies: lodash: 4.17.21 renderkid: 2.0.7 - /pretty-error@4.0.0: - resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} + pretty-error@4.0.0: dependencies: lodash: 4.17.21 renderkid: 3.0.0 - /pretty-format@26.6.2: - resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} - engines: {node: '>= 10'} + pretty-format@26.6.2: dependencies: '@jest/types': 26.6.2 ansi-regex: 5.0.1 ansi-styles: 4.3.0 react-is: 17.0.2 - dev: true - /pretty-format@27.5.1: - resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + pretty-format@27.5.1: dependencies: ansi-regex: 5.0.1 ansi-styles: 5.2.0 react-is: 17.0.2 - dev: true - /pretty-format@28.1.3: - resolution: {integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + pretty-format@28.1.3: dependencies: '@jest/schemas': 28.1.3 ansi-regex: 5.0.1 ansi-styles: 5.2.0 react-is: 18.3.1 - dev: true - /pretty-format@29.7.0: - resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + pretty-format@29.7.0: dependencies: '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 react-is: 18.3.1 - /pretty-hrtime@1.0.3: - resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} - engines: {node: '>= 0.8'} + pretty-hrtime@1.0.3: {} - /prismjs@1.27.0: - resolution: {integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==} - engines: {node: '>=6'} - dev: true + prismjs@1.27.0: {} - /prismjs@1.29.0: - resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} - engines: {node: '>=6'} - dev: true + prismjs@1.29.0: {} - /private@0.1.8: - resolution: {integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==} - engines: {node: '>= 0.6'} + private@0.1.8: {} - /proc-log@2.0.1: - resolution: {integrity: sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dev: true + proc-log@2.0.1: {} - /process-nextick-args@2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + process-nextick-args@2.0.1: {} - /process-on-spawn@1.0.0: - resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==} - engines: {node: '>=8'} + process-on-spawn@1.0.0: dependencies: fromentries: 1.3.2 - dev: true - /process@0.11.10: - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} - engines: {node: '>= 0.6.0'} + process@0.11.10: {} - /progress@2.0.3: - resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} - engines: {node: '>=0.4.0'} + progress@2.0.3: {} - /promise-all-reject-late@1.0.1: - resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==} - dev: true + promise-all-reject-late@1.0.1: {} - /promise-call-limit@1.0.2: - resolution: {integrity: sha512-1vTUnfI2hzui8AEIixbdAJlFY4LFDXqQswy/2eOlThAscXCY4It8FdVuI0fMJGAB2aWGbdQf/gv0skKYXmdrHA==} - dev: true + promise-call-limit@1.0.2: {} - /promise-inflight@1.0.1: - resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} - peerDependencies: - bluebird: '*' - peerDependenciesMeta: - bluebird: - optional: true + promise-inflight@1.0.1: {} - /promise-retry@2.0.1: - resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} - engines: {node: '>=10'} + promise-retry@2.0.1: dependencies: err-code: 2.0.3 retry: 0.12.0 - dev: true - /promise.allsettled@1.0.7: - resolution: {integrity: sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==} - engines: {node: '>= 0.4'} + promise.allsettled@1.0.7: dependencies: array.prototype.map: 1.0.7 call-bind: 1.0.7 @@ -42915,9 +49665,7 @@ packages: get-intrinsic: 1.2.4 iterate-value: 1.0.2 - /promise.prototype.finally@3.1.8: - resolution: {integrity: sha512-aVDtsXOml9iuMJzUco9J1je/UrIT3oMYfWkCTiUhkt+AvZw72q4dUZnR/R/eB3h5GeAagQVXvM1ApoYniJiwoA==} - engines: {node: '>= 0.4'} + promise.prototype.finally@3.1.8: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -42925,107 +49673,73 @@ packages: es-errors: 1.3.0 set-function-name: 2.0.2 - /promise.series@0.2.0: - resolution: {integrity: sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==} - engines: {node: '>=0.12'} - dev: true + promise.series@0.2.0: {} - /promise@7.0.4: - resolution: {integrity: sha512-8z1gTSL9cMgqCx8zvMYhzT0eQURAQNSQqR8B2hGfCYkAzt1vjReVdKBv4YwGw3OXAPaxfm4aR0gLoBUon4VmmA==} + promise@7.0.4: dependencies: asap: 2.0.6 - dev: true - /promise@8.3.0: - resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} + promise@8.3.0: dependencies: asap: 2.0.6 - dev: false - /prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: '>= 6'} + prompts@2.4.2: dependencies: kleur: 3.0.3 sisteransi: 1.0.5 - /promzard@0.3.0: - resolution: {integrity: sha512-JZeYqd7UAcHCwI+sTOeUDYkvEU+1bQ7iE0UT1MgB/tERkAPkesW46MrpIySzODi+owTjZtiF8Ay5j9m60KmMBw==} + promzard@0.3.0: dependencies: read: 1.0.7 - dev: true - /prop-types@15.8.1: - resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + prop-types@15.8.1: dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 react-is: 16.13.1 - /property-information@5.6.0: - resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} + property-information@5.6.0: dependencies: xtend: 4.0.2 - /proto-list@1.2.4: - resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} + property-information@6.5.0: {} - /protocols@2.0.1: - resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} - dev: true + proto-list@1.2.4: {} - /proxy-addr@2.0.7: - resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} - engines: {node: '>= 0.10'} + protocols@2.0.1: {} + + proxy-addr@2.0.7: dependencies: forwarded: 0.2.0 ipaddr.js: 1.9.1 - /proxy-from-env@1.0.0: - resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==} - dev: true + proxy-from-env@1.0.0: {} - /proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + proxy-from-env@1.1.0: {} - /prr@1.0.1: - resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} - requiresBuild: true + prr@1.0.1: {} - /pseudomap@1.0.2: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} - dev: true + pseudomap@1.0.2: {} - /psl@1.9.0: - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} - dev: true + psl@1.9.0: {} - /pump@3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + pump@3.0.0: dependencies: end-of-stream: 1.4.4 once: 1.4.0 - /punycode@1.4.1: - resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} + punycode@1.4.1: {} - /punycode@2.3.1: - resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} - engines: {node: '>=6'} + punycode@2.3.1: {} - /pupa@2.1.1: - resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==} - engines: {node: '>=8'} + pupa@2.1.1: dependencies: escape-goat: 2.1.1 - dev: false - /puppeteer-core@2.1.1: - resolution: {integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==} - engines: {node: '>=8.16.0'} + puppeteer-core@2.1.1: dependencies: '@types/mime-types': 2.1.4 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) extract-zip: 1.7.0 https-proxy-agent: 4.0.0 mime: 2.6.0 @@ -43038,200 +49752,125 @@ packages: - bufferutil - supports-color - utf-8-validate - dev: false - - /pure-rand@6.1.0: - resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} - /q@1.5.1: - resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} - engines: {node: '>=0.6.0', teleport: '>=0.2.0'} - deprecated: |- - You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. + pure-rand@6.1.0: {} - (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) + q@1.5.1: {} - /qr.js@0.0.0: - resolution: {integrity: sha512-c4iYnWb+k2E+vYpRimHqSu575b1/wKl4XFeJGpFmrJQz5I88v9aY2czh7s0w36srfCM1sXgC/xpoJz5dJfq+OQ==} - dev: false + qr.js@0.0.0: {} - /qrcode.react@1.0.1(react@18.3.1): - resolution: {integrity: sha512-8d3Tackk8IRLXTo67Y+c1rpaiXjoz/Dd2HpcMdW//62/x8J1Nbho14Kh8x974t9prsLHN6XqVgcnRiBGFptQmg==} - peerDependencies: - react: ^15.5.3 || ^16.0.0 || ^17.0.0 + qrcode.react@1.0.1(react@18.3.1): dependencies: loose-envify: 1.4.0 prop-types: 15.8.1 qr.js: 0.0.0 react: 18.3.1 - dev: false - /qs@6.10.4: - resolution: {integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==} - engines: {node: '>=0.6'} + qs@6.10.4: dependencies: side-channel: 1.0.6 - dev: true - /qs@6.11.0: - resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} - engines: {node: '>=0.6'} + qs@6.11.0: dependencies: side-channel: 1.0.6 - /qs@6.12.1: - resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==} - engines: {node: '>=0.6'} + qs@6.12.1: dependencies: side-channel: 1.0.6 - /query-string@7.1.3: - resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} - engines: {node: '>=6'} + query-string@7.1.3: dependencies: decode-uri-component: 0.2.2 filter-obj: 1.1.0 split-on-first: 1.1.0 strict-uri-encode: 2.0.0 - dev: true - /querystring@0.2.1: - resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} - engines: {node: '>=0.4.x'} - deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. - dev: true + querystring@0.2.1: {} - /querystringify@2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + querystringify@2.2.0: {} - /queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + queue-microtask@1.2.3: {} - /quick-lru@4.0.1: - resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} - engines: {node: '>=8'} - dev: true + quick-lru@4.0.1: {} - /quick-lru@5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: '>=10'} - dev: true + quick-lru@5.1.1: {} - /raf@3.4.1: - resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} + raf@3.4.1: dependencies: performance-now: 2.1.0 - dev: false - /ramda@0.28.0: - resolution: {integrity: sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA==} + ramda@0.28.0: {} - /randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + randombytes@2.1.0: dependencies: safe-buffer: 5.2.1 - /range-parser@1.2.1: - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} - engines: {node: '>= 0.6'} + range-parser@1.2.1: {} - /raw-body@2.5.2: - resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} - engines: {node: '>= 0.8'} + raw-body@2.5.2: dependencies: bytes: 3.1.2 http-errors: 2.0.0 iconv-lite: 0.4.24 unpipe: 1.0.0 - /raw-loader@4.0.2(webpack@5.84.1): - resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 + raw-loader@4.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /rc-motion@2.9.2(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-fUAhHKLDdkAXIDLH0GYwof3raS58dtNUmzLF2MeiR8o6n4thNpSDQhOqQzWE4WfFZDCi9VEN8n7tiB7czREcyw==} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' + rc-motion@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - /rc-resize-observer@1.4.0(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-PnMVyRid9JLxFavTjeDXEXo65HCRqbmLBw9xX9gfC4BZiSzbLXKzW3jPz+J0P71pLbD5tBMTT+mkstV5gD0c9Q==} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' + rc-resize-observer@1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) resize-observer-polyfill: 1.5.1 - /rc-tree@4.2.2(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-V1hkJt092VrOVjNyfj5IYbZKRMHxWihZarvA5hPL/eqm7o2+0SNkeidFYm7LVVBrAKBpOpa0l8xt04uiqOd+6w==} - engines: {node: '>=10.x'} - peerDependencies: - react: '*' - react-dom: '*' + rc-tree@4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 classnames: 2.5.1 - rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) - rc-virtual-list: 3.14.3(react-dom@18.3.1)(react@18.3.1) + rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-virtual-list: 3.14.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - /rc-util@5.43.0(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-AzC7KKOXFqAdIBqdGWepL9Xn7cm3vnAmjlHqUnoQaTMZYhM4VlXGLkkHHxj/BZ7Td0+SOPKB4RGPboBVKT9htw==} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' + rc-util@5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - /rc-virtual-list@3.14.3(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-6+6wiEhdqakNBnbRJymgMlh+90qpkgqherTRo1l1cX7mK6F9hWsazPczmP0lA+64yhC9/t+M9Dh5pjvDWimn8A==} - engines: {node: '>=8.x'} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' + rc-virtual-list@3.14.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 classnames: 2.5.1 - rc-resize-observer: 1.4.0(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-resize-observer: 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - /rc@1.2.8: - resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} - hasBin: true + rc@1.2.8: dependencies: deep-extend: 0.6.0 ini: 1.3.8 minimist: 1.2.8 strip-json-comments: 2.0.1 - dev: false - /react-app-polyfill@1.0.6: - resolution: {integrity: sha512-OfBnObtnGgLGfweORmdZbyEz+3dgVePQBb3zipiaDsMHV1NpWm0rDFYIVXFV/AK+x4VIIfWHhrdMIeoTLyRr2g==} - engines: {node: '>=6'} + react-app-polyfill@1.0.6: dependencies: core-js: 3.37.1 object-assign: 4.1.1 @@ -43239,22 +49878,13 @@ packages: raf: 3.4.1 regenerator-runtime: 0.13.11 whatwg-fetch: 3.6.20 - dev: false - /react-codemirror2@6.0.1(codemirror@5.65.16)(react@18.3.1): - resolution: {integrity: sha512-rutEKVgvFhWcy/GeVA1hFbqrO89qLqgqdhUr7YhYgIzdyICdlRQv+ztuNvOFQMXrO0fLt0VkaYOdMdYdQgsSUA==} - peerDependencies: - codemirror: 5.x - react: '>=15.5 <=16.x' + react-codemirror2@6.0.1(codemirror@5.65.16)(react@18.3.1): dependencies: codemirror: 5.65.16 react: 18.3.1 - dev: false - /react-color@2.19.3(react@18.3.1): - resolution: {integrity: sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==} - peerDependencies: - react: '*' + react-color@2.19.3(react@18.3.1): dependencies: '@icons/material': 0.2.4(react@18.3.1) lodash: 4.17.21 @@ -43264,47 +49894,27 @@ packages: react: 18.3.1 reactcss: 1.2.3(react@18.3.1) tinycolor2: 1.6.0 - dev: false - /react-colorful@5.6.1: - resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==} - peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' - dev: true + react-colorful@5.6.1: {} - /react-docgen-typescript-loader@3.7.2(typescript@4.9.5)(webpack@5.84.1): - resolution: {integrity: sha512-fNzUayyUGzSyoOl7E89VaPKJk9dpvdSgyXg81cUkwy0u+NBvkzQG3FC5WBIlXda0k/iaxS+PWi+OC+tUiGxzPA==} - peerDependencies: - typescript: '*' + react-docgen-typescript-loader@3.7.2(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: - '@webpack-contrib/schema-utils': 1.0.0-beta.0(webpack@5.84.1) + '@webpack-contrib/schema-utils': 1.0.0-beta.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) loader-utils: 1.4.2 react-docgen-typescript: 1.22.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - webpack - dev: true - /react-docgen-typescript@1.22.0(typescript@4.9.5): - resolution: {integrity: sha512-MPLbF8vzRwAG3GcjdL+OHQlhgtWsLTXs+7uJiHfEeT3Ur7IsZaNYqRTLQ9sj2nB6M6jylcPCeCmH7qbszJmecg==} - peerDependencies: - typescript: '>= 3.x' + react-docgen-typescript@1.22.0(typescript@4.9.5): dependencies: typescript: 4.9.5 - dev: true - /react-docgen-typescript@2.2.2(typescript@4.9.5): - resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} - peerDependencies: - typescript: '>= 4.3.x' + react-docgen-typescript@2.2.2(typescript@4.9.5): dependencies: typescript: 4.9.5 - /react-docgen@5.4.3: - resolution: {integrity: sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA==} - engines: {node: '>=8.10.0'} - hasBin: true + react-docgen@5.4.3: dependencies: '@babel/core': 7.24.7 '@babel/generator': 7.24.7 @@ -43319,73 +49929,38 @@ packages: transitivePeerDependencies: - supports-color - /react-dom@16.14.0(react@16.14.0): - resolution: {integrity: sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==} - peerDependencies: - react: ^16.14.0 - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - prop-types: 15.8.1 - react: 16.14.0 - scheduler: 0.19.1 - - /react-dom@18.3.1(react@18.3.1): - resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} - peerDependencies: - react: ^18.3.1 + react-dom@18.3.1(react@18.3.1): dependencies: loose-envify: 1.4.0 react: 18.3.1 scheduler: 0.23.2 - /react-draggable@4.4.6(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-LtY5Xw1zTPqHkVmtM3X8MUOxNDOUhv/khTgBgrUvwaS064bwVvxT+q5El0uUFNx5IEPKXuRejr7UqLwBIg5pdw==} - peerDependencies: - react: '>= 16.3.0' - react-dom: '>= 16.3.0' + react-draggable@4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - /react-element-to-jsx-string@14.3.4(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} - peerDependencies: - react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 - react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 + react-element-to-jsx-string@14.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 17.0.2 - dev: false - /react-fast-compare@2.0.4: - resolution: {integrity: sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==} - dev: false + react-fast-compare@2.0.4: {} - /react-fast-compare@3.2.2: - resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} + react-fast-compare@3.2.2: {} - /react-final-form@6.5.9(final-form@4.20.10)(react@18.3.1): - resolution: {integrity: sha512-x3XYvozolECp3nIjly+4QqxdjSSWfcnpGEL5K8OBT6xmGrq5kBqbA6+/tOqoom9NwqIPPbxPNsOViFlbKgowbA==} - peerDependencies: - final-form: ^4.20.4 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-final-form@6.5.9(final-form@4.20.10)(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 final-form: 4.20.10 react: 18.3.1 - dev: false - /react-floater@0.7.9(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-NXqyp9o8FAXOATOEo0ZpyaQ2KPb4cmPMXGWkx377QtJkIXHlHRAGer7ai0r0C1kG5gf+KJ6Gy+gdNIiosvSicg==} - peerDependencies: - react: 15 - 18 - react-dom: 15 - 18 + react-floater@0.7.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: deepmerge: 4.3.1 is-lite: 0.8.2 @@ -43394,52 +49969,28 @@ packages: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) tree-changes: 0.9.3 - dev: false - /react-head@3.4.2: - resolution: {integrity: sha512-mnl6u7E0SSzY9w+mExKGVz8vW/oObUTnj+vpRaZF6jcdjFcCGs0vl8MRwlRws56dye3f1CpzU7C/hz3b3S2BBA==} - peerDependencies: - react: '>=16.3' - react-dom: '>=16.3' + react-head@3.4.2: dependencies: '@babel/runtime': 7.24.7 - dev: false - /react-helmet-async@1.3.0: - resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==} - peerDependencies: - react: ^16.6.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 + react-helmet-async@1.3.0: dependencies: '@babel/runtime': 7.24.7 invariant: 2.2.4 prop-types: 15.8.1 react-fast-compare: 3.2.2 shallowequal: 1.1.0 - dev: true - /react-helmet@5.2.1(react@18.3.1): - resolution: {integrity: sha512-CnwD822LU8NDBnjCpZ4ySh8L6HYyngViTZLfBBb3NjtrpN8m49clH8hidHouq20I51Y6TpCTISCBbqiY5GamwA==} - peerDependencies: - react: '>=15.0.0' + react-helmet@5.2.1(react@18.3.1): dependencies: object-assign: 4.1.1 prop-types: 15.8.1 react: 18.3.1 react-fast-compare: 2.0.4 react-side-effect: 1.2.0(react@18.3.1) - dev: false - /react-hot-loader@4.13.1: - resolution: {integrity: sha512-ZlqCfVRqDJmMXTulUGic4lN7Ic1SXgHAFw7y/Jb7t25GBgTR0fYAJ8uY4mrpxjRyWGWmqw77qJQGnYbzCvBU7g==} - engines: {node: '>= 6'} - peerDependencies: - '@types/react': 18.0.18 - react: ^15.0.0 || ^16.0.0 || ^17.0.0 - react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + react-hot-loader@4.13.1(@types/react@18.0.18): dependencies: fast-levenshtein: 2.0.6 global: 4.4.0 @@ -43449,63 +50000,37 @@ packages: react-lifecycles-compat: 3.0.4 shallowequal: 1.1.0 source-map: 0.7.4 - dev: true + optionalDependencies: + '@types/react': 18.0.18 - /react-i18next@11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-yHb2F9BiT0lqoQDt8loZ5gWP331GwctHz9tYQ8A2EIEUu+CcEdjBLQWli1USG3RdWQt3W+jqQLg/d4rrQR96LA==} - peerDependencies: - i18next: '>= 19.0.0' - react: '>= 16.8.0' - react-dom: '*' - react-native: '*' - peerDependenciesMeta: - react-dom: - optional: true - react-native: - optional: true + react-i18next@11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 html-parse-stringify: 3.0.1 i18next: 21.10.0 react: 18.3.1 + optionalDependencies: react-dom: 18.3.1(react@18.3.1) - dev: false - /react-innertext@1.1.5(@types/react@18.0.18)(react@18.3.1): - resolution: {integrity: sha512-PWAqdqhxhHIv80dT9znP2KvS+hfkbRovFp4zFYHFFlOoQLRiawIic81gKb3U1wEyJZgMwgs3JoLtwryASRWP3Q==} - peerDependencies: - '@types/react': 18.0.18 - react: '>=0.0.0 <=99' + react-innertext@1.1.5(@types/react@18.0.18)(react@18.3.1): dependencies: '@types/react': 18.0.18 react: 18.3.1 - dev: false - /react-inspector@5.1.1(react@18.3.1): - resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==} - peerDependencies: - react: ^16.8.4 || ^17.0.0 + react-inspector@5.1.1(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 is-dom: 1.1.0 prop-types: 15.8.1 react: 18.3.1 - dev: true - /react-is@16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + react-is@16.13.1: {} - /react-is@17.0.2: - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + react-is@17.0.2: {} - /react-is@18.3.1: - resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} + react-is@18.3.1: {} - /react-joyride@2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-2QY8HB1G0I2OT0PKMUz7gg2HAjdkG2Bqi13r0Bb1V16PAwfb9khn4wWBTOJsGsjulbAWiQ3/0YrgNUHGFmuifw==} - peerDependencies: - react: 15 - 18 - react-dom: 15 - 18 + react-joyride@2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@gilbarbara/deep-equal': 0.3.1 deep-diff: 1.0.2 @@ -43513,7 +50038,7 @@ packages: is-lite: 1.2.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-floater: 0.7.9(react-dom@18.3.1)(react@18.3.1) + react-floater: 0.7.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-innertext: 1.1.5(@types/react@18.0.18)(react@18.3.1) react-is: 16.13.1 scroll: 3.0.1 @@ -43522,78 +50047,44 @@ packages: type-fest: 4.20.1 transitivePeerDependencies: - '@types/react' - dev: false - - /react-lifecycles-compat@3.0.4: - resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} - dev: true - - /react-markdown@4.3.1(react@18.3.1): - resolution: {integrity: sha512-HQlWFTbDxTtNY6bjgp3C3uv1h2xcjCSi1zAEzfBW9OwJJvENSYiLXWNXN5hHLsoqai7RnZiiHzcnWdXk2Splzw==} - peerDependencies: - react: ^15.0.0 || ^16.0.0 - dependencies: - html-to-react: 1.7.0(react@18.3.1) - mdast-add-list-metadata: 1.0.1 - prop-types: 15.8.1 - react: 18.3.1 - react-is: 16.13.1 - remark-parse: 5.0.0 - unified: 6.2.0 - unist-util-visit: 1.4.1 - xtend: 4.0.2 - dev: false - /react-notification-system@0.4.0(react-dom@16.14.0)(react@16.14.0): - resolution: {integrity: sha512-5WhXnjkYC07zqXruCiUXDU9iHjVxZlL1zgHpNgXk91A5ghV1AHrWVrJYo1XM4SnwlKy5NLdftkaTl+pTuVFAqw==} - peerDependencies: - react: "0.14.x || ^15.0.0 ||\_^16.0.0" - react-dom: 0.14.x || ^15.0.0 || ^16.0.0 + react-lifecycles-compat@3.0.4: {} + + react-markdown@9.0.1(@types/react@18.0.18)(react@18.3.1): dependencies: - object-assign: 4.1.1 - prop-types: 15.8.1 - react: 16.14.0 - react-dom: 16.14.0(react@16.14.0) - dev: false + '@types/hast': 3.0.4 + '@types/react': 18.0.18 + devlop: 1.1.0 + hast-util-to-jsx-runtime: 2.3.0 + html-url-attributes: 3.0.0 + mdast-util-to-hast: 13.2.0 + react: 18.3.1 + remark-parse: 11.0.0 + remark-rehype: 11.1.0 + unified: 11.0.5 + unist-util-visit: 5.0.0 + vfile: 6.0.1 + transitivePeerDependencies: + - supports-color - /react-notification-system@0.4.0(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-5WhXnjkYC07zqXruCiUXDU9iHjVxZlL1zgHpNgXk91A5ghV1AHrWVrJYo1XM4SnwlKy5NLdftkaTl+pTuVFAqw==} - peerDependencies: - react: "0.14.x || ^15.0.0 ||\_^16.0.0" - react-dom: 0.14.x || ^15.0.0 || ^16.0.0 + react-notification-system@0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: object-assign: 4.1.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false - /react-password-strength-bar@0.3.5: - resolution: {integrity: sha512-e48tYTKZ5gy1tUYYT3aJ+BWggg0RE/ZUN8ep6sHgGuI9SqJTgd4WL4TFgT37kX09NyQwSOcZKHpcKQEtCEECuA==} - peerDependencies: - react: ^16.8.6 || ^17 - react-dom: ^16.8.6 || ^17 + react-password-strength-bar@0.3.5: dependencies: zxcvbn: 4.4.2 - dev: false - /react-popper-tooltip@3.1.1: - resolution: {integrity: sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==} - peerDependencies: - react: ^16.6.0 || ^17.0.0 - react-dom: ^16.6.0 || ^17.0.0 + react-popper-tooltip@3.1.1: dependencies: '@babel/runtime': 7.24.7 '@popperjs/core': 2.11.8 - react-popper: 2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1)(react@18.3.1) - dev: true + react-popper: 2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - /react-popper@2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==} - peerDependencies: - '@popperjs/core': ^2.0.0 - react: ^16.8.0 || ^17 || ^18 - react-dom: ^16.8.0 || ^17 || ^18 + react-popper@2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@popperjs/core': 2.11.8 react: 18.3.1 @@ -43601,21 +50092,9 @@ packages: react-fast-compare: 3.2.2 warning: 4.0.3 - /react-property@2.0.0: - resolution: {integrity: sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw==} - dev: false + react-property@2.0.0: {} - /react-redux@7.2.9(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==} - peerDependencies: - react: ^16.8.3 || ^17 || ^18 - react-dom: '*' - react-native: '*' - peerDependenciesMeta: - react-dom: - optional: true - react-native: - optional: true + react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 '@types/react-redux': 7.1.33 @@ -43623,28 +50102,17 @@ packages: loose-envify: 1.4.0 prop-types: 15.8.1 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) react-is: 17.0.2 - dev: false + optionalDependencies: + react-dom: 18.3.1(react@18.3.1) - /react-refresh@0.10.0: - resolution: {integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==} - engines: {node: '>=0.10.0'} - dev: true + react-refresh@0.10.0: {} - /react-refresh@0.11.0: - resolution: {integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==} - engines: {node: '>=0.10.0'} + react-refresh@0.11.0: {} - /react-refresh@0.9.0: - resolution: {integrity: sha512-Gvzk7OZpiqKSkxsQvO/mbTN1poglhmAV7gR/DdIrRrSMXraRQQlfikRJOr3Nb9GTMPC5kof948Zy6jJZIFtDvQ==} - engines: {node: '>=0.10.0'} - dev: true + react-refresh@0.9.0: {} - /react-router-dom@4.3.1(react@18.3.1): - resolution: {integrity: sha512-c/MlywfxDdCp7EnB7YfPMOfMD3tOtIjrQlj/CKfNMBxdmpJP8xcz5P/UAFn3JbnQCNUxsHyVVqllF9LhgVyFCA==} - peerDependencies: - react: '>=15' + react-router-dom@4.3.1(react@18.3.1): dependencies: history: 4.10.1 invariant: 2.2.4 @@ -43653,24 +50121,15 @@ packages: react: 18.3.1 react-router: 4.3.1(react@18.3.1) warning: 4.0.3 - dev: false - /react-router-dom@6.23.1(react-dom@16.14.0)(react@16.14.0): - resolution: {integrity: sha512-utP+K+aSTtEdbWpC+4gxhdlPFwuEfDKq8ZrPFU65bbRJY+l706qjR7yaidBpo3MSeA/fzwbXWbKBI6ftOnP3OQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - react: '>=16.8' - react-dom: '>=16.8' + react-router-dom@6.23.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@remix-run/router': 1.16.1 - react: 16.14.0 - react-dom: 16.14.0(react@16.14.0) - react-router: 6.23.1(react@16.14.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router: 6.23.1(react@18.3.1) - /react-router@4.3.1(react@18.3.1): - resolution: {integrity: sha512-yrvL8AogDh2X42Dt9iknk4wF4V8bWREPirFfS9gLU1huk6qK41sg7Z/1S81jjTrGHxa3B8R3J6xIkDAA6CVarg==} - peerDependencies: - react: '>=15' + react-router@4.3.1(react@18.3.1): dependencies: history: 4.10.1 hoist-non-react-statics: 2.5.5 @@ -43680,91 +50139,55 @@ packages: prop-types: 15.8.1 react: 18.3.1 warning: 4.0.3 - dev: false - /react-router@6.23.1(react@16.14.0): - resolution: {integrity: sha512-fzcOaRF69uvqbbM7OhvQyBTFDVrrGlsFdS3AL+1KfIBtGETibHzi3FkoTRyiDJnWNc2VxrfvR+657ROHjaNjqQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - react: '>=16.8' + react-router@6.23.1(react@18.3.1): dependencies: '@remix-run/router': 1.16.1 - react: 16.14.0 + react: 18.3.1 - /react-side-effect@1.2.0(react@18.3.1): - resolution: {integrity: sha512-v1ht1aHg5k/thv56DRcjw+WtojuuDHFUgGfc+bFHOWsF4ZK6C2V57DO0Or0GPsg6+LSTE0M6Ry/gfzhzSwbc5w==} - peerDependencies: - react: ^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0 + react-side-effect@1.2.0(react@18.3.1): dependencies: react: 18.3.1 shallowequal: 1.1.0 - dev: false - /react-sizeme@3.0.2: - resolution: {integrity: sha512-xOIAOqqSSmKlKFJLO3inBQBdymzDuXx4iuwkNcJmC96jeiOg5ojByvL+g3MW9LPEsojLbC6pf68zOfobK8IPlw==} + react-sizeme@3.0.2: dependencies: element-resize-detector: 1.2.4 invariant: 2.2.4 shallowequal: 1.1.0 throttle-debounce: 3.0.1 - dev: true - /react-smooth@4.0.1(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-OE4hm7XqR0jNOq3Qmk9mFLyd6p2+j6bvbPJ7qlB7+oo0eNcL2l7WQzG6MBnT3EXY6xzkLMUBec3AfewJdA0J8w==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-smooth@4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: fast-equals: 5.0.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-transition-group: 4.4.5(react-dom@18.3.1)(react@18.3.1) - dev: false + react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - /react-syntax-highlighter@13.5.3: - resolution: {integrity: sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==} - peerDependencies: - react: '>= 0.14.0' + react-syntax-highlighter@13.5.3: dependencies: '@babel/runtime': 7.24.7 highlight.js: 10.7.3 lowlight: 1.20.0 prismjs: 1.29.0 refractor: 3.6.0 - dev: true - /react-textarea-autosize@8.5.3: - resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==} - engines: {node: '>=10'} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-textarea-autosize@8.5.3(@types/react@18.0.18): dependencies: '@babel/runtime': 7.24.7 use-composed-ref: 1.3.0 - use-latest: 1.2.1 + use-latest: 1.2.1(@types/react@18.0.18) transitivePeerDependencies: - '@types/react' - dev: true - /react-top-loading-bar@1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-5oNdy+DfD5JK06bcc/gsnnXHmml+d8eaBe3C8KQ3eLiH/BD8+FcwsgbAwqgOaRjuSeVQXdYN2JC2G1uVFtCLfA==} - engines: {node: '>=8', npm: '>=5'} - peerDependencies: - prop-types: ^15.5.4 - react: ^15.0.0 || ^16.0.0 - react-dom: ^15.0.0 || ^16.0.0 + react-top-loading-bar@1.2.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false - /react-transition-group@4.4.5(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} - peerDependencies: - react: '>=16.6.0' - react-dom: '>=16.6.0' + react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 dom-helpers: 5.2.1 @@ -43772,174 +50195,111 @@ packages: prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false - /react-world-flags@1.6.0(react@18.3.1): - resolution: {integrity: sha512-eutSeAy5YKoVh14js/JUCSlA6EBk1n4k+bDaV+NkNB50VhnG+f4QDTpYycnTUTsZ5cqw/saPmk0Z4Fa0VVZ1Iw==} - peerDependencies: - react: '>=0.14' + react-world-flags@1.6.0(react@18.3.1): dependencies: react: 18.3.1 svg-country-flags: 1.2.10 svgo: 3.3.2 world-countries: 5.0.0 - dev: false - - /react@16.14.0: - resolution: {integrity: sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==} - engines: {node: '>=0.10.0'} - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - prop-types: 15.8.1 - /react@18.3.1: - resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} - engines: {node: '>=0.10.0'} + react@18.3.1: dependencies: loose-envify: 1.4.0 - /reactcss@1.2.3(react@18.3.1): - resolution: {integrity: sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==} - peerDependencies: - react: '*' + reactcss@1.2.3(react@18.3.1): dependencies: lodash: 4.17.21 react: 18.3.1 - dev: false - /reactflow@11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-HBudD8BwZacOMqX8fbkiXbeBQs3nRezWVLCDurfc+tTeHsA7988uyaIOhrnKgYCcKtlpJaspsnxDZk+5JmmHxA==} - peerDependencies: - react: '>=17' - react-dom: '>=17' + reactflow@11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@reactflow/background': 11.2.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@reactflow/controls': 11.1.13(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@reactflow/minimap': 11.5.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@reactflow/node-resizer': 2.1.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@reactflow/node-toolbar': 1.2.1(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/background': 11.2.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/controls': 11.1.13(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/minimap': 11.5.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/node-resizer': 2.1.0(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/node-toolbar': 1.2.1(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - immer - dev: false - /read-cache@1.0.0: - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + read-cache@1.0.0: dependencies: pify: 2.3.0 - dev: true - /read-cmd-shim@3.0.1: - resolution: {integrity: sha512-kEmDUoYf/CDy8yZbLTmhB1X9kkjf9Q80PCNsDMb7ufrGd6zZSQA1+UyjrO+pZm5K/S4OXCWJeiIt1JA8kAsa6g==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dev: true + read-cmd-shim@3.0.1: {} - /read-package-json-fast@2.0.3: - resolution: {integrity: sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==} - engines: {node: '>=10'} + read-package-json-fast@2.0.3: dependencies: json-parse-even-better-errors: 2.3.1 npm-normalize-package-bin: 1.0.1 - dev: true - /read-package-json@5.0.2: - resolution: {integrity: sha512-BSzugrt4kQ/Z0krro8zhTwV1Kd79ue25IhNN/VtHFy1mG/6Tluyi+msc0UpwaoQzxSHa28mntAjIZY6kEgfR9Q==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. Please use @npmcli/package-json instead. + read-package-json@5.0.2: dependencies: glob: 8.1.0 json-parse-even-better-errors: 2.3.1 normalize-package-data: 4.0.1 npm-normalize-package-bin: 2.0.0 - dev: true - /read-pkg-up@1.0.1: - resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==} - engines: {node: '>=0.10.0'} - requiresBuild: true + read-pkg-up@1.0.1: dependencies: find-up: 1.1.2 read-pkg: 1.1.0 - dev: false optional: true - /read-pkg-up@3.0.0: - resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} - engines: {node: '>=4'} + read-pkg-up@3.0.0: dependencies: find-up: 2.1.0 read-pkg: 3.0.0 - dev: true - /read-pkg-up@7.0.1: - resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} - engines: {node: '>=8'} + read-pkg-up@7.0.1: dependencies: find-up: 4.1.0 read-pkg: 5.2.0 type-fest: 0.8.1 - /read-pkg@1.1.0: - resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==} - engines: {node: '>=0.10.0'} - requiresBuild: true + read-pkg@1.1.0: dependencies: load-json-file: 1.1.0 normalize-package-data: 2.5.0 path-type: 1.1.0 - dev: false optional: true - /read-pkg@3.0.0: - resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} - engines: {node: '>=4'} + read-pkg@3.0.0: dependencies: load-json-file: 4.0.0 normalize-package-data: 2.5.0 path-type: 3.0.0 - dev: true - /read-pkg@5.2.0: - resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} - engines: {node: '>=8'} + read-pkg@5.2.0: dependencies: '@types/normalize-package-data': 2.4.4 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 - /read-yaml-file@1.1.0: - resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} - engines: {node: '>=6'} + read-yaml-file@1.1.0: dependencies: graceful-fs: 4.2.11 js-yaml: 3.13.1 pify: 4.0.1 strip-bom: 3.0.0 - dev: true - /read@1.0.7: - resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} - engines: {node: '>=0.8'} + read@1.0.7: dependencies: mute-stream: 0.0.8 - dev: true - /readable-stream@1.1.14: - resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==} + readable-stream@1.1.14: dependencies: core-util-is: 1.0.3 inherits: 2.0.4 isarray: 0.0.1 string_decoder: 0.10.31 - dev: false - /readable-stream@2.3.8: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + readable-stream@2.3.8: dependencies: core-util-is: 1.0.3 inherits: 2.0.4 @@ -43949,34 +50309,24 @@ packages: string_decoder: 1.1.1 util-deprecate: 1.0.2 - /readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} + readable-stream@3.6.2: dependencies: inherits: 2.0.4 string_decoder: 1.3.0 util-deprecate: 1.0.2 - /readable-web-to-node-stream@3.0.2: - resolution: {integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==} - engines: {node: '>=8'} + readable-web-to-node-stream@3.0.2: dependencies: readable-stream: 3.6.2 - dev: true - /readdir-scoped-modules@1.1.0: - resolution: {integrity: sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==} - deprecated: This functionality has been moved to @npmcli/fs + readdir-scoped-modules@1.1.0: dependencies: debuglog: 1.0.1 dezalgo: 1.0.4 graceful-fs: 4.2.11 once: 1.4.0 - dev: true - /readdirp@2.2.1(supports-color@6.1.0): - resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==} - engines: {node: '>=0.10'} + readdirp@2.2.1(supports-color@6.1.0): dependencies: graceful-fs: 4.2.11 micromatch: 3.1.10(supports-color@6.1.0) @@ -43984,44 +50334,29 @@ packages: transitivePeerDependencies: - supports-color - /readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + readdirp@3.6.0: dependencies: picomatch: 2.3.1 - /recast@0.19.1: - resolution: {integrity: sha512-8FCjrBxjeEU2O6I+2hyHyBFH1siJbMBLwIRvVr1T3FD2cL754sOaJDsJ/8h3xYltasbJ8jqWRIhMuDGBSiSbjw==} - engines: {node: '>= 4'} + recast@0.19.1: dependencies: ast-types: 0.13.3 esprima: 4.0.1 private: 0.1.8 source-map: 0.6.1 - dev: false - /recast@0.20.5: - resolution: {integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==} - engines: {node: '>= 4'} + recast@0.20.5: dependencies: ast-types: 0.14.2 esprima: 4.0.1 source-map: 0.6.1 tslib: 2.6.3 - dev: false - /recharts-scale@0.4.5: - resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==} + recharts-scale@0.4.5: dependencies: decimal.js-light: 2.5.1 - dev: false - /recharts@2.12.7(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-hlLJMhPQfv4/3NBSAyq3gzGg4h2v69RJh6KU7b3pXYNNAELs9kEoXOjbkxdXpALqKBoVmVptGfLpxdaVYqjmXQ==} - engines: {node: '>=14'} - peerDependencies: - react: ^16.0.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 + recharts@2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: clsx: 2.1.1 eventemitter3: 4.0.7 @@ -44029,67 +50364,37 @@ packages: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 16.13.1 - react-smooth: 4.0.1(react-dom@18.3.1)(react@18.3.1) + react-smooth: 4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts-scale: 0.4.5 tiny-invariant: 1.3.3 victory-vendor: 36.9.2 - dev: false - /rechoir@0.6.2: - resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} - engines: {node: '>= 0.10'} + rechoir@0.6.2: dependencies: resolve: 1.22.8 - dev: false - /rechoir@0.7.1: - resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==} - engines: {node: '>= 0.10'} + rechoir@0.7.1: dependencies: resolve: 1.22.8 - /redent@1.0.0: - resolution: {integrity: sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==} - engines: {node: '>=0.10.0'} - requiresBuild: true + redent@1.0.0: dependencies: indent-string: 2.1.0 strip-indent: 1.0.1 - dev: false optional: true - /redent@3.0.0: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: '>=8'} + redent@3.0.0: dependencies: indent-string: 4.0.0 strip-indent: 3.0.0 - dev: true - /reduce-reducers@1.0.4: - resolution: {integrity: sha512-Mb2WZ2bJF597exiqX7owBzrqJ74DHLK3yOQjCyPAaNifRncE8OD0wFIuoMhXxTnHK07+8zZ2SJEKy/qtiyR7vw==} - dev: false + reduce-reducers@1.0.4: {} - /redux-devtools-extension@2.13.9(redux@4.2.1): - resolution: {integrity: sha512-cNJ8Q/EtjhQaZ71c8I9+BPySIBVEKssbPpskBfsXqb8HJ002A3KRVHfeRzwRo6mGPqsm7XuHTqNSNeS1Khig0A==} - deprecated: Package moved to @redux-devtools/extension. - peerDependencies: - redux: ^3.1.0 || ^4.0.0 + redux-devtools-extension@2.13.9(redux@4.2.1): dependencies: redux: 4.2.1 - dev: true - /redux-form@8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1): - resolution: {integrity: sha512-Eeog8dJYUxCSZI/oBoy7VkprvMjj1lpUnHa3LwjVNZvYDNeiRZMoZoaAT+6nlK2YQ4aiBopKUMiLe4ihUOHCGg==} - engines: {node: '>=8.10'} - peerDependencies: - immutable: ^3.8.2 || ^4.0.0 - react: ^16.4.2 || ^17.0.0 || ^18.0.0 - react-redux: ^6.0.1 || ^7.0.0 || ^8.0.0 - redux: ^3.7.2 || ^4.0.0 - peerDependenciesMeta: - immutable: - optional: true + redux-form@8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1): dependencies: '@babel/runtime': 7.24.7 es6-error: 4.1.1 @@ -44100,32 +50405,24 @@ packages: prop-types: 15.8.1 react: 18.3.1 react-is: 16.13.1 - react-redux: 7.2.9(react-dom@18.3.1)(react@18.3.1) + react-redux: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) redux: 4.2.1 - dev: false + optionalDependencies: + immutable: 4.3.6 - /redux-mock-store@1.5.4: - resolution: {integrity: sha512-xmcA0O/tjCLXhh9Fuiq6pMrJCwFRaouA8436zcikdIpYWWCjU76CRk+i2bHx8EeiSiMGnB85/lZdU3wIJVXHTA==} + redux-mock-store@1.5.4: dependencies: lodash.isplainobject: 4.0.6 - dev: false - /redux-thunk@2.4.2(redux@4.2.1): - resolution: {integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==} - peerDependencies: - redux: ^4 + redux-thunk@2.4.2(redux@4.2.1): dependencies: redux: 4.2.1 - dev: false - /redux@4.2.1: - resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} + redux@4.2.1: dependencies: '@babel/runtime': 7.24.7 - /reflect.getprototypeof@1.0.6: - resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} - engines: {node: '>= 0.4'} + reflect.getprototypeof@1.0.6: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -44134,65 +50431,46 @@ packages: get-intrinsic: 1.2.4 globalthis: 1.0.4 which-builtin-type: 1.1.3 - dev: true - /refractor@3.6.0: - resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==} + refractor@3.6.0: dependencies: hastscript: 6.0.0 parse-entities: 2.0.0 prismjs: 1.27.0 - dev: true - /regenerate-unicode-properties@10.1.1: - resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} - engines: {node: '>=4'} + regenerate-unicode-properties@10.1.1: dependencies: regenerate: 1.4.2 - /regenerate@1.4.2: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + regenerate@1.4.2: {} - /regenerator-runtime@0.10.5: - resolution: {integrity: sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==} + regenerator-runtime@0.10.5: {} - /regenerator-runtime@0.11.1: - resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} + regenerator-runtime@0.11.1: {} - /regenerator-runtime@0.13.11: - resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + regenerator-runtime@0.13.11: {} - /regenerator-runtime@0.14.1: - resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + regenerator-runtime@0.14.1: {} - /regenerator-transform@0.15.2: - resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} + regenerator-transform@0.15.2: dependencies: '@babel/runtime': 7.24.7 - /regex-not@1.0.2: - resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} - engines: {node: '>=0.10.0'} + regex-not@1.0.2: dependencies: extend-shallow: 3.0.2 safe-regex: 1.1.0 - /regexp.prototype.flags@1.5.2: - resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} - engines: {node: '>= 0.4'} + regexp.prototype.flags@1.5.2: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-errors: 1.3.0 set-function-name: 2.0.2 - /regexpp@3.2.0: - resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} - engines: {node: '>=8'} + regexpp@3.2.0: {} - /regexpu-core@5.3.2: - resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} - engines: {node: '>=4'} + regexpu-core@5.3.2: dependencies: '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 @@ -44201,52 +50479,40 @@ packages: unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.1.0 - /registry-auth-token@4.2.2: - resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==} - engines: {node: '>=6.0.0'} + registry-auth-token@4.2.2: dependencies: rc: 1.2.8 - dev: false - /registry-url@5.1.0: - resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} - engines: {node: '>=8'} + registry-url@5.1.0: dependencies: rc: 1.2.8 - dev: false - /regjsparser@0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} - hasBin: true + regjsparser@0.9.1: dependencies: jsesc: 0.5.0 - /relateurl@0.2.7: - resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} - engines: {node: '>= 0.10'} + rehype-attr@3.0.3: + dependencies: + unified: 11.0.5 + unist-util-visit: 5.0.0 - /release-zalgo@1.0.0: - resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==} - engines: {node: '>=4'} + relateurl@0.2.7: {} + + release-zalgo@1.0.0: dependencies: es6-error: 4.1.1 - dev: true - /remark-external-links@8.0.0: - resolution: {integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==} + remark-external-links@8.0.0: dependencies: extend: 3.0.2 is-absolute-url: 3.0.3 mdast-util-definitions: 4.0.0 space-separated-tokens: 1.1.5 unist-util-visit: 2.0.3 - dev: true - /remark-footnotes@2.0.0: - resolution: {integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==} + remark-footnotes@2.0.0: {} - /remark-mdx@1.6.22: - resolution: {integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==} + remark-mdx@1.6.22: dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 @@ -44259,28 +50525,16 @@ packages: transitivePeerDependencies: - supports-color - /remark-parse@5.0.0: - resolution: {integrity: sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==} + remark-parse@11.0.0: dependencies: - collapse-white-space: 1.0.6 - is-alphabetical: 1.0.4 - is-decimal: 1.0.4 - is-whitespace-character: 1.0.4 - is-word-character: 1.0.4 - markdown-escapes: 1.0.4 - parse-entities: 1.2.2 - repeat-string: 1.6.1 - state-toggle: 1.0.3 - trim: 0.0.1 - trim-trailing-lines: 1.1.4 - unherit: 1.1.3 - unist-util-remove-position: 1.1.4 - vfile-location: 2.0.6 - xtend: 4.0.2 - dev: false + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.1 + micromark-util-types: 2.0.0 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color - /remark-parse@8.0.3: - resolution: {integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==} + remark-parse@8.0.3: dependencies: ccount: 1.1.0 collapse-white-space: 1.0.6 @@ -44299,24 +50553,27 @@ packages: vfile-location: 3.2.0 xtend: 4.0.2 - /remark-slug@6.1.0: - resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==} + remark-rehype@11.1.0: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + mdast-util-to-hast: 13.2.0 + unified: 11.0.5 + vfile: 6.0.1 + + remark-slug@6.1.0: dependencies: github-slugger: 1.5.0 mdast-util-to-string: 1.1.0 unist-util-visit: 2.0.3 - dev: true - /remark-squeeze-paragraphs@4.0.0: - resolution: {integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==} + remark-squeeze-paragraphs@4.0.0: dependencies: mdast-squeeze-paragraphs: 4.0.0 - /remove-trailing-separator@1.1.0: - resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} + remove-trailing-separator@1.1.0: {} - /renderkid@2.0.7: - resolution: {integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==} + renderkid@2.0.7: dependencies: css-select: 4.3.0 dom-converter: 0.2.0 @@ -44324,8 +50581,7 @@ packages: lodash: 4.17.21 strip-ansi: 3.0.1 - /renderkid@3.0.0: - resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} + renderkid@3.0.0: dependencies: css-select: 4.3.0 dom-converter: 0.2.0 @@ -44333,261 +50589,149 @@ packages: lodash: 4.17.21 strip-ansi: 6.0.1 - /repeat-element@1.1.4: - resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} - engines: {node: '>=0.10.0'} + repeat-element@1.1.4: {} - /repeat-string@1.6.1: - resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} - engines: {node: '>=0.10'} + repeat-string@1.6.1: {} - /repeating@2.0.1: - resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==} - engines: {node: '>=0.10.0'} + repeating@2.0.1: dependencies: is-finite: 1.1.0 + optional: true - /replace-ext@1.0.0: - resolution: {integrity: sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA==} - engines: {node: '>= 0.10'} - dev: false - - /replace@1.2.2: - resolution: {integrity: sha512-C4EDifm22XZM2b2JOYe6Mhn+lBsLBAvLbK8drfUQLTfD1KYl/n3VaW/CDju0Ny4w3xTtegBpg8YNSpFJPUDSjA==} - engines: {node: '>= 6'} - hasBin: true + replace@1.2.2: dependencies: chalk: 2.4.2 minimatch: 3.0.5 yargs: 15.4.1 - dev: true - /request-progress@3.0.0: - resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==} + request-progress@3.0.0: dependencies: throttleit: 1.0.1 - dev: true - /require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} + require-directory@2.1.1: {} - /require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} + require-from-string@2.0.2: {} - /require-main-filename@2.0.0: - resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + require-main-filename@2.0.0: {} - /requireindex@1.2.0: - resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==} - engines: {node: '>=0.10.5'} - dev: true + requireindex@1.2.0: {} - /requires-port@1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + requires-port@1.0.0: {} - /reselect@4.1.8: - resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==} - dev: false + reselect@4.1.8: {} - /resize-observer-polyfill@1.5.1: - resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==} + resize-observer-polyfill@1.5.1: {} - /resolve-alpn@1.2.1: - resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} - dev: true + resolve-alpn@1.2.1: {} - /resolve-cwd@2.0.0: - resolution: {integrity: sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==} - engines: {node: '>=4'} + resolve-cwd@2.0.0: dependencies: resolve-from: 3.0.0 - /resolve-cwd@3.0.0: - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} - engines: {node: '>=8'} + resolve-cwd@3.0.0: dependencies: resolve-from: 5.0.0 - /resolve-from@3.0.0: - resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} - engines: {node: '>=4'} + resolve-from@3.0.0: {} - /resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} + resolve-from@4.0.0: {} - /resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} + resolve-from@5.0.0: {} - /resolve-pathname@3.0.0: - resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==} - dev: false + resolve-pathname@3.0.0: {} - /resolve-url@0.2.1: - resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} - deprecated: https://github.com/lydell/resolve-url#deprecated + resolve-url@0.2.1: {} - /resolve.exports@1.1.0: - resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} - engines: {node: '>=10'} - dev: true + resolve.exports@1.1.0: {} - /resolve.exports@2.0.2: - resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} - engines: {node: '>=10'} + resolve.exports@2.0.2: {} - /resolve@1.1.7: - resolution: {integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==} - dev: true + resolve@1.1.7: {} - /resolve@1.19.0: - resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==} + resolve@1.19.0: dependencies: is-core-module: 2.14.0 path-parse: 1.0.7 - dev: true - /resolve@1.22.8: - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} - hasBin: true + resolve@1.22.8: dependencies: is-core-module: 2.14.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /resolve@2.0.0-next.5: - resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} - hasBin: true + resolve@2.0.0-next.5: dependencies: is-core-module: 2.14.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - dev: true - /responselike@1.0.2: - resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} + responselike@1.0.2: dependencies: lowercase-keys: 1.0.1 - dev: false - /responselike@2.0.1: - resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} + responselike@2.0.1: dependencies: lowercase-keys: 2.0.0 - dev: true - /restore-cursor@3.1.0: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} - engines: {node: '>=8'} + restore-cursor@3.1.0: dependencies: onetime: 5.1.2 signal-exit: 3.0.7 - dev: true - /ret@0.1.15: - resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} - engines: {node: '>=0.12'} + ret@0.1.15: {} - /retry@0.12.0: - resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} - engines: {node: '>= 4'} + retry@0.12.0: {} - /retry@0.13.1: - resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} - engines: {node: '>= 4'} - dev: true + retry@0.13.1: {} - /reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + reusify@1.0.4: {} - /rfdc@1.4.1: - resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} - dev: true + rfdc@1.4.1: {} - /rimraf@2.6.3: - resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true + rimraf@2.6.3: dependencies: glob: 7.2.3 - dev: false - /rimraf@2.7.1: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true + rimraf@2.7.1: dependencies: glob: 7.2.3 - /rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true + rimraf@3.0.2: dependencies: glob: 7.2.3 - /rollup-plugin-copy@3.5.0: - resolution: {integrity: sha512-wI8D5dvYovRMx/YYKtUNt3Yxaw4ORC9xo6Gt9t22kveWz1enG9QrhVlagzwrxSC455xD1dHMKhIJkbsQ7d48BA==} - engines: {node: '>=8.3'} + rollup-plugin-copy@3.5.0: dependencies: '@types/fs-extra': 8.1.5 colorette: 1.4.0 fs-extra: 8.1.0 globby: 10.0.1 is-plain-object: 3.0.1 - dev: true - /rollup-plugin-dts@6.1.1(rollup@4.18.0)(typescript@4.9.5): - resolution: {integrity: sha512-aSHRcJ6KG2IHIioYlvAOcEq6U99sVtqDDKVhnwt70rW6tsz3tv5OSjEiWcgzfsHdLyGXZ/3b/7b/+Za3Y6r1XA==} - engines: {node: '>=16'} - peerDependencies: - rollup: ^3.29.4 || ^4 - typescript: ^4.5 || ^5.0 + rollup-plugin-dts@6.1.1(rollup@4.18.0)(typescript@4.9.5): dependencies: magic-string: 0.30.10 rollup: 4.18.0 typescript: 4.9.5 optionalDependencies: '@babel/code-frame': 7.24.7 - dev: true - /rollup-plugin-generate-package-json@3.2.0(rollup@4.18.0): - resolution: {integrity: sha512-+Kq1kFVr+maxW/mZB+E+XuaieCXVZqjl2tNU9k3TtAMs3NOaeREa5sRHy67qKDmcnFtZZukIQ3dFCcnV+r0xyw==} - engines: {node: '>=8.3'} - peerDependencies: - rollup: '>=1.0.0' + rollup-plugin-generate-package-json@3.2.0(rollup@4.18.0): dependencies: read-pkg: 5.2.0 rollup: 4.18.0 write-pkg: 4.0.0 - dev: true - /rollup-plugin-peer-deps-external@2.2.4(rollup@2.79.1): - resolution: {integrity: sha512-AWdukIM1+k5JDdAqV/Cxd+nejvno2FVLVeZ74NKggm3Q5s9cbbcOgUPGdbxPi4BXu7xGaZ8HG12F+thImYu/0g==} - peerDependencies: - rollup: '*' + rollup-plugin-peer-deps-external@2.2.4(rollup@2.79.1): dependencies: rollup: 2.79.1 - dev: true - /rollup-plugin-polyfill-node@0.13.0(rollup@4.18.0): - resolution: {integrity: sha512-FYEvpCaD5jGtyBuBFcQImEGmTxDTPbiHjJdrYIp+mFIwgXiXabxvKUK7ZT9P31ozu2Tqm9llYQMRWsfvTMTAOw==} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 + rollup-plugin-polyfill-node@0.13.0(rollup@4.18.0): dependencies: '@rollup/plugin-inject': 5.0.5(rollup@4.18.0) rollup: 4.18.0 - dev: true - /rollup-plugin-postcss@4.0.2(postcss@8.4.38)(ts-node@10.9.2): - resolution: {integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==} - engines: {node: '>=10'} - peerDependencies: - postcss: 8.x + rollup-plugin-postcss@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)): dependencies: chalk: 4.1.0 concat-with-sourcemaps: 1.1.0 @@ -44596,7 +50740,7 @@ packages: p-queue: 6.6.2 pify: 5.0.0 postcss: 8.4.38 - postcss-load-config: 3.1.4(postcss@8.4.38)(ts-node@10.9.2) + postcss-load-config: 3.1.4(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) postcss-modules: 4.3.1(postcss@8.4.38) promise.series: 0.2.0 resolve: 1.22.8 @@ -44605,19 +50749,12 @@ packages: style-inject: 0.3.0 transitivePeerDependencies: - ts-node - dev: true - /rollup-plugin-scss@4.0.0: - resolution: {integrity: sha512-wxasNXDYC2m+fDxCMgK00WebVWYmeFvShyNABmjvSJZ6D1/SepwqFeaMFMQromveI79gfvb64yJjiZZxSZxEIA==} + rollup-plugin-scss@4.0.0: dependencies: rollup-pluginutils: 2.8.2 - dev: true - /rollup-plugin-styles@4.0.0(rollup@4.18.0): - resolution: {integrity: sha512-A2K2sao84OsTmDxXG83JTCdXWrmgvQkkI38XDat46rdtpGMRm9tSYqeCdlwwGDJF4kKIafhV1mUidqu8MxUGig==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - peerDependencies: - rollup: ^2.63.0 + rollup-plugin-styles@4.0.0(rollup@4.18.0): dependencies: '@rollup/pluginutils': 4.2.1 '@types/cssnano': 5.1.0(postcss@8.4.38) @@ -44638,19 +50775,12 @@ packages: rollup: 4.18.0 source-map-js: 1.2.0 tslib: 2.6.3 - dev: true - /rollup-plugin-svg@2.0.0: - resolution: {integrity: sha512-DmE7dSQHo1SC5L2uH2qul3Mjyd5oV6U1aVVkyvTLX/mUsRink7f1b1zaIm+32GEBA6EHu8H/JJi3DdWqM53ySQ==} + rollup-plugin-svg@2.0.0: dependencies: rollup-pluginutils: 1.5.2 - dev: true - /rollup-plugin-typescript2@0.31.2(rollup@2.79.1)(typescript@4.9.5): - resolution: {integrity: sha512-hRwEYR1C8xDGVVMFJQdEVnNAeWRvpaY97g5mp3IeLnzhNXzSVq78Ye/BJ9PAaUfN4DXa/uDnqerifMOaMFY54Q==} - peerDependencies: - rollup: '>=1.26.3' - typescript: '>=2.4.0' + rollup-plugin-typescript2@0.31.2(rollup@2.79.1)(typescript@4.9.5): dependencies: '@rollup/pluginutils': 4.2.1 '@yarn-tool/resolve-package': 1.0.47 @@ -44660,33 +50790,21 @@ packages: rollup: 2.79.1 tslib: 2.6.3 typescript: 4.9.5 - dev: true - /rollup-pluginutils@1.5.2: - resolution: {integrity: sha512-SjdWWWO/CUoMpDy8RUbZ/pSpG68YHmhk5ROKNIoi2En9bJ8bTt3IhYi254RWiTclQmL7Awmrq+rZFOhZkJAHmQ==} + rollup-pluginutils@1.5.2: dependencies: estree-walker: 0.2.1 minimatch: 3.1.2 - dev: true - /rollup-pluginutils@2.8.2: - resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} + rollup-pluginutils@2.8.2: dependencies: estree-walker: 0.6.1 - dev: true - /rollup@2.79.1: - resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} - engines: {node: '>=10.0.0'} - hasBin: true + rollup@2.79.1: optionalDependencies: fsevents: 2.3.3 - dev: true - /rollup@4.18.0: - resolution: {integrity: sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true + rollup@4.18.0: dependencies: '@types/estree': 1.0.5 optionalDependencies: @@ -44707,78 +50825,51 @@ packages: '@rollup/rollup-win32-ia32-msvc': 4.18.0 '@rollup/rollup-win32-x64-msvc': 4.18.0 fsevents: 2.3.3 - dev: true - /rsvp@4.8.5: - resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==} - engines: {node: 6.* || >= 7.*} + rsvp@4.8.5: {} - /run-async@2.4.1: - resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} - engines: {node: '>=0.12.0'} - dev: true + run-async@2.4.1: {} - /run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 - /rxjs@6.6.7: - resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} - engines: {npm: '>=2.0.0'} + rxjs@6.6.7: dependencies: tslib: 1.14.1 - dev: true - /rxjs@7.8.1: - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + rxjs@7.8.1: dependencies: tslib: 2.6.3 - dev: true - /safe-array-concat@1.1.2: - resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} - engines: {node: '>=0.4'} + safe-array-concat@1.1.2: dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 has-symbols: 1.0.3 isarray: 2.0.5 - /safe-buffer@5.1.1: - resolution: {integrity: sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==} + safe-buffer@5.1.1: {} - /safe-buffer@5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + safe-buffer@5.1.2: {} - /safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + safe-buffer@5.2.1: {} - /safe-identifier@0.4.2: - resolution: {integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==} - dev: true + safe-identifier@0.4.2: {} - /safe-regex-test@1.0.3: - resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} - engines: {node: '>= 0.4'} + safe-regex-test@1.0.3: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-regex: 1.1.4 - /safe-regex@1.1.0: - resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} + safe-regex@1.1.0: dependencies: ret: 0.1.15 - /safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + safer-buffer@2.1.2: {} - /sane@4.1.0: - resolution: {integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==} - engines: {node: 6.* || 8.* || >= 10.*} - deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added - hasBin: true + sane@4.1.0: dependencies: '@cnakazawa/watch': 1.0.4 anymatch: 2.0.0(supports-color@6.1.0) @@ -44792,169 +50883,102 @@ packages: transitivePeerDependencies: - supports-color - /sass-loader@12.6.0(sass@1.77.6)(webpack@5.84.1): - resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} - engines: {node: '>= 12.13.0'} - peerDependencies: - fibers: '>= 3.1.0' - node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 - sass: ^1.3.0 - sass-embedded: '*' - webpack: 5.84.1 - peerDependenciesMeta: - fibers: - optional: true - node-sass: - optional: true - sass: - optional: true - sass-embedded: - optional: true + sass-loader@12.6.0(sass@1.77.6)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: klona: 2.0.6 neo-async: 2.6.2 + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: sass: 1.77.6 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true - /sass@1.77.6: - resolution: {integrity: sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==} - engines: {node: '>=14.0.0'} - hasBin: true + sass@1.77.6: dependencies: chokidar: 3.6.0 immutable: 4.3.6 source-map-js: 1.2.0 - dev: true - /sax@1.2.4: - resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} + sax@1.2.4: {} - /saxes@5.0.1: - resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} - engines: {node: '>=10'} + saxes@5.0.1: dependencies: xmlchars: 2.2.0 - dev: true - /saxes@6.0.0: - resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} - engines: {node: '>=v12.22.7'} + saxes@6.0.0: dependencies: xmlchars: 2.2.0 - dev: true - - /scheduler@0.19.1: - resolution: {integrity: sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==} - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - /scheduler@0.23.2: - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + scheduler@0.23.2: dependencies: loose-envify: 1.4.0 - /schema-utils@0.4.7: - resolution: {integrity: sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==} - engines: {node: '>= 4'} + schema-utils@0.4.7: dependencies: ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - dev: true - /schema-utils@1.0.0: - resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==} - engines: {node: '>= 4'} + schema-utils@1.0.0: dependencies: ajv: 6.12.6 ajv-errors: 1.0.1(ajv@6.12.6) ajv-keywords: 3.5.2(ajv@6.12.6) - /schema-utils@2.7.0: - resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} - engines: {node: '>= 8.9.0'} + schema-utils@2.7.0: dependencies: '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - /schema-utils@2.7.1: - resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} - engines: {node: '>= 8.9.0'} + schema-utils@2.7.1: dependencies: '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - /schema-utils@3.3.0: - resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} - engines: {node: '>= 10.13.0'} + schema-utils@3.3.0: dependencies: '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - /schema-utils@4.2.0: - resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} - engines: {node: '>= 12.13.0'} + schema-utils@4.2.0: dependencies: '@types/json-schema': 7.0.15 ajv: 8.16.0 ajv-formats: 2.1.1(ajv@8.16.0) ajv-keywords: 5.1.0(ajv@8.16.0) - /scroll@3.0.1: - resolution: {integrity: sha512-pz7y517OVls1maEzlirKO5nPYle9AXsFzTMNJrRGmT951mzpIBy7sNHOg5o/0MQd/NqliCiWnAi0kZneMPFLcg==} - dev: false + scroll@3.0.1: {} - /scrollparent@2.1.0: - resolution: {integrity: sha512-bnnvJL28/Rtz/kz2+4wpBjHzWoEzXhVg/TE8BeVGJHUqE8THNIRnDxDWMktwM+qahvlRdvlLdsQfYe+cuqfZeA==} - dev: false + scrollparent@2.1.0: {} - /secure-compare@3.0.1: - resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==} - dev: true + secure-compare@3.0.1: {} - /select-hose@2.0.0: - resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} + select-hose@2.0.0: {} - /selfsigned@1.10.14: - resolution: {integrity: sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==} + selfsigned@1.10.14: dependencies: node-forge: 0.10.0 - /selfsigned@2.4.1: - resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} - engines: {node: '>=10'} + selfsigned@2.4.1: dependencies: '@types/node-forge': 1.3.11 node-forge: 1.3.1 - dev: true - /semantic-ui-css@2.5.0: - resolution: {integrity: sha512-jIWn3WXXE2uSaWCcB+gVJVRG3masIKtTMNEP2X8Aw909H2rHpXGneYOxzO3hT8TpyvB5/dEEo9mBFCitGwoj1A==} + semantic-ui-css@2.5.0: dependencies: jquery: 3.7.1 - dev: true - /semantic-ui-less@2.5.0: - resolution: {integrity: sha512-Nlp8iR0otCQB74Yqob2Dxpsm5H9YAp3NvQ3sWDediwFjrd/l3Leu9md2O82UU5n5hOSqu95xnTok55eIAhlTjg==} + semantic-ui-less@2.5.0: dependencies: jquery: 3.7.1 - dev: true - /semantic-ui-react@2.1.5(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-nIqmmUNpFHfovEb+RI2w3E2/maZQutd8UIWyRjf1SLse+XF51hI559xbz/sLN3O6RpLjr/echLOOXwKCirPy3Q==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + semantic-ui-react@2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 - '@fluentui/react-component-event-listener': 0.63.1(react-dom@18.3.1)(react@18.3.1) - '@fluentui/react-component-ref': 0.63.1(react-dom@18.3.1)(react@18.3.1) + '@fluentui/react-component-event-listener': 0.63.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@fluentui/react-component-ref': 0.63.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@popperjs/core': 2.11.8 - '@semantic-ui-react/event-stack': 3.1.3(react-dom@18.3.1)(react@18.3.1) + '@semantic-ui-react/event-stack': 3.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) clsx: 1.2.1 keyboard-key: 1.1.0 lodash: 4.17.21 @@ -44963,53 +50987,30 @@ packages: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - react-popper: 2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1)(react@18.3.1) + react-popper: 2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) shallowequal: 1.1.0 - dev: false - /semver-diff@3.1.1: - resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==} - engines: {node: '>=8'} + semver-diff@3.1.1: dependencies: semver: 6.3.1 - dev: false - /semver-regex@4.0.5: - resolution: {integrity: sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==} - engines: {node: '>=12'} - dev: true + semver-regex@4.0.5: {} - /semver-truncate@3.0.0: - resolution: {integrity: sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==} - engines: {node: '>=12'} + semver-truncate@3.0.0: dependencies: semver: 7.6.2 - dev: true - /semver@5.7.2: - resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} - hasBin: true + semver@5.7.2: {} - /semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true + semver@6.3.1: {} - /semver@7.3.4: - resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} - engines: {node: '>=10'} - hasBin: true + semver@7.3.4: dependencies: lru-cache: 6.0.0 - dev: true - /semver@7.6.2: - resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} - engines: {node: '>=10'} - hasBin: true + semver@7.6.2: {} - /send@0.18.0(supports-color@6.1.0): - resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} - engines: {node: '>= 0.8.0'} + send@0.18.0(supports-color@6.1.0): dependencies: debug: 2.6.9(supports-color@6.1.0) depd: 2.0.0 @@ -45027,19 +51028,15 @@ packages: transitivePeerDependencies: - supports-color - /serialize-javascript@5.0.1: - resolution: {integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==} + serialize-javascript@5.0.1: dependencies: randombytes: 2.1.0 - /serialize-javascript@6.0.2: - resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + serialize-javascript@6.0.2: dependencies: randombytes: 2.1.0 - /serve-favicon@2.5.0: - resolution: {integrity: sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==} - engines: {node: '>= 0.8.0'} + serve-favicon@2.5.0: dependencies: etag: 1.8.1 fresh: 0.5.2 @@ -45047,9 +51044,7 @@ packages: parseurl: 1.3.3 safe-buffer: 5.1.1 - /serve-index@1.9.1(supports-color@6.1.0): - resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} - engines: {node: '>= 0.8.0'} + serve-index@1.9.1(supports-color@6.1.0): dependencies: accepts: 1.3.8 batch: 0.6.1 @@ -45061,9 +51056,7 @@ packages: transitivePeerDependencies: - supports-color - /serve-static@1.15.0(supports-color@6.1.0): - resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} - engines: {node: '>= 0.8.0'} + serve-static@1.15.0(supports-color@6.1.0): dependencies: encodeurl: 1.0.2 escape-html: 1.0.3 @@ -45072,16 +51065,11 @@ packages: transitivePeerDependencies: - supports-color - /set-blocking@2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + set-blocking@2.0.0: {} - /set-cookie-parser@2.6.0: - resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==} - dev: true + set-cookie-parser@2.6.0: {} - /set-function-length@1.2.2: - resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} - engines: {node: '>= 0.4'} + set-function-length@1.2.2: dependencies: define-data-property: 1.1.4 es-errors: 1.3.0 @@ -45090,177 +51078,110 @@ packages: gopd: 1.0.1 has-property-descriptors: 1.0.2 - /set-function-name@2.0.2: - resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} - engines: {node: '>= 0.4'} + set-function-name@2.0.2: dependencies: define-data-property: 1.1.4 es-errors: 1.3.0 functions-have-names: 1.2.3 has-property-descriptors: 1.0.2 - /set-value@2.0.1: - resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} - engines: {node: '>=0.10.0'} + set-value@2.0.1: dependencies: extend-shallow: 2.0.1 is-extendable: 0.1.1 is-plain-object: 2.0.4 split-string: 3.1.0 - /setprototypeof@1.1.0: - resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} + setprototypeof@1.1.0: {} - /setprototypeof@1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + setprototypeof@1.2.0: {} - /shallow-clone@0.1.2: - resolution: {integrity: sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==} - engines: {node: '>=0.10.0'} + shallow-clone@0.1.2: dependencies: is-extendable: 0.1.1 kind-of: 2.0.1 lazy-cache: 0.2.7 mixin-object: 2.0.1 - /shallow-clone@3.0.1: - resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} - engines: {node: '>=8'} + shallow-clone@3.0.1: dependencies: kind-of: 6.0.3 - /shallowequal@1.1.0: - resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} + shallowequal@1.1.0: {} - /shebang-command@1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} - engines: {node: '>=0.10.0'} + shebang-command@1.2.0: dependencies: shebang-regex: 1.0.0 - /shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} + shebang-command@2.0.0: dependencies: shebang-regex: 3.0.0 - /shebang-regex@1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} - engines: {node: '>=0.10.0'} + shebang-regex@1.0.0: {} - /shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} + shebang-regex@3.0.0: {} - /shell-quote@1.8.1: - resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} - dev: true + shell-quote@1.8.1: {} - /shelljs@0.8.5: - resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} - engines: {node: '>=4'} - hasBin: true + shelljs@0.8.5: dependencies: glob: 7.2.3 interpret: 1.4.0 rechoir: 0.6.2 - dev: false - /shellwords@0.1.1: - resolution: {integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==} - requiresBuild: true - dev: true + shellwords@0.1.1: optional: true - /side-channel@1.0.6: - resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} - engines: {node: '>= 0.4'} + side-channel@1.0.6: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 get-intrinsic: 1.2.4 object-inspect: 1.13.2 - /signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + signal-exit@3.0.7: {} - /signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} - dev: false + signal-exit@4.1.0: {} - /simple-git@1.132.0: - resolution: {integrity: sha512-xauHm1YqCTom1sC9eOjfq3/9RKiUA9iPnxBbrY2DdL8l4ADMu0jjM5l5lphQP5YWNqAL2aXC/OeuQ76vHtW5fg==} + simple-git@1.132.0: dependencies: - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: true - /sirv@2.0.4: - resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} - engines: {node: '>= 10'} + sirv@2.0.4: dependencies: '@polka/url': 1.0.0-next.25 mrmime: 2.0.0 totalist: 3.0.1 - /sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - - /slash@1.0.0: - resolution: {integrity: sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==} - engines: {node: '>=0.10.0'} - dev: true + sisteransi@1.0.5: {} - /slash@2.0.0: - resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==} - engines: {node: '>=6'} + slash@2.0.0: {} - /slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} + slash@3.0.0: {} - /slash@4.0.0: - resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} - engines: {node: '>=12'} - dev: true + slash@4.0.0: {} - /slash@5.1.0: - resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} - engines: {node: '>=14.16'} - dev: true + slash@5.1.0: {} - /slashes@2.0.2: - resolution: {integrity: sha512-68p+QkFAQQRetIUzNXAdktNJr8AYLxJukjBegYQz8F7VATsBJG621UYtY/vS2j9jerxdJ1k6Tc25K4DXEw1d5w==} - dev: false + slashes@2.0.2: {} - /slice-ansi@3.0.0: - resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} - engines: {node: '>=8'} + slice-ansi@3.0.0: dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - dev: true - /slice-ansi@4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: '>=10'} + slice-ansi@4.0.0: dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - /smart-buffer@4.2.0: - resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} - engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} - dev: true + smart-buffer@4.2.0: {} - /smartwrap@2.0.2: - resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} - engines: {node: '>=6'} - hasBin: true + smartwrap@2.0.2: dependencies: array.prototype.flat: 1.3.2 breakword: 1.0.6 @@ -45268,25 +51189,18 @@ packages: strip-ansi: 6.0.1 wcwidth: 1.0.1 yargs: 15.4.1 - dev: true - /snapdragon-node@2.1.1: - resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} - engines: {node: '>=0.10.0'} + snapdragon-node@2.1.1: dependencies: define-property: 1.0.0 isobject: 3.0.1 snapdragon-util: 3.0.1 - /snapdragon-util@3.0.1: - resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} - engines: {node: '>=0.10.0'} + snapdragon-util@3.0.1: dependencies: kind-of: 3.2.2 - /snapdragon@0.8.2(supports-color@6.1.0): - resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} - engines: {node: '>=0.10.0'} + snapdragon@0.8.2(supports-color@6.1.0): dependencies: base: 0.11.2 debug: 2.6.9(supports-color@6.1.0) @@ -45299,9 +51213,18 @@ packages: transitivePeerDependencies: - supports-color - /sockjs-client@1.6.1(supports-color@6.1.0): - resolution: {integrity: sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==} - engines: {node: '>=12'} + sockjs-client@1.6.1: + dependencies: + debug: 3.2.7(supports-color@8.1.1) + eventsource: 2.0.2 + faye-websocket: 0.11.4 + inherits: 2.0.4 + url-parse: 1.5.10 + transitivePeerDependencies: + - supports-color + optional: true + + sockjs-client@1.6.1(supports-color@6.1.0): dependencies: debug: 3.2.7(supports-color@6.1.0) eventsource: 2.0.2 @@ -45311,90 +51234,58 @@ packages: transitivePeerDependencies: - supports-color - /sockjs@0.3.24: - resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} + sockjs@0.3.24: dependencies: faye-websocket: 0.11.4 uuid: 8.3.2 websocket-driver: 0.7.4 - /socks-proxy-agent@7.0.0: - resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} - engines: {node: '>= 10'} + socks-proxy-agent@7.0.0: dependencies: agent-base: 6.0.2 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) socks: 2.8.3 transitivePeerDependencies: - supports-color - dev: true - /socks@2.8.3: - resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} - engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} + socks@2.8.3: dependencies: ip-address: 9.0.5 smart-buffer: 4.2.0 - dev: true - /sort-keys-length@1.0.1: - resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==} - engines: {node: '>=0.10.0'} + sort-keys-length@1.0.1: dependencies: sort-keys: 1.1.2 - dev: true - /sort-keys@1.1.2: - resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==} - engines: {node: '>=0.10.0'} + sort-keys@1.1.2: dependencies: is-plain-obj: 1.1.0 - dev: true - /sort-keys@2.0.0: - resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} - engines: {node: '>=4'} + sort-keys@2.0.0: dependencies: is-plain-obj: 1.1.0 - dev: true - /sort-keys@4.2.0: - resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==} - engines: {node: '>=8'} + sort-keys@4.2.0: dependencies: is-plain-obj: 2.1.0 - dev: true - /source-list-map@2.0.1: - resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==} + source-list-map@2.0.1: {} - /source-map-js@1.2.0: - resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} - engines: {node: '>=0.10.0'} + source-map-js@1.2.0: {} - /source-map-loader@0.2.4: - resolution: {integrity: sha512-OU6UJUty+i2JDpTItnizPrlpOIBLmQbWMuBg9q5bVtnHACqw1tn9nNwqJLbv0/00JjnJb/Ee5g5WS5vrRv7zIQ==} - engines: {node: '>= 6'} + source-map-loader@0.2.4: dependencies: async: 2.6.4 loader-utils: 1.4.2 - dev: true - /source-map-loader@3.0.2(webpack@5.84.1): - resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: 5.84.1 + source-map-loader@3.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: abab: 2.0.6 iconv-lite: 0.6.3 source-map-js: 1.2.0 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /source-map-resolve@0.5.3: - resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} - deprecated: See https://github.com/lydell/source-map-resolve#deprecated + source-map-resolve@0.5.3: dependencies: atob: 2.1.2 decode-uri-component: 0.2.2 @@ -45402,66 +51293,41 @@ packages: source-map-url: 0.4.1 urix: 0.1.0 - /source-map-resolve@0.6.0: - resolution: {integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==} - deprecated: See https://github.com/lydell/source-map-resolve#deprecated + source-map-resolve@0.6.0: dependencies: atob: 2.1.2 decode-uri-component: 0.2.2 - dev: true - - /source-map-support@0.4.18: - resolution: {integrity: sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==} - dependencies: - source-map: 0.5.7 - dev: true - /source-map-support@0.5.13: - resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + source-map-support@0.5.13: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - /source-map-support@0.5.19: - resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} + source-map-support@0.5.19: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - dev: true - /source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + source-map-support@0.5.21: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - /source-map-url@0.4.1: - resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} - deprecated: See https://github.com/lydell/source-map-url#deprecated + source-map-url@0.4.1: {} - /source-map@0.5.7: - resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} - engines: {node: '>=0.10.0'} + source-map@0.5.7: {} - /source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} + source-map@0.6.1: {} - /source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} + source-map@0.7.4: {} - /sourcemap-codec@1.4.8: - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} - deprecated: Please use @jridgewell/sourcemap-codec instead - dev: true + sourcemap-codec@1.4.8: {} - /space-separated-tokens@1.1.5: - resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} + space-separated-tokens@1.1.5: {} - /spawn-wrap@2.0.0: - resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==} - engines: {node: '>=8'} + space-separated-tokens@2.0.2: {} + + spawn-wrap@2.0.0: dependencies: foreground-child: 2.0.0 is-windows: 1.0.2 @@ -45469,35 +51335,38 @@ packages: rimraf: 3.0.2 signal-exit: 3.0.7 which: 2.0.2 - dev: true - /spawndamnit@2.0.0: - resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} + spawndamnit@2.0.0: dependencies: cross-spawn: 5.1.0 signal-exit: 3.0.7 - dev: true - /spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + spdx-correct@3.2.0: dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.18 - /spdx-exceptions@2.5.0: - resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + spdx-exceptions@2.5.0: {} - /spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + spdx-expression-parse@3.0.1: dependencies: spdx-exceptions: 2.5.0 spdx-license-ids: 3.0.18 - /spdx-license-ids@3.0.18: - resolution: {integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==} + spdx-license-ids@3.0.18: {} - /spdy-transport@3.0.0(supports-color@6.1.0): - resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} + spdy-transport@3.0.0: + dependencies: + debug: 4.3.5(supports-color@8.1.1) + detect-node: 2.1.0 + hpack.js: 2.1.6 + obuf: 1.1.2 + readable-stream: 3.6.2 + wbuf: 1.7.3 + transitivePeerDependencies: + - supports-color + + spdy-transport@3.0.0(supports-color@6.1.0): dependencies: debug: 4.3.5(supports-color@6.1.0) detect-node: 2.1.0 @@ -45508,9 +51377,17 @@ packages: transitivePeerDependencies: - supports-color - /spdy@4.0.2(supports-color@6.1.0): - resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} - engines: {node: '>=6.0.0'} + spdy@4.0.2: + dependencies: + debug: 4.3.5(supports-color@8.1.1) + handle-thing: 2.0.1 + http-deceiver: 1.2.7 + select-hose: 2.0.0 + spdy-transport: 3.0.0 + transitivePeerDependencies: + - supports-color + + spdy@4.0.2(supports-color@6.1.0): dependencies: debug: 4.3.5(supports-color@6.1.0) handle-thing: 2.0.1 @@ -45520,40 +51397,25 @@ packages: transitivePeerDependencies: - supports-color - /split-on-first@1.1.0: - resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} - engines: {node: '>=6'} - dev: true + split-on-first@1.1.0: {} - /split-string@3.1.0: - resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} - engines: {node: '>=0.10.0'} + split-string@3.1.0: dependencies: extend-shallow: 3.0.2 - /split2@3.2.2: - resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} + split2@3.2.2: dependencies: readable-stream: 3.6.2 - dev: true - /split@1.0.1: - resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} + split@1.0.1: dependencies: through: 2.3.8 - dev: true - /sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + sprintf-js@1.0.3: {} - /sprintf-js@1.1.3: - resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} - dev: true + sprintf-js@1.1.3: {} - /sshpk@1.18.0: - resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} - engines: {node: '>=0.10.0'} - hasBin: true + sshpk@1.18.0: dependencies: asn1: 0.2.6 assert-plus: 1.0.0 @@ -45564,70 +51426,45 @@ packages: jsbn: 0.1.1 safer-buffer: 2.1.2 tweetnacl: 0.14.5 - dev: true - /ssri@8.0.1: - resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} - engines: {node: '>= 8'} + ssri@8.0.1: dependencies: minipass: 3.3.6 - /ssri@9.0.1: - resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + ssri@9.0.1: dependencies: minipass: 3.3.6 - dev: true - /stable@0.1.8: - resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} - deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' + stable@0.1.8: {} - /stack-utils@2.0.6: - resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} - engines: {node: '>=10'} + stack-utils@2.0.6: dependencies: escape-string-regexp: 2.0.0 - /stackframe@1.3.4: - resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} + stackframe@1.3.4: {} - /state-local@1.0.7: - resolution: {integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==} - dev: false + state-local@1.0.7: {} - /state-toggle@1.0.3: - resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==} + state-toggle@1.0.3: {} - /static-extend@0.1.2: - resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} - engines: {node: '>=0.10.0'} + static-extend@0.1.2: dependencies: define-property: 0.2.5 object-copy: 0.1.0 - /statuses@1.5.0: - resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} - engines: {node: '>= 0.6'} + statuses@1.5.0: {} - /statuses@2.0.1: - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: '>= 0.8'} + statuses@2.0.1: {} - /stop-iteration-iterator@1.0.0: - resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} - engines: {node: '>= 0.4'} + stop-iteration-iterator@1.0.0: dependencies: internal-slot: 1.0.7 - /store2@2.14.3: - resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==} + store2@2.14.3: {} - /storybook@6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-+Ychak5QtcTx8EuQzu7eilw+65sk6q1LdI68vb1VOIYD29PEEC7MsZGKPi6AKYNbdhGp0cGu0j3Bf1TxGOBFEA==} - hasBin: true + storybook@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)): dependencies: - '@storybook/cli': 6.5.16(@swc/core@1.6.5)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/cli': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) transitivePeerDependencies: - '@storybook/mdx2-csf' - '@swc/core' @@ -45643,78 +51480,53 @@ packages: - utf-8-validate - vue-template-compiler - webpack-cli - dev: false - /stream-transform@2.1.3: - resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} + stream-transform@2.1.3: dependencies: mixme: 0.5.10 - dev: true - /streamroller@1.0.6: - resolution: {integrity: sha512-3QC47Mhv3/aZNFpDDVO44qQb9gwB9QggMEE0sQmkTAwBVYdBRWISdsywlkfm5II1Q5y/pmrHflti/IgmIzdDBg==} - engines: {node: '>=6.0'} - deprecated: 1.x is no longer supported. Please upgrade to 3.x or higher. + streamroller@1.0.6: dependencies: async: 2.6.4 date-format: 2.1.0 - debug: 3.2.7(supports-color@6.1.0) + debug: 3.2.7(supports-color@8.1.1) fs-extra: 7.0.1 lodash: 4.17.21 transitivePeerDependencies: - supports-color - dev: true - /strict-event-emitter@0.2.8: - resolution: {integrity: sha512-KDf/ujU8Zud3YaLtMCcTI4xkZlZVIYxTLr+XIULexP+77EEVWixeXroLUXQXiVtH4XH2W7jr/3PT1v3zBuvc3A==} + strict-event-emitter@0.2.8: dependencies: events: 3.3.0 - dev: true - /strict-uri-encode@2.0.0: - resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} - engines: {node: '>=4'} - dev: true + strict-uri-encode@2.0.0: {} - /string-hash@1.1.3: - resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} - dev: true + string-hash@1.1.3: {} - /string-length@4.0.2: - resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} - engines: {node: '>=10'} + string-length@4.0.2: dependencies: char-regex: 1.0.2 strip-ansi: 6.0.1 - /string-width@3.1.0: - resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==} - engines: {node: '>=6'} + string-width@3.1.0: dependencies: emoji-regex: 7.0.3 is-fullwidth-code-point: 2.0.0 strip-ansi: 5.2.0 - /string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} + string-width@4.2.3: dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - /string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} + string-width@5.1.2: dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 strip-ansi: 7.1.0 - dev: false - /string.prototype.matchall@4.0.11: - resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} - engines: {node: '>= 0.4'} + string.prototype.matchall@4.0.11: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -45729,241 +51541,159 @@ packages: set-function-name: 2.0.2 side-channel: 1.0.6 - /string.prototype.padend@3.1.6: - resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==} - engines: {node: '>= 0.4'} + string.prototype.padend@3.1.6: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 - /string.prototype.padstart@3.1.6: - resolution: {integrity: sha512-1y15lz7otgfRTAVK5qbp3eHIga+w8j7+jIH+7HpUrOfnLVl6n0hbspi4EXf4tR+PNOpBjPstltemkx0SvViOCg==} - engines: {node: '>= 0.4'} + string.prototype.padstart@3.1.6: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 - /string.prototype.trim@1.2.9: - resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} - engines: {node: '>= 0.4'} + string.prototype.trim@1.2.9: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 - /string.prototype.trimend@1.0.8: - resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} + string.prototype.trimend@1.0.8: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - /string.prototype.trimstart@1.0.8: - resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} - engines: {node: '>= 0.4'} + string.prototype.trimstart@1.0.8: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - /string_decoder@0.10.31: - resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} - dev: false + string_decoder@0.10.31: {} - /string_decoder@1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + string_decoder@1.1.1: dependencies: safe-buffer: 5.1.2 - /string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + string_decoder@1.3.0: dependencies: safe-buffer: 5.2.1 - /strip-ansi@3.0.1: - resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} - engines: {node: '>=0.10.0'} + stringify-entities@4.0.4: + dependencies: + character-entities-html4: 2.1.0 + character-entities-legacy: 3.0.0 + + strip-ansi@3.0.1: dependencies: ansi-regex: 2.1.1 - /strip-ansi@4.0.0: - resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==} - engines: {node: '>=4'} + strip-ansi@4.0.0: dependencies: ansi-regex: 3.0.1 - dev: true - /strip-ansi@5.2.0: - resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} - engines: {node: '>=6'} + strip-ansi@5.2.0: dependencies: ansi-regex: 4.1.1 - /strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} + strip-ansi@6.0.1: dependencies: ansi-regex: 5.0.1 - /strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} + strip-ansi@7.1.0: dependencies: ansi-regex: 6.0.1 - dev: false - /strip-bom@2.0.0: - resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} - engines: {node: '>=0.10.0'} - requiresBuild: true + strip-bom@2.0.0: dependencies: is-utf8: 0.2.1 - dev: false optional: true - /strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} - dev: true + strip-bom@3.0.0: {} - /strip-bom@4.0.0: - resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} - engines: {node: '>=8'} + strip-bom@4.0.0: {} - /strip-eof@1.0.0: - resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} - engines: {node: '>=0.10.0'} + strip-eof@1.0.0: {} - /strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} + strip-final-newline@2.0.0: {} - /strip-indent@1.0.1: - resolution: {integrity: sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==} - engines: {node: '>=0.10.0'} - hasBin: true - requiresBuild: true + strip-indent@1.0.1: dependencies: get-stdin: 4.0.1 - dev: false optional: true - /strip-indent@3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} + strip-indent@3.0.0: dependencies: min-indent: 1.0.1 - /strip-json-comments@1.0.4: - resolution: {integrity: sha512-AOPG8EBc5wAikaG1/7uFCNFJwnKOuQwFTpYBdTW6OvWHeZBQBrAA/amefHGrEiOnCPcLFZK6FUPtWVKpQVIRgg==} - engines: {node: '>=0.8.0'} - hasBin: true - dev: false + strip-json-comments@1.0.4: {} - /strip-json-comments@2.0.1: - resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} - engines: {node: '>=0.10.0'} + strip-json-comments@2.0.1: {} - /strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} + strip-json-comments@3.1.1: {} - /strip-outer@2.0.0: - resolution: {integrity: sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + strip-outer@2.0.0: {} - /strnum@1.0.5: - resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} - dev: true + strnum@1.0.5: {} - /strong-log-transformer@2.1.0: - resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} - engines: {node: '>=4'} - hasBin: true + strong-log-transformer@2.1.0: dependencies: duplexer: 0.1.2 minimist: 1.2.8 through: 2.3.8 - dev: true - /strtok3@7.0.0: - resolution: {integrity: sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==} - engines: {node: '>=14.16'} + strtok3@7.0.0: dependencies: '@tokenizer/token': 0.3.0 peek-readable: 5.0.0 - dev: true - /style-inject@0.3.0: - resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==} - dev: true + style-inject@0.3.0: {} - /style-loader@0.23.1: - resolution: {integrity: sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==} - engines: {node: '>= 0.12.0'} + style-loader@0.23.1: dependencies: loader-utils: 1.4.2 schema-utils: 1.0.0 - dev: true - /style-loader@1.3.0(webpack@5.84.1): - resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==} - engines: {node: '>= 8.9.0'} - peerDependencies: - webpack: 5.84.1 + style-loader@1.3.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: loader-utils: 2.0.4 schema-utils: 2.7.1 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /style-loader@2.0.0(webpack@5.84.1): - resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 + style-loader@2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /style-loader@3.3.4(webpack@5.84.1): - resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: 5.84.1 + style-loader@3.3.4(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /style-to-js@1.1.1: - resolution: {integrity: sha512-RJ18Z9t2B02sYhZtfWKQq5uplVctgvjTfLWT7+Eb1zjUjIrWzX5SdlkwLGQozrqarTmEzJJ/YmdNJCUNI47elg==} + style-to-js@1.1.1: dependencies: style-to-object: 0.3.0 - dev: false - /style-to-object@0.3.0: - resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==} + style-to-object@0.3.0: dependencies: inline-style-parser: 0.1.1 - /styled-components@4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-RNqj14kYzw++6Sr38n7197xG33ipEOktGElty4I70IKzQF1jzaD1U4xQ+Ny/i03UUhHlC5NWEO+d8olRCDji6g==} - requiresBuild: true - peerDependencies: - react: '>= 16.3.0' - react-dom: '>= 16.3.0' + style-to-object@1.0.6: + dependencies: + inline-style-parser: 0.2.3 + + styled-components@4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0) '@babel/traverse': 7.24.7(supports-color@5.5.0) '@emotion/is-prop-valid': 0.8.8 '@emotion/unitless': 0.7.5 - babel-plugin-styled-components: 2.1.4(@babel/core@7.24.7)(styled-components@4.4.1)(supports-color@5.5.0) + babel-plugin-styled-components: 2.1.4(@babel/core@7.24.7)(styled-components@4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(supports-color@5.5.0) css-to-react-native: 2.3.2 memoize-one: 5.2.1 merge-anything: 2.4.4 @@ -45976,52 +51706,30 @@ packages: supports-color: 5.5.0 transitivePeerDependencies: - '@babel/core' - dev: false - /stylehacks@5.1.1(postcss@8.4.38): - resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + stylehacks@5.1.1(postcss@8.4.38): dependencies: browserslist: 4.23.1 postcss: 8.4.38 postcss-selector-parser: 6.1.0 - dev: true - /stylis-rule-sheet@0.0.10(stylis@3.5.4): - resolution: {integrity: sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==} - peerDependencies: - stylis: ^3.5.0 + stylis-rule-sheet@0.0.10(stylis@3.5.4): dependencies: stylis: 3.5.4 - dev: false - /stylis@3.5.4: - resolution: {integrity: sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==} - dev: false + stylis@3.5.4: {} - /stylis@4.2.0: - resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} - dev: false + stylis@4.2.0: {} - /stylus-loader@6.2.0(stylus@0.55.0)(webpack@5.84.1): - resolution: {integrity: sha512-5dsDc7qVQGRoc6pvCL20eYgRUxepZ9FpeK28XhdXaIPP6kXr6nI1zAAKFQgP5OBkOfKaURp4WUpJzspg1f01Gg==} - engines: {node: '>= 12.13.0'} - peerDependencies: - stylus: '>=0.52.4' - webpack: 5.84.1 + stylus-loader@6.2.0(stylus@0.55.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: fast-glob: 3.3.2 klona: 2.0.6 normalize-path: 3.0.0 stylus: 0.55.0 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /stylus@0.55.0: - resolution: {integrity: sha512-MuzIIVRSbc8XxHH7FjkvWqkIcr1BvoMZoR/oFuAJDlh7VSaNJzrB4uJ38GRQa+mWjLXODAMzeDe0xi9GYbGwnw==} - hasBin: true + stylus@0.55.0: dependencies: css: 3.0.0 debug: 3.1.0 @@ -46033,61 +51741,37 @@ packages: source-map: 0.7.4 transitivePeerDependencies: - supports-color - dev: true - /supports-color@2.0.0: - resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} - engines: {node: '>=0.8.0'} - dev: true + supports-color@2.0.0: {} - /supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} + supports-color@5.5.0: dependencies: has-flag: 3.0.0 - /supports-color@6.1.0: - resolution: {integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==} - engines: {node: '>=6'} + supports-color@6.1.0: dependencies: has-flag: 3.0.0 - /supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} + supports-color@7.2.0: dependencies: has-flag: 4.0.0 - /supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} + supports-color@8.1.1: dependencies: has-flag: 4.0.0 - /supports-hyperlinks@2.3.0: - resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} - engines: {node: '>=8'} + supports-hyperlinks@2.3.0: dependencies: has-flag: 4.0.0 supports-color: 7.2.0 - dev: true - /supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} + supports-preserve-symlinks-flag@1.0.0: {} - /svg-country-flags@1.2.10: - resolution: {integrity: sha512-xrqwo0TYf/h2cfPvGpjdSuSguUbri4vNNizBnwzoZnX0xGo3O5nGJMlbYEp7NOYcnPGBm6LE2axqDWSB847bLw==} - dev: false + svg-country-flags@1.2.10: {} - /svg-parser@2.0.4: - resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} + svg-parser@2.0.4: {} - /svgo@1.3.2: - resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} - engines: {node: '>=4.0.0'} - deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. - hasBin: true + svgo@1.3.2: dependencies: chalk: 2.4.2 coa: 2.0.2 @@ -46103,10 +51787,7 @@ packages: unquote: 1.1.1 util.promisify: 1.0.1 - /svgo@2.8.0: - resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} - engines: {node: '>=10.13.0'} - hasBin: true + svgo@2.8.0: dependencies: '@trysound/sax': 0.2.0 commander: 7.2.0 @@ -46115,12 +51796,8 @@ packages: csso: 4.2.0 picocolors: 1.0.1 stable: 0.1.8 - dev: true - /svgo@3.3.2: - resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} - engines: {node: '>=14.0.0'} - hasBin: true + svgo@3.3.2: dependencies: '@trysound/sax': 0.2.0 commander: 7.2.0 @@ -46129,25 +51806,16 @@ packages: css-what: 6.1.0 csso: 5.0.5 picocolors: 1.0.1 - dev: false - /swr@2.2.5(react@18.3.1): - resolution: {integrity: sha512-QtxqyclFeAsxEUeZIYmsaQ0UjimSq1RZ9Un7I68/0ClKK/U3LoyQunwkQfJZr2fc22DfIXLNDc2wFyTEikCUpg==} - peerDependencies: - react: ^16.11.0 || ^17.0.0 || ^18.0.0 + swr@2.2.5(react@18.3.1): dependencies: client-only: 0.0.1 react: 18.3.1 use-sync-external-store: 1.2.2(react@18.3.1) - dev: false - /symbol-tree@3.2.4: - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} - dev: true + symbol-tree@3.2.4: {} - /symbol.prototype.description@1.0.6: - resolution: {integrity: sha512-VgVgtEabORsQtmuindtO7v8fF+bsKxUkvEMFj+ecBK6bomrwv5JUSWdMoC3ypa9+Jaqp/wOzkWk4f6I+p5GzyA==} - engines: {node: '>= 0.4'} + symbol.prototype.description@1.0.6: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 @@ -46155,19 +51823,13 @@ packages: has-symbols: 1.0.3 object.getownpropertydescriptors: 2.1.8 - /synchronous-promise@2.0.17: - resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==} + synchronous-promise@2.0.17: {} - /synckit@0.6.2: - resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==} - engines: {node: '>=12.20'} + synckit@0.6.2: dependencies: tslib: 2.6.3 - dev: true - /table@6.8.2: - resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==} - engines: {node: '>=10.0.0'} + table@6.8.2: dependencies: ajv: 8.16.0 lodash.truncate: 4.4.2 @@ -46175,28 +51837,19 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 - /tapable@1.1.3: - resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} - engines: {node: '>=6'} + tapable@1.1.3: {} - /tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} + tapable@2.2.1: {} - /tar-stream@2.2.0: - resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} - engines: {node: '>=6'} + tar-stream@2.2.0: dependencies: bl: 4.1.0 end-of-stream: 1.4.4 fs-constants: 1.0.0 inherits: 2.0.4 readable-stream: 3.6.2 - dev: true - /tar@6.2.1: - resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} - engines: {node: '>=10'} + tar@6.2.1: dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 @@ -46205,8 +51858,7 @@ packages: mkdirp: 1.0.4 yallist: 4.0.0 - /telejson@5.3.3: - resolution: {integrity: sha512-PjqkJZpzEggA9TBpVtJi1LVptP7tYtXB6rEubwlHap76AMjzvOdKX41CxyaW7ahhzDU1aftXnMCx5kAPDZTQBA==} + telejson@5.3.3: dependencies: '@types/is-function': 1.0.3 global: 4.4.0 @@ -46216,10 +51868,8 @@ packages: isobject: 4.0.0 lodash: 4.17.21 memoizerific: 1.11.3 - dev: true - /telejson@6.0.8: - resolution: {integrity: sha512-nerNXi+j8NK1QEfBHtZUN/aLdDcyupA//9kAboYLrtzZlPLpUfqbVGWb9zz91f/mIjRbAYhbgtnJHY8I1b5MBg==} + telejson@6.0.8: dependencies: '@types/is-function': 1.0.3 global: 4.4.0 @@ -46230,36 +51880,20 @@ packages: lodash: 4.17.21 memoizerific: 1.11.3 - /temp-dir@1.0.0: - resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==} - engines: {node: '>=4'} - dev: true + temp-dir@1.0.0: {} - /temp@0.8.4: - resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} - engines: {node: '>=6.0.0'} + temp@0.8.4: dependencies: rimraf: 2.6.3 - dev: false - /term-size@2.2.1: - resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} - engines: {node: '>=8'} - dev: true + term-size@2.2.1: {} - /terminal-link@2.1.1: - resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} - engines: {node: '>=8'} + terminal-link@2.1.1: dependencies: ansi-escapes: 4.3.2 supports-hyperlinks: 2.3.0 - dev: true - /terser-webpack-plugin@4.2.3(webpack@5.84.1): - resolution: {integrity: sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 + terser-webpack-plugin@4.2.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: cacache: 15.3.0 find-cache-dir: 3.3.2 @@ -46269,311 +51903,183 @@ packages: serialize-javascript: 5.0.1 source-map: 0.6.1 terser: 5.31.1 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) webpack-sources: 1.4.3 transitivePeerDependencies: - bluebird - /terser-webpack-plugin@5.3.10(@swc/core@1.6.5)(webpack@5.84.1): - resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: 5.84.1 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true + terser-webpack-plugin@5.3.10(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@jridgewell/trace-mapping': 0.3.25 - '@swc/core': 1.6.5(@swc/helpers@0.3.17) jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.31.1 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + '@swc/core': 1.6.5(@swc/helpers@0.3.17) - /terser@4.8.1: - resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} - engines: {node: '>=6.0.0'} - hasBin: true + terser@4.8.1: dependencies: acorn: 8.12.0 commander: 2.20.3 source-map: 0.6.1 source-map-support: 0.5.21 - /terser@5.31.1: - resolution: {integrity: sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==} - engines: {node: '>=10'} - hasBin: true + terser@5.31.1: dependencies: '@jridgewell/source-map': 0.3.6 acorn: 8.12.0 commander: 2.20.3 source-map-support: 0.5.21 - /test-exclude@6.0.0: - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} - engines: {node: '>=8'} + test-exclude@6.0.0: dependencies: '@istanbuljs/schema': 0.1.3 glob: 7.2.3 minimatch: 3.1.2 - /text-extensions@1.9.0: - resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} - engines: {node: '>=0.10'} - dev: true + text-extensions@1.9.0: {} - /text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + text-table@0.2.0: {} - /thread-loader@2.1.3(webpack@5.84.1): - resolution: {integrity: sha512-wNrVKH2Lcf8ZrWxDF/khdlLlsTMczdcwPA9VEK4c2exlEPynYWxi9op3nPTo5lAnDIkE0rQEB3VBP+4Zncc9Hg==} - engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 + thread-loader@2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: loader-runner: 2.4.0 loader-utils: 1.4.2 neo-async: 2.6.2 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /throat@5.0.0: - resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} - dev: true + throat@5.0.0: {} - /throttle-debounce@3.0.1: - resolution: {integrity: sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==} - engines: {node: '>=10'} - dev: true + throttle-debounce@3.0.1: {} - /throttleit@1.0.1: - resolution: {integrity: sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==} - dev: true + throttleit@1.0.1: {} - /through2@2.0.5: - resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + through2@2.0.5: dependencies: readable-stream: 2.3.8 xtend: 4.0.2 - dev: true - /through2@4.0.2: - resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} + through2@4.0.2: dependencies: readable-stream: 3.6.2 - dev: true - /through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - dev: true + through@2.3.8: {} - /thunky@1.1.0: - resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} + thunky@1.1.0: {} - /tiny-invariant@1.3.3: - resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} - dev: false + tiny-invariant@1.3.3: {} - /tiny-warning@1.0.3: - resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} - dev: false + tiny-warning@1.0.3: {} - /tinycolor2@1.6.0: - resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} - dev: false + tinycolor2@1.6.0: {} - /tinycolor@0.0.1: - resolution: {integrity: sha512-+CorETse1kl98xg0WAzii8DTT4ABF4R3nquhrkIbVGcw1T8JYs5Gfx9xEfGINPUZGDj9C4BmOtuKeaTtuuRolg==} - engines: {node: '>=0.4.0'} - dev: false + tinycolor@0.0.1: {} - /tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} + tmp@0.0.33: dependencies: os-tmpdir: 1.0.2 - dev: true - /tmp@0.2.3: - resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} - engines: {node: '>=14.14'} - dev: true + tmp@0.2.3: {} - /tmpl@1.0.5: - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + tmpl@1.0.5: {} - /to-fast-properties@1.0.3: - resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==} - engines: {node: '>=0.10.0'} - dev: true + to-fast-properties@1.0.3: {} - /to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} + to-fast-properties@2.0.0: {} - /to-object-path@0.3.0: - resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} - engines: {node: '>=0.10.0'} + to-object-path@0.3.0: dependencies: kind-of: 3.2.2 - /to-readable-stream@1.0.0: - resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} - engines: {node: '>=6'} - dev: false + to-readable-stream@1.0.0: {} - /to-regex-range@2.1.1: - resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} - engines: {node: '>=0.10.0'} + to-regex-range@2.1.1: dependencies: is-number: 3.0.0 repeat-string: 1.6.1 - /to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} + to-regex-range@5.0.1: dependencies: is-number: 7.0.0 - /to-regex@3.0.2: - resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} - engines: {node: '>=0.10.0'} + to-regex@3.0.2: dependencies: define-property: 2.0.2 extend-shallow: 3.0.2 regex-not: 1.0.2 safe-regex: 1.1.0 - /toggle-selection@1.0.6: - resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==} - dev: true + toggle-selection@1.0.6: {} - /toidentifier@1.0.1: - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} - engines: {node: '>=0.6'} + toidentifier@1.0.1: {} - /token-types@5.0.1: - resolution: {integrity: sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==} - engines: {node: '>=14.16'} + token-types@5.0.1: dependencies: '@tokenizer/token': 0.3.0 ieee754: 1.2.1 - dev: true - /totalist@3.0.1: - resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} - engines: {node: '>=6'} + totalist@3.0.1: {} - /tough-cookie@4.1.4: - resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} - engines: {node: '>=6'} + tough-cookie@4.1.4: dependencies: psl: 1.9.0 punycode: 2.3.1 universalify: 0.2.0 url-parse: 1.5.10 - dev: true - /tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + tr46@0.0.3: {} - /tr46@2.1.0: - resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} - engines: {node: '>=8'} + tr46@2.1.0: dependencies: punycode: 2.3.1 - dev: true - /tr46@3.0.0: - resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} - engines: {node: '>=12'} + tr46@3.0.0: dependencies: punycode: 2.3.1 - dev: true - /tree-changes@0.11.2: - resolution: {integrity: sha512-4gXlUthrl+RabZw6lLvcCDl6KfJOCmrC16BC5CRdut1EAH509Omgg0BfKLY+ViRlzrvYOTWR0FMS2SQTwzumrw==} + tree-changes@0.11.2: dependencies: '@gilbarbara/deep-equal': 0.3.1 is-lite: 1.2.1 - dev: false - /tree-changes@0.9.3: - resolution: {integrity: sha512-vvvS+O6kEeGRzMglTKbc19ltLWNtmNt1cpBoSYLj/iEcPVvpJasemKOlxBrmZaCtDJoF+4bwv3m01UKYi8mukQ==} + tree-changes@0.9.3: dependencies: '@gilbarbara/deep-equal': 0.1.2 is-lite: 0.8.2 - dev: false - /tree-kill@1.2.2: - resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} - hasBin: true - dev: true + tree-kill@1.2.2: {} - /treeverse@2.0.0: - resolution: {integrity: sha512-N5gJCkLu1aXccpOTtqV6ddSEi6ZmGkh3hjmbu1IjcavJK4qyOVQmi0myQKM7z5jVGmD68SJoliaVrMmVObhj6A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dev: true + treeverse@2.0.0: {} - /trim-newlines@1.0.0: - resolution: {integrity: sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==} - engines: {node: '>=0.10.0'} - requiresBuild: true - dev: false + trim-lines@3.0.1: {} + + trim-newlines@1.0.0: optional: true - /trim-newlines@3.0.1: - resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} - engines: {node: '>=8'} - dev: true + trim-newlines@3.0.1: {} - /trim-repeated@2.0.0: - resolution: {integrity: sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==} - engines: {node: '>=12'} + trim-repeated@2.0.0: dependencies: escape-string-regexp: 5.0.0 - dev: true - /trim-right@1.0.1: - resolution: {integrity: sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==} - engines: {node: '>=0.10.0'} - dev: true + trim-trailing-lines@1.1.4: {} - /trim-trailing-lines@1.1.4: - resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==} + trim@0.0.1: {} - /trim@0.0.1: - resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==} - deprecated: Use String.prototype.trim() instead + trough@1.0.5: {} - /trough@1.0.5: - resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} + trough@2.2.0: {} - /ts-dedent@2.2.0: - resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} - engines: {node: '>=6.10'} + ts-dedent@2.2.0: {} - /ts-jest@26.5.6(jest@26.6.3)(typescript@4.9.5): - resolution: {integrity: sha512-rua+rCP8DxpA8b4DQD/6X2HQS8Zy/xzViVYfEs2OQu68tkCuKLV0Md8pmX55+W24uRIyAsf/BajRfxOs+R2MKA==} - engines: {node: '>= 10'} - hasBin: true - peerDependencies: - jest: '>=26 <27' - typescript: '>=3.8 <5.0' + ts-jest@26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5): dependencies: bs-logger: 0.2.6 buffer-from: 1.1.2 fast-json-stable-stringify: 2.1.0 - jest: 26.6.3(ts-node@10.9.2) + jest: 26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) jest-util: 26.6.2 json5: 2.2.3 lodash: 4.17.21 @@ -46582,37 +52088,30 @@ packages: semver: 7.6.2 typescript: 4.9.5 yargs-parser: 20.2.9 - dev: true - /ts-jest@29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5): - resolution: {integrity: sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg==} - engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@jest/transform': ^29.0.0 - '@jest/types': ^29.0.0 - babel-jest: ^29.0.0 - esbuild: '*' - jest: ^29.0.0 - typescript: '>=4.3 <6' - peerDependenciesMeta: - '@babel/core': - optional: true - '@jest/transform': - optional: true - '@jest/types': - optional: true - babel-jest: - optional: true - esbuild: - optional: true + ts-jest@29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5): dependencies: + bs-logger: 0.2.6 + fast-json-stable-stringify: 2.1.0 + jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) + jest-util: 29.7.0 + json5: 2.2.3 + lodash.memoize: 4.1.2 + make-error: 1.3.6 + semver: 7.6.2 + typescript: 4.9.5 + yargs-parser: 21.1.1 + optionalDependencies: '@babel/core': 7.24.7 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 babel-jest: 26.6.3(@babel/core@7.24.7) + + ts-jest@29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5): + dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@13.13.52)(ts-node@10.9.2) + jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -46620,12 +52119,13 @@ packages: semver: 7.6.2 typescript: 4.9.5 yargs-parser: 21.1.1 + optionalDependencies: + '@babel/core': 7.24.7 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 26.6.3(@babel/core@7.24.7) - /ts-loader@6.2.2(typescript@4.9.5): - resolution: {integrity: sha512-HDo5kXZCBml3EUPcc7RlZOV/JGlLHwppTLEHb3SHnr5V7NXD4klMEkrhJe5wgRbaWsSXi+Y1SIBN/K9B6zWGWQ==} - engines: {node: '>=8.6'} - peerDependencies: - typescript: '*' + ts-loader@6.2.2(typescript@4.9.5): dependencies: chalk: 2.4.2 enhanced-resolve: 4.5.0 @@ -46633,14 +52133,8 @@ packages: micromatch: 4.0.7 semver: 6.3.1 typescript: 4.9.5 - dev: true - /ts-loader@9.5.1(typescript@4.9.5)(webpack@5.84.1): - resolution: {integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==} - engines: {node: '>=12.0.0'} - peerDependencies: - typescript: '*' - webpack: 5.84.1 + ts-loader@9.5.1(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: chalk: 4.1.0 enhanced-resolve: 5.17.0 @@ -46648,25 +52142,11 @@ packages: semver: 7.6.2 source-map: 0.7.4 typescript: 4.9.5 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /ts-node@10.9.1(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5): - resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true + ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5): dependencies: '@cspotcode/source-map-support': 0.8.1 - '@swc/core': 1.6.5(@swc/helpers@0.3.17) '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 @@ -46681,24 +52161,12 @@ packages: typescript: 4.9.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - dev: true + optionalDependencies: + '@swc/core': 1.6.5(@swc/helpers@0.3.17) - /ts-node@10.9.2(@swc/core@1.6.5)(@types/node@13.13.52)(typescript@4.9.5): - resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true + ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5): dependencies: '@cspotcode/source-map-support': 0.8.1 - '@swc/core': 1.6.5(@swc/helpers@0.3.17) '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 @@ -46713,13 +52181,10 @@ packages: typescript: 4.9.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 + optionalDependencies: + '@swc/core': 1.6.5(@swc/helpers@0.3.17) - /ts-node@8.10.2(typescript@4.9.5): - resolution: {integrity: sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA==} - engines: {node: '>=6.0.0'} - hasBin: true - peerDependencies: - typescript: '>=2.7' + ts-node@8.10.2(typescript@4.9.5): dependencies: arg: 4.1.3 diff: 4.0.2 @@ -46727,57 +52192,34 @@ packages: source-map-support: 0.5.21 typescript: 4.9.5 yn: 3.1.1 - dev: true - /ts-pnp@1.2.0(typescript@4.9.5): - resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} - engines: {node: '>=6'} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: + ts-pnp@1.2.0(typescript@4.9.5): + optionalDependencies: typescript: 4.9.5 - /tsconfig-paths-webpack-plugin@3.5.2: - resolution: {integrity: sha512-EhnfjHbzm5IYI9YPNVIxx1moxMI4bpHD2e0zTXeDNQcwjjRaGepP7IhTHJkyDBG0CAOoxRfe7jCG630Ou+C6Pw==} + tsconfig-paths-webpack-plugin@3.5.2: dependencies: chalk: 4.1.2 enhanced-resolve: 5.17.0 tsconfig-paths: 3.15.0 - dev: true - /tsconfig-paths@3.15.0: - resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + tsconfig-paths@3.15.0: dependencies: '@types/json5': 0.0.29 json5: 1.0.2 minimist: 1.2.8 strip-bom: 3.0.0 - dev: true - /tslib@1.14.1: - resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - dev: true + tslib@1.14.1: {} - /tslib@2.6.3: - resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} + tslib@2.6.3: {} - /tsutils@3.21.0(typescript@4.9.5): - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} - peerDependencies: - typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + tsutils@3.21.0(typescript@4.9.5): dependencies: tslib: 1.14.1 typescript: 4.9.5 - dev: true - /tty-table@4.2.3: - resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==} - engines: {node: '>=8.0.0'} - hasBin: true + tty-table@4.2.3: dependencies: chalk: 4.1.2 csv: 5.5.3 @@ -46786,91 +52228,51 @@ packages: strip-ansi: 6.0.1 wcwidth: 1.0.1 yargs: 17.7.2 - dev: true - /tunnel-agent@0.6.0: - resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + tunnel-agent@0.6.0: dependencies: safe-buffer: 5.2.1 - dev: true - /tweetnacl@0.14.5: - resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} - dev: true + tweetnacl@0.14.5: {} - /type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} + type-check@0.4.0: dependencies: prelude-ls: 1.2.1 - /type-detect@4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: '>=4'} + type-detect@4.0.8: {} - /type-fest@0.13.1: - resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} - engines: {node: '>=10'} - dev: true + type-fest@0.13.1: {} - /type-fest@0.18.1: - resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} - engines: {node: '>=10'} - dev: true + type-fest@0.18.1: {} - /type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} + type-fest@0.20.2: {} - /type-fest@0.21.3: - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} - engines: {node: '>=10'} + type-fest@0.21.3: {} - /type-fest@0.4.1: - resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==} - engines: {node: '>=6'} - dev: true + type-fest@0.4.1: {} - /type-fest@0.6.0: - resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} - engines: {node: '>=8'} + type-fest@0.6.0: {} - /type-fest@0.8.1: - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} - engines: {node: '>=8'} + type-fest@0.8.1: {} - /type-fest@1.4.0: - resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} - engines: {node: '>=10'} - dev: true + type-fest@1.4.0: {} - /type-fest@4.20.1: - resolution: {integrity: sha512-R6wDsVsoS9xYOpy8vgeBlqpdOyzJ12HNfQhC/aAKWM3YoCV9TtunJzh/QpkMgeDhkoynDcw5f1y+qF9yc/HHyg==} - engines: {node: '>=16'} - dev: false + type-fest@4.20.1: {} - /type-is@1.6.18: - resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} - engines: {node: '>= 0.6'} + type-is@1.6.18: dependencies: media-typer: 0.3.0 mime-types: 2.1.35 - /type@2.7.3: - resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==} - dev: true + type@2.7.3: {} - /typed-array-buffer@1.0.2: - resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} - engines: {node: '>= 0.4'} + typed-array-buffer@1.0.2: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-typed-array: 1.1.13 - /typed-array-byte-length@1.0.1: - resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} - engines: {node: '>= 0.4'} + typed-array-byte-length@1.0.1: dependencies: call-bind: 1.0.7 for-each: 0.3.3 @@ -46878,9 +52280,7 @@ packages: has-proto: 1.0.3 is-typed-array: 1.1.13 - /typed-array-byte-offset@1.0.2: - resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} - engines: {node: '>= 0.4'} + typed-array-byte-offset@1.0.2: dependencies: available-typed-arrays: 1.0.7 call-bind: 1.0.7 @@ -46889,9 +52289,7 @@ packages: has-proto: 1.0.3 is-typed-array: 1.1.13 - /typed-array-length@1.0.6: - resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} - engines: {node: '>= 0.4'} + typed-array-length@1.0.6: dependencies: call-bind: 1.0.7 for-each: 0.3.3 @@ -46900,102 +52298,65 @@ packages: is-typed-array: 1.1.13 possible-typed-array-names: 1.0.0 - /typed-assert@1.0.9: - resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==} - dev: true + typed-assert@1.0.9: {} - /typedarray-to-buffer@3.1.5: - resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + typedarray-to-buffer@3.1.5: dependencies: is-typedarray: 1.0.0 - /typedarray@0.0.6: - resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} + typedarray@0.0.6: {} - /typescript@4.9.5: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} - engines: {node: '>=4.2.0'} - hasBin: true + typescript@4.9.5: {} - /ua-parser-js@0.7.28: - resolution: {integrity: sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g==} - dev: false + ua-parser-js@0.7.28: {} - /uglify-js@3.18.0: - resolution: {integrity: sha512-SyVVbcNBCk0dzr9XL/R/ySrmYf0s372K6/hFklzgcp2lBFyXtw4I7BOdDjlLhE1aVqaI/SHWXWmYdlZxuyF38A==} - engines: {node: '>=0.8.0'} - hasBin: true - requiresBuild: true + uglify-js@3.18.0: optional: true - /unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + unbox-primitive@1.0.2: dependencies: call-bind: 1.0.7 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 - /underscore.deep@0.5.3(underscore@1.7.0): - resolution: {integrity: sha512-4OuSOlFNkiVFVc3khkeG112Pdu1gbitMj7t9B9ENb61uFmN70Jq7Iluhi3oflcSgexkKfDdJ5XAJET2gEq6ikA==} - engines: {node: '>=0.10.x'} - peerDependencies: - underscore: 1.x + underscore.deep@0.5.3(underscore@1.7.0): dependencies: underscore: 1.7.0 - dev: false - /underscore@1.7.0: - resolution: {integrity: sha512-cp0oQQyZhUM1kpJDLdGO1jPZHgS/MpzoWYfe9+CM2h/QGDZlqwT2T3YGukuBdaNJ/CAPoeyAZRRHz8JFo176vA==} - dev: false + underscore@1.7.0: {} - /unfetch@4.2.0: - resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==} + unfetch@4.2.0: {} - /unherit@1.1.3: - resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==} + unherit@1.1.3: dependencies: inherits: 2.0.4 xtend: 4.0.2 - /unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} - engines: {node: '>=4'} + unicode-canonical-property-names-ecmascript@2.0.0: {} - /unicode-match-property-ecmascript@2.0.0: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} - engines: {node: '>=4'} + unicode-match-property-ecmascript@2.0.0: dependencies: unicode-canonical-property-names-ecmascript: 2.0.0 unicode-property-aliases-ecmascript: 2.1.0 - /unicode-match-property-value-ecmascript@2.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} - engines: {node: '>=4'} + unicode-match-property-value-ecmascript@2.1.0: {} - /unicode-property-aliases-ecmascript@2.1.0: - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} - engines: {node: '>=4'} + unicode-property-aliases-ecmascript@2.1.0: {} - /unicorn-magic@0.1.0: - resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} - engines: {node: '>=18'} - dev: true + unicorn-magic@0.1.0: {} - /unified@6.2.0: - resolution: {integrity: sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==} + unified@11.0.5: dependencies: - '@types/unist': 2.0.10 - bail: 1.0.5 + '@types/unist': 3.0.2 + bail: 2.0.2 + devlop: 1.1.0 extend: 3.0.2 - is-plain-obj: 1.1.0 - trough: 1.0.5 - vfile: 2.3.0 - x-is-string: 0.1.0 - dev: false + is-plain-obj: 4.1.0 + trough: 2.2.0 + vfile: 6.0.1 - /unified@9.2.0: - resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==} + unified@9.2.0: dependencies: '@types/unist': 2.0.10 bail: 1.0.5 @@ -47005,200 +52366,138 @@ packages: trough: 1.0.5 vfile: 4.2.1 - /union-value@1.0.1: - resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} - engines: {node: '>=0.10.0'} + union-value@1.0.1: dependencies: arr-union: 3.1.0 get-value: 2.0.6 is-extendable: 0.1.1 set-value: 2.0.1 - /union@0.5.0: - resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} - engines: {node: '>= 0.8.0'} + union@0.5.0: dependencies: qs: 6.12.1 - dev: true - /unique-filename@1.1.1: - resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} + unique-filename@1.1.1: dependencies: unique-slug: 2.0.2 - /unique-filename@2.0.1: - resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + unique-filename@2.0.1: dependencies: unique-slug: 3.0.0 - dev: true - /unique-slug@2.0.2: - resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} + unique-slug@2.0.2: dependencies: imurmurhash: 0.1.4 - /unique-slug@3.0.0: - resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + unique-slug@3.0.0: dependencies: imurmurhash: 0.1.4 - dev: true - /unique-string@2.0.0: - resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} - engines: {node: '>=8'} + unique-string@2.0.0: dependencies: crypto-random-string: 2.0.0 - dev: false - /unist-builder@2.0.3: - resolution: {integrity: sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==} + unist-builder@2.0.3: {} - /unist-util-generated@1.1.6: - resolution: {integrity: sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==} + unist-util-generated@1.1.6: {} - /unist-util-is@3.0.0: - resolution: {integrity: sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==} - dev: false + unist-util-is@4.1.0: {} - /unist-util-is@4.1.0: - resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} + unist-util-is@6.0.0: + dependencies: + '@types/unist': 3.0.2 - /unist-util-position@3.1.0: - resolution: {integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==} + unist-util-position@3.1.0: {} - /unist-util-remove-position@1.1.4: - resolution: {integrity: sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==} + unist-util-position@5.0.0: dependencies: - unist-util-visit: 1.4.1 - dev: false + '@types/unist': 3.0.2 - /unist-util-remove-position@2.0.1: - resolution: {integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==} + unist-util-remove-position@2.0.1: dependencies: unist-util-visit: 2.0.3 - /unist-util-remove@2.1.0: - resolution: {integrity: sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==} + unist-util-remove-position@5.0.0: dependencies: - unist-util-is: 4.1.0 + '@types/unist': 3.0.2 + unist-util-visit: 5.0.0 - /unist-util-stringify-position@1.1.2: - resolution: {integrity: sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==} - dev: false + unist-util-remove@2.1.0: + dependencies: + unist-util-is: 4.1.0 - /unist-util-stringify-position@2.0.3: - resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} + unist-util-stringify-position@2.0.3: dependencies: '@types/unist': 2.0.10 - /unist-util-visit-parents@1.1.2: - resolution: {integrity: sha512-yvo+MMLjEwdc3RhhPYSximset7rwjMrdt9E41Smmvg25UQIenzrN83cRnF1JMzoMi9zZOQeYXHSDf7p+IQkW3Q==} - dev: false - - /unist-util-visit-parents@2.1.2: - resolution: {integrity: sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==} + unist-util-stringify-position@4.0.0: dependencies: - unist-util-is: 3.0.0 - dev: false + '@types/unist': 3.0.2 - /unist-util-visit-parents@3.1.1: - resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} + unist-util-visit-parents@3.1.1: dependencies: '@types/unist': 2.0.10 unist-util-is: 4.1.0 - /unist-util-visit@1.4.1: - resolution: {integrity: sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==} + unist-util-visit-parents@6.0.1: dependencies: - unist-util-visit-parents: 2.1.2 - dev: false + '@types/unist': 3.0.2 + unist-util-is: 6.0.0 - /unist-util-visit@2.0.3: - resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} + unist-util-visit@2.0.3: dependencies: '@types/unist': 2.0.10 unist-util-is: 4.1.0 unist-util-visit-parents: 3.1.1 - /universal-user-agent@6.0.1: - resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} - dev: true + unist-util-visit@5.0.0: + dependencies: + '@types/unist': 3.0.2 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 - /universalify@0.1.2: - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} - engines: {node: '>= 4.0.0'} - dev: true + universal-user-agent@6.0.1: {} - /universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} - dev: true + universalify@0.1.2: {} - /universalify@2.0.1: - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} - engines: {node: '>= 10.0.0'} + universalify@0.2.0: {} - /unpipe@1.0.0: - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} - engines: {node: '>= 0.8'} + universalify@2.0.1: {} - /unquote@1.1.1: - resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} + unpipe@1.0.0: {} - /unset-value@1.0.0: - resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} - engines: {node: '>=0.10.0'} + unquote@1.1.1: {} + + unset-value@1.0.0: dependencies: has-value: 0.3.1 isobject: 3.0.1 - /untildify@2.1.0: - resolution: {integrity: sha512-sJjbDp2GodvkB0FZZcn7k6afVisqX5BZD7Yq3xp4nN2O15BBK0cLm3Vwn2vQaF7UDS0UUsrQMkkplmDI5fskig==} - engines: {node: '>=0.10.0'} - requiresBuild: true + untildify@2.1.0: dependencies: os-homedir: 1.0.2 - dev: false optional: true - /untildify@4.0.0: - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} - engines: {node: '>=8'} - dev: true + untildify@4.0.0: {} - /upath2@3.1.19: - resolution: {integrity: sha512-d23dQLi8nDWSRTIQwXtaYqMrHuca0As53fNiTLLFDmsGBbepsZepISaB2H1x45bDFN/n3Qw9bydvyZEacTrEWQ==} + upath2@3.1.19: dependencies: '@types/node': 13.13.52 path-is-network-drive: 1.0.20 path-strip-sep: 1.0.17 tslib: 2.6.3 - dev: true - /upath@1.2.0: - resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} - engines: {node: '>=4'} + upath@1.2.0: {} - /upath@2.0.1: - resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} - engines: {node: '>=4'} - dev: true + upath@2.0.1: {} - /update-browserslist-db@1.0.16(browserslist@4.23.1): - resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' + update-browserslist-db@1.0.16(browserslist@4.23.1): dependencies: browserslist: 4.23.1 escalade: 3.1.2 picocolors: 1.0.1 - /update-notifier@5.1.0: - resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==} - engines: {node: '>=10'} + update-notifier@5.1.0: dependencies: boxen: 5.1.2 chalk: 4.1.2 @@ -47214,283 +52513,173 @@ packages: semver: 7.6.2 semver-diff: 3.1.1 xdg-basedir: 4.0.0 - dev: false - /uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + uri-js@4.4.1: dependencies: punycode: 2.3.1 - /urix@0.1.0: - resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} - deprecated: Please see https://github.com/lydell/urix#deprecated + urix@0.1.0: {} - /url-join@4.0.1: - resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} - dev: true + url-join@4.0.1: {} - /url-loader@2.3.0(file-loader@2.0.0)(webpack@5.84.1): - resolution: {integrity: sha512-goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog==} - engines: {node: '>= 8.9.0'} - peerDependencies: - file-loader: '*' - webpack: 5.84.1 - peerDependenciesMeta: - file-loader: - optional: true + url-loader@2.3.0(file-loader@2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: - file-loader: 2.0.0(webpack@5.84.1) loader-utils: 1.4.2 mime: 2.6.0 schema-utils: 2.7.1 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + file-loader: 2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - /url-loader@4.1.1(file-loader@2.0.0)(webpack@5.84.1): - resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - file-loader: '*' - webpack: 5.84.1 - peerDependenciesMeta: - file-loader: - optional: true + url-loader@4.1.1(file-loader@2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: - file-loader: 2.0.0(webpack@5.84.1) loader-utils: 2.0.4 mime-types: 2.1.35 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + file-loader: 2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - /url-loader@4.1.1(file-loader@6.2.0)(webpack@5.84.1): - resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - file-loader: '*' - webpack: 5.84.1 - peerDependenciesMeta: - file-loader: - optional: true + url-loader@4.1.1(file-loader@6.2.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: - file-loader: 6.2.0(webpack@5.84.1) loader-utils: 2.0.4 mime-types: 2.1.35 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + file-loader: 6.2.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - /url-parse-lax@3.0.0: - resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} - engines: {node: '>=4'} + url-parse-lax@3.0.0: dependencies: prepend-http: 2.0.0 - dev: false - /url-parse@1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + url-parse@1.5.10: dependencies: querystringify: 2.2.0 requires-port: 1.0.0 - /url@0.11.3: - resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==} + url@0.11.3: dependencies: punycode: 1.4.1 qs: 6.12.1 - /use-composed-ref@1.3.0: - resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - dev: true + use-composed-ref@1.3.0: {} - /use-isomorphic-layout-effect@1.1.2: - resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} - peerDependencies: - '@types/react': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - dev: true + use-isomorphic-layout-effect@1.1.2(@types/react@18.0.18): + optionalDependencies: + '@types/react': 18.0.18 - /use-latest@1.2.1: - resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} - peerDependencies: - '@types/react': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + use-latest@1.2.1(@types/react@18.0.18): dependencies: - use-isomorphic-layout-effect: 1.1.2 - dev: true + use-isomorphic-layout-effect: 1.1.2(@types/react@18.0.18) + optionalDependencies: + '@types/react': 18.0.18 - /use-sync-external-store@1.2.0(react@18.3.1): - resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + use-sync-external-store@1.2.0(react@18.3.1): dependencies: react: 18.3.1 - dev: false - /use-sync-external-store@1.2.2(react@18.3.1): - resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + use-sync-external-store@1.2.2(react@18.3.1): dependencies: react: 18.3.1 - dev: false - /use@3.1.1: - resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} - engines: {node: '>=0.10.0'} + use@3.1.1: {} - /util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + util-deprecate@1.0.2: {} - /util.promisify@1.0.0: - resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==} + util.promisify@1.0.0: dependencies: define-properties: 1.2.1 object.getownpropertydescriptors: 2.1.8 - /util.promisify@1.0.1: - resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} + util.promisify@1.0.1: dependencies: define-properties: 1.2.1 es-abstract: 1.23.3 has-symbols: 1.0.3 object.getownpropertydescriptors: 2.1.8 - /util@0.10.4: - resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} + util@0.10.4: dependencies: inherits: 2.0.3 - dev: true - /utila@0.4.0: - resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} + utila@0.4.0: {} - /utils-merge@1.0.1: - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} - engines: {node: '>= 0.4.0'} + utils-merge@1.0.1: {} - /uuid-browser@3.1.0: - resolution: {integrity: sha512-dsNgbLaTrd6l3MMxTtouOCFw4CBFc/3a+GgYA2YyrJvyQ1u6q4pcu3ktLoUZ/VN/Aw9WsauazbgsgdfVWgAKQg==} - deprecated: Package no longer supported and required. Use the uuid package or crypto.randomUUID instead - dev: true + uuid-browser@3.1.0: {} - /uuid@3.4.0: - resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} - deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. - hasBin: true + uuid@3.4.0: {} - /uuid@8.3.2: - resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} - hasBin: true + uuid@8.3.2: {} - /v8-compile-cache-lib@3.0.1: - resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + v8-compile-cache-lib@3.0.1: {} - /v8-compile-cache@2.3.0: - resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} - dev: true + v8-compile-cache@2.3.0: {} - /v8-compile-cache@2.4.0: - resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} + v8-compile-cache@2.4.0: {} - /v8-to-istanbul@7.1.2: - resolution: {integrity: sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==} - engines: {node: '>=10.10.0'} + v8-to-istanbul@7.1.2: dependencies: '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 1.9.0 source-map: 0.7.4 - dev: true - /v8-to-istanbul@9.3.0: - resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} - engines: {node: '>=10.12.0'} + v8-to-istanbul@9.3.0: dependencies: '@jridgewell/trace-mapping': 0.3.25 '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 2.0.0 - /validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + validate-npm-package-license@3.0.4: dependencies: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 - /validate-npm-package-name@3.0.0: - resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==} + validate-npm-package-name@3.0.0: dependencies: builtins: 1.0.3 - dev: true - /validate-npm-package-name@4.0.0: - resolution: {integrity: sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + validate-npm-package-name@4.0.0: dependencies: builtins: 5.1.0 - dev: true - /value-equal@1.0.1: - resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==} - dev: false + value-equal@1.0.1: {} - /vary@1.1.2: - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} - engines: {node: '>= 0.8'} + vary@1.1.2: {} - /verror@1.10.0: - resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} - engines: {'0': node >=0.6.0} + verror@1.10.0: dependencies: assert-plus: 1.0.0 core-util-is: 1.0.2 extsprintf: 1.3.0 - dev: true - - /vfile-location@2.0.6: - resolution: {integrity: sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==} - dev: false - /vfile-location@3.2.0: - resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==} - - /vfile-message@1.1.1: - resolution: {integrity: sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==} - dependencies: - unist-util-stringify-position: 1.1.2 - dev: false + vfile-location@3.2.0: {} - /vfile-message@2.0.4: - resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==} + vfile-message@2.0.4: dependencies: '@types/unist': 2.0.10 unist-util-stringify-position: 2.0.3 - /vfile@2.3.0: - resolution: {integrity: sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==} + vfile-message@4.0.2: dependencies: - is-buffer: 1.1.6 - replace-ext: 1.0.0 - unist-util-stringify-position: 1.1.2 - vfile-message: 1.1.1 - dev: false + '@types/unist': 3.0.2 + unist-util-stringify-position: 4.0.0 - /vfile@4.2.1: - resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==} + vfile@4.2.1: dependencies: '@types/unist': 2.0.10 is-buffer: 2.0.5 unist-util-stringify-position: 2.0.3 vfile-message: 2.0.4 - /victory-vendor@36.9.2: - resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==} + vfile@6.0.1: + dependencies: + '@types/unist': 3.0.2 + unist-util-stringify-position: 4.0.0 + vfile-message: 4.0.2 + + victory-vendor@36.9.2: dependencies: '@types/d3-array': 3.2.1 '@types/d3-ease': 3.0.2 @@ -47506,100 +52695,60 @@ packages: d3-shape: 3.2.0 d3-time: 3.1.0 d3-timer: 3.0.1 - dev: false - /void-elements@3.1.0: - resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} - engines: {node: '>=0.10.0'} - dev: false + void-elements@3.1.0: {} - /w3c-hr-time@1.0.2: - resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} - deprecated: Use your platform's native performance.now() and performance.timeOrigin. + w3c-hr-time@1.0.2: dependencies: browser-process-hrtime: 1.0.0 - dev: true - /w3c-xmlserializer@2.0.0: - resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} - engines: {node: '>=10'} + w3c-xmlserializer@2.0.0: dependencies: xml-name-validator: 3.0.0 - dev: true - /w3c-xmlserializer@4.0.0: - resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} - engines: {node: '>=14'} + w3c-xmlserializer@4.0.0: dependencies: xml-name-validator: 4.0.0 - dev: true - /walk-up-path@1.0.0: - resolution: {integrity: sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg==} - dev: true + walk-up-path@1.0.0: {} - /walker@1.0.8: - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + walker@1.0.8: dependencies: makeerror: 1.0.12 - /warning@4.0.3: - resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==} + warning@4.0.3: dependencies: loose-envify: 1.4.0 - /watch@1.0.2: - resolution: {integrity: sha512-1u+Z5n9Jc1E2c7qDO8SinPoZuHj7FgbgU1olSFoyaklduDvvtX7GMMtlE6OC9FTXq4KvNAOfj6Zu4vI1e9bAKA==} - engines: {node: '>=0.1.95'} - hasBin: true + watch@1.0.2: dependencies: exec-sh: 0.2.2 minimist: 1.2.8 - dev: true - /watchpack@2.4.1: - resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==} - engines: {node: '>=10.13.0'} + watchpack@2.4.1: dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 - /wbuf@1.7.3: - resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} + wbuf@1.7.3: dependencies: minimalistic-assert: 1.0.1 - /wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + wcwidth@1.0.1: dependencies: defaults: 1.0.4 - dev: true - /web-namespaces@1.1.4: - resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==} + web-namespaces@1.1.4: {} - /webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + webidl-conversions@3.0.1: {} - /webidl-conversions@5.0.0: - resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} - engines: {node: '>=8'} - dev: true + webidl-conversions@5.0.0: {} - /webidl-conversions@6.1.0: - resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} - engines: {node: '>=10.4'} - dev: true + webidl-conversions@6.1.0: {} - /webidl-conversions@7.0.0: - resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} - engines: {node: '>=12'} - dev: true + webidl-conversions@7.0.0: {} - /webpack-bundle-analyzer@4.10.2: - resolution: {integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==} - engines: {node: '>= 10.13.0'} - hasBin: true + webpack-bundle-analyzer@4.10.2: dependencies: '@discoveryjs/json-ext': 0.5.7 acorn: 8.12.0 @@ -47617,30 +52766,12 @@ packages: - bufferutil - utf-8-validate - /webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1): - resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - '@webpack-cli/generators': '*' - '@webpack-cli/migrate': '*' - webpack: 5.84.1 - webpack-bundle-analyzer: '*' - webpack-dev-server: '*' - peerDependenciesMeta: - '@webpack-cli/generators': - optional: true - '@webpack-cli/migrate': - optional: true - webpack-bundle-analyzer: - optional: true - webpack-dev-server: - optional: true + webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1): dependencies: '@discoveryjs/json-ext': 0.5.7 - '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0)(webpack@5.84.1) - '@webpack-cli/info': 1.5.0(webpack-cli@4.10.0) - '@webpack-cli/serve': 1.7.0(webpack-cli@4.10.0)(webpack-dev-server@3.11.3) + '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@webpack-cli/info': 1.5.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@webpack-cli/serve': 1.7.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1)) colorette: 2.0.20 commander: 7.2.0 cross-spawn: 7.0.3 @@ -47648,29 +52779,22 @@ packages: import-local: 3.1.0 interpret: 2.2.0 rechoir: 0.7.1 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - webpack-bundle-analyzer: 4.10.2 - webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) webpack-merge: 5.10.0 + optionalDependencies: + webpack-bundle-analyzer: 4.10.2 + webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - /webpack-dev-middleware@3.7.3(webpack@5.84.1): - resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==} - engines: {node: '>= 6'} - peerDependencies: - webpack: 5.84.1 + webpack-dev-middleware@3.7.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: memory-fs: 0.4.1 mime: 2.6.0 mkdirp: 0.5.6 range-parser: 1.2.1 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) webpack-log: 2.0.0 - /webpack-dev-middleware@4.3.0(webpack@5.84.1): - resolution: {integrity: sha512-PjwyVY95/bhBh6VUqt6z4THplYcsvQ8YNNBTBM873xLVmw8FLeALn0qurHbs9EmcfhzQis/eoqypSnZeuUz26w==} - engines: {node: '>= v10.23.3'} - peerDependencies: - webpack: 5.84.1 + webpack-dev-middleware@4.3.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: colorette: 1.4.0 mem: 8.1.1 @@ -47678,32 +52802,18 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /webpack-dev-middleware@5.3.4(webpack@5.84.1): - resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: 5.84.1 + webpack-dev-middleware@5.3.4(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: colorette: 2.0.20 memfs: 3.5.3 mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.2.0 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1): - resolution: {integrity: sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==} - engines: {node: '>= 6.11.5'} - hasBin: true - peerDependencies: - webpack: 5.84.1 - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true + webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: ansi-html-community: 0.0.8 bonjour: 3.5.0 @@ -47714,7 +52824,7 @@ packages: del: 4.1.1 express: 4.19.2(supports-color@6.1.0) html-entities: 1.4.0 - http-proxy-middleware: 0.19.1(debug@4.3.5)(supports-color@6.1.0) + http-proxy-middleware: 0.19.1(debug@4.3.5(supports-color@6.1.0))(supports-color@6.1.0) import-local: 2.0.0 internal-ip: 4.3.0 ip: 1.1.9 @@ -47734,28 +52844,18 @@ packages: strip-ansi: 3.0.1 supports-color: 6.1.0 url: 0.11.3 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) - webpack-dev-middleware: 3.7.3(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-dev-middleware: 3.7.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) webpack-log: 2.0.0 ws: 6.2.3 yargs: 13.3.2 + optionalDependencies: + webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) transitivePeerDependencies: - bufferutil - utf-8-validate - /webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.84.1): - resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==} - engines: {node: '>= 12.13.0'} - hasBin: true - peerDependencies: - webpack: 5.84.1 - webpack-cli: '*' - peerDependenciesMeta: - webpack: - optional: true - webpack-cli: - optional: true + webpack-dev-server@4.15.2(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@types/bonjour': 3.5.13 '@types/connect-history-api-fallback': 1.5.4 @@ -47784,107 +52884,71 @@ packages: selfsigned: 2.4.1 serve-index: 1.9.1(supports-color@6.1.0) sockjs: 0.3.24 - spdy: 4.0.2(supports-color@6.1.0) - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) - webpack-dev-middleware: 5.3.4(webpack@5.84.1) + spdy: 4.0.2 + webpack-dev-middleware: 5.3.4(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ws: 8.17.1 + optionalDependencies: + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) transitivePeerDependencies: - bufferutil - debug - supports-color - utf-8-validate - dev: true - /webpack-filter-warnings-plugin@1.2.1(webpack@5.84.1): - resolution: {integrity: sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==} - engines: {node: '>= 4.3 < 5.0.0 || >= 5.10'} - peerDependencies: - webpack: 5.84.1 + webpack-filter-warnings-plugin@1.2.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /webpack-hot-middleware@2.26.1: - resolution: {integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==} + webpack-hot-middleware@2.26.1: dependencies: ansi-html-community: 0.0.8 html-entities: 2.5.2 strip-ansi: 6.0.1 - /webpack-log@1.2.0: - resolution: {integrity: sha512-U9AnICnu50HXtiqiDxuli5gLB5PGBo7VvcHx36jRZHwK4vzOYLbImqT4lwWwoMHdQWwEKw736fCHEekokTEKHA==} - engines: {node: '>=6'} + webpack-log@1.2.0: dependencies: chalk: 2.4.2 log-symbols: 2.2.0 loglevelnext: 1.0.5 uuid: 3.4.0 - dev: true - /webpack-log@2.0.0: - resolution: {integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==} - engines: {node: '>= 6'} + webpack-log@2.0.0: dependencies: ansi-colors: 3.2.4 uuid: 3.4.0 - /webpack-merge@5.10.0: - resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} - engines: {node: '>=10.0.0'} + webpack-merge@5.10.0: dependencies: clone-deep: 4.0.1 flat: 5.0.2 wildcard: 2.0.1 - /webpack-node-externals@3.0.0: - resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==} - engines: {node: '>=6'} - dev: true + webpack-node-externals@3.0.0: {} - /webpack-sources@1.4.3: - resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==} + webpack-sources@1.4.3: dependencies: source-list-map: 2.0.1 source-map: 0.6.1 - /webpack-sources@3.2.3: - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} - engines: {node: '>=10.13.0'} + webpack-sources@3.2.3: {} - /webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.0)(webpack@5.84.1): - resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==} - engines: {node: '>= 12'} - peerDependencies: - html-webpack-plugin: '>= 5.0.0-beta.1 < 6' - webpack: 5.84.1 - peerDependenciesMeta: - html-webpack-plugin: - optional: true + webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: - html-webpack-plugin: 5.6.0(webpack@5.84.1) typed-assert: 1.0.9 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + html-webpack-plugin: 5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - /webpack-virtual-modules@0.2.2: - resolution: {integrity: sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==} + webpack-virtual-modules@0.2.2: dependencies: - debug: 3.2.7(supports-color@6.1.0) + debug: 3.2.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color - /webpack-virtual-modules@0.4.6: - resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==} + webpack-virtual-modules@0.4.6: {} - /webpack@5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-ZP4qaZ7vVn/K8WN/p990SGATmrL1qg4heP/MrVneczYtpDGJWlrgZv55vxaV2ul885Kz+25MP2kSXkPe3LZfmg==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true + webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)): dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.5 @@ -47907,78 +52971,55 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(@swc/core@1.6.5)(webpack@5.84.1) + terser-webpack-plugin: 5.3.10(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) watchpack: 2.4.1 - webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) webpack-sources: 3.2.3 + optionalDependencies: + webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) transitivePeerDependencies: - '@swc/core' - esbuild - uglify-js - /websocket-driver@0.7.4: - resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} - engines: {node: '>=0.8.0'} + websocket-driver@0.7.4: dependencies: http-parser-js: 0.5.8 safe-buffer: 5.2.1 websocket-extensions: 0.1.4 - /websocket-extensions@0.1.4: - resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} - engines: {node: '>=0.8.0'} + websocket-extensions@0.1.4: {} - /whatwg-encoding@1.0.5: - resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} + whatwg-encoding@1.0.5: dependencies: iconv-lite: 0.4.24 - dev: true - /whatwg-encoding@2.0.0: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} - engines: {node: '>=12'} + whatwg-encoding@2.0.0: dependencies: iconv-lite: 0.6.3 - dev: true - /whatwg-fetch@3.6.20: - resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} - dev: false + whatwg-fetch@3.6.20: {} - /whatwg-mimetype@2.3.0: - resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} - dev: true + whatwg-mimetype@2.3.0: {} - /whatwg-mimetype@3.0.0: - resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} - engines: {node: '>=12'} - dev: true + whatwg-mimetype@3.0.0: {} - /whatwg-url@11.0.0: - resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} - engines: {node: '>=12'} + whatwg-url@11.0.0: dependencies: tr46: 3.0.0 webidl-conversions: 7.0.0 - dev: true - /whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + whatwg-url@5.0.0: dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 - /whatwg-url@8.7.0: - resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} - engines: {node: '>=10'} + whatwg-url@8.7.0: dependencies: lodash: 4.17.21 tr46: 2.1.0 webidl-conversions: 6.1.0 - dev: true - /which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + which-boxed-primitive@1.0.2: dependencies: is-bigint: 1.0.4 is-boolean-object: 1.1.2 @@ -47986,9 +53027,7 @@ packages: is-string: 1.0.7 is-symbol: 1.0.4 - /which-builtin-type@1.1.3: - resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} - engines: {node: '>= 0.4'} + which-builtin-type@1.1.3: dependencies: function.prototype.name: 1.1.6 has-tostringtag: 1.0.2 @@ -48002,31 +53041,22 @@ packages: which-boxed-primitive: 1.0.2 which-collection: 1.0.2 which-typed-array: 1.1.15 - dev: true - /which-collection@1.0.2: - resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} - engines: {node: '>= 0.4'} + which-collection@1.0.2: dependencies: is-map: 2.0.3 is-set: 2.0.3 is-weakmap: 2.0.2 is-weakset: 2.0.3 - /which-module@2.0.1: - resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} + which-module@2.0.1: {} - /which-pm@2.0.0: - resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==} - engines: {node: '>=8.15'} + which-pm@2.0.0: dependencies: load-yaml-file: 0.2.0 path-exists: 4.0.0 - dev: true - /which-typed-array@1.1.15: - resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} - engines: {node: '>= 0.4'} + which-typed-array@1.1.15: dependencies: available-typed-arrays: 1.0.7 call-bind: 1.0.7 @@ -48034,125 +53064,88 @@ packages: gopd: 1.0.1 has-tostringtag: 1.0.2 - /which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true + which@1.3.1: dependencies: isexe: 2.0.0 - /which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} - hasBin: true + which@2.0.2: dependencies: isexe: 2.0.0 - /wide-align@1.1.5: - resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + wide-align@1.1.5: dependencies: string-width: 4.2.3 - /widest-line@3.1.0: - resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} - engines: {node: '>=8'} + widest-line@3.1.0: dependencies: string-width: 4.2.3 - /wildcard@2.0.1: - resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} + wildcard@2.0.1: {} - /word-wrap@1.2.5: - resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} - engines: {node: '>=0.10.0'} + word-wrap@1.2.5: {} - /wordwrap@1.0.0: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + wordwrap@1.0.0: {} - /worker-loader@2.0.0(webpack@5.84.1): - resolution: {integrity: sha512-tnvNp4K3KQOpfRnD20m8xltE3eWh89Ye+5oj7wXEEHKac1P4oZ6p9oTj8/8ExqoSBnk9nu5Pr4nKfQ1hn2APJw==} - engines: {node: '>= 6.9.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 + worker-loader@2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: loader-utils: 1.4.2 schema-utils: 0.4.7 - webpack: 5.84.1(@swc/core@1.6.5)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /worker-rpc@0.1.1: - resolution: {integrity: sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==} + worker-rpc@0.1.1: dependencies: microevent.ts: 0.1.1 - /world-countries@5.0.0: - resolution: {integrity: sha512-wAfOT9Y5i/xnxNOdKJKXdOCw9Q3yQLahBUeuRol+s+o20F6h2a4tLEbJ1lBCYwEQ30Sf9Meqeipk1gib3YwF5w==} - dev: false + world-countries@5.0.0: {} - /wrap-ansi@5.1.0: - resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==} - engines: {node: '>=6'} + wrap-ansi@5.1.0: dependencies: ansi-styles: 3.2.1 string-width: 3.1.0 strip-ansi: 5.2.0 - /wrap-ansi@6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: '>=8'} + wrap-ansi@6.2.0: dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - dev: true - /wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} + wrap-ansi@7.0.0: dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - /wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} + wrap-ansi@8.1.0: dependencies: ansi-styles: 6.2.1 string-width: 5.1.2 strip-ansi: 7.1.0 - dev: false - /wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + wrappy@1.0.2: {} - /write-file-atomic@2.4.3: - resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} + write-file-atomic@2.4.3: dependencies: graceful-fs: 4.2.11 imurmurhash: 0.1.4 signal-exit: 3.0.7 - /write-file-atomic@3.0.3: - resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + write-file-atomic@3.0.3: dependencies: imurmurhash: 0.1.4 is-typedarray: 1.0.0 signal-exit: 3.0.7 typedarray-to-buffer: 3.1.5 - /write-file-atomic@4.0.2: - resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + write-file-atomic@4.0.2: dependencies: imurmurhash: 0.1.4 signal-exit: 3.0.7 - /write-file-webpack-plugin@4.5.1: - resolution: {integrity: sha512-AZ7qJUvhTCBiOtG21aFJUcNuLVo2FFM6JMGKvaUGAH+QDqQAp2iG0nq3GcuXmJOFQR2JjpjhyYkyPrbFKhdjNQ==} - engines: {node: '>=4'} + write-file-webpack-plugin@4.5.1: dependencies: chalk: 2.4.2 - debug: 3.2.7(supports-color@6.1.0) + debug: 3.2.7(supports-color@8.1.1) filesize: 3.6.1 lodash: 4.17.21 mkdirp: 0.5.6 @@ -48160,11 +53153,8 @@ packages: write-file-atomic: 2.4.3 transitivePeerDependencies: - supports-color - dev: true - /write-json-file@3.2.0: - resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==} - engines: {node: '>=6'} + write-json-file@3.2.0: dependencies: detect-indent: 5.0.0 graceful-fs: 4.2.11 @@ -48172,11 +53162,8 @@ packages: pify: 4.0.1 sort-keys: 2.0.0 write-file-atomic: 2.4.3 - dev: true - /write-json-file@4.3.0: - resolution: {integrity: sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ==} - engines: {node: '>=8.3'} + write-json-file@4.3.0: dependencies: detect-indent: 6.1.0 graceful-fs: 4.2.11 @@ -48184,142 +53171,66 @@ packages: make-dir: 3.1.0 sort-keys: 4.2.0 write-file-atomic: 3.0.3 - dev: true - /write-pkg@4.0.0: - resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==} - engines: {node: '>=8'} + write-pkg@4.0.0: dependencies: sort-keys: 2.0.0 type-fest: 0.4.1 write-json-file: 3.2.0 - dev: true - /ws@6.2.3: - resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true + ws@6.2.3: dependencies: async-limiter: 1.0.1 - /ws@7.5.10: - resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} - engines: {node: '>=8.3.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true + ws@7.5.10: {} - /ws@8.17.1: - resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true + ws@8.17.1: {} - /x-default-browser@0.4.0: - resolution: {integrity: sha512-7LKo7RtWfoFN/rHx1UELv/2zHGMx8MkZKDq1xENmOCTkfIqZJ0zZ26NEJX8czhnPXVcqS0ARjjfJB+eJ0/5Cvw==} - hasBin: true + x-default-browser@0.4.0: optionalDependencies: default-browser-id: 1.0.4 - dev: false - /x-is-string@0.1.0: - resolution: {integrity: sha512-GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w==} - dev: false + xdg-basedir@4.0.0: {} - /xdg-basedir@4.0.0: - resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} - engines: {node: '>=8'} - dev: false - - /xml-name-validator@3.0.0: - resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} - dev: true + xml-name-validator@3.0.0: {} - /xml-name-validator@4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} - engines: {node: '>=12'} - dev: true + xml-name-validator@4.0.0: {} - /xmlchars@2.2.0: - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} - dev: true + xmlchars@2.2.0: {} - /xtend@4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: '>=0.4'} + xtend@4.0.2: {} - /y18n@4.0.3: - resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + y18n@4.0.3: {} - /y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} + y18n@5.0.8: {} - /yallist@2.1.2: - resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} - dev: true + yallist@2.1.2: {} - /yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + yallist@3.1.1: {} - /yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + yallist@4.0.0: {} - /yaml@1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} + yaml@1.10.2: {} - /yargs-parser@13.1.2: - resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==} + yargs-parser@13.1.2: dependencies: camelcase: 5.3.1 decamelize: 1.2.0 - /yargs-parser@18.1.3: - resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} - engines: {node: '>=6'} + yargs-parser@18.1.3: dependencies: camelcase: 5.3.1 decamelize: 1.2.0 - dev: true - /yargs-parser@20.2.4: - resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} - engines: {node: '>=10'} - dev: true + yargs-parser@20.2.4: {} - /yargs-parser@20.2.9: - resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} - engines: {node: '>=10'} + yargs-parser@20.2.9: {} - /yargs-parser@21.0.1: - resolution: {integrity: sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==} - engines: {node: '>=12'} - dev: true + yargs-parser@21.0.1: {} - /yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} + yargs-parser@21.1.1: {} - /yargs@13.3.2: - resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==} + yargs@13.3.2: dependencies: cliui: 5.0.0 find-up: 3.0.0 @@ -48332,9 +53243,7 @@ packages: y18n: 4.0.3 yargs-parser: 13.1.2 - /yargs@15.4.1: - resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} - engines: {node: '>=8'} + yargs@15.4.1: dependencies: cliui: 6.0.0 decamelize: 1.2.0 @@ -48347,11 +53256,8 @@ packages: which-module: 2.0.1 y18n: 4.0.3 yargs-parser: 18.1.3 - dev: true - /yargs@16.2.0: - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} - engines: {node: '>=10'} + yargs@16.2.0: dependencies: cliui: 7.0.4 escalade: 3.1.2 @@ -48361,9 +53267,7 @@ packages: y18n: 5.0.8 yargs-parser: 20.2.9 - /yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} + yargs@17.7.2: dependencies: cliui: 8.0.1 escalade: 3.1.2 @@ -48373,54 +53277,24 @@ packages: y18n: 5.0.8 yargs-parser: 21.1.1 - /yauzl@2.10.0: - resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + yauzl@2.10.0: dependencies: buffer-crc32: 0.2.13 fd-slicer: 1.1.0 - /yn@3.1.1: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} - engines: {node: '>=6'} + yn@3.1.1: {} - /yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} + yocto-queue@0.1.0: {} - /zustand@4.5.2(@types/react@18.0.18)(react@18.3.1): - resolution: {integrity: sha512-2cN1tPkDVkwCy5ickKrI7vijSjPksFRfqS6237NzT0vqSsztTNnQdHw9mmN7uBdk3gceVXU0a+21jFzFzAc9+g==} - engines: {node: '>=12.7.0'} - peerDependencies: - '@types/react': 18.0.18 - immer: '>=9.0.6' - react: '>=16.8' - peerDependenciesMeta: - '@types/react': - optional: true - immer: - optional: true - react: - optional: true + zustand@4.5.2(@types/react@18.0.18)(react@18.3.1): dependencies: + use-sync-external-store: 1.2.0(react@18.3.1) + optionalDependencies: '@types/react': 18.0.18 react: 18.3.1 - use-sync-external-store: 1.2.0(react@18.3.1) - dev: false - /zwitch@1.0.5: - resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==} + zwitch@1.0.5: {} - /zxcvbn@4.4.2: - resolution: {integrity: sha512-Bq0B+ixT/DMyG8kgX2xWcI5jUvCwqrMxSFam7m0lAf78nf04hv6lNCsyLYdyYTrCVMqNDY/206K7eExYCeSyUQ==} - dev: false + zwitch@2.0.4: {} - github.com/jeradrutnam/eslint-plugin-header/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3(eslint@7.32.0): - resolution: {tarball: https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3} - id: github.com/jeradrutnam/eslint-plugin-header/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3 - name: eslint-plugin-header - version: 3.2.0 - peerDependencies: - eslint: '>=7.7.0' - dependencies: - eslint: 7.32.0 - dev: true + zxcvbn@4.4.2: {} From beb96dc8ffc6a56c68d7d65e519e5d02b4723773 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Mon, 8 Jul 2024 12:13:33 +0530 Subject: [PATCH 049/114] refcator the application templates provider --- apps/console/src/app.tsx | 2 +- .../constants/templates.ts | 39 + .../models/templates.ts | 31 + .../package.json | 36 + .../public-api.ts | 19 + .../rollup.config.cjs | 74 ++ .../tsconfig.json | 42 + .../components/application-list.tsx | 10 +- .../application-creation-adapter.tsx | 5 +- .../application-template-card.tsx | 12 +- .../application-templates-grid.tsx | 42 +- .../application-create-wizard.tsx | 4 +- .../components/edit-application.tsx | 6 +- .../configs/endpoints.ts | 1 - .../constants/application-templates.ts | 24 - .../context/application-templates-context.tsx | 54 - .../models/application-templates.ts | 126 +-- .../admin.applications.v1/models/endpoints.ts | 4 - features/admin.applications.v1/package.json | 2 + .../pages/application-edit.tsx | 13 +- .../pages/application-template.tsx | 6 +- .../application-templates-provider.tsx | 146 --- .../edit/settings/connected-apps.tsx | 10 +- features/admin.connections.v1/package.json | 1 + features/admin.core.v1/configs/app.ts | 6 +- .../admin.core.v1/constants/i18n-constants.ts | 15 +- features/admin.core.v1/models/config.ts | 4 +- features/admin.core.v1/package.json | 2 + .../common-feature-provider.tsx | 11 +- .../admin.core.v1/store/reducers/config.ts | 2 +- .../components/settings/connected-apps.tsx | 567 ---------- .../api/use-get-extension-templates.ts} | 16 +- .../configs/endpoints.ts | 31 + .../constants/templates.ts | 33 + .../context/extension-templates-context.tsx | 54 + .../hooks/use-extension-templates.ts} | 22 +- .../models/endpoints.ts | 27 + .../models/templates.ts | 123 +++ features/admin.template-core.v1/package.json | 40 + .../provider/extension-templates-provider.tsx | 162 +++ features/admin.template-core.v1/public-api.ts | 19 + .../admin.template-core.v1/rollup.config.cjs | 74 ++ features/admin.template-core.v1/tsconfig.json | 42 + features/index.ts | 1 + features/rollup.config.cjs | 4 + modules/i18n/src/constants.ts | 16 + .../namespaces/application-templates-ns.ts | 30 + .../src/models/namespaces/applications-ns.ts | 14 - .../namespaces/extension-templates-ns.ts | 42 + modules/i18n/src/models/namespaces/index.ts | 2 + .../en-US/portals/application-templates.ts | 32 + .../en-US/portals/applications.ts | 15 - .../en-US/portals/extension-templates.ts | 43 + .../src/translations/en-US/portals/index.ts | 2 + .../src/components/renderer/index.ts | 2 +- .../renderer/{ => markdown}/markdown.tsx | 0 pnpm-lock.yaml | 968 ++++++++++-------- 57 files changed, 1676 insertions(+), 1454 deletions(-) create mode 100644 features/admin.application-templates.v1/constants/templates.ts create mode 100644 features/admin.application-templates.v1/models/templates.ts create mode 100644 features/admin.application-templates.v1/package.json create mode 100644 features/admin.application-templates.v1/public-api.ts create mode 100644 features/admin.application-templates.v1/rollup.config.cjs create mode 100644 features/admin.application-templates.v1/tsconfig.json delete mode 100644 features/admin.applications.v1/context/application-templates-context.tsx delete mode 100644 features/admin.applications.v1/provider/application-templates-provider.tsx rename features/admin.core.v1/{components => providers}/common-feature-provider.tsx (71%) delete mode 100644 features/admin.identity-providers.v1/components/settings/connected-apps.tsx rename features/{admin.applications.v1/api/use-get-application-templates.ts => admin.template-core.v1/api/use-get-extension-templates.ts} (74%) create mode 100644 features/admin.template-core.v1/configs/endpoints.ts create mode 100644 features/admin.template-core.v1/constants/templates.ts create mode 100644 features/admin.template-core.v1/context/extension-templates-context.tsx rename features/{admin.applications.v1/hooks/use-application-templates.ts => admin.template-core.v1/hooks/use-extension-templates.ts} (51%) create mode 100644 features/admin.template-core.v1/models/endpoints.ts create mode 100644 features/admin.template-core.v1/models/templates.ts create mode 100644 features/admin.template-core.v1/package.json create mode 100644 features/admin.template-core.v1/provider/extension-templates-provider.tsx create mode 100644 features/admin.template-core.v1/public-api.ts create mode 100644 features/admin.template-core.v1/rollup.config.cjs create mode 100644 features/admin.template-core.v1/tsconfig.json create mode 100644 modules/i18n/src/models/namespaces/application-templates-ns.ts create mode 100644 modules/i18n/src/models/namespaces/extension-templates-ns.ts create mode 100644 modules/i18n/src/translations/en-US/portals/application-templates.ts create mode 100644 modules/i18n/src/translations/en-US/portals/extension-templates.ts rename modules/react-components/src/components/renderer/{ => markdown}/markdown.tsx (100%) diff --git a/apps/console/src/app.tsx b/apps/console/src/app.tsx index 1d8e14de186..bd89e75b56d 100755 --- a/apps/console/src/app.tsx +++ b/apps/console/src/app.tsx @@ -20,7 +20,6 @@ import { BasicUserInfo, DecodedIDTokenPayload, useAuthContext } from "@asgardeo/ import { AccessControlProvider, AllFeatureInterface, FeatureGateInterface } from "@wso2is/access-control"; import { EventPublisher, PreLoader } from "@wso2is/admin.core.v1"; import { ProtectedRoute } from "@wso2is/admin.core.v1/components"; -import CommonFeatureProviders from "@wso2is/admin.core.v1/components/common-feature-provider"; import { Config, DocumentationLinks, getBaseRoutes } from "@wso2is/admin.core.v1/configs"; import { AppConstants } from "@wso2is/admin.core.v1/constants"; import { history } from "@wso2is/admin.core.v1/helpers"; @@ -31,6 +30,7 @@ import { FeatureConfigInterface, ServiceResourceEndpointsInterface } from "@wso2is/admin.core.v1/models"; +import CommonFeatureProviders from "@wso2is/admin.core.v1/providers/common-feature-provider"; import { AppState } from "@wso2is/admin.core.v1/store"; import { commonConfig } from "@wso2is/admin.extensions.v1"; import { useGetAllFeatures } from "@wso2is/admin.extensions.v1/components/feature-gate/api/feature-gate"; diff --git a/features/admin.application-templates.v1/constants/templates.ts b/features/admin.application-templates.v1/constants/templates.ts new file mode 100644 index 00000000000..c4c2de54bd7 --- /dev/null +++ b/features/admin.application-templates.v1/constants/templates.ts @@ -0,0 +1,39 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ExtensionTemplateCategoryInterface } from "@wso2is/admin.template-core.v1/models/templates"; + +/** + * Class containing application templates management constants. + */ +export class ApplicationTemplateConstants { + public static readonly SUPPORTED_CATEGORIES_INFO: ExtensionTemplateCategoryInterface[] = [ + { + description: "applicationTemplates:categories.default.description", + displayName: "applicationTemplates:categories.default.displayName", + displayOrder: 0, + id: "DEFAULT" + }, + { + description: "applicationTemplates:categories.ssoIntegration.description", + displayName: "applicationTemplates:categories.ssoIntegration.displayName", + displayOrder: 1, + id: "SSO-INTEGRATION" + } + ]; +} diff --git a/features/admin.application-templates.v1/models/templates.ts b/features/admin.application-templates.v1/models/templates.ts new file mode 100644 index 00000000000..86baaf3c7e3 --- /dev/null +++ b/features/admin.application-templates.v1/models/templates.ts @@ -0,0 +1,31 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Supported technology metadata interface. + */ +export interface SupportedTechnologyMetadataInterface { + /** + * Display name of the technology. + */ + displayName: string; + /** + * URL of the technology logo. + */ + logo?: string; +} diff --git a/features/admin.application-templates.v1/package.json b/features/admin.application-templates.v1/package.json new file mode 100644 index 00000000000..693d4b7a329 --- /dev/null +++ b/features/admin.application-templates.v1/package.json @@ -0,0 +1,36 @@ +{ + "private": true, + "name": "@wso2is/admin.application-templates.v1", + "version": "1.0.0", + "description": "WSO2 Identity Server Console", + "author": "WSO2", + "license": "Apache-2.0", + "dependencies": { + "@wso2is/admin.template-core.v1": "^1.0.0" + }, + "devDependencies": { + "@rollup/plugin-commonjs": "^25.0.7", + "@rollup/plugin-dynamic-import-vars": "^2.1.2", + "@rollup/plugin-image": "^3.0.3", + "@rollup/plugin-json": "^6.1.0", + "@rollup/plugin-node-resolve": "^15.2.3", + "@rollup/plugin-typescript": "^11.1.6", + "@svgr/rollup": "^6.2.1", + "rollup": "^4.17.2", + "rollup-plugin-dts": "^6.1.1", + "rollup-plugin-generate-package-json": "^3.2.0", + "rollup-plugin-polyfill-node": "^0.13.0", + "rollup-plugin-scss": "^4.0.0", + "rollup-plugin-styles": "^4.0.0", + "rollup-plugin-svg": "^2.0.0", + "typescript": "^4.6.4" + }, + "peerDependencies": { + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-router-dom": "^4.3.1" + }, + "browserslist": [ + "> 0.2%" + ] +} diff --git a/features/admin.application-templates.v1/public-api.ts b/features/admin.application-templates.v1/public-api.ts new file mode 100644 index 00000000000..bd34ef7d813 --- /dev/null +++ b/features/admin.application-templates.v1/public-api.ts @@ -0,0 +1,19 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export const test: string = "dhja"; diff --git a/features/admin.application-templates.v1/rollup.config.cjs b/features/admin.application-templates.v1/rollup.config.cjs new file mode 100644 index 00000000000..a64ea2c5a80 --- /dev/null +++ b/features/admin.application-templates.v1/rollup.config.cjs @@ -0,0 +1,74 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +const commonjs = require("@rollup/plugin-commonjs"); +const dynamicImportVars = require("@rollup/plugin-dynamic-import-vars"); +const image = require("@rollup/plugin-image"); +const json = require("@rollup/plugin-json"); +const { nodeResolve } = require("@rollup/plugin-node-resolve"); +const typescript = require("@rollup/plugin-typescript"); +const svgr = require("@svgr/rollup"); +const dts = require("rollup-plugin-dts"); +const nodePolyfills = require("rollup-plugin-polyfill-node"); +const scss = require("rollup-plugin-scss"); +const svg = require("rollup-plugin-svg"); + +const onwarn = (warning, warn) => { + if (warning.code === "MODULE_LEVEL_DIRECTIVE") { + return; + } + warn(warning); +}; + +module.exports = [ + { + cache: false, + external: [ "react", "react-dom", /^@wso2is\// ], + input: [ + "./public-api.ts" + ], + onwarn, + output: [ + { + dir: "dist/esm", + format: "esm", + preserveModules: true, + preserveModulesRoot: "." + } + ], + plugins: [ + nodeResolve(), + typescript({ + tsconfig: "./tsconfig.json" + }), + scss(), + svg(), + svgr(), + json(), + image(), + nodePolyfills(), + commonjs(), + dynamicImportVars() + ] + }, + { + cache: false, + input: "dist/esm/types/public-api.d.ts", + output: [ { file: "dist/esm/index.d.ts", format: "esm" } ], + plugins: [ dts.default() ] + } +]; diff --git a/features/admin.application-templates.v1/tsconfig.json b/features/admin.application-templates.v1/tsconfig.json new file mode 100644 index 00000000000..71337b4c236 --- /dev/null +++ b/features/admin.application-templates.v1/tsconfig.json @@ -0,0 +1,42 @@ +{ + "compilerOptions": { + "jsx": "react", + "declaration": true, + "declarationDir": "dist/esm/types", + "lib": [ "ESNext", "DOM", "DOM.Iterable", "ScriptHost" ], + "resolveJsonModule": true, + "skipDefaultLibCheck": true, + "types": [ "node", "webpack-env", "jest", "@testing-library/jest-dom" ], + "emitDecoratorMetadata": true, + "esModuleInterop": true, + "experimentalDecorators": true, + "importHelpers": true, + "module": "esnext", + "moduleResolution": "node", + "skipLibCheck": true, + "sourceMap": true, + "target": "es2015", + }, + "exclude": [ + "build", + "cache", + "coverage", + "dist", + "node_modules", + "scripts", + "**/test-configs/*", + "jest.config.ts", + "**/tests/*", + "**/__tests__/*", + "**/__mocks__/*", + "**/*.test.js", + "**/*.test.jsx", + "**/*.test.ts", + "**/*.test.tsx", + "**/*.spec.js", + "**/*.spec.jsx", + "**/*.spec.ts", + "**/*.spec.tsx" + ], + "compileOnSave": false, +} diff --git a/features/admin.applications.v1/components/application-list.tsx b/features/admin.applications.v1/components/application-list.tsx index 2974a1f4cca..e523f28f00d 100644 --- a/features/admin.applications.v1/components/application-list.tsx +++ b/features/admin.applications.v1/components/application-list.tsx @@ -32,6 +32,8 @@ import { applicationConfig } from "@wso2is/admin.extensions.v1"; import { applicationListConfig } from "@wso2is/admin.extensions.v1/configs/application-list"; import { OrganizationType } from "@wso2is/admin.organizations.v1/constants"; import { useGetCurrentOrganizationType } from "@wso2is/admin.organizations.v1/hooks/use-get-organization-type"; +import useExtensionTemplates from "@wso2is/admin.template-core.v1/hooks/use-extension-templates"; +import { ExtensionTemplateListInterface } from "@wso2is/admin.template-core.v1/models/templates"; import { hasRequiredScopes, isFeatureEnabled } from "@wso2is/core/helpers"; import { AlertLevels, @@ -61,7 +63,6 @@ import { Dispatch } from "redux"; import { Header, Icon, Label, SemanticICONS } from "semantic-ui-react"; import { deleteApplication } from "../api"; import { ApplicationManagementConstants } from "../constants"; -import useApplicationTemplates from "../hooks/use-application-templates"; import { ApplicationAccessTypes, ApplicationInboundTypes, @@ -69,7 +70,6 @@ import { ApplicationListItemInterface, ApplicationTemplateListItemInterface } from "../models"; -import { ApplicationTemplateListInterface } from "../models/application-templates"; import { ApplicationManagementUtils } from "../utils/application-management-utils"; import { ApplicationTemplateManagementUtils } from "../utils/application-template-management-utils"; @@ -170,8 +170,8 @@ export const ApplicationList: FunctionComponent = const { organizationType } = useGetCurrentOrganizationType(); const { templates: extensionApplicationTemplates, - isApplicationTemplatesRequestLoading: isExtensionApplicationTemplatesRequestLoading - } = useApplicationTemplates(); + isExtensionTemplatesRequestLoading: isExtensionApplicationTemplatesRequestLoading + } = useExtensionTemplates(); const [ showDeleteConfirmationModal, setShowDeleteConfirmationModal ] = useState(false); const [ deletingApplication, setDeletingApplication ] = useState(undefined); @@ -362,7 +362,7 @@ export const ApplicationList: FunctionComponent = */ if (!templateDisplayName) { templateDisplayName = extensionApplicationTemplates?.find( - (template: ApplicationTemplateListInterface) => { + (template: ExtensionTemplateListInterface) => { return template?.id === app?.templateId; } )?.name; diff --git a/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx b/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx index dae7f1275f8..5c4588c3b6d 100644 --- a/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx +++ b/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx @@ -17,13 +17,14 @@ */ import { AppState } from "@wso2is/admin.core.v1"; +import { ExtensionTemplateListInterface } from "@wso2is/admin.template-core.v1/models/templates"; import { IdentifiableComponentInterface } from "@wso2is/core/models"; import { ContentLoader } from "@wso2is/react-components"; import React, { FunctionComponent, ReactElement, useEffect, useState } from "react"; import { useSelector } from "react-redux"; import { ApplicationManagementConstants } from "../../constants"; import { ApplicationTemplateListItemInterface } from "../../models"; -import { ApplicationTemplateCategories, ApplicationTemplateListInterface } from "../../models/application-templates"; +import { ApplicationTemplateCategories } from "../../models/application-templates"; import { ApplicationTemplateManagementUtils } from "../../utils/application-template-management-utils"; import { ApplicationCreateWizard } from "../dynamic-forms/application-create-wizard"; import { MinimalAppCreateWizard } from "../wizard/minimal-application-create-wizard"; @@ -35,7 +36,7 @@ export interface ApplicationCreationAdapterPropsInterface extends IdentifiableCo /** * Template for rendering the application creation wizard. */ - template: ApplicationTemplateListInterface; + template: ExtensionTemplateListInterface; /** * Indicator of whether the application creation wizard should be displayed or not. */ diff --git a/features/admin.applications.v1/components/application-templates/application-template-card.tsx b/features/admin.applications.v1/components/application-templates/application-template-card.tsx index f29728e57aa..0aaf0136f47 100644 --- a/features/admin.applications.v1/components/application-templates/application-template-card.tsx +++ b/features/admin.applications.v1/components/application-templates/application-template-card.tsx @@ -22,16 +22,16 @@ import Card from "@oxygen-ui/react/Card"; import CardContent from "@oxygen-ui/react/CardContent"; import Tooltip from "@oxygen-ui/react/Tooltip"; import Typography from "@oxygen-ui/react/Typography"; +import { SupportedTechnologyMetadataInterface } from "@wso2is/admin.application-templates.v1/models/templates"; +import { + CustomAttributeInterface, + ExtensionTemplateListInterface +} from "@wso2is/admin.template-core.v1/models/templates"; import { IdentifiableComponentInterface } from "@wso2is/core/models"; import classnames from "classnames"; import React, { FunctionComponent, MouseEvent, ReactElement, useMemo } from "react"; import { useTranslation } from "react-i18next"; import { ApplicationTemplateConstants } from "../../constants/application-templates"; -import { - ApplicationTemplateListInterface, - CustomAttributeInterface, - SupportedTechnologyMetadataInterface -} from "../../models/application-templates"; import "./application-template-card.scss"; import { ApplicationTemplateManagementUtils } from "../../utils/application-template-management-utils"; @@ -48,7 +48,7 @@ export interface ApplicationTemplateCardPropsInterface extends IdentifiableCompo /** * Details needed to render the application template card. */ - template: ApplicationTemplateListInterface; + template: ExtensionTemplateListInterface; } /** diff --git a/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx b/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx index 049501adddd..27afbcc6f61 100644 --- a/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx +++ b/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx @@ -18,6 +18,11 @@ import { Typography } from "@mui/material"; import { AppState, EventPublisher, getEmptyPlaceholderIllustrations } from "@wso2is/admin.core.v1"; +import useExtensionTemplates from "@wso2is/admin.template-core.v1/hooks/use-extension-templates"; +import { + CategorizedExtensionTemplatesInterface, + ExtensionTemplateListInterface +} from "@wso2is/admin.template-core.v1/models/templates"; import { IdentifiableComponentInterface, LoadableComponentInterface } from "@wso2is/core/models"; import { ContentLoader, @@ -34,12 +39,9 @@ import { useTranslation } from "react-i18next"; import { useSelector } from "react-redux"; import ApplicationTemplateCard from "./application-template-card"; import { ApplicationTemplateConstants } from "../../constants/application-templates"; -import useApplicationTemplates from "../../hooks/use-application-templates"; import { AuthProtocolMetaListItemInterface } from "../../models"; import { - ApplicationTemplateCategories, - ApplicationTemplateListInterface, - CategorizedApplicationTemplatesInterface + ApplicationTemplateCategories } from "../../models/application-templates"; import { ApplicationManagementUtils } from "../../utils/application-management-utils"; import { InboundProtocolsMeta } from "../meta"; @@ -53,7 +55,7 @@ export interface ApplicationTemplateGridPropsInterface extends /** * Callback to be fired when a template is selected. */ - onTemplateSelect: (template: ApplicationTemplateListInterface) => void; + onTemplateSelect: (template: ExtensionTemplateListInterface) => void; } /** @@ -76,7 +78,11 @@ const ApplicationTemplateGrid: FunctionComponent state?.config?.ui?.hiddenApplicationTemplates); - const { templates, categorizedTemplates, isApplicationTemplatesRequestLoading } = useApplicationTemplates(); + const { + templates, + categorizedTemplates, + isExtensionTemplatesRequestLoading: isApplicationTemplatesRequestLoading + } = useExtensionTemplates(); const [ searchQuery, setSearchQuery ] = useState(""); const [ selectedFilters, setSelectedFilters ] = useState([]); @@ -109,7 +115,7 @@ const ApplicationTemplateGrid: FunctionComponent { + templates.forEach((template: ExtensionTemplateListInterface) => { tags = union(tags, template?.tags); }); @@ -124,7 +130,7 @@ const ApplicationTemplateGrid: FunctionComponent { + const getSearchResults = (query: string, filterLabels: string[]): ExtensionTemplateListInterface[] => { /** * Checks if any of the filters are matching. @@ -132,7 +138,7 @@ const ApplicationTemplateGrid: FunctionComponent { + const isFiltersMatched = (template: ExtensionTemplateListInterface): boolean => { if (!filterLabels || !Array.isArray(filterLabels) || filterLabels?.length <= 0) { return true; @@ -142,7 +148,7 @@ const ApplicationTemplateGrid: FunctionComponent filterLabels.includes(tagLabel)); }; - return templates?.filter((template: ApplicationTemplateListInterface) => { + return templates?.filter((template: ExtensionTemplateListInterface) => { if (!query) { return isFiltersMatched(template); } @@ -165,7 +171,7 @@ const ApplicationTemplateGrid: FunctionComponent { + const removeIrrelevantTemplates = (templates: ExtensionTemplateListInterface[]) => { let removingApplicationTemplateIds: string[] = []; // Remove custom protocol application templates if there are no custom inbound protocols. @@ -177,13 +183,13 @@ const ApplicationTemplateGrid: FunctionComponent !removingApplicationTemplateIds.includes(template?.id)); + (template: ExtensionTemplateListInterface) => !removingApplicationTemplateIds.includes(template?.id)); }; /** * Filter out the application templates based on the selected tags and the search query. */ - const filteredTemplates: ApplicationTemplateListInterface[] = useMemo(() => { + const filteredTemplates: ExtensionTemplateListInterface[] = useMemo(() => { if (!templates || !Array.isArray(templates) || templates?.length <= 0) { return []; } @@ -203,7 +209,7 @@ const ApplicationTemplateGrid: FunctionComponent, - template: ApplicationTemplateListInterface + template: ExtensionTemplateListInterface ): void => { if (!template) { return; @@ -334,7 +340,7 @@ const ApplicationTemplateGrid: FunctionComponent { filteredTemplates - .map((template: ApplicationTemplateListInterface) => { + .map((template: ExtensionTemplateListInterface) => { return ( { - const refinedTemplates: ApplicationTemplateListInterface[] = + .map((category: CategorizedExtensionTemplatesInterface) => { + const refinedTemplates: ExtensionTemplateListInterface[] = removeIrrelevantTemplates(category?.templates); if (refinedTemplates?.length <= 0) { @@ -392,7 +398,7 @@ const ApplicationTemplateGrid: FunctionComponent { refinedTemplates.map( - (template: ApplicationTemplateListInterface) => { + (template: ExtensionTemplateListInterface) => { return ( = - createContext(null); - -/** - * Display name for the ApplicationTemplatesContext. - */ -ApplicationTemplatesContext.displayName = "ApplicationTemplatesContext"; - -export default ApplicationTemplatesContext; diff --git a/features/admin.applications.v1/models/application-templates.ts b/features/admin.applications.v1/models/application-templates.ts index 2799da0779d..79add9d02da 100644 --- a/features/admin.applications.v1/models/application-templates.ts +++ b/features/admin.applications.v1/models/application-templates.ts @@ -16,63 +16,15 @@ * under the License. */ +import { ExtensionTemplateCommonInterface } from "@wso2is/admin.template-core.v1/models/templates"; import { Schema } from "ajv"; import { MainApplicationInterface } from "./application"; import { DynamicFormInterface } from "./dynamic-fields"; -export interface ApplicationTemplateCommonInterface { - /** - * Unique identifier for the template. - */ - id: string; - /** - * Name of the template. - */ - name: string; - /** - * Description of the template. - */ - description: string; - /** - * Image of the template. - */ - image: string; - /** - * Order in which the template is displayed. - */ - displayOrder: number; - /** - * Category of the template. - */ - category: ApplicationTemplateCategories; - /** - * Tags associated with the template. - */ - tags: string[]; - /** - * Type of the template. - */ - type: string; -} - -/** - * Interface for the application template list specific attributes. - */ -export interface ApplicationTemplateListInterface extends ApplicationTemplateCommonInterface { - /** - * URL to the template data. - */ - self?: string; - /** - * Additional properties of the template. - */ - customAttributes?: CustomAttributeInterface[]; -} - /** * Interface for the application template. */ -export interface ApplicationTemplateInterface extends ApplicationTemplateCommonInterface { +export interface ApplicationTemplateInterface extends ExtensionTemplateCommonInterface { /** * Create form payload parameters. */ @@ -157,20 +109,6 @@ export interface ApplicationEditTabMetadataInterface { guide?: string; } -/** - * Interface for the additional properties of the template. - */ -export interface CustomAttributeInterface { - /** - * Key of the property. - */ - key: string, - /** - * Value of the property. - */ - value: any -} - /** * Enum for application template categories. * @@ -188,63 +126,3 @@ export enum ApplicationTemplateCategories { */ SSO_INTEGRATION = "SSO-INTEGRATION", } - -/** - * Interface for the application template category details. - */ -export interface ApplicationTemplateCategoryInterface { - /** - * Unique identifier of the application template category. - */ - id: string, - /** - * Display name of the application template category. - */ - displayName: string, - /** - * Description of the application template category. - */ - description?: string, - /** - * Order in which the application template category is displayed. - */ - displayOrder: number -} - -/** - * Supported technology metadata interface. - */ -export interface SupportedTechnologyMetadataInterface { - /** - * Display name of the technology. - */ - displayName: string; - /** - * URL of the technology logo. - */ - logo?: string; -} - -/** - * Interface for the categorized application templates. - */ -export interface CategorizedApplicationTemplatesInterface extends ApplicationTemplateCategoryInterface { - /** - * Template associated with a specific category. - */ - templates: ApplicationTemplateListInterface[] -} - -/** - * Supported technology metadata interface. - */ -export interface SupportedTechnologyMetadataInterface { - /** - * Display name of the technology. - */ - displayName: string; - /** - * URL of the technology logo. - */ - logo?: string; -} diff --git a/features/admin.applications.v1/models/endpoints.ts b/features/admin.applications.v1/models/endpoints.ts index 8e682694dce..32984d880da 100644 --- a/features/admin.applications.v1/models/endpoints.ts +++ b/features/admin.applications.v1/models/endpoints.ts @@ -22,10 +22,6 @@ import { ClaimConfigurationInterface } from "./application"; * Interface for the Application Management feature resource endpoints. */ export interface ApplicationsResourceEndpointsInterface { - /** - * Endpoint to get the application templates list. - */ - applicationTemplates: string; /** * Endpoint to get the application template. */ diff --git a/features/admin.applications.v1/package.json b/features/admin.applications.v1/package.json index 7c1425b902d..9fd8168b0fa 100644 --- a/features/admin.applications.v1/package.json +++ b/features/admin.applications.v1/package.json @@ -24,6 +24,7 @@ "@wso2is/react-components": "^2.2.10", "@wso2is/validation": "^2.0.5", "@wso2is/admin.api-resources.v2": "^2.20.41", + "@wso2is/admin.application-templates.v1": "^1.0.0", "@wso2is/admin.authentication-flow-builder.v1": "^2.20.41", "@wso2is/admin.authorization.v1": "^2.20.15", "@wso2is/admin.claims.v1": "^2.20.41", @@ -38,6 +39,7 @@ "@wso2is/admin.roles.v2": "^2.20.41", "@wso2is/admin.secrets.v1": "^2.20.41", "@wso2is/admin.server-configurations.v1": "^2.20.41", + "@wso2is/admin.template-core.v1": "^1.0.0", "@wso2is/admin.userstores.v1": "^2.20.41", "@wso2is/admin.wsfed-configuration.v1": "^2.20.41", "classnames": "^2.2.6", diff --git a/features/admin.applications.v1/pages/application-edit.tsx b/features/admin.applications.v1/pages/application-edit.tsx index 01744a9ddb7..8983b23bd6b 100755 --- a/features/admin.applications.v1/pages/application-edit.tsx +++ b/features/admin.applications.v1/pages/application-edit.tsx @@ -24,6 +24,8 @@ import { } from "@wso2is/admin.core.v1"; import { applicationConfig } from "@wso2is/admin.extensions.v1/configs/application"; import { IdentityProviderConstants } from "@wso2is/admin.identity-providers.v1/constants"; +import useExtensionTemplates from "@wso2is/admin.template-core.v1/hooks/use-extension-templates"; +import { ExtensionTemplateListInterface } from "@wso2is/admin.template-core.v1/models/templates"; import { hasRequiredScopes, isFeatureEnabled } from "@wso2is/core/helpers"; import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; @@ -49,7 +51,6 @@ import { InboundProtocolDefaultFallbackTemplates } from "../components/meta/inbo import { ApplicationManagementConstants } from "../constants"; import CustomApplicationTemplate from "../data/application-templates/templates/custom-application/custom-application.json"; -import useApplicationTemplates from "../hooks/use-application-templates"; import { ApplicationAccessTypes, ApplicationInterface, @@ -58,7 +59,7 @@ import { SupportedAuthProtocolTypes, idpInfoTypeInterface } from "../models"; -import { ApplicationTemplateCategories, ApplicationTemplateListInterface } from "../models/application-templates"; +import { ApplicationTemplateCategories } from "../models/application-templates"; import { ApplicationManagementUtils } from "../utils/application-management-utils"; import { ApplicationTemplateManagementUtils } from "../utils/application-template-management-utils"; @@ -94,7 +95,7 @@ const ApplicationEditPage: FunctionComponent = ( const { templates: extensionApplicationTemplates - } = useApplicationTemplates(); + } = useExtensionTemplates(); const allowedScopes: string = useSelector((state: AppState) => state?.auth?.allowedScopes); const applicationTemplates: ApplicationTemplateListItemInterface[] = useSelector( @@ -107,7 +108,7 @@ const ApplicationEditPage: FunctionComponent = ( const [ extensionApplicationTemplate, setExtensionApplicationTemplate - ] = useState(undefined); + ] = useState(undefined); const [ isApplicationRequestLoading, setApplicationRequestLoading ] = useState(undefined); const [ inboundProtocolList, setInboundProtocolList ] = useState(undefined); const [ inboundProtocolConfigs, setInboundProtocolConfigs ] = useState>(undefined); @@ -198,8 +199,8 @@ const ApplicationEditPage: FunctionComponent = ( * on the extensions management API side. */ if (!template) { - const extensionTemplate: ApplicationTemplateListInterface = extensionApplicationTemplates?.find( - (template: ApplicationTemplateListInterface) => { + const extensionTemplate: ExtensionTemplateListInterface = extensionApplicationTemplates?.find( + (template: ExtensionTemplateListInterface) => { return template?.id === applicationData?.templateId; } ); diff --git a/features/admin.applications.v1/pages/application-template.tsx b/features/admin.applications.v1/pages/application-template.tsx index db8cc2d26c2..83909d1aa70 100755 --- a/features/admin.applications.v1/pages/application-template.tsx +++ b/features/admin.applications.v1/pages/application-template.tsx @@ -20,13 +20,13 @@ import { AppConstants, history } from "@wso2is/admin.core.v1"; +import { ExtensionTemplateListInterface } from "@wso2is/admin.template-core.v1/models/templates"; import { TestableComponentInterface } from "@wso2is/core/models"; import { PageLayout } from "@wso2is/react-components"; import React, { FunctionComponent, ReactElement, useState } from "react"; import { useTranslation } from "react-i18next"; import ApplicationCreationAdapter from "../components/application-templates/application-creation-adapter"; import ApplicationTemplateGrid from "../components/application-templates/application-templates-grid"; -import { ApplicationTemplateListInterface } from "../models/application-templates"; /** * Props for the Applications templates page. @@ -51,7 +51,7 @@ const ApplicationTemplateSelectPage: FunctionComponent(false); - const [ selectedTemplate, setSelectedTemplate ] = useState(null); + const [ selectedTemplate, setSelectedTemplate ] = useState(null); /** * Handles back button click. @@ -79,7 +79,7 @@ const ApplicationTemplateSelectPage: FunctionComponent { + onTemplateSelect={ (template: ExtensionTemplateListInterface) => { setSelectedTemplate(template); setShowWizard(true); } } diff --git a/features/admin.applications.v1/provider/application-templates-provider.tsx b/features/admin.applications.v1/provider/application-templates-provider.tsx deleted file mode 100644 index 7bb73611182..00000000000 --- a/features/admin.applications.v1/provider/application-templates-provider.tsx +++ /dev/null @@ -1,146 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import { AlertLevels } from "@wso2is/core/models"; -import { addAlert } from "@wso2is/core/store"; -import React, { PropsWithChildren, ReactElement, useEffect, useMemo } from "react"; -import { useTranslation } from "react-i18next"; -import { useDispatch } from "react-redux"; -import { Dispatch } from "redux"; -import useGetApplicationTemplates from "../api/use-get-application-templates"; -import { ApplicationTemplateConstants } from "../constants/application-templates"; -import ApplicationTemplatesContext from "../context/application-templates-context"; -import { - ApplicationTemplateCategoryInterface, - ApplicationTemplateListInterface, - CategorizedApplicationTemplatesInterface -} from "../models/application-templates"; - -/** - * Props interface for the Application templates provider. - */ -export type ApplicationTemplatesProviderProps = PropsWithChildren; - -/** - * Application templates provider. - * - * @param props - Props for the provider. - * @returns Application templates provider. - */ -const ApplicationTemplatesProvider = (props: ApplicationTemplatesProviderProps): ReactElement => { - const { children } = props; - - const { t } = useTranslation(); - - const dispatch: Dispatch = useDispatch(); - - const { - data: applicationTemplates, - isLoading: isApplicationTemplatesFetchRequestLoading, - error: applicationTemplatesFetchRequestError - } = useGetApplicationTemplates(); - - /** - * Categorize application templates based on the `category` attribute. - */ - const categorizedTemplates: CategorizedApplicationTemplatesInterface[] = useMemo(() => { - const categoryMap: CategorizedApplicationTemplatesInterface[] = []; - - if (!applicationTemplates - || !Array.isArray(applicationTemplates) - || applicationTemplates?.length <= 0) { - - return categoryMap; - } - - // Sort the application template categories based on their assigned display order. - ApplicationTemplateConstants.SUPPORTED_CATEGORIES_INFO.sort( - (category1: ApplicationTemplateCategoryInterface, category2: ApplicationTemplateCategoryInterface) => - category1?.displayOrder - category2?.displayOrder - ); - - // Categorize the templates based on their actual categories - ApplicationTemplateConstants.SUPPORTED_CATEGORIES_INFO.forEach( - (category: ApplicationTemplateCategoryInterface) => { - const categoryData: CategorizedApplicationTemplatesInterface = { ...category, templates: [] }; - - categoryData.templates = applicationTemplates?.filter( - (template: ApplicationTemplateListInterface) => template?.category === category?.id); - - categoryMap.push(categoryData); - } - ); - - // Categorize all other unsupported template categories as the "other" type. - const supportedCategories: string[] = ApplicationTemplateConstants.SUPPORTED_CATEGORIES_INFO.map( - (category: ApplicationTemplateCategoryInterface) => category?.id); - - categoryMap.push({ - ...ApplicationTemplateConstants.OTHER_CATEGORY_INFO, - templates: applicationTemplates?.filter( - (template: ApplicationTemplateListInterface) => !supportedCategories.includes(template?.category)) - }); - - return categoryMap; - }, [ applicationTemplates ]); - - /** - * Handles the application templates fetch request error. - */ - useEffect(() => { - - if (!applicationTemplatesFetchRequestError) { - return; - } - - if (applicationTemplatesFetchRequestError?.response?.data?.description) { - dispatch(addAlert({ - description: applicationTemplatesFetchRequestError.response.data.description, - level: AlertLevels.ERROR, - message: t("applications:notifications." + - "fetchTemplates.error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.fetchTemplates" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications." + - "fetchTemplates.genericError.message") - })); - }, [ applicationTemplatesFetchRequestError ]); - - return ( - - { children } - - ); -}; - -export default ApplicationTemplatesProvider; diff --git a/features/admin.connections.v1/components/edit/settings/connected-apps.tsx b/features/admin.connections.v1/components/edit/settings/connected-apps.tsx index 0b20057a1a7..7b5277c6d7b 100644 --- a/features/admin.connections.v1/components/edit/settings/connected-apps.tsx +++ b/features/admin.connections.v1/components/edit/settings/connected-apps.tsx @@ -18,14 +18,12 @@ import { getApplicationDetails } from "@wso2is/admin.applications.v1/api"; import { ApplicationManagementConstants } from "@wso2is/admin.applications.v1/constants"; -import useApplicationTemplates from "@wso2is/admin.applications.v1/hooks/use-application-templates"; import { ApplicationAccessTypes, ApplicationBasicInterface, ApplicationListItemInterface, ApplicationTemplateListItemInterface } from "@wso2is/admin.applications.v1/models"; -import { ApplicationTemplateListInterface } from "@wso2is/admin.applications.v1/models/application-templates"; import { ApplicationTemplateManagementUtils } from "@wso2is/admin.applications.v1/utils/application-template-management-utils"; @@ -43,6 +41,8 @@ import { OrganizationType } from "@wso2is/admin.core.v1/constants/organization-c import { ApplicationTabIDs } from "@wso2is/admin.extensions.v1"; import { applicationListConfig } from "@wso2is/admin.extensions.v1/configs/application-list"; import { useGetCurrentOrganizationType } from "@wso2is/admin.organizations.v1/hooks/use-get-organization-type"; +import useExtensionTemplates from "@wso2is/admin.template-core.v1/hooks/use-extension-templates"; +import { ExtensionTemplateListInterface } from "@wso2is/admin.template-core.v1/models/templates"; import { IdentityAppsError } from "@wso2is/core/errors"; import { isFeatureEnabled } from "@wso2is/core/helpers"; import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; @@ -176,8 +176,8 @@ export const ConnectedApps: FunctionComponent = ( const { t } = useTranslation(); const { templates: extensionApplicationTemplates, - isApplicationTemplatesRequestLoading: isExtensionApplicationTemplatesRequestLoading - } = useApplicationTemplates(); + isExtensionTemplatesRequestLoading: isExtensionApplicationTemplatesRequestLoading + } = useExtensionTemplates(); useEffect(() => { setIsAppsLoading(true); @@ -309,7 +309,7 @@ export const ConnectedApps: FunctionComponent = ( */ if (!templateDisplayName) { templateDisplayName = extensionApplicationTemplates?.find( - (template: ApplicationTemplateListInterface) => { + (template: ExtensionTemplateListInterface) => { return template?.id === app?.templateId; } )?.name; diff --git a/features/admin.connections.v1/package.json b/features/admin.connections.v1/package.json index 215d00e50a3..d3f39bacc45 100644 --- a/features/admin.connections.v1/package.json +++ b/features/admin.connections.v1/package.json @@ -30,6 +30,7 @@ "@wso2is/admin.identity-providers.v1": "^2.20.41", "@wso2is/admin.organizations.v1": "^2.20.41", "@wso2is/admin.roles.v2": "^2.20.41", + "@wso2is/admin.template-core.v1": "^1.0.0", "@wso2is/admin.userstores.v1": "^2.20.41", "@wso2is/core": "^2.0.50", "@wso2is/dynamic-forms": "^2.0.68", diff --git a/features/admin.core.v1/configs/app.ts b/features/admin.core.v1/configs/app.ts index 9c0f9c43454..ad497f8a073 100644 --- a/features/admin.core.v1/configs/app.ts +++ b/features/admin.core.v1/configs/app.ts @@ -38,6 +38,7 @@ import { getRemoteFetchConfigResourceEndpoints } from "@wso2is/admin.remote-repo import { getRolesResourceEndpoints } from "@wso2is/admin.roles.v2/configs/endpoints"; import { getSecretsManagementEndpoints } from "@wso2is/admin.secrets.v1/configs/endpoints"; import { getServerConfigurationsResourceEndpoints } from "@wso2is/admin.server-configurations.v1"; +import { getExtensionTemplatesEndpoints } from "@wso2is/admin.template-core.v1/configs/endpoints"; import { getTenantResourceEndpoints } from "@wso2is/admin.tenants.v1/configs/endpoints"; import { getUsersResourceEndpoints } from "@wso2is/admin.users.v1/configs/endpoints"; import { getUserstoreResourceEndpoints } from "@wso2is/admin.userstores.v1/configs/endpoints"; @@ -222,7 +223,9 @@ export class Config { I18nConstants.APPLICATIONS_NAMESPACE, I18nConstants.IDP_NAMESPACE, I18nConstants.API_RESOURCES_NAMESPACE, - I18nConstants.AI_NAMESPACE + I18nConstants.AI_NAMESPACE, + I18nConstants.EXTENSION_TEMPLATES_NAMESPACE, + I18nConstants.APPLICATION_TEMPLATES_NAMESPACE ], preload: [] }; @@ -279,6 +282,7 @@ export class Config { ...getFeatureGateResourceEndpoints(this.resolveServerHostforFG(false)), ...getInsightsResourceEndpoints(this.getDeploymentConfig()?.serverHost), ...getConsoleSettingsResourceEndpoints(this.getDeploymentConfig()?.serverHost), + ...getExtensionTemplatesEndpoints(this.resolveServerHost()), CORSOrigins: `${ this.getDeploymentConfig()?.serverHost }/api/server/v1/cors/origins`, // TODO: Remove this endpoint and use ID token to get the details me: `${ this.getDeploymentConfig()?.serverHost }/scim2/Me`, diff --git a/features/admin.core.v1/constants/i18n-constants.ts b/features/admin.core.v1/constants/i18n-constants.ts index ffc9d528be7..4277889ad63 100644 --- a/features/admin.core.v1/constants/i18n-constants.ts +++ b/features/admin.core.v1/constants/i18n-constants.ts @@ -245,6 +245,17 @@ export class I18nConstants { */ public static readonly AI_NAMESPACE: string = I18nModuleConstants.AI_NAMESPACE; + /** + * Application Templates namespace. + */ + public static readonly APPLICATION_TEMPLATES_NAMESPACE: string = + I18nModuleConstants.APPLICATION_TEMPLATES_NAMESPACE; + + /** + * Extension Templates namespace. + */ + public static readonly EXTENSION_TEMPLATES_NAMESPACE: string = I18nModuleConstants.EXTENSION_TEMPLATES_NAMESPACE; + /** * Locations of the I18n namespaces. */ @@ -290,7 +301,9 @@ export class I18nConstants { [ I18nConstants.APPLICATIONS_NAMESPACE, "portals" ], [ I18nConstants.IDP_NAMESPACE, "portals" ], [ I18nConstants.API_RESOURCES_NAMESPACE, "portals" ], - [ I18nConstants.AI_NAMESPACE, "portals" ] + [ I18nConstants.AI_NAMESPACE, "portals" ], + [ I18nConstants.APPLICATION_TEMPLATES_NAMESPACE, "portals" ], + [ I18nConstants.EXTENSION_TEMPLATES_NAMESPACE, "portals" ] ]); /** diff --git a/features/admin.core.v1/models/config.ts b/features/admin.core.v1/models/config.ts index faada13fa13..03698aa90cc 100644 --- a/features/admin.core.v1/models/config.ts +++ b/features/admin.core.v1/models/config.ts @@ -35,6 +35,7 @@ import { JWTAuthenticationServiceEndpointsInterface } from "@wso2is/admin.privat import { RolesResourceEndpointsInterface } from "@wso2is/admin.roles.v2/models/endpoints"; import { SecretsManagementEndpoints } from "@wso2is/admin.secrets.v1/models/endpoints"; import { ServerConfigurationsResourceEndpointsInterface } from "@wso2is/admin.server-configurations.v1"; +import { ExtensionTemplatesEndpointsInterface } from "@wso2is/admin.template-core.v1/models/endpoints"; import { TenantResourceEndpointsInterface } from "@wso2is/admin.tenants.v1/models/endpoints"; import { UsersResourceEndpointsInterface } from "@wso2is/admin.users.v1/models/endpoints"; import { UserstoreResourceEndpointsInterface } from "@wso2is/admin.userstores.v1/models/endpoints"; @@ -537,7 +538,8 @@ export interface ServiceResourceEndpointsInterface extends ClaimResourceEndpoint ValidationServiceEndpointsInterface, JWTAuthenticationServiceEndpointsInterface, BrandingPreferenceResourceEndpointsInterface, - ConsoleSettingsResourceEndpointsInterface { + ConsoleSettingsResourceEndpointsInterface, + ExtensionTemplatesEndpointsInterface { CORSOrigins: string; // TODO: Remove this endpoint and use ID token to get the details diff --git a/features/admin.core.v1/package.json b/features/admin.core.v1/package.json index d7eca4ff494..7f60c14fb91 100644 --- a/features/admin.core.v1/package.json +++ b/features/admin.core.v1/package.json @@ -18,6 +18,7 @@ "@wso2is/access-control": "^3.0.10", "@wso2is/admin.api-resources.v1": "^2.20.41", "@wso2is/admin.api-resources.v2": "^2.20.41", + "@wso2is/admin.application-templates.v1": "^1.0.0", "@wso2is/admin.applications.v1": "^2.21.11", "@wso2is/admin.authentication.v1": "^2.20.41", "@wso2is/admin.authorization.v1": "^2.20.15", @@ -51,6 +52,7 @@ "@wso2is/admin.session-management.v1": "^2.20.41", "@wso2is/admin.sms-providers.v1": "^2.20.41", "@wso2is/admin.tenants.v1": "^2.20.41", + "@wso2is/admin.template-core.v1": "^1.0.0", "@wso2is/admin.users.v1": "^2.20.41", "@wso2is/admin.userstores.v1": "^2.20.41", "@wso2is/admin.validation.v1": "^2.20.41", diff --git a/features/admin.core.v1/components/common-feature-provider.tsx b/features/admin.core.v1/providers/common-feature-provider.tsx similarity index 71% rename from features/admin.core.v1/components/common-feature-provider.tsx rename to features/admin.core.v1/providers/common-feature-provider.tsx index 1ce51cb5045..2905cb2d161 100644 --- a/features/admin.core.v1/components/common-feature-provider.tsx +++ b/features/admin.core.v1/providers/common-feature-provider.tsx @@ -16,7 +16,9 @@ * under the License. */ -import ApplicationTemplatesProvider from "@wso2is/admin.applications.v1/provider/application-templates-provider"; +import { ApplicationTemplateConstants } from "@wso2is/admin.application-templates.v1/constants/templates"; +import { ResourceTypes } from "@wso2is/admin.template-core.v1/models/templates"; +import ExtensionTemplatesProvider from "@wso2is/admin.template-core.v1/provider/extension-templates-provider"; import React, { PropsWithChildren, ReactElement } from "react"; /** @@ -35,9 +37,12 @@ const CommonFeatureProviders = (props: CommonFeatureProvidersProps): ReactElemen const { children } = props; return ( - + { children } - + ); }; diff --git a/features/admin.core.v1/store/reducers/config.ts b/features/admin.core.v1/store/reducers/config.ts index 416477c8f05..96a9b6444e1 100644 --- a/features/admin.core.v1/store/reducers/config.ts +++ b/features/admin.core.v1/store/reducers/config.ts @@ -90,7 +90,6 @@ export const commonConfigReducerInitialState: CommonConfigReducerStateInterface< apiResourceCollections: "", applicationTemplate: "", applicationTemplateMetadata: "", - applicationTemplates: "", applications: "", authenticatorTags: "", authenticators: "", @@ -109,6 +108,7 @@ export const commonConfigReducerInitialState: CommonConfigReducerStateInterface< dcrConfiguration:"", deleteSecret: "", deleteSecretType: "", + extensionTemplates: "", extensions: "", externalClaims: "", fidoConfigs: "", diff --git a/features/admin.identity-providers.v1/components/settings/connected-apps.tsx b/features/admin.identity-providers.v1/components/settings/connected-apps.tsx deleted file mode 100644 index c16fc237055..00000000000 --- a/features/admin.identity-providers.v1/components/settings/connected-apps.tsx +++ /dev/null @@ -1,567 +0,0 @@ -/** - * Copyright (c) 2023-2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import { getApplicationDetails } from "@wso2is/admin.applications.v1/api"; -import { ApplicationManagementConstants } from "@wso2is/admin.applications.v1/constants"; -import useApplicationTemplates from "@wso2is/admin.applications.v1/hooks/use-application-templates"; -import { - ApplicationAccessTypes, - ApplicationBasicInterface, - ApplicationListItemInterface, - ApplicationTemplateListItemInterface -} from "@wso2is/admin.applications.v1/models"; -import { ApplicationTemplateListInterface } from "@wso2is/admin.applications.v1/models/application-templates"; -import { ApplicationTemplateManagementUtils } - from "@wso2is/admin.applications.v1/utils/application-template-management-utils"; -import { - AppConstants, - AppState, - FeatureConfigInterface, - UIConstants, - getEmptyPlaceholderIllustrations, - history -} from "@wso2is/admin.core.v1"; -import { ApplicationTabIDs } from "@wso2is/admin.extensions.v1"; -import { applicationListConfig } from "@wso2is/admin.extensions.v1/configs/application-list"; -import { IdentityAppsError } from "@wso2is/core/errors"; -import { isFeatureEnabled } from "@wso2is/core/helpers"; -import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; -import { addAlert } from "@wso2is/core/store"; -import { - AnimatedAvatar, - AppAvatar, - DataTable, - EmphasizedSegment, - EmptyPlaceholder, - Heading, - TableActionsInterface, - TableColumnInterface -} from "@wso2is/react-components"; -import React, -{ - FunctionComponent, - ReactElement, - ReactNode, - SyntheticEvent, - useEffect, - useState -} from "react"; -import { useTranslation } from "react-i18next"; -import { useDispatch, useSelector } from "react-redux"; -import { Dispatch } from "redux"; -import { - Divider, - Header, - Icon, - Input, - Label, - SemanticICONS -} from "semantic-ui-react"; -import { getIDPConnectedApps } from "../../api"; -import { - ConnectedAppInterface, - ConnectedAppsInterface, - IdentityProviderInterface -} from "../../models"; - -/** - * Proptypes for the advance settings component. - */ -interface ConnectedAppsPropsInterface extends IdentifiableComponentInterface { - /** - * Currently editing IDP. - */ - editingIDP: IdentityProviderInterface; - /** - * Show sign on methods condition - */ - isSetStrongerAuth?: boolean; - /** - * On list item select callback. - */ - onListItemClick?: (event: SyntheticEvent, app: ApplicationListItemInterface) => void; - /** - * Enable selection styles. - */ - selection?: boolean; - /** - * Show list item actions. - */ - showListItemActions?: boolean; - /** - * Default list item limit. - */ - defaultListItemLimit?: number; - /** - * Is the connected apps info request loading. - */ - isLoading?: boolean; - /** - * Is the list rendered on a portal. - */ - isRenderedOnPortal?: boolean; - /** - * Specifies if the component should only be read-only. - */ - isReadOnly: boolean; - /** - * Loading Component. - */ - loader: () => ReactElement; -} - -/** - * Connected Apps settings component. - * - * @param props - Props injected to the component. - * @returns ReactElement - */ -export const ConnectedApps: FunctionComponent = ( - props: ConnectedAppsPropsInterface -): ReactElement => { - - const { - editingIDP, - isSetStrongerAuth, - defaultListItemLimit, - showListItemActions, - onListItemClick, - selection, - isRenderedOnPortal, - isLoading, - loader: Loader, - [ "data-componentid" ]: componentId - } = props; - - const dispatch: Dispatch = useDispatch(); - - const [ connectedApps, setConnectedApps ] = useState(); - const [ filterSelectedApps, setFilterSelectedApps ] = useState([]); - const [ connectedAppsCount, setconnectedAppsCount ] = useState(0); - const [ isAppsLoading, setIsAppsLoading ] = useState(true); - const [ searchQuery, setSearchQuery ] = useState(""); - const featureConfig: FeatureConfigInterface = useSelector((state: AppState) => state.config.ui.features); - const applicationTemplates: ApplicationTemplateListItemInterface[] = useSelector( - (state: AppState) => state.application.templates); - const groupedApplicationTemplates: ApplicationTemplateListItemInterface[] = useSelector( - (state: AppState) => state?.application?.groupedTemplates); - const [ - isApplicationTemplateRequestLoading, - setApplicationTemplateRequestLoadingStatus - ] = useState(false); - - const { t } = useTranslation(); - const { - templates: extensionApplicationTemplates, - isApplicationTemplatesRequestLoading: isExtensionApplicationTemplatesRequestLoading - } = useApplicationTemplates(); - - useEffect(() => { - setIsAppsLoading(true); - getIDPConnectedApps(editingIDP.id) - .then(async (response: ConnectedAppsInterface) => { - setconnectedAppsCount(response.count); - - if (response.count > 0) { - - const appRequests: Promise[] = response.connectedApps.map((app: ConnectedAppInterface) => { - return getApplicationDetails(app.appId); - }); - - const results: ApplicationBasicInterface[] = await Promise.all( - appRequests.map((response: Promise) => response.catch((error: IdentityAppsError) => { - dispatch(addAlert({ - description: error?.description - || t("idp:connectedApps.genericError.description"), - level: AlertLevels.ERROR, - message: error?.message - || t("idp:connectedApps.genericError.message") - })); - })) - ); - - setConnectedApps(results); - setFilterSelectedApps(results); - } - }) - .catch((error: IdentityAppsError) => { - dispatch(addAlert({ - description: error?.description - || t("idp:connectedApps.genericError.description"), - level: AlertLevels.ERROR, - message: error?.message || t("idp:connectedApps.genericError.message") - })); - }) - .finally(() => { - setIsAppsLoading(false); - }); - }, []); - - /** - * Fetch the application templates if list is not available in redux. - */ - useEffect(() => { - if (applicationTemplates !== undefined) { - return; - } - - setApplicationTemplateRequestLoadingStatus(true); - - ApplicationTemplateManagementUtils.getApplicationTemplates() - .catch((error: IdentityAppsError) => { - dispatch(addAlert({ - description: error?.description - || t("applications:notifications.fetchTemplates.genericError.description"), - level: AlertLevels.ERROR, - message: error?.message - || t("applications:notifications.fetchTemplates.genericError.message") - })); - }) - .finally(() => { - setApplicationTemplateRequestLoadingStatus(false); - }); - }, [ applicationTemplates, groupedApplicationTemplates ]); - - /** - * Resolves data table columns. - * - * @returns TableColumnInterface[] - */ - const resolveTableColumns = (): TableColumnInterface[] => { - return [ - { - allowToggleVisibility: false, - dataIndex: "name", - id: "name", - key: "name", - render: (app: ApplicationListItemInterface): ReactNode => { - - /** - * Note: the templateId for Standard-Based Applications in applicationTemplates is - * 'custom-application'(only 1 template is available). - * But backend passes 3 distinct ids for Standard Based Applications. - */ - - // Create a set with custom-application Ids. - const customApplicationIds: Set = new Set([ - ApplicationManagementConstants.CUSTOM_APPLICATION_SAML, - ApplicationManagementConstants.CUSTOM_APPLICATION_OIDC, - ApplicationManagementConstants.CUSTOM_APPLICATION_PASSIVE_STS - ]); - - let templateDisplayName: string = ""; - - // Checking whether the templateId from backend, is for a custom application. - if (customApplicationIds.has(app.templateId)) { - templateDisplayName = applicationTemplates - && applicationTemplates instanceof Array - && applicationTemplates.length > 0 - && applicationTemplates.find((template: ApplicationTemplateListItemInterface) => { - return template.id === ApplicationManagementConstants.CUSTOM_APPLICATION; - }).name; - } else { - const relevantApplicationTemplate: ApplicationTemplateListItemInterface | undefined = - applicationTemplates - && applicationTemplates instanceof Array - && applicationTemplates.length > 0 - && applicationTemplates.find((template: ApplicationTemplateListItemInterface) => { - return template.id === app.templateId; - }); - - if (relevantApplicationTemplate?.templateGroup) { - const templateGroupId: string = relevantApplicationTemplate.templateGroup; - - templateDisplayName = groupedApplicationTemplates - && groupedApplicationTemplates instanceof Array - && groupedApplicationTemplates.length > 0 - && groupedApplicationTemplates.find((group: ApplicationTemplateListItemInterface) => { - return (group.id === templateGroupId || group.templateGroup === templateGroupId); - }).name; - } - } - - /** - * This condition block will help identify the applications created from templates - * on the extensions management API side. - */ - if (!templateDisplayName) { - templateDisplayName = extensionApplicationTemplates?.find( - (template: ApplicationTemplateListInterface) => { - return template?.id === app?.templateId; - } - )?.name; - } - - return ( -
    - { - app.image - ? ( - - ) - : ( - - ) } - size="mini" - spaced="right" - data-componentid={ `${ componentId }-item-image` } - /> - ) - } - - { app.name } - { - app.advancedConfigurations?.fragment && ( - - ) - } -
    - { templateDisplayName && ( - - ) } -
    -
    -
    - ); - }, - title: t("applications:list.columns.name") - }, - { - allowToggleVisibility: false, - dataIndex: "action", - id: "actions", - key: "actions", - textAlign: "right", - title: t("applications:list.columns.actions") - } - ]; - }; - - - /** - * Redirects to the applications edit page when the edit button is clicked. - * - * @param appId - Application id. - * @param access - Access level of the application. - */ - const handleApplicationEdit = (appId: string, access: ApplicationAccessTypes, tabName: string): void => { - if (isSetStrongerAuth) { - history.push({ - pathname: AppConstants.getPaths().get("APPLICATION_SIGN_IN_METHOD_EDIT") - .replace(":id", appId).replace(":tabName", tabName), - - search: `?${ ApplicationManagementConstants.APP_STATE_STRONG_AUTH_PARAM_KEY }= - ${ ApplicationManagementConstants.APP_STATE_STRONG_AUTH_PARAM_VALUE }`, - - state: { id: editingIDP.id, name: editingIDP.name } - }); - } else { - history.push({ - pathname: AppConstants.getPaths().get("APPLICATION_SIGN_IN_METHOD_EDIT") - .replace(":id", appId).replace(":tabName", tabName), - - search: access === ApplicationAccessTypes.READ - ? `?${ ApplicationManagementConstants.APP_READ_ONLY_STATE_URL_SEARCH_PARAM_KEY }=true` - : "", - - state: { id: editingIDP.id, name: editingIDP.name } - }); - } - }; - - /** - * Resolve the relevant placeholder. - * - * @returns ReactElement - */ - const showPlaceholders = (): ReactElement => { - // When the search returns empty. - if (filterSelectedApps.length === 0 && connectedAppsCount !== 0) { - return ( - - ); - } - - if (connectedAppsCount === 0) { - return ( - - ); - } - - return null; - }; - - /** - * Resolves data table actions. - * - * @returns TableActionsInterface[] - */ - const resolveTableActions = (): TableActionsInterface[] => { - if (!showListItemActions) { - return; - } - - return [ - { - "data-componentid": `${ componentId }-item-edit-button`, - hidden: (): boolean => !isFeatureEnabled(featureConfig?.applications, - ApplicationManagementConstants.FEATURE_DICTIONARY.get("APPLICATION_EDIT")), - icon: (): SemanticICONS => { - return "caret right"; - }, - onClick: (e: SyntheticEvent, app: ApplicationListItemInterface): void => - handleApplicationEdit(app.id, app.access, "#tab=" + - ApplicationTabIDs.SIGN_IN_METHODS), - popupText: (): string => { - return t("idp:connectedApps.action"); - }, - renderer: "semantic-icon" - } - ]; - }; - - /** - * Handle change event of the search input. - * - * @param event-change event. - */ - const handleChange = (event: React.ChangeEvent) => { - const changeValue: string = event.target.value.trim(); - - setSearchQuery(changeValue); - - if (changeValue.length > 0) { - searchFilter(changeValue); - } else { - setFilterSelectedApps(connectedApps); - } - }; - - /** - * Filter applications in the search. - * - * @param changevalue-search query. - */ - const searchFilter = (changeValue: string) => { - const appNameFilter: ConnectedAppInterface[] = connectedApps.filter((item: ConnectedAppInterface) => - item.name.toLowerCase().indexOf(changeValue.toLowerCase()) !== -1); - - setFilterSelectedApps(appNameFilter); - }; - - if (isAppsLoading) { - return ; - } - - return ( - - { t("idp:connectedApps.header", - { idpName: editingIDP.name }) } - - ); -}; - -/** - * Default proptypes for the IDP advance settings component. - */ -ConnectedApps.defaultProps = { - "data-componentid": "idp-edit-connected-apps", - selection: true, - showListItemActions: true -}; - diff --git a/features/admin.applications.v1/api/use-get-application-templates.ts b/features/admin.template-core.v1/api/use-get-extension-templates.ts similarity index 74% rename from features/admin.applications.v1/api/use-get-application-templates.ts rename to features/admin.template-core.v1/api/use-get-extension-templates.ts index 1c6de08faa4..90ebd94b927 100644 --- a/features/admin.applications.v1/api/use-get-application-templates.ts +++ b/features/admin.template-core.v1/api/use-get-extension-templates.ts @@ -23,31 +23,31 @@ import useRequest, { } from "@wso2is/admin.core.v1/hooks/use-request"; import { store } from "@wso2is/admin.core.v1/store"; import { HttpMethods } from "@wso2is/core/models"; -import { ApplicationTemplateListInterface } from "../models/application-templates"; +import { ExtensionTemplateListInterface, ResourceTypes } from "../models/templates"; /** - * Hook to fetches the application templates from the API. + * Hook to fetches the extension templates from the API. * * @returns A promise containing the response. */ -const useGetApplicationTemplates = < - Data = ApplicationTemplateListInterface[], +const useGetExtensionTemplates = < + Data = ExtensionTemplateListInterface[], Error = RequestErrorInterface ->(): RequestResultInterface => { +>(type: ResourceTypes): RequestResultInterface => { const requestConfig: RequestConfigInterface = { headers: { Accept: "application/json", "Content-Type": "application/json" }, method: HttpMethods.GET, - url: store?.getState()?.config?.endpoints?.applicationTemplates + url: store?.getState()?.config?.endpoints?.extensionTemplates?.replace("{{type}}", `${type?.toString()}s`) }; const { data, error, isValidating, mutate } = useRequest(requestConfig); if (Array.isArray(data)) { data.sort( - (template1: ApplicationTemplateListInterface, template2: ApplicationTemplateListInterface) => + (template1: ExtensionTemplateListInterface, template2: ExtensionTemplateListInterface) => template1?.displayOrder - template2?.displayOrder ); } @@ -61,4 +61,4 @@ const useGetApplicationTemplates = < }; }; -export default useGetApplicationTemplates; +export default useGetExtensionTemplates; diff --git a/features/admin.template-core.v1/configs/endpoints.ts b/features/admin.template-core.v1/configs/endpoints.ts new file mode 100644 index 00000000000..019cb1f2519 --- /dev/null +++ b/features/admin.template-core.v1/configs/endpoints.ts @@ -0,0 +1,31 @@ +/** + * Copyright (c) 2020-2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ExtensionTemplatesEndpointsInterface } from "../models/endpoints"; + +/** + * Get the resource endpoints for the Template Core Management feature. + * + * @param serverHost - Server Host. + * @returns The resource endpoints for the Template Core Management feature. + */ +export const getExtensionTemplatesEndpoints = (serverHost: string): ExtensionTemplatesEndpointsInterface => { + return { + extensionTemplates: `${serverHost}/api/server/v1/extensions/{{type}}` + }; +}; diff --git a/features/admin.template-core.v1/constants/templates.ts b/features/admin.template-core.v1/constants/templates.ts new file mode 100644 index 00000000000..b881d62909c --- /dev/null +++ b/features/admin.template-core.v1/constants/templates.ts @@ -0,0 +1,33 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ExtensionTemplateCategoryInterface } from "../models/templates"; + +/** + * Class containing extension templates management constants. + */ +export class ExtensionTemplateConstants { + public static readonly CONSOLE_BASE_URL_PLACEHOLDER: string = "${CONSOLE_BASE_URL}"; + + public static readonly OTHER_CATEGORY_INFO: ExtensionTemplateCategoryInterface = { + description: "extensionTemplates:categories.other.description", + displayName: "extensionTemplates:categories.other.displayName", + displayOrder: Infinity, + id: "OTHER" + } +} diff --git a/features/admin.template-core.v1/context/extension-templates-context.tsx b/features/admin.template-core.v1/context/extension-templates-context.tsx new file mode 100644 index 00000000000..c9d0c8cab4d --- /dev/null +++ b/features/admin.template-core.v1/context/extension-templates-context.tsx @@ -0,0 +1,54 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Context, createContext } from "react"; +import { + CategorizedExtensionTemplatesInterface, + ExtensionTemplateListInterface +} from "../models/templates"; + +/** + * Props interface for ExtensionTemplatesContext. + */ +export interface ExtensionTemplatesContextProps { + /** + * Templates categorized by their `category`. + */ + categorizedTemplates: CategorizedExtensionTemplatesInterface[]; + /** + * Extension Templates. + */ + templates: ExtensionTemplateListInterface[]; + /** + * Flag to determine if the extension templates are being loaded. + */ + isExtensionTemplatesRequestLoading: boolean; +} + +/** + * Context object for managing extension templates. + */ +const ExtensionTemplatesContext: Context = + createContext(null); + +/** + * Display name for the ExtensionTemplatesContext. + */ +ExtensionTemplatesContext.displayName = "ExtensionTemplatesContext"; + +export default ExtensionTemplatesContext; diff --git a/features/admin.applications.v1/hooks/use-application-templates.ts b/features/admin.template-core.v1/hooks/use-extension-templates.ts similarity index 51% rename from features/admin.applications.v1/hooks/use-application-templates.ts rename to features/admin.template-core.v1/hooks/use-extension-templates.ts index 69cc8dff14f..03b971c9fb6 100644 --- a/features/admin.applications.v1/hooks/use-application-templates.ts +++ b/features/admin.template-core.v1/hooks/use-extension-templates.ts @@ -17,27 +17,27 @@ */ import { useContext } from "react"; -import ApplicationTemplatesContext, { - ApplicationTemplatesContextProps -} from "../context/application-templates-context"; +import ExtensionTemplatesContext, { + ExtensionTemplatesContextProps +} from "../context/extension-templates-context"; /** - * Interface for the return type of the `useApplicationTemplates` hook. + * Interface for the return type of the `useExtensionTemplates` hook. */ -export type UseApplicationTemplatesInterface = ApplicationTemplatesContextProps; +export type UseExtensionTemplatesInterface = ExtensionTemplatesContextProps; /** - * Hook that provides access to the application templates context. - * @returns An object containing the set of application templates. + * Hook that provides access to the extension templates context. + * @returns An object containing the set of extension templates. */ -const useApplicationTemplates = (): UseApplicationTemplatesInterface => { - const context: ApplicationTemplatesContextProps = useContext(ApplicationTemplatesContext); +const useExtensionTemplates = (): UseExtensionTemplatesInterface => { + const context: ExtensionTemplatesContextProps = useContext(ExtensionTemplatesContext); if (context === undefined) { - throw new Error("useApplicationTemplates hook must be used within a ApplicationTemplatesProvider"); + throw new Error("useExtensionTemplates hook must be used within a ExtensionTemplatesProvider"); } return context; }; -export default useApplicationTemplates; +export default useExtensionTemplates; diff --git a/features/admin.template-core.v1/models/endpoints.ts b/features/admin.template-core.v1/models/endpoints.ts new file mode 100644 index 00000000000..b1c765ad541 --- /dev/null +++ b/features/admin.template-core.v1/models/endpoints.ts @@ -0,0 +1,27 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Interface for the Extension Template Management feature resource endpoints. + */ +export interface ExtensionTemplatesEndpointsInterface { + /** + * Endpoint to get the extension templates list. + */ + extensionTemplates: string; +} diff --git a/features/admin.template-core.v1/models/templates.ts b/features/admin.template-core.v1/models/templates.ts new file mode 100644 index 00000000000..653b917f019 --- /dev/null +++ b/features/admin.template-core.v1/models/templates.ts @@ -0,0 +1,123 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Interface for the extension template common attributes. + */ +export interface ExtensionTemplateCommonInterface { + /** + * Unique identifier for the template. + */ + id: string; + /** + * Name of the template. + */ + name: string; + /** + * Description of the template. + */ + description: string; + /** + * Image of the template. + */ + image: string; + /** + * Order in which the template is displayed. + */ + displayOrder: number; + /** + * Category of the template. + */ + category: string; + /** + * Tags associated with the template. + */ + tags: string[]; + /** + * Type of the template. + */ + type: string; +} + +/** + * Interface for the additional properties of the template. + */ +export interface CustomAttributeInterface { + /** + * Key of the property. + */ + key: string; + /** + * Value of the property. + */ + value: any; +} + +/** + * Interface for the extension template list specific attributes. + */ +export interface ExtensionTemplateListInterface extends ExtensionTemplateCommonInterface { + /** + * URL to the template data. + */ + self?: string; + /** + * Additional properties of the template. + */ + customAttributes?: CustomAttributeInterface[]; +} + +/** + * Interface for the extension template category details. + */ +export interface ExtensionTemplateCategoryInterface { + /** + * Unique identifier of the template category. + */ + id: string; + /** + * Display name of the template category. + */ + displayName: string; + /** + * Description of the template category. + */ + description?: string; + /** + * Order in which the template category is displayed. + */ + displayOrder: number; +} + +/** + * Interface for the categorized extension templates. + */ +export interface CategorizedExtensionTemplatesInterface extends ExtensionTemplateCategoryInterface { + /** + * Template associated with a specific category. + */ + templates: ExtensionTemplateListInterface[]; +} + +/** + * Types of resources supported by the Extension Management Service. + */ +export enum ResourceTypes { + APPLICATIONS = "application", + CONNECTIONS = "connection" +} diff --git a/features/admin.template-core.v1/package.json b/features/admin.template-core.v1/package.json new file mode 100644 index 00000000000..fa2420fbc93 --- /dev/null +++ b/features/admin.template-core.v1/package.json @@ -0,0 +1,40 @@ +{ + "private": true, + "name": "@wso2is/admin.template-core.v1", + "version": "1.0.0", + "description": "WSO2 Identity Server Console", + "author": "WSO2", + "license": "Apache-2.0", + "dependencies": { + "@wso2is/core": "^2.0.50", + "@wso2is/admin.core.v1": "^2.21.11", + "i18next": "^21.9.1", + "react-redux": "^7.2.9", + "redux": "^4.0.4" + }, + "devDependencies": { + "@rollup/plugin-commonjs": "^25.0.7", + "@rollup/plugin-dynamic-import-vars": "^2.1.2", + "@rollup/plugin-image": "^3.0.3", + "@rollup/plugin-json": "^6.1.0", + "@rollup/plugin-node-resolve": "^15.2.3", + "@rollup/plugin-typescript": "^11.1.6", + "@svgr/rollup": "^6.2.1", + "rollup": "^4.17.2", + "rollup-plugin-dts": "^6.1.1", + "rollup-plugin-generate-package-json": "^3.2.0", + "rollup-plugin-polyfill-node": "^0.13.0", + "rollup-plugin-scss": "^4.0.0", + "rollup-plugin-styles": "^4.0.0", + "rollup-plugin-svg": "^2.0.0", + "typescript": "^4.6.4" + }, + "peerDependencies": { + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-router-dom": "^4.3.1" + }, + "browserslist": [ + "> 0.2%" + ] +} diff --git a/features/admin.template-core.v1/provider/extension-templates-provider.tsx b/features/admin.template-core.v1/provider/extension-templates-provider.tsx new file mode 100644 index 00000000000..e47ab1ca2fd --- /dev/null +++ b/features/admin.template-core.v1/provider/extension-templates-provider.tsx @@ -0,0 +1,162 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { AlertLevels } from "@wso2is/core/models"; +import { addAlert } from "@wso2is/core/store"; +import React, { FunctionComponent, PropsWithChildren, ReactElement, useEffect, useMemo } from "react"; +import { useTranslation } from "react-i18next"; +import { useDispatch } from "react-redux"; +import { Dispatch } from "redux"; +import useGetExtensionTemplates from "../api/use-get-extension-templates"; +import { ExtensionTemplateConstants } from "../constants/templates"; +import ExtensionTemplatesContext from "../context/extension-templates-context"; +import { + CategorizedExtensionTemplatesInterface, + ExtensionTemplateCategoryInterface, + ExtensionTemplateListInterface, + ResourceTypes +} from "../models/templates"; + +/** + * Props interface for the Extension templates provider. + */ +export interface ExtensionTemplatesProviderProps { + /** + * Templates type need to be retrieved from the API. + */ + resourceType: ResourceTypes + /** + * Metadata describing the supported categories in the current extension templates. + */ + categories: ExtensionTemplateCategoryInterface[]; +} + +/** + * Extension templates provider. + * + * @param props - Props for the provider. + * @returns Extension templates provider. + */ +const ExtensionTemplatesProvider: FunctionComponent< + PropsWithChildren +> = (props: PropsWithChildren): ReactElement => { + const { + categories, + children, + resourceType + } = props; + + const { t } = useTranslation(); + + const dispatch: Dispatch = useDispatch(); + + const { + data: extensionTemplates, + isLoading: isExtensionTemplatesFetchRequestLoading, + error: extensionTemplatesFetchRequestError + } = useGetExtensionTemplates(resourceType); + + /** + * Categorize extension templates based on the `category` attribute. + */ + const categorizedTemplates: CategorizedExtensionTemplatesInterface[] = useMemo(() => { + const categoryMap: CategorizedExtensionTemplatesInterface[] = []; + + if (!extensionTemplates + || !Array.isArray(extensionTemplates) + || extensionTemplates?.length <= 0) { + + return categoryMap; + } + + // Sort the extension template categories based on their assigned display order. + categories.sort( + (category1: ExtensionTemplateCategoryInterface, category2: ExtensionTemplateCategoryInterface) => + category1?.displayOrder - category2?.displayOrder + ); + + // Categorize the templates based on their actual categories + categories.forEach( + (category: ExtensionTemplateCategoryInterface) => { + const categoryData: CategorizedExtensionTemplatesInterface = { ...category, templates: [] }; + + categoryData.templates = extensionTemplates?.filter( + (template: ExtensionTemplateListInterface) => template?.category === category?.id); + + categoryMap.push(categoryData); + } + ); + + // Categorize all other unsupported template categories as the "other" type. + const supportedCategories: string[] = categories.map( + (category: ExtensionTemplateCategoryInterface) => category?.id); + + categoryMap.push({ + ...ExtensionTemplateConstants.OTHER_CATEGORY_INFO, + templates: extensionTemplates?.filter( + (template: ExtensionTemplateListInterface) => !supportedCategories.includes(template?.category)) + }); + + return categoryMap; + }, [ extensionTemplates ]); + + /** + * Handles the extension templates fetch request error. + */ + useEffect(() => { + + if (!extensionTemplatesFetchRequestError) { + return; + } + + if (extensionTemplatesFetchRequestError?.response?.data?.description) { + dispatch(addAlert({ + description: extensionTemplatesFetchRequestError.response.data.description, + level: AlertLevels.ERROR, + message: t("extensionTemplates:notifications." + + "fetchTemplates.error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("extensionTemplates:notifications.fetchTemplates" + + ".genericError.description", { type: resourceType }), + level: AlertLevels.ERROR, + message: t("extensionTemplates:notifications." + + "fetchTemplates.genericError.message") + })); + }, [ extensionTemplatesFetchRequestError ]); + + return ( + + { children } + + ); +}; + +export default ExtensionTemplatesProvider; diff --git a/features/admin.template-core.v1/public-api.ts b/features/admin.template-core.v1/public-api.ts new file mode 100644 index 00000000000..0d6a5b56793 --- /dev/null +++ b/features/admin.template-core.v1/public-api.ts @@ -0,0 +1,19 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export { default as ExtensionTemplatesProvider } from "./provider/extension-templates-provider"; diff --git a/features/admin.template-core.v1/rollup.config.cjs b/features/admin.template-core.v1/rollup.config.cjs new file mode 100644 index 00000000000..a64ea2c5a80 --- /dev/null +++ b/features/admin.template-core.v1/rollup.config.cjs @@ -0,0 +1,74 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +const commonjs = require("@rollup/plugin-commonjs"); +const dynamicImportVars = require("@rollup/plugin-dynamic-import-vars"); +const image = require("@rollup/plugin-image"); +const json = require("@rollup/plugin-json"); +const { nodeResolve } = require("@rollup/plugin-node-resolve"); +const typescript = require("@rollup/plugin-typescript"); +const svgr = require("@svgr/rollup"); +const dts = require("rollup-plugin-dts"); +const nodePolyfills = require("rollup-plugin-polyfill-node"); +const scss = require("rollup-plugin-scss"); +const svg = require("rollup-plugin-svg"); + +const onwarn = (warning, warn) => { + if (warning.code === "MODULE_LEVEL_DIRECTIVE") { + return; + } + warn(warning); +}; + +module.exports = [ + { + cache: false, + external: [ "react", "react-dom", /^@wso2is\// ], + input: [ + "./public-api.ts" + ], + onwarn, + output: [ + { + dir: "dist/esm", + format: "esm", + preserveModules: true, + preserveModulesRoot: "." + } + ], + plugins: [ + nodeResolve(), + typescript({ + tsconfig: "./tsconfig.json" + }), + scss(), + svg(), + svgr(), + json(), + image(), + nodePolyfills(), + commonjs(), + dynamicImportVars() + ] + }, + { + cache: false, + input: "dist/esm/types/public-api.d.ts", + output: [ { file: "dist/esm/index.d.ts", format: "esm" } ], + plugins: [ dts.default() ] + } +]; diff --git a/features/admin.template-core.v1/tsconfig.json b/features/admin.template-core.v1/tsconfig.json new file mode 100644 index 00000000000..71337b4c236 --- /dev/null +++ b/features/admin.template-core.v1/tsconfig.json @@ -0,0 +1,42 @@ +{ + "compilerOptions": { + "jsx": "react", + "declaration": true, + "declarationDir": "dist/esm/types", + "lib": [ "ESNext", "DOM", "DOM.Iterable", "ScriptHost" ], + "resolveJsonModule": true, + "skipDefaultLibCheck": true, + "types": [ "node", "webpack-env", "jest", "@testing-library/jest-dom" ], + "emitDecoratorMetadata": true, + "esModuleInterop": true, + "experimentalDecorators": true, + "importHelpers": true, + "module": "esnext", + "moduleResolution": "node", + "skipLibCheck": true, + "sourceMap": true, + "target": "es2015", + }, + "exclude": [ + "build", + "cache", + "coverage", + "dist", + "node_modules", + "scripts", + "**/test-configs/*", + "jest.config.ts", + "**/tests/*", + "**/__tests__/*", + "**/__mocks__/*", + "**/*.test.js", + "**/*.test.jsx", + "**/*.test.ts", + "**/*.test.tsx", + "**/*.spec.js", + "**/*.spec.jsx", + "**/*.spec.ts", + "**/*.spec.tsx" + ], + "compileOnSave": false, +} diff --git a/features/index.ts b/features/index.ts index 1140558e0b1..9678d057682 100644 --- a/features/index.ts +++ b/features/index.ts @@ -49,6 +49,7 @@ export * from "./admin.saml2-configuration.v1/public-api"; export * from "./admin.secrets.v1/public-api"; export * from "./admin.session-management.v1/public-api"; export * from "./admin.sms-providers.v1/public-api"; +export * from "./admin.template-core.v1/public-api"; export * from "./admin.tenants.v1/public-api"; export * from "./admin.users.v1/public-api"; export * from "./admin.userstores.v1/public-api"; diff --git a/features/rollup.config.cjs b/features/rollup.config.cjs index 31fa460fd7b..cd2068954fc 100644 --- a/features/rollup.config.cjs +++ b/features/rollup.config.cjs @@ -44,6 +44,7 @@ module.exports = [ "./index.ts", "./admin.api-resources.v2/public-api.ts", "./admin.application-roles.v1/public-api.ts", + "./admin.application-templates.v1/public-api.ts", "./admin.applications.v1/public-api.ts", "./admin.authentication.v1/public-api.ts", "./admin.authorization.v1/public-api.ts", @@ -75,6 +76,7 @@ module.exports = [ "./admin.secrets.v1/public-api.ts", "./admin.session-management.v1/public-api.ts", "./admin.sms-providers.v1/public-api.ts", + "./admin.template-core.v1/public-api.ts", "./admin.tenants.v1/public-api.ts", "./admin.users.v1/public-api.ts", "./admin.userstores.v1/public-api.ts", @@ -113,6 +115,7 @@ module.exports = [ exports: { "./admin.api-resources.v2": "./admin.api-resources.v2/public-api.js", "./admin.application-roles.v1": "./admin.application-roles.v1/public-api.js", + "./admin.application-templates.v1": "./admin.application-templates.v1/public-api.ts", "./admin.applications.v1": "./admin.applications.v1/public-api.js", "./admin.authentication.v1": "./admin.authentication.v1/public-api.js", "./admin.authorization.v1": "./admin.authorization.v1/public-api.js", @@ -146,6 +149,7 @@ module.exports = [ "./admin.secrets.v1": "./admin.secrets.v1/public-api.js", "./admin.session-management.v1": "./admin.session-management.v1/public-api.js", "./admin.sms-providers.v1": "./admin.sms-providers.v1/public-api.js", + "./admin.template-core.v1": "./admin.template-core.v1/public-api.js", "./admin.tenants.v1": "./admin.tenants.v1/public-api.js", "./admin.users.v1": "./admin.users.v1/public-api.js", "./admin.userstores.v1": "./admin.userstores.v1/public-api.js", diff --git a/modules/i18n/src/constants.ts b/modules/i18n/src/constants.ts index 937e73437a6..e8cb8c2c61b 100644 --- a/modules/i18n/src/constants.ts +++ b/modules/i18n/src/constants.ts @@ -296,4 +296,20 @@ export class I18nModuleConstants { * @default */ public static readonly AI_NAMESPACE: string = "ai"; + + /** + * Application Templates namespace. + * @constant + * @type {string} + * @default + */ + public static readonly APPLICATION_TEMPLATES_NAMESPACE: string = "applicationTemplates"; + + /** + * Extension Templates namespace. + * @constant + * @type {string} + * @default + */ + public static readonly EXTENSION_TEMPLATES_NAMESPACE: string = "extensionTemplates"; } diff --git a/modules/i18n/src/models/namespaces/application-templates-ns.ts b/modules/i18n/src/models/namespaces/application-templates-ns.ts new file mode 100644 index 00000000000..8815b8ce696 --- /dev/null +++ b/modules/i18n/src/models/namespaces/application-templates-ns.ts @@ -0,0 +1,30 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export interface applicationTemplatesNS { + categories: { + default: { + displayName: string; + description: string; + }; + ssoIntegration: { + displayName: string; + description: string; + }; + } +} diff --git a/modules/i18n/src/models/namespaces/applications-ns.ts b/modules/i18n/src/models/namespaces/applications-ns.ts index b3cbc23b062..beabc90abe9 100644 --- a/modules/i18n/src/models/namespaces/applications-ns.ts +++ b/modules/i18n/src/models/namespaces/applications-ns.ts @@ -2732,20 +2732,6 @@ export interface ApplicationsNS { }; }; templates: { - categories: { - default: { - displayName: string; - description: string; - }; - ssoIntegration: { - displayName: string; - description: string; - }; - other: { - displayName: string; - description: string; - }; - } emptyPlaceholder: { action: string; title: string; diff --git a/modules/i18n/src/models/namespaces/extension-templates-ns.ts b/modules/i18n/src/models/namespaces/extension-templates-ns.ts new file mode 100644 index 00000000000..683b679bc2c --- /dev/null +++ b/modules/i18n/src/models/namespaces/extension-templates-ns.ts @@ -0,0 +1,42 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export interface extensionTemplatesNS { + categories: { + other: { + displayName: string; + description: string; + }; + }; + notifications: { + fetchTemplates: { + error: { + message: string; + description: string; + }; + genericError: { + message: string; + description: string; + }; + success: { + message: string; + description: string; + }; + }; + } +} diff --git a/modules/i18n/src/models/namespaces/index.ts b/modules/i18n/src/models/namespaces/index.ts index ab4ece3bb52..95b077bc399 100644 --- a/modules/i18n/src/models/namespaces/index.ts +++ b/modules/i18n/src/models/namespaces/index.ts @@ -50,6 +50,8 @@ export * from "./console-settings-ns"; export * from "./secrets-ns"; export * from "./branding-ns"; export * from "./email-templates-ns"; +export * from "./extension-templates-ns"; +export * from "./application-templates-ns"; export * from "./certificates-ns"; export * from "./authentication-provider-ns"; export * from "./governance-connectors-ns"; diff --git a/modules/i18n/src/translations/en-US/portals/application-templates.ts b/modules/i18n/src/translations/en-US/portals/application-templates.ts new file mode 100644 index 00000000000..f649dc615b3 --- /dev/null +++ b/modules/i18n/src/translations/en-US/portals/application-templates.ts @@ -0,0 +1,32 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { applicationTemplatesNS } from "../../../models"; + +export const applicationTemplates: applicationTemplatesNS = { + categories: { + default: { + description: "Integrate applications based on technology and platform.", + displayName: "Application Types" + }, + ssoIntegration: { + description: "Configure single sign-on seamlessly across SaaS services such as" + + " Google Workspace, Salesforce, and more.", + displayName: "SSO Integrations" + } + } +}; diff --git a/modules/i18n/src/translations/en-US/portals/applications.ts b/modules/i18n/src/translations/en-US/portals/applications.ts index db9fceb3f4d..accea1b0b33 100644 --- a/modules/i18n/src/translations/en-US/portals/applications.ts +++ b/modules/i18n/src/translations/en-US/portals/applications.ts @@ -2998,21 +2998,6 @@ export const applications: ApplicationsNS = { } }, templates: { - categories: { - default: { - displayName: "Application Types", - description: "Integrate applications based on technology and platform." - }, - ssoIntegration: { - displayName: "SSO Integrations", - description: "Configure single sign-on seamlessly across SaaS services such as" - + " Google Workspace, Salesforce, and more." - }, - other: { - displayName: "Others", - description: "Other types of un-categorized integrations." - } - }, emptyPlaceholder: { action: null, subtitles: "Please add templates to display here.", diff --git a/modules/i18n/src/translations/en-US/portals/extension-templates.ts b/modules/i18n/src/translations/en-US/portals/extension-templates.ts new file mode 100644 index 00000000000..5bb3e97d570 --- /dev/null +++ b/modules/i18n/src/translations/en-US/portals/extension-templates.ts @@ -0,0 +1,43 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { extensionTemplatesNS } from "../../../models"; + +export const extensionTemplates: extensionTemplatesNS = { + categories: { + other: { + description: "Other types of un-categorized integrations.", + displayName: "Others" + } + }, + notifications: { + fetchTemplates: { + error: { + description: "{{description}}", + message: "Retrieval error" + }, + genericError: { + description: "Couldn't retrieve {{type}} templates.", + message: "Something went wrong" + }, + success: { + description: "Successfully retrieved the {{type}} templates.", + message: "Retrieval successful" + } + } + } +}; diff --git a/modules/i18n/src/translations/en-US/portals/index.ts b/modules/i18n/src/translations/en-US/portals/index.ts index 62bcefddada..9625735a18d 100644 --- a/modules/i18n/src/translations/en-US/portals/index.ts +++ b/modules/i18n/src/translations/en-US/portals/index.ts @@ -58,3 +58,5 @@ export * from "./applications"; export * from "./idp"; export * from "./api-resources"; export * from "./ai"; +export * from "./extension-templates"; +export * from "./application-templates"; diff --git a/modules/react-components/src/components/renderer/index.ts b/modules/react-components/src/components/renderer/index.ts index 9411946a473..d8dfe0d5384 100644 --- a/modules/react-components/src/components/renderer/index.ts +++ b/modules/react-components/src/components/renderer/index.ts @@ -17,4 +17,4 @@ */ export * from "./certificate"; -export * from "./markdown"; +export * from "./markdown/markdown"; diff --git a/modules/react-components/src/components/renderer/markdown.tsx b/modules/react-components/src/components/renderer/markdown/markdown.tsx similarity index 100% rename from modules/react-components/src/components/renderer/markdown.tsx rename to modules/react-components/src/components/renderer/markdown/markdown.tsx diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 722cb966bc7..3b9217146d7 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -84,7 +84,7 @@ importers: version: 5.2.1(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@16.14.0)(react@16.14.0) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -145,37 +145,37 @@ importers: version: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)) '@nrwl/cypress': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@nrwl/devkit': specifier: 14.8.8 version: 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) '@nrwl/eslint-plugin-nx': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(@typescript-eslint/parser@4.33.0)(eslint-config-prettier@8.1.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5) + version: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint-config-prettier@8.1.0(eslint@7.32.0))(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) '@nrwl/jest': specifier: 14.8.8 - version: 14.8.8(@types/node@13.13.52)(nx@14.8.8)(ts-node@10.9.1)(typescript@4.9.5) + version: 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) '@nrwl/js': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) '@nrwl/linter': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.1)(typescript@4.9.5) + version: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) '@nrwl/nx-plugin': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5) + version: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) '@nrwl/react': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(file-loader@2.0.0)(html-webpack-plugin@5.6.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3) + version: 14.8.8(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/babel__core@7.20.5)(@types/node@13.13.52)(@types/webpack@4.41.38)(cypress@9.7.0)(eslint@7.32.0)(file-loader@2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(sockjs-client@1.6.1)(ts-node@8.10.2(typescript@4.9.5))(type-fest@4.20.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1) '@nrwl/storybook': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@nrwl/web': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(html-webpack-plugin@5.6.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 14.8.8(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/babel__core@7.20.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@nrwl/workspace': specifier: 14.8.8 - version: 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.5.4 version: 0.5.15(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) @@ -202,7 +202,7 @@ importers: version: 1.6.5(@swc/helpers@0.3.17) '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))) + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) '@testing-library/react': specifier: ^14.2.1 version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -346,7 +346,7 @@ importers: version: 3.0.0 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) jsonc-eslint-parser: specifier: ^2.1.0 version: 2.4.0 @@ -424,7 +424,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) ts-loader: specifier: ^6.0.1 version: 6.2.2(typescript@4.9.5) @@ -668,7 +668,7 @@ importers: version: 9.3.4 '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))) + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) '@testing-library/react': specifier: ^14.2.1 version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -770,7 +770,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^29.7.0 version: 29.7.0 @@ -803,7 +803,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -939,7 +939,7 @@ importers: devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))) + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) '@types/history': specifier: ^4.7.3 version: 4.7.11 @@ -1020,7 +1020,7 @@ importers: version: 3.2.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -1053,7 +1053,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -1375,7 +1375,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -1429,7 +1429,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -1827,6 +1827,67 @@ importers: specifier: ^4.6.4 version: 4.9.5 + features/admin.application-templates.v1: + dependencies: + '@wso2is/admin.template-core.v1': + specifier: ^1.0.0 + version: link:../admin.template-core.v1 + react: + specifier: ^18.2.0 + version: 18.3.1 + react-dom: + specifier: ^18.2.0 + version: 18.3.1(react@18.3.1) + react-router-dom: + specifier: ^4.3.1 + version: 4.3.1(react@18.3.1) + devDependencies: + '@rollup/plugin-commonjs': + specifier: ^25.0.7 + version: 25.0.8(rollup@4.18.0) + '@rollup/plugin-dynamic-import-vars': + specifier: ^2.1.2 + version: 2.1.2(rollup@4.18.0) + '@rollup/plugin-image': + specifier: ^3.0.3 + version: 3.0.3(rollup@4.18.0) + '@rollup/plugin-json': + specifier: ^6.1.0 + version: 6.1.0(rollup@4.18.0) + '@rollup/plugin-node-resolve': + specifier: ^15.2.3 + version: 15.2.3(rollup@4.18.0) + '@rollup/plugin-typescript': + specifier: ^11.1.6 + version: 11.1.6(rollup@4.18.0)(tslib@2.6.3)(typescript@4.9.5) + '@svgr/rollup': + specifier: ^6.2.1 + version: 6.5.1 + rollup: + specifier: ^4.17.2 + version: 4.18.0 + rollup-plugin-dts: + specifier: ^6.1.1 + version: 6.1.1(rollup@4.18.0)(typescript@4.9.5) + rollup-plugin-generate-package-json: + specifier: ^3.2.0 + version: 3.2.0(rollup@4.18.0) + rollup-plugin-polyfill-node: + specifier: ^0.13.0 + version: 0.13.0(rollup@4.18.0) + rollup-plugin-scss: + specifier: ^4.0.0 + version: 4.0.0 + rollup-plugin-styles: + specifier: ^4.0.0 + version: 4.0.0(rollup@4.18.0) + rollup-plugin-svg: + specifier: ^2.0.0 + version: 2.0.0 + typescript: + specifier: ^4.6.4 + version: 4.9.5 + features/admin.applications.v1: dependencies: '@asgardeo/auth-react': @@ -1865,6 +1926,9 @@ importers: '@wso2is/admin.api-resources.v2': specifier: ^2.20.41 version: link:../admin.api-resources.v2 + '@wso2is/admin.application-templates.v1': + specifier: ^1.0.0 + version: link:../admin.application-templates.v1 '@wso2is/admin.authentication-flow-builder.v1': specifier: ^2.20.41 version: link:../admin.authentication-flow-builder.v1 @@ -1907,6 +1971,9 @@ importers: '@wso2is/admin.server-configurations.v1': specifier: ^2.20.41 version: link:../admin.server-configurations.v1 + '@wso2is/admin.template-core.v1': + specifier: ^1.0.0 + version: link:../admin.template-core.v1 '@wso2is/admin.userstores.v1': specifier: ^2.20.41 version: link:../admin.userstores.v1 @@ -2642,7 +2709,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -2696,7 +2763,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -3091,7 +3158,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -3145,7 +3212,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -3488,7 +3555,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -3542,7 +3609,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -3870,7 +3937,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -3924,7 +3991,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -4267,7 +4334,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -4321,7 +4388,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -4400,6 +4467,9 @@ importers: '@wso2is/admin.roles.v2': specifier: ^2.20.41 version: link:../admin.roles.v2 + '@wso2is/admin.template-core.v1': + specifier: ^1.0.0 + version: link:../admin.template-core.v1 '@wso2is/admin.userstores.v1': specifier: ^2.20.41 version: link:../admin.userstores.v1 @@ -4673,7 +4743,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -4727,7 +4797,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -5082,7 +5152,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -5136,7 +5206,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -5182,6 +5252,9 @@ importers: '@wso2is/admin.api-resources.v2': specifier: ^2.20.41 version: link:../admin.api-resources.v2 + '@wso2is/admin.application-templates.v1': + specifier: ^1.0.0 + version: link:../admin.application-templates.v1 '@wso2is/admin.applications.v1': specifier: ^2.21.11 version: link:../admin.applications.v1 @@ -5278,6 +5351,9 @@ importers: '@wso2is/admin.sms-providers.v1': specifier: ^2.20.41 version: link:../admin.sms-providers.v1 + '@wso2is/admin.template-core.v1': + specifier: ^1.0.0 + version: link:../admin.template-core.v1 '@wso2is/admin.tenants.v1': specifier: ^2.20.41 version: link:../admin.tenants.v1 @@ -5530,7 +5606,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -5584,7 +5660,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -5912,7 +5988,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -5966,7 +6042,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -6297,7 +6373,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -6351,7 +6427,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -6676,7 +6752,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -6730,7 +6806,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -7058,7 +7134,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -7112,7 +7188,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -7491,7 +7567,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -7545,7 +7621,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -7873,7 +7949,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -7927,7 +8003,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -8270,7 +8346,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -8324,7 +8400,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -8676,7 +8752,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -8730,7 +8806,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -9058,7 +9134,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -9112,7 +9188,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -9437,7 +9513,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -9491,7 +9567,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -9831,7 +9907,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -9885,7 +9961,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -10216,7 +10292,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -10270,7 +10346,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -10595,7 +10671,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -10649,7 +10725,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -10977,7 +11053,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -11031,7 +11107,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -11389,7 +11465,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -11443,7 +11519,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -11771,7 +11847,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -11825,7 +11901,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -12153,7 +12229,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -12207,7 +12283,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -12541,7 +12617,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -12595,7 +12671,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -12920,7 +12996,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -12974,7 +13050,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -13314,7 +13390,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -13368,7 +13444,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -13726,7 +13802,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -13780,7 +13856,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -14105,7 +14181,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -14159,7 +14235,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -14484,7 +14560,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -14538,7 +14614,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -14878,7 +14954,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -14932,7 +15008,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -15260,7 +15336,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -15314,7 +15390,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -15639,7 +15715,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -15693,7 +15769,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -16024,7 +16100,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -16078,7 +16154,80 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + typescript: + specifier: ^4.6.4 + version: 4.9.5 + + features/admin.template-core.v1: + dependencies: + '@wso2is/admin.core.v1': + specifier: ^2.21.11 + version: link:../admin.core.v1 + '@wso2is/core': + specifier: ^2.0.50 + version: link:../../modules/core + i18next: + specifier: ^21.9.1 + version: 21.10.0 + react: + specifier: ^18.2.0 + version: 18.3.1 + react-dom: + specifier: ^18.2.0 + version: 18.3.1(react@18.3.1) + react-redux: + specifier: ^7.2.9 + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-router-dom: + specifier: ^4.3.1 + version: 4.3.1(react@18.3.1) + redux: + specifier: ^4.0.4 + version: 4.2.1 + devDependencies: + '@rollup/plugin-commonjs': + specifier: ^25.0.7 + version: 25.0.8(rollup@4.18.0) + '@rollup/plugin-dynamic-import-vars': + specifier: ^2.1.2 + version: 2.1.2(rollup@4.18.0) + '@rollup/plugin-image': + specifier: ^3.0.3 + version: 3.0.3(rollup@4.18.0) + '@rollup/plugin-json': + specifier: ^6.1.0 + version: 6.1.0(rollup@4.18.0) + '@rollup/plugin-node-resolve': + specifier: ^15.2.3 + version: 15.2.3(rollup@4.18.0) + '@rollup/plugin-typescript': + specifier: ^11.1.6 + version: 11.1.6(rollup@4.18.0)(tslib@2.6.3)(typescript@4.9.5) + '@svgr/rollup': + specifier: ^6.2.1 + version: 6.5.1 + rollup: + specifier: ^4.17.2 + version: 4.18.0 + rollup-plugin-dts: + specifier: ^6.1.1 + version: 6.1.1(rollup@4.18.0)(typescript@4.9.5) + rollup-plugin-generate-package-json: + specifier: ^3.2.0 + version: 3.2.0(rollup@4.18.0) + rollup-plugin-polyfill-node: + specifier: ^0.13.0 + version: 0.13.0(rollup@4.18.0) + rollup-plugin-scss: + specifier: ^4.0.0 + version: 4.0.0 + rollup-plugin-styles: + specifier: ^4.0.0 + version: 4.0.0(rollup@4.18.0) + rollup-plugin-svg: + specifier: ^2.0.0 + version: 2.0.0 typescript: specifier: ^4.6.4 version: 4.9.5 @@ -16409,7 +16558,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -16463,7 +16612,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -16824,7 +16973,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -16878,7 +17027,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -17206,7 +17355,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -17260,7 +17409,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -17597,7 +17746,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -17651,7 +17800,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -17982,7 +18131,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -18036,7 +18185,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -18361,7 +18510,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -18415,7 +18564,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -18740,7 +18889,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -18794,7 +18943,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19119,7 +19268,7 @@ importers: version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -19173,7 +19322,7 @@ importers: version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19297,7 +19446,7 @@ importers: version: link:../core jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) react: specifier: '*' version: 18.3.1 @@ -19306,7 +19455,7 @@ importers: version: 18.3.1(react@18.3.1) ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) devDependencies: '@types/react': specifier: 18.0.18 @@ -19364,7 +19513,7 @@ importers: version: 2.0.5 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) js-yaml: specifier: 3.13.1 version: 3.13.1 @@ -19382,7 +19531,7 @@ importers: version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) ua-parser-js: specifier: 0.7.28 version: 0.7.28 @@ -19474,7 +19623,7 @@ importers: devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))) + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) '@testing-library/react': specifier: ^14.2.1 version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -19513,13 +19662,13 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19556,7 +19705,7 @@ importers: devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))) + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) '@testing-library/react': specifier: ^14.2.1 version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -19589,13 +19738,13 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19617,7 +19766,7 @@ importers: devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))) + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) '@testing-library/react': specifier: ^14.2.1 version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -19656,13 +19805,13 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19726,13 +19875,13 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -20006,7 +20155,7 @@ importers: version: 9.1.0 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) less: specifier: ^3.10.3 version: 3.13.1 @@ -20036,7 +20185,7 @@ importers: version: 2.5.0 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) watch: specifier: ^1.0.2 version: 1.0.2 @@ -20076,13 +20225,13 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -31038,12 +31187,6 @@ packages: react: "0.14.x || ^15.0.0 ||\_^16.0.0" react-dom: 0.14.x || ^15.0.0 || ^16.0.0 - react-password-strength-bar@0.3.5: - resolution: {integrity: sha512-e48tYTKZ5gy1tUYYT3aJ+BWggg0RE/ZUN8ep6sHgGuI9SqJTgd4WL4TFgT37kX09NyQwSOcZKHpcKQEtCEECuA==} - peerDependencies: - react: ^16.8.6 || ^17 - react-dom: ^16.8.6 || ^17 - react-popper-tooltip@3.1.1: resolution: {integrity: sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==} peerDependencies: @@ -32715,20 +32858,6 @@ packages: '@swc/wasm': optional: true - ts-node@10.9.2: - resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true - ts-node@8.10.2: resolution: {integrity: sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA==} engines: {node: '>=6.0.0'} @@ -33669,9 +33798,6 @@ packages: zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} - zxcvbn@4.4.2: - resolution: {integrity: sha512-Bq0B+ixT/DMyG8kgX2xWcI5jUvCwqrMxSFam7m0lAf78nf04hv6lNCsyLYdyYTrCVMqNDY/206K7eExYCeSyUQ==} - snapshots: '@adobe/css-tools@4.4.0': {} @@ -34048,7 +34174,7 @@ snapshots: '@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9)': dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.10.4 + '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.12.9) @@ -34995,7 +35121,6 @@ snapshots: '@cspotcode/source-map-support@0.8.1': dependencies: '@jridgewell/trace-mapping': 0.3.9 - dev: true '@cypress/request@2.88.12': dependencies: @@ -35284,7 +35409,7 @@ snapshots: dependencies: '@jest/types': 28.1.3 '@types/node': 13.13.52 - chalk: 4.1.0 + chalk: 4.1.2 jest-message-util: 28.1.3 jest-util: 28.1.3 slash: 3.0.0 @@ -35298,9 +35423,7 @@ snapshots: jest-util: 29.7.0 slash: 3.0.0 - /@jest/core@26.6.3: - resolution: {integrity: sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==} - engines: {node: '>= 10.14.2'} + '@jest/core@26.6.3(ts-node@8.10.2(typescript@4.9.5))': dependencies: '@jest/console': 26.6.2 '@jest/reporters': 26.6.2 @@ -35313,14 +35436,14 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 26.6.2 - jest-config: 26.6.3 + jest-config: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-haste-map: 26.6.2 jest-message-util: 26.6.2 jest-regex-util: 26.0.0 jest-resolve: 26.6.2 jest-resolve-dependencies: 26.6.3 - jest-runner: 26.6.3 - jest-runtime: 26.6.3 + jest-runner: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-runtime: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-snapshot: 26.6.2 jest-util: 26.6.2 jest-validate: 26.6.2 @@ -35337,14 +35460,7 @@ snapshots: - ts-node - utf-8-validate - /@jest/core@29.7.0(ts-node@8.10.2): - resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0(node-notifier@8.0.2) @@ -35509,12 +35625,12 @@ snapshots: dependencies: '@bcoe/v8-coverage': 0.2.3 '@jest/console': 28.1.3 - '@jest/test-result': 28.1.1 + '@jest/test-result': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 '@jridgewell/trace-mapping': 0.3.25 '@types/node': 13.13.52 - chalk: 4.1.0 + chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 glob: 7.2.3 @@ -35525,7 +35641,7 @@ snapshots: istanbul-lib-source-maps: 4.0.1 istanbul-reports: 3.1.7 jest-message-util: 28.1.3 - jest-util: 28.1.1 + jest-util: 28.1.3 jest-worker: 28.1.3 slash: 3.0.0 string-length: 4.0.2 @@ -35622,15 +35738,13 @@ snapshots: '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - /@jest/test-sequencer@26.6.3: - resolution: {integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==} - engines: {node: '>= 10.14.2'} + '@jest/test-sequencer@26.6.3(ts-node@8.10.2(typescript@4.9.5))': dependencies: '@jest/test-result': 26.6.2 graceful-fs: 4.2.11 jest-haste-map: 26.6.2 - jest-runner: 26.6.3 - jest-runtime: 26.6.3 + jest-runner: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-runtime: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) transitivePeerDependencies: - bufferutil - canvas @@ -35678,7 +35792,7 @@ snapshots: '@jest/types': 28.1.3 '@jridgewell/trace-mapping': 0.3.25 babel-plugin-istanbul: 6.1.1 - chalk: 4.1.0 + chalk: 4.1.2 convert-source-map: 1.9.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.11 @@ -35727,7 +35841,7 @@ snapshots: '@types/istanbul-reports': 3.0.4 '@types/node': 13.13.52 '@types/yargs': 17.0.32 - chalk: 4.1.0 + chalk: 4.1.2 '@jest/types@29.6.3': dependencies: @@ -35764,7 +35878,6 @@ snapshots: dependencies: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.4.15 - dev: true '@leichtgewicht/ip-codec@2.0.5': {} @@ -36815,20 +36928,14 @@ snapshots: - '@swc/core' - debug - /@nrwl/cypress@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-CSrs4YPZnDFcwyt2zKtyxVNdJH+UMRyg0L3h5lCpSJIOYYr2fUuVKUmq3Z4BzCt1/+q8sA2x4HjRMLhtn6ZbGg==} - peerDependencies: - cypress: '>= 3 < 11' - peerDependenciesMeta: - cypress: - optional: true + '@nrwl/cypress@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 '@babel/preset-env': 7.24.7(@babel/core@7.24.7) - '@cypress/webpack-preprocessor': 5.17.1(@babel/core@7.24.7)(@babel/preset-env@7.24.7)(babel-loader@8.3.0)(webpack@5.84.1) - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.1)(typescript@4.9.5) - '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.1)(typescript@4.9.5) + '@cypress/webpack-preprocessor': 5.17.1(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(babel-loader@8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) chalk: 4.1.0 @@ -36868,17 +36975,10 @@ snapshots: transitivePeerDependencies: - typescript - /@nrwl/eslint-plugin-nx@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(@typescript-eslint/parser@4.33.0)(eslint-config-prettier@8.1.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5): - resolution: {integrity: sha512-adML8IqZTRroEJXQiol65Zwe531ryu1Ayhk0N28ZhBGq2T4IFLNaZwHkZtOWSfOpAFFkYIL6N+LfIHlRKHLUYg==} - peerDependencies: - '@typescript-eslint/parser': ^5.29.0 - eslint-config-prettier: ^8.1.0 - peerDependenciesMeta: - eslint-config-prettier: - optional: true + '@nrwl/eslint-plugin-nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint-config-prettier@8.1.0(eslint@7.32.0))(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)': dependencies: - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.1)(typescript@4.9.5) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@4.9.5) chalk: 4.1.0 @@ -36921,8 +37021,29 @@ snapshots: - ts-node - typescript - /@nrwl/js@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.1)(typescript@4.9.5): - resolution: {integrity: sha512-U9gAREO0ZOu/pMDrO05f2Z88gxhIyulqlhlbe05PgFYkPXFR712bSKZX2dIH9P1Buk7QYzQWz5vpnGrX0kV8VQ==} + '@nrwl/jest@14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)': + dependencies: + '@jest/reporters': 28.1.1(node-notifier@8.0.2) + '@jest/test-result': 28.1.1 + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) + chalk: 4.1.0 + dotenv: 10.0.0 + identity-obj-proxy: 3.0.0 + jest-config: 28.1.1(@types/node@13.13.52)(ts-node@8.10.2(typescript@4.9.5)) + jest-resolve: 28.1.1 + jest-util: 28.1.1 + resolve.exports: 1.1.0 + tslib: 2.6.3 + transitivePeerDependencies: + - '@types/node' + - node-notifier + - nx + - supports-color + - ts-node + - typescript + + '@nrwl/js@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)': dependencies: '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) '@nrwl/jest': 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) @@ -36950,13 +37071,35 @@ snapshots: - ts-node - typescript - /@nrwl/linter@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.1)(typescript@4.9.5): - resolution: {integrity: sha512-Siu4KogGRJpESVgWqv1mXM28aqs7e/Uerb4miaSflCfXAhJo7kbsALfDOomhqubvGyE5r4dyorLMtVPbZA5iFg==} - peerDependencies: - eslint: ^8.0.0 - peerDependenciesMeta: - eslint: - optional: true + '@nrwl/js@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)': + dependencies: + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/jest': 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@parcel/watcher': 2.0.4 + chalk: 4.1.0 + fast-glob: 3.2.7 + fs-extra: 10.1.0 + ignore: 5.3.1 + js-tokens: 4.0.0 + minimatch: 3.0.5 + source-map-support: 0.5.19 + tree-kill: 1.2.2 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - '@types/node' + - debug + - eslint + - node-notifier + - nx + - prettier + - supports-color + - ts-node + - typescript + + '@nrwl/linter@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5)': dependencies: '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) '@nrwl/jest': 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@10.9.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5))(typescript@4.9.5) @@ -36976,13 +37119,32 @@ snapshots: - ts-node - typescript - /@nrwl/nx-plugin@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5): - resolution: {integrity: sha512-A+clJVUMXC1W0JS3W4hTQ5HI1khQrljVuQRIkjWBNNMnRh7CGcgZIfRt2lx9OrbtoU4uX89oT5DaAtcOVsab0Q==} + '@nrwl/linter@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)': dependencies: - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/jest': 14.8.8(@types/node@13.13.52)(nx@14.8.8)(ts-node@10.9.1)(typescript@4.9.5) - '@nrwl/js': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.1)(typescript@4.9.5) - '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.1)(typescript@4.9.5) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/jest': 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) + nx: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)) + tmp: 0.2.3 + tslib: 2.6.3 + optionalDependencies: + eslint: 7.32.0 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - '@types/node' + - debug + - node-notifier + - supports-color + - ts-node + - typescript + + '@nrwl/nx-plugin@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)': + dependencies: + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/jest': 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/js': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) dotenv: 10.0.0 fs-extra: 10.1.0 tslib: 2.6.3 @@ -36999,21 +37161,20 @@ snapshots: - ts-node - typescript - /@nrwl/react@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(file-loader@2.0.0)(html-webpack-plugin@5.6.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3): - resolution: {integrity: sha512-VzUJGty9lIBi6VbGB8vSA0jnHlE1dPQj4+W6Vhgpdd2bLQCIBXQZQgX895dFQk6KZ3r1MtuikNPsi4YjJbNJ0w==} - dependencies: + ? '@nrwl/react@14.8.8(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/babel__core@7.20.5)(@types/node@13.13.52)(@types/webpack@4.41.38)(cypress@9.7.0)(eslint@7.32.0)(file-loader@2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(sockjs-client@1.6.1)(ts-node@8.10.2(typescript@4.9.5))(type-fest@4.20.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)' + : dependencies: '@babel/core': 7.24.7 '@babel/preset-react': 7.24.7(@babel/core@7.24.7) - '@nrwl/cypress': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/jest': 14.8.8(@types/node@13.13.52)(nx@14.8.8)(ts-node@10.9.1)(typescript@4.9.5) - '@nrwl/js': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.1)(typescript@4.9.5) - '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.1)(typescript@4.9.5) - '@nrwl/storybook': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@nrwl/web': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(html-webpack-plugin@5.6.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@nrwl/webpack': 14.8.8(@babel/core@7.24.7)(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(html-webpack-plugin@5.6.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.1)(typescript@4.9.5) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.10.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + '@nrwl/cypress': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/jest': 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/js': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/storybook': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@nrwl/web': 14.8.8(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/babel__core@7.20.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@nrwl/webpack': 14.8.8(@babel/core@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(@types/webpack@4.41.38)(react-refresh@0.10.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@svgr/webpack': 6.5.1 chalk: 4.1.0 css-loader: 6.11.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) @@ -37064,13 +37225,12 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - /@nrwl/rollup@14.8.8(@babel/core@7.24.7)(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5): - resolution: {integrity: sha512-l9RSwMjBVi1Qz6Uf5g6za7vtRD5VYPcKV+fUn6sUvglCGUcxH0bP+RARbgNK0NpibfoCp+vo2qmMMhVmqbuHpQ==} + '@nrwl/rollup@14.8.8(@babel/core@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/babel__core@7.20.5)(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)': dependencies: - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/js': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.1)(typescript@4.9.5) - '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.1)(typescript@4.9.5) - '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.7)(rollup@2.79.1) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/js': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.7)(@types/babel__core@7.20.5)(rollup@2.79.1) '@rollup/plugin-commonjs': 20.0.0(rollup@2.79.1) '@rollup/plugin-image': 2.1.1(rollup@2.79.1) '@rollup/plugin-json': 4.1.0(rollup@2.79.1) @@ -37084,7 +37244,7 @@ snapshots: rollup: 2.79.1 rollup-plugin-copy: 3.5.0 rollup-plugin-peer-deps-external: 2.2.4(rollup@2.79.1) - rollup-plugin-postcss: 4.0.2(postcss@8.4.38) + rollup-plugin-postcss: 4.0.2(postcss@8.4.38)(ts-node@8.10.2(typescript@4.9.5)) rollup-plugin-typescript2: 0.31.2(rollup@2.79.1)(typescript@4.9.5) rxjs: 6.6.7 tslib: 2.6.3 @@ -37103,13 +37263,12 @@ snapshots: - ts-node - typescript - /@nrwl/storybook@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-N/ZEfmxqujgxJvF0jXu7UBlZmJpeNITqbXlghx3vuzr2XOh8PmQXFQWa3UYtzSgFbb+T2KwX6Wii83zBnSWJMA==} + '@nrwl/storybook@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: - '@nrwl/cypress': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.1)(typescript@4.9.5) - '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.1)(typescript@4.9.5) + '@nrwl/cypress': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) dotenv: 10.0.0 semver: 7.3.4 transitivePeerDependencies: @@ -37138,8 +37297,7 @@ snapshots: - '@swc/core' - debug - /@nrwl/web@14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(html-webpack-plugin@5.6.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-wsnE9nACCbkSPKHsIhNFI1vVytNAwG8mo0ig6MDbo7y55Lg9zkRhdHxAchCViL12An8l+Qt/hjoQbOdsOuUBaA==} + '@nrwl/web@14.8.8(@babel/traverse@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/babel__core@7.20.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.7) @@ -37148,14 +37306,14 @@ snapshots: '@babel/preset-env': 7.24.7(@babel/core@7.24.7) '@babel/preset-typescript': 7.24.7(@babel/core@7.24.7) '@babel/runtime': 7.24.7 - '@nrwl/cypress': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@nrwl/devkit': 14.8.8(nx@14.8.8)(typescript@4.9.5) - '@nrwl/jest': 14.8.8(@types/node@13.13.52)(nx@14.8.8)(ts-node@10.9.1)(typescript@4.9.5) - '@nrwl/js': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(ts-node@10.9.1)(typescript@4.9.5) - '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(ts-node@10.9.1)(typescript@4.9.5) - '@nrwl/rollup': 14.8.8(@babel/core@7.24.7)(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5) - '@nrwl/webpack': 14.8.8(@babel/core@7.24.7)(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(html-webpack-plugin@5.6.0)(nx@14.8.8)(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2)(@swc/core@1.6.5)(@types/node@13.13.52)(eslint@7.32.0)(prettier@1.19.1)(ts-node@10.9.1)(typescript@4.9.5) + '@nrwl/cypress': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(cypress@9.7.0)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/jest': 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/js': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/rollup': 14.8.8(@babel/core@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/babel__core@7.20.5)(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/webpack': 14.8.8(@babel/core@7.24.7)(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(prettier@1.19.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@nrwl/workspace': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) babel-plugin-const-enum: 1.2.0(@babel/core@7.24.7) babel-plugin-macros: 2.8.0 babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.24.7)(@babel/traverse@7.24.7) @@ -37309,10 +37467,47 @@ snapshots: - ts-node - typescript - /@octokit/auth-token@3.0.4: - resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==} - engines: {node: '>= 14'} - dev: true + '@nrwl/workspace@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)': + dependencies: + '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) + '@nrwl/jest': 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) + '@parcel/watcher': 2.0.4 + chalk: 4.1.0 + chokidar: 3.6.0 + cli-cursor: 3.1.0 + cli-spinners: 2.6.1 + dotenv: 10.0.0 + enquirer: 2.3.6 + figures: 3.2.0 + flat: 5.0.2 + fs-extra: 10.1.0 + glob: 7.1.4 + ignore: 5.3.1 + minimatch: 3.0.5 + npm-run-path: 4.0.1 + nx: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)) + open: 8.4.2 + rxjs: 6.6.7 + semver: 7.3.4 + tmp: 0.2.3 + tslib: 2.6.3 + yargs: 17.7.2 + yargs-parser: 21.0.1 + optionalDependencies: + prettier: 1.19.1 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - '@types/node' + - debug + - eslint + - node-notifier + - supports-color + - ts-node + - typescript + + '@octokit/auth-token@3.0.4': {} '@octokit/core@4.2.4(encoding@0.1.13)': dependencies: @@ -40014,7 +40209,7 @@ snapshots: lodash: 4.17.21 redent: 3.0.0 - '@testing-library/jest-dom@6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))': + '@testing-library/jest-dom@6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))': dependencies: '@adobe/css-tools': 4.4.0 '@babel/runtime': 7.24.7 @@ -40022,13 +40217,12 @@ snapshots: chalk: 3.0.0 css.escape: 1.5.1 dom-accessibility-api: 0.6.3 - jest: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) lodash: 4.17.21 redent: 3.0.0 optionalDependencies: '@jest/globals': 29.7.0 '@types/jest': 29.5.12 - jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)) + jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) '@testing-library/react@14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -40055,21 +40249,13 @@ snapshots: '@trysound/sax@0.2.0': {} - /@tsconfig/node10@1.0.11: - resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} - dev: true + '@tsconfig/node10@1.0.11': {} - /@tsconfig/node12@1.0.11: - resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} - dev: true + '@tsconfig/node12@1.0.11': {} - /@tsconfig/node14@1.0.3: - resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} - dev: true + '@tsconfig/node14@1.0.3': {} - /@tsconfig/node16@1.0.4: - resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} - dev: true + '@tsconfig/node16@1.0.4': {} '@types/aria-query@4.2.2': {} @@ -41346,7 +41532,7 @@ snapshots: '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 babel-preset-jest: 28.1.3(@babel/core@7.24.7) - chalk: 4.1.0 + chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 transitivePeerDependencies: @@ -42544,10 +42730,7 @@ snapshots: transitivePeerDependencies: - supports-color - /create-jest@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): - resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true + create-jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 @@ -42562,9 +42745,7 @@ snapshots: - supports-color - ts-node - /create-require@1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - dev: true + create-require@1.1.1: {} cross-spawn@5.1.0: dependencies: @@ -44676,7 +44857,7 @@ snapshots: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.0.5 + minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 @@ -45860,7 +46041,7 @@ snapshots: '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 '@types/node': 13.13.52 - chalk: 4.1.0 + chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 is-generator-fn: 2.1.0 @@ -45903,12 +46084,9 @@ snapshots: - babel-plugin-macros - supports-color - /jest-cli@26.6.3: - resolution: {integrity: sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==} - engines: {node: '>= 10.14.2'} - hasBin: true + jest-cli@26.6.3(ts-node@8.10.2(typescript@4.9.5)): dependencies: - '@jest/core': 26.6.3 + '@jest/core': 26.6.3(ts-node@8.10.2(typescript@4.9.5)) '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 chalk: 4.1.2 @@ -45916,7 +46094,7 @@ snapshots: graceful-fs: 4.2.11 import-local: 3.1.0 is-ci: 2.0.0 - jest-config: 26.6.3 + jest-config: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-util: 26.6.2 jest-validate: 26.6.2 prompts: 2.4.2 @@ -45928,15 +46106,7 @@ snapshots: - ts-node - utf-8-validate - /jest-cli@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): - resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest-cli@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)): dependencies: '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) '@jest/test-result': 29.7.0 @@ -45957,17 +46127,10 @@ snapshots: - supports-color - ts-node - /jest-config@26.6.3: - resolution: {integrity: sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==} - engines: {node: '>= 10.14.2'} - peerDependencies: - ts-node: '>=9.0.0' - peerDependenciesMeta: - ts-node: - optional: true + jest-config@26.6.3(ts-node@8.10.2(typescript@4.9.5)): dependencies: '@babel/core': 7.24.7 - '@jest/test-sequencer': 26.6.3 + '@jest/test-sequencer': 26.6.3(ts-node@8.10.2(typescript@4.9.5)) '@jest/types': 26.6.2 babel-jest: 26.6.3(@babel/core@7.24.7) chalk: 4.1.2 @@ -45977,13 +46140,15 @@ snapshots: jest-environment-jsdom: 26.6.2 jest-environment-node: 26.6.2 jest-get-type: 26.3.0 - jest-jasmine2: 26.6.3 + jest-jasmine2: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-regex-util: 26.0.0 jest-resolve: 26.6.2 jest-util: 26.6.2 jest-validate: 26.6.2 micromatch: 4.0.7 pretty-format: 26.6.2 + optionalDependencies: + ts-node: 8.10.2(typescript@4.9.5) transitivePeerDependencies: - bufferutil - canvas @@ -45996,7 +46161,7 @@ snapshots: '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 babel-jest: 28.1.3(@babel/core@7.24.7) - chalk: 4.1.0 + chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 glob: 7.2.3 @@ -46005,9 +46170,9 @@ snapshots: jest-environment-node: 28.1.3 jest-get-type: 28.0.2 jest-regex-util: 28.0.2 - jest-resolve: 28.1.1 + jest-resolve: 28.1.3 jest-runner: 28.1.3 - jest-util: 28.1.1 + jest-util: 28.1.3 jest-validate: 28.1.3 micromatch: 4.0.7 parse-json: 5.2.0 @@ -46020,17 +46185,37 @@ snapshots: transitivePeerDependencies: - supports-color - /jest-config@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): - resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true + jest-config@28.1.1(@types/node@13.13.52)(ts-node@8.10.2(typescript@4.9.5)): + dependencies: + '@babel/core': 7.24.7 + '@jest/test-sequencer': 28.1.3 + '@jest/types': 28.1.3 + babel-jest: 28.1.3(@babel/core@7.24.7) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 28.1.3 + jest-environment-node: 28.1.3 + jest-get-type: 28.0.2 + jest-regex-util: 28.0.2 + jest-resolve: 28.1.3 + jest-runner: 28.1.3 + jest-util: 28.1.3 + jest-validate: 28.1.3 + micromatch: 4.0.7 + parse-json: 5.2.0 + pretty-format: 28.1.3 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 13.13.52 + ts-node: 8.10.2(typescript@4.9.5) + transitivePeerDependencies: + - supports-color + + jest-config@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)): dependencies: '@babel/core': 7.24.7 '@jest/test-sequencer': 29.7.0 @@ -46070,7 +46255,7 @@ snapshots: jest-diff@28.1.3: dependencies: - chalk: 4.1.0 + chalk: 4.1.2 diff-sequences: 28.1.1 jest-get-type: 28.0.2 pretty-format: 28.1.3 @@ -46105,7 +46290,7 @@ snapshots: jest-each@28.1.3: dependencies: '@jest/types': 28.1.3 - chalk: 4.1.0 + chalk: 4.1.2 jest-get-type: 28.0.2 jest-util: 28.1.3 pretty-format: 28.1.3 @@ -46245,9 +46430,7 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - /jest-jasmine2@26.6.3: - resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==} - engines: {node: '>= 10.14.2'} + jest-jasmine2@26.6.3(ts-node@8.10.2(typescript@4.9.5)): dependencies: '@babel/traverse': 7.24.7 '@jest/environment': 26.6.2 @@ -46262,7 +46445,7 @@ snapshots: jest-each: 26.6.2 jest-matcher-utils: 26.6.2 jest-message-util: 26.6.2 - jest-runtime: 26.6.3 + jest-runtime: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-snapshot: 26.6.2 jest-util: 26.6.2 pretty-format: 26.6.2 @@ -46298,7 +46481,7 @@ snapshots: jest-matcher-utils@28.1.3: dependencies: - chalk: 4.1.0 + chalk: 4.1.2 jest-diff: 28.1.3 jest-get-type: 28.0.2 pretty-format: 28.1.3 @@ -46327,7 +46510,7 @@ snapshots: '@babel/code-frame': 7.24.7 '@jest/types': 28.1.3 '@types/stack-utils': 2.0.3 - chalk: 4.1.0 + chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.7 pretty-format: 28.1.3 @@ -46412,11 +46595,11 @@ snapshots: jest-resolve@28.1.1: dependencies: - chalk: 4.1.0 + chalk: 4.1.2 graceful-fs: 4.2.11 jest-haste-map: 28.1.3 jest-pnp-resolver: 1.2.3(jest-resolve@28.1.1) - jest-util: 28.1.1 + jest-util: 28.1.3 jest-validate: 28.1.3 resolve: 1.22.8 resolve.exports: 1.1.0 @@ -46424,7 +46607,7 @@ snapshots: jest-resolve@28.1.3: dependencies: - chalk: 4.1.0 + chalk: 4.1.2 graceful-fs: 4.2.11 jest-haste-map: 28.1.3 jest-pnp-resolver: 1.2.3(jest-resolve@28.1.3) @@ -46446,9 +46629,7 @@ snapshots: resolve.exports: 2.0.2 slash: 3.0.0 - /jest-runner@26.6.3: - resolution: {integrity: sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==} - engines: {node: '>= 10.14.2'} + jest-runner@26.6.3(ts-node@8.10.2(typescript@4.9.5)): dependencies: '@jest/console': 26.6.2 '@jest/environment': 26.6.2 @@ -46459,13 +46640,13 @@ snapshots: emittery: 0.7.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 26.6.3 + jest-config: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-docblock: 26.0.0 jest-haste-map: 26.6.2 jest-leak-detector: 26.6.2 jest-message-util: 26.6.2 jest-resolve: 26.6.2 - jest-runtime: 26.6.3 + jest-runtime: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-util: 26.6.2 jest-worker: 26.6.2 source-map-support: 0.5.21 @@ -46485,7 +46666,7 @@ snapshots: '@jest/transform': 28.1.3 '@jest/types': 28.1.3 '@types/node': 13.13.52 - chalk: 4.1.0 + chalk: 4.1.2 emittery: 0.10.2 graceful-fs: 4.2.11 jest-docblock: 28.1.1 @@ -46529,10 +46710,7 @@ snapshots: transitivePeerDependencies: - supports-color - /jest-runtime@26.6.3: - resolution: {integrity: sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==} - engines: {node: '>= 10.14.2'} - hasBin: true + jest-runtime@26.6.3(ts-node@8.10.2(typescript@4.9.5)): dependencies: '@jest/console': 26.6.2 '@jest/environment': 26.6.2 @@ -46549,7 +46727,7 @@ snapshots: exit: 0.1.2 glob: 7.2.3 graceful-fs: 4.2.11 - jest-config: 26.6.3 + jest-config: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-haste-map: 26.6.2 jest-message-util: 26.6.2 jest-mock: 26.6.2 @@ -46577,7 +46755,7 @@ snapshots: '@jest/test-result': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 - chalk: 4.1.0 + chalk: 4.1.2 cjs-module-lexer: 1.3.1 collect-v8-coverage: 1.0.2 execa: 5.1.1 @@ -46661,7 +46839,7 @@ snapshots: '@types/babel__traverse': 7.20.6 '@types/prettier': 2.7.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7) - chalk: 4.1.0 + chalk: 4.1.2 expect: 28.1.3 graceful-fs: 4.2.11 jest-diff: 28.1.3 @@ -46714,7 +46892,7 @@ snapshots: dependencies: '@jest/types': 28.1.3 '@types/node': 13.13.52 - chalk: 4.1.0 + chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 picomatch: 2.3.1 @@ -46723,7 +46901,7 @@ snapshots: dependencies: '@jest/types': 28.1.3 '@types/node': 13.13.52 - chalk: 4.1.0 + chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 picomatch: 2.3.1 @@ -46750,7 +46928,7 @@ snapshots: dependencies: '@jest/types': 28.1.3 camelcase: 6.3.0 - chalk: 4.1.0 + chalk: 4.1.2 jest-get-type: 28.0.2 leven: 3.1.0 pretty-format: 28.1.3 @@ -46780,7 +46958,7 @@ snapshots: '@jest/types': 28.1.3 '@types/node': 13.13.52 ansi-escapes: 4.3.2 - chalk: 4.1.0 + chalk: 4.1.2 emittery: 0.10.2 jest-util: 28.1.3 string-length: 4.0.2 @@ -46821,14 +46999,11 @@ snapshots: merge-stream: 2.0.0 supports-color: 8.1.1 - /jest@26.6.3: - resolution: {integrity: sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==} - engines: {node: '>= 10.14.2'} - hasBin: true + jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)): dependencies: - '@jest/core': 26.6.3 + '@jest/core': 26.6.3(ts-node@8.10.2(typescript@4.9.5)) import-local: 3.1.0 - jest-cli: 26.6.3 + jest-cli: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) transitivePeerDependencies: - bufferutil - canvas @@ -46836,15 +47011,7 @@ snapshots: - ts-node - utf-8-validate - /jest@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): - resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)): dependencies: '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) '@jest/types': 29.6.3 @@ -48553,7 +48720,7 @@ snapshots: ora@5.4.1: dependencies: bl: 4.1.0 - chalk: 4.1.1 + chalk: 4.1.2 cli-cursor: 3.1.0 cli-spinners: 2.9.2 is-interactive: 1.0.0 @@ -49002,24 +49169,13 @@ snapshots: cosmiconfig: 5.2.1 import-cwd: 2.1.0 - /postcss-load-config@3.1.4(postcss@8.4.38): - resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} - engines: {node: '>= 10'} - peerDependencies: - postcss: '>=8.0.9' - ts-node: '>=9.0.0' - peerDependenciesMeta: - postcss: - optional: true - ts-node: - optional: true + postcss-load-config@3.1.4(postcss@8.4.38)(ts-node@8.10.2(typescript@4.9.5)): dependencies: lilconfig: 2.1.0 - postcss: 8.4.38 yaml: 1.10.2 optionalDependencies: postcss: 8.4.38 - ts-node: 10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5) + ts-node: 8.10.2(typescript@4.9.5) postcss-loader@3.0.0: dependencies: @@ -49761,11 +49917,7 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - /react-popper-tooltip@3.1.1: - resolution: {integrity: sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==} - peerDependencies: - react: ^16.6.0 || ^17.0.0 - react-dom: ^16.6.0 || ^17.0.0 + react-popper-tooltip@3.1.1: dependencies: '@babel/runtime': 7.24.7 '@popperjs/core': 2.11.8 @@ -50418,20 +50570,16 @@ snapshots: '@rollup/plugin-inject': 5.0.5(rollup@4.18.0) rollup: 4.18.0 - /rollup-plugin-postcss@4.0.2(postcss@8.4.38): - resolution: {integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==} - engines: {node: '>=10'} - peerDependencies: - postcss: 8.x + rollup-plugin-postcss@4.0.2(postcss@8.4.38)(ts-node@8.10.2(typescript@4.9.5)): dependencies: - chalk: 4.1.0 + chalk: 4.1.2 concat-with-sourcemaps: 1.1.0 cssnano: 5.1.15(postcss@8.4.38) import-cwd: 3.0.0 p-queue: 6.6.2 pify: 5.0.0 postcss: 8.4.38 - postcss-load-config: 3.1.4(postcss@8.4.38) + postcss-load-config: 3.1.4(postcss@8.4.38)(ts-node@8.10.2(typescript@4.9.5)) postcss-modules: 4.3.1(postcss@8.4.38) promise.series: 0.2.0 resolve: 1.22.8 @@ -51765,12 +51913,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@26.5.6(jest@26.6.3(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5): + ts-jest@26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5): dependencies: bs-logger: 0.2.6 buffer-from: 1.1.2 fast-json-stable-stringify: 2.1.0 - jest: 26.6.3 + jest: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-util: 26.6.2 json5: 2.2.3 lodash: 4.17.21 @@ -51780,24 +51928,6 @@ snapshots: typescript: 4.9.5 yargs-parser: 20.2.9 - ts-jest@29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(typescript@4.9.5)))(typescript@4.9.5): - dependencies: - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) - jest-util: 29.7.0 - json5: 2.2.3 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.6.2 - typescript: 4.9.5 - yargs-parser: 21.1.1 - optionalDependencies: - '@babel/core': 7.24.7 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - babel-jest: 26.6.3(@babel/core@7.24.7) - ts-jest@29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5): dependencies: bs-logger: 0.2.6 @@ -51827,7 +51957,7 @@ snapshots: ts-loader@9.5.1(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: - chalk: 4.1.0 + chalk: 4.1.2 enhanced-resolve: 5.17.0 micromatch: 4.0.7 semver: 7.6.2 @@ -51855,12 +51985,7 @@ snapshots: optionalDependencies: '@swc/core': 1.6.5(@swc/helpers@0.3.17) - /ts-node@8.10.2(typescript@4.9.5): - resolution: {integrity: sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA==} - engines: {node: '>=6.0.0'} - hasBin: true - peerDependencies: - typescript: '>=2.7' + ts-node@8.10.2(typescript@4.9.5): dependencies: arg: 4.1.3 diff: 4.0.2 @@ -52289,9 +52414,7 @@ snapshots: uuid@8.3.2: {} - /v8-compile-cache-lib@3.0.1: - resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - dev: true + v8-compile-cache-lib@3.0.1: {} v8-compile-cache@2.3.0: {} @@ -52973,13 +53096,4 @@ snapshots: zwitch@1.0.5: {} - github.com/jeradrutnam/eslint-plugin-header/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3(eslint@7.32.0): - resolution: {tarball: https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3} - id: github.com/jeradrutnam/eslint-plugin-header/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3 - name: eslint-plugin-header - version: 3.2.0 - peerDependencies: - eslint: '>=7.7.0' - dependencies: - eslint: 7.32.0 - dev: true + zwitch@2.0.4: {} From 00a28e0939df8153a33e237e3ef1abe88d5f51b4 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Mon, 8 Jul 2024 17:24:07 +0530 Subject: [PATCH 050/114] add template providers --- .../use-get-application-template-metadata.ts | 59 +++++++++ .../api/use-get-application-template.ts | 58 +++++++++ .../configs/endpoints.ts | 34 +++++ .../context/application-template-context.tsx | 47 +++++++ .../application-template-metadata-context.tsx | 47 +++++++ .../use-application-template-metadata.ts | 44 +++++++ .../hooks/use-application-template.ts | 41 ++++++ .../models/endpoints.ts | 31 +++++ .../models/templates.ts | 88 +++++++++++++ .../package.json | 2 + ...application-template-metadata-provider.tsx | 101 +++++++++++++++ .../application-template-provider.tsx | 118 ++++++++++++++++++ 12 files changed, 670 insertions(+) create mode 100644 features/admin.application-templates.v1/api/use-get-application-template-metadata.ts create mode 100644 features/admin.application-templates.v1/api/use-get-application-template.ts create mode 100644 features/admin.application-templates.v1/configs/endpoints.ts create mode 100644 features/admin.application-templates.v1/context/application-template-context.tsx create mode 100644 features/admin.application-templates.v1/context/application-template-metadata-context.tsx create mode 100644 features/admin.application-templates.v1/hooks/use-application-template-metadata.ts create mode 100644 features/admin.application-templates.v1/hooks/use-application-template.ts create mode 100644 features/admin.application-templates.v1/models/endpoints.ts create mode 100644 features/admin.application-templates.v1/provider/application-template-metadata-provider.tsx create mode 100644 features/admin.application-templates.v1/provider/application-template-provider.tsx diff --git a/features/admin.application-templates.v1/api/use-get-application-template-metadata.ts b/features/admin.application-templates.v1/api/use-get-application-template-metadata.ts new file mode 100644 index 00000000000..e0d70e9d35c --- /dev/null +++ b/features/admin.application-templates.v1/api/use-get-application-template-metadata.ts @@ -0,0 +1,59 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import useRequest, { + RequestConfigInterface, + RequestErrorInterface, + RequestResultInterface +} from "@wso2is/admin.core.v1/hooks/use-request"; +import { store } from "@wso2is/admin.core.v1/store"; +import { HttpMethods } from "@wso2is/core/models"; +import { ApplicationTemplateMetadataInterface } from "../models/templates"; + +/** + * Hook to fetches the application template metadata from the API. + * + * @param id - The id of the application template. + * @returns A promise containing the response. + */ +const useGetApplicationTemplateMetadata = ( + id: string, + shouldFetch: boolean = true +): RequestResultInterface => { + + const requestConfig: RequestConfigInterface = { + headers: { + Accept: "application/json", + "Content-Type": "application/json" + }, + method: HttpMethods.GET, + url: store?.getState()?.config?.endpoints?.applicationTemplateMetadata?.replace("{{id}}", id) + }; + + const { data, error, isValidating, mutate } = useRequest(shouldFetch ? requestConfig : null); + + return { + data, + error, + isLoading: !error && !data, + isValidating, + mutate + }; +}; + +export default useGetApplicationTemplateMetadata; diff --git a/features/admin.application-templates.v1/api/use-get-application-template.ts b/features/admin.application-templates.v1/api/use-get-application-template.ts new file mode 100644 index 00000000000..43e60409a46 --- /dev/null +++ b/features/admin.application-templates.v1/api/use-get-application-template.ts @@ -0,0 +1,58 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import useRequest, { + RequestConfigInterface, + RequestErrorInterface, + RequestResultInterface +} from "@wso2is/admin.core.v1/hooks/use-request"; +import { store } from "@wso2is/admin.core.v1/store"; +import { HttpMethods } from "@wso2is/core/models"; +import { ApplicationTemplateInterface } from "../models/templates"; + +/** + * Hook to fetch the application template details from the API. + * + * @param id - The id of the application template. + * @returns A promise containing the response. + */ +const useGetApplicationTemplate = ( + id: string, + shouldFetch: boolean = true +): RequestResultInterface => { + const requestConfig: RequestConfigInterface = { + headers: { + Accept: "application/json", + "Content-Type": "application/json" + }, + method: HttpMethods.GET, + url: store?.getState()?.config?.endpoints?.applicationTemplate?.replace("{{id}}", id) + }; + + const { data, error, isValidating, mutate } = useRequest(shouldFetch ? requestConfig : null); + + return { + data, + error, + isLoading: !error && !data, + isValidating, + mutate + }; +}; + +export default useGetApplicationTemplate; diff --git a/features/admin.application-templates.v1/configs/endpoints.ts b/features/admin.application-templates.v1/configs/endpoints.ts new file mode 100644 index 00000000000..8ee17a9cdd7 --- /dev/null +++ b/features/admin.application-templates.v1/configs/endpoints.ts @@ -0,0 +1,34 @@ +/** + * Copyright (c) 2020-2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ApplicationsTemplatesEndpointsInterface } from "../models/endpoints"; + +/** + * Get the resource endpoints for the Application Templates Management feature. + * + * @param serverHost - Server Host. + * @returns The resource endpoints for the Application Templates Management feature. + */ +export const getApplicationTemplatesResourcesEndpoints = ( + serverHost: string +): ApplicationsTemplatesEndpointsInterface => { + return { + applicationTemplate: `${serverHost}/api/server/v1/extensions/applications/{{id}}/template`, + applicationTemplateMetadata: `${serverHost}/api/server/v1/extensions/applications/{{id}}/metadata` + }; +}; diff --git a/features/admin.application-templates.v1/context/application-template-context.tsx b/features/admin.application-templates.v1/context/application-template-context.tsx new file mode 100644 index 00000000000..988d6cc4327 --- /dev/null +++ b/features/admin.application-templates.v1/context/application-template-context.tsx @@ -0,0 +1,47 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Context, createContext } from "react"; +import { ApplicationTemplateInterface } from "../models/templates"; + +/** + * Props interface for ApplicationTemplateContext. + */ +export interface ApplicationTemplateContextProps { + /** + * Application Template. + */ + template: ApplicationTemplateInterface; + /** + * Flag to determine if the application template is being loaded. + */ + isTemplateRequestLoading: boolean; +} + +/** + * Context object for managing application template. + */ +const ApplicationTemplateContext: Context = + createContext(null); + +/** + * Display name for the ApplicationTemplateContext. + */ +ApplicationTemplateContext.displayName = "ApplicationTemplateContext"; + +export default ApplicationTemplateContext; diff --git a/features/admin.application-templates.v1/context/application-template-metadata-context.tsx b/features/admin.application-templates.v1/context/application-template-metadata-context.tsx new file mode 100644 index 00000000000..f41de30bb9f --- /dev/null +++ b/features/admin.application-templates.v1/context/application-template-metadata-context.tsx @@ -0,0 +1,47 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { Context, createContext } from "react"; +import { ApplicationTemplateMetadataInterface } from "../models/templates"; + +/** + * Props interface for ApplicationTemplateMetadataContext. + */ +export interface ApplicationTemplateMetadataContextProps { + /** + * Application Template Metadata. + */ + templateMetadata: ApplicationTemplateMetadataInterface; + /** + * Flag to determine if the application template metadata is being loaded. + */ + isTemplateMetadataRequestLoading: boolean; +} + +/** + * Context object for managing application template metadata. + */ +const ApplicationTemplateMetadataContext: Context = + createContext(null); + +/** + * Display name for the ApplicationTemplateMetadataContext. + */ +ApplicationTemplateMetadataContext.displayName = "ApplicationTemplateMetadataContext"; + +export default ApplicationTemplateMetadataContext; diff --git a/features/admin.application-templates.v1/hooks/use-application-template-metadata.ts b/features/admin.application-templates.v1/hooks/use-application-template-metadata.ts new file mode 100644 index 00000000000..77435365c16 --- /dev/null +++ b/features/admin.application-templates.v1/hooks/use-application-template-metadata.ts @@ -0,0 +1,44 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { useContext } from "react"; +import ApplicationTemplateMetadataContext, { + ApplicationTemplateMetadataContextProps +} from "../context/application-template-metadata-context"; + +/** + * Interface for the return type of the `useApplicationTemplateMetadata` hook. + */ +export type UseApplicationTemplateMetadataInterface = ApplicationTemplateMetadataContextProps; + +/** + * Hook that provides access to the application template metadata context. + * @returns An object containing the application template metadata. + */ +const useApplicationTemplateMetadata = (): UseApplicationTemplateMetadataInterface => { + const context: ApplicationTemplateMetadataContextProps = useContext(ApplicationTemplateMetadataContext); + + if (context === undefined) { + throw new Error( + "useApplicationTemplateMetadata hook must be used within a ApplicationTemplateMetadataProvider"); + } + + return context; +}; + +export default useApplicationTemplateMetadata; diff --git a/features/admin.application-templates.v1/hooks/use-application-template.ts b/features/admin.application-templates.v1/hooks/use-application-template.ts new file mode 100644 index 00000000000..f8d070b8bea --- /dev/null +++ b/features/admin.application-templates.v1/hooks/use-application-template.ts @@ -0,0 +1,41 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { useContext } from "react"; +import ApplicationTemplateContext, { ApplicationTemplateContextProps } from "../context/application-template-context"; + +/** + * Interface for the return type of the `useApplicationTemplate` hook. + */ +export type UseApplicationTemplateInterface = ApplicationTemplateContextProps; + +/** + * Hook that provides access to the application template context. + * @returns An object containing the application template data. + */ +const useApplicationTemplate = (): UseApplicationTemplateInterface => { + const context: ApplicationTemplateContextProps = useContext(ApplicationTemplateContext); + + if (context === undefined) { + throw new Error("useApplicationTemplate hook must be used within a ApplicationTemplateProvider"); + } + + return context; +}; + +export default useApplicationTemplate; diff --git a/features/admin.application-templates.v1/models/endpoints.ts b/features/admin.application-templates.v1/models/endpoints.ts new file mode 100644 index 00000000000..3bddeddeb8f --- /dev/null +++ b/features/admin.application-templates.v1/models/endpoints.ts @@ -0,0 +1,31 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Interface for the Application Templates Management feature resource endpoints. + */ +export interface ApplicationsTemplatesEndpointsInterface { + /** + * Endpoint to get the application template metadata. + */ + applicationTemplateMetadata: string; + /** + * Endpoint to get the application template. + */ + applicationTemplate: string; +} diff --git a/features/admin.application-templates.v1/models/templates.ts b/features/admin.application-templates.v1/models/templates.ts index 86baaf3c7e3..4844769cd04 100644 --- a/features/admin.application-templates.v1/models/templates.ts +++ b/features/admin.application-templates.v1/models/templates.ts @@ -16,6 +16,20 @@ * under the License. */ +import { MainApplicationInterface } from "@wso2is/admin.applications.v1/models"; +import { DynamicFormInterface } from "@wso2is/admin.template-core.v1/models/dynamic-fields"; +import { ExtensionTemplateCommonInterface } from "@wso2is/admin.template-core.v1/models/templates"; + +/** + * Interface for the application template. + */ +export interface ApplicationTemplateInterface extends ExtensionTemplateCommonInterface { + /** + * Create form payload parameters. + */ + payload: MainApplicationInterface; +} + /** * Supported technology metadata interface. */ @@ -29,3 +43,77 @@ export interface SupportedTechnologyMetadataInterface { */ logo?: string; } + +/** + * Interface for the application template metadata. + */ +export interface ApplicationTemplateMetadataInterface { + /** + * Application creation related metadata. + */ + create?: { + /** + * Dynamic input fields should be rendered in the application create wizard. + */ + form?: DynamicFormInterface; + /** + * Indicates whether the application is sharable with sub orgs. + */ + isApplicationSharable?: boolean; + /** + * Application creation guide metadata. + */ + guide?: string[]; + } + /** + * Application editing section related metadata. + */ + edit?: { + /** + * The metadata for tabs needs to be rendered on the edit page. + */ + tabs: ApplicationEditTabMetadataInterface[], + /** + * Tab id of the default active tab. + */ + defaultActiveTabId?: string; + } +} + +/** + * Possible Content Types for application editing tabs. + */ +export enum ApplicationEditTabContentTypes { + FORM = "form", + GUIDE = "guide" +} + +/** + * Interface to generate a tab in the application editing section. + */ +export interface ApplicationEditTabMetadataInterface { + /** + * Unique identifier for the tab. + */ + id: string; + /** + * Display name of the tab. + */ + displayName?: string; + /** + * Content Types for current tab. + */ + contentType?: ApplicationEditTabContentTypes; + /** + * Dynamic input fields which should be rendered in the current tab. + */ + forms?: DynamicFormInterface[]; + /** + * Flag to determine if a single update button is sufficient when multiple forms are present. + */ + singleForm?: boolean; + /** + * Guide content for application editing section. + */ + guide?: string; +} diff --git a/features/admin.application-templates.v1/package.json b/features/admin.application-templates.v1/package.json index 693d4b7a329..78dcca5f3d2 100644 --- a/features/admin.application-templates.v1/package.json +++ b/features/admin.application-templates.v1/package.json @@ -6,6 +6,8 @@ "author": "WSO2", "license": "Apache-2.0", "dependencies": { + "@wso2is/admin.applications.v1": "^2.21.11", + "@wso2is/admin.core.v1": "^2.21.11", "@wso2is/admin.template-core.v1": "^1.0.0" }, "devDependencies": { diff --git a/features/admin.application-templates.v1/provider/application-template-metadata-provider.tsx b/features/admin.application-templates.v1/provider/application-template-metadata-provider.tsx new file mode 100644 index 00000000000..5ffbe6bd9cd --- /dev/null +++ b/features/admin.application-templates.v1/provider/application-template-metadata-provider.tsx @@ -0,0 +1,101 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ExtensionTemplateListInterface } from "@wso2is/admin.template-core.v1/models/templates"; +import { AlertLevels } from "@wso2is/core/models"; +import { addAlert } from "@wso2is/core/store"; +import React, { FunctionComponent, PropsWithChildren, ReactElement, useEffect } from "react"; +import { useTranslation } from "react-i18next"; +import { useDispatch } from "react-redux"; +import { Dispatch } from "redux"; +import useGetApplicationTemplateMetadata from "../api/use-get-application-template-metadata"; +import ApplicationTemplateMetadataContext from "../context/application-template-metadata-context"; + +/** + * Props interface for the Application template metadata provider. + */ +export interface ApplicationTemplateMetadataProviderProps { + /** + * Listing data of the selected template. + */ + template: ExtensionTemplateListInterface +} + +/** + * Application template metadata provider. + * + * @param props - Props for the provider. + * @returns Application template metadata provider. + */ +const ApplicationTemplateMetadataProvider: FunctionComponent< + PropsWithChildren +> = (props: PropsWithChildren): ReactElement => { + const { children, template } = props; + + const { t } = useTranslation(); + + const dispatch: Dispatch = useDispatch(); + + const { + data: applicationTemplateMetadata, + isLoading: isApplicationTemplateMetadataFetchRequestLoading, + error: applicationTemplateMetadataFetchRequestError + } = useGetApplicationTemplateMetadata(template?.id, !!template?.id); + + /** + * Handle errors that occur during the application template meta data fetch request. + */ + useEffect(() => { + if (!applicationTemplateMetadataFetchRequestError) { + return; + } + + if (applicationTemplateMetadataFetchRequestError?.response?.data?.description) { + dispatch(addAlert({ + description: applicationTemplateMetadataFetchRequestError?.response?.data?.description, + level: AlertLevels.ERROR, + message: t("applicationTemplates:notifications.fetchTemplateMetadata.error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applicationTemplates:notifications.fetchTemplateMetadata" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applicationTemplates:notifications." + + "fetchTemplateMetadata.genericError.message") + })); + }, [ applicationTemplateMetadataFetchRequestError ]); + + return ( + + { children } + + ); +}; + +export default ApplicationTemplateMetadataProvider; diff --git a/features/admin.application-templates.v1/provider/application-template-provider.tsx b/features/admin.application-templates.v1/provider/application-template-provider.tsx new file mode 100644 index 00000000000..b4414f97c2c --- /dev/null +++ b/features/admin.application-templates.v1/provider/application-template-provider.tsx @@ -0,0 +1,118 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ExtensionTemplateListInterface } from "@wso2is/admin.template-core.v1/models/templates"; +import { AlertLevels } from "@wso2is/core/models"; +import { addAlert } from "@wso2is/core/store"; +import React, { FunctionComponent, PropsWithChildren, ReactElement, useEffect, useMemo } from "react"; +import { useTranslation } from "react-i18next"; +import { useDispatch } from "react-redux"; +import { Dispatch } from "redux"; +import useGetApplicationTemplate from "../api/use-get-application-template"; +import ApplicationTemplateContext from "../context/application-template-context"; +import { ApplicationTemplateInterface } from "../models/templates"; + +/** + * Props interface for the Application template provider. + */ +export interface ApplicationTemplateProviderProps { + /** + * Listing data of the selected template. + */ + template: ExtensionTemplateListInterface +} + +/** + * Application template provider. + * + * @param props - Props for the provider. + * @returns Application template provider. + */ +const ApplicationTemplateProvider: FunctionComponent< + PropsWithChildren +> = (props: PropsWithChildren): ReactElement => { + const { children, template } = props; + + const { t } = useTranslation(); + + const dispatch: Dispatch = useDispatch(); + + const { + data: applicationTemplate, + isLoading: isApplicationTemplateFetchRequestLoading, + error: applicationTemplateFetchRequestError + } = useGetApplicationTemplate(template?.id, !!template?.id); + + /** + * Handle errors that occur during the application template data fetch request. + */ + useEffect(() => { + if (!applicationTemplateFetchRequestError) { + return; + } + + if (applicationTemplateFetchRequestError?.response?.data?.description) { + dispatch(addAlert({ + description: applicationTemplateFetchRequestError?.response?.data?.description, + level: AlertLevels.ERROR, + message: t("applicationTemplates:notifications.fetchTemplate.error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applicationTemplates:notifications.fetchTemplate" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applicationTemplates:notifications." + + "fetchTemplate.genericError.message") + })); + }, [ applicationTemplateFetchRequestError ]); + + /** + * Memoized function to combine template data with its listing data. + */ + const templateData: ApplicationTemplateInterface = useMemo(() => { + if (!applicationTemplate || !template) { + return null; + } + + const { self: _self, customAttributes: _customAttributes, ...rest } = template; + + return { + ...rest, + ...applicationTemplate + }; + }, [ applicationTemplate, template ]); + + return ( + + { children } + + ); +}; + +export default ApplicationTemplateProvider; From 391d2b054a9256cb85954a53d135af5d56259fe4 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Tue, 9 Jul 2024 10:10:12 +0530 Subject: [PATCH 051/114] refactor the code to use template providers --- .../use-get-application-template-metadata.ts | 2 +- .../api/use-get-application-template.ts | 2 +- ...application-template-metadata-provider.tsx | 3 +- .../application-template-provider.tsx | 2 +- .../use-get-application-template-metadata.ts | 61 -- .../api/use-get-application-template.ts | 58 -- .../application-creation-adapter.tsx | 1 - .../application-create-wizard.tsx | 84 +-- ...application-inbound-protocol-edit-form.tsx | 36 +- .../application-sync-wizard.scss | 25 - .../dynamic-forms/application-sync-wizard.tsx | 594 ------------------ .../components/edit-application.tsx | 48 +- .../configs/endpoints.ts | 2 - .../admin.applications.v1/models/endpoints.ts | 8 - .../pages/application-edit.tsx | 120 +--- .../pages/application-template.tsx | 19 +- .../pages/applications.tsx | 22 - features/admin.core.v1/configs/app.ts | 2 + features/admin.core.v1/models/config.ts | 4 +- .../models/dynamic-fields.ts | 183 ++++++ .../namespaces/application-templates-ns.ts | 22 + .../en-US/portals/application-templates.ts | 22 + pnpm-lock.yaml | 6 + 23 files changed, 310 insertions(+), 1016 deletions(-) delete mode 100644 features/admin.applications.v1/api/use-get-application-template-metadata.ts delete mode 100644 features/admin.applications.v1/api/use-get-application-template.ts delete mode 100644 features/admin.applications.v1/components/dynamic-forms/application-sync-wizard.scss delete mode 100644 features/admin.applications.v1/components/dynamic-forms/application-sync-wizard.tsx create mode 100644 features/admin.template-core.v1/models/dynamic-fields.ts diff --git a/features/admin.application-templates.v1/api/use-get-application-template-metadata.ts b/features/admin.application-templates.v1/api/use-get-application-template-metadata.ts index e0d70e9d35c..b69941efc35 100644 --- a/features/admin.application-templates.v1/api/use-get-application-template-metadata.ts +++ b/features/admin.application-templates.v1/api/use-get-application-template-metadata.ts @@ -50,7 +50,7 @@ const useGetApplicationTemplateMetadata = { - if (!applicationTemplateMetadataFetchRequestError) { + if (!applicationTemplateMetadataFetchRequestError + || applicationTemplateMetadataFetchRequestError?.response?.status === 404) { return; } diff --git a/features/admin.application-templates.v1/provider/application-template-provider.tsx b/features/admin.application-templates.v1/provider/application-template-provider.tsx index b4414f97c2c..edb8567b4a7 100644 --- a/features/admin.application-templates.v1/provider/application-template-provider.tsx +++ b/features/admin.application-templates.v1/provider/application-template-provider.tsx @@ -62,7 +62,7 @@ const ApplicationTemplateProvider: FunctionComponent< * Handle errors that occur during the application template data fetch request. */ useEffect(() => { - if (!applicationTemplateFetchRequestError) { + if (!applicationTemplateFetchRequestError || applicationTemplateFetchRequestError?.response?.status === 404) { return; } diff --git a/features/admin.applications.v1/api/use-get-application-template-metadata.ts b/features/admin.applications.v1/api/use-get-application-template-metadata.ts deleted file mode 100644 index 3ebd92d5631..00000000000 --- a/features/admin.applications.v1/api/use-get-application-template-metadata.ts +++ /dev/null @@ -1,61 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import useRequest, { - RequestConfigInterface, - RequestErrorInterface, - RequestResultInterface -} from "@wso2is/admin.core.v1/hooks/use-request"; -import { store } from "@wso2is/admin.core.v1/store"; -import { HttpMethods } from "@wso2is/core/models"; -import { - ApplicationTemplateMetadataInterface -} from "../models/application-templates"; - -/** - * Hook to fetches the application template metadata from the API. - * - * @param id - The id of the application template. - * @returns A promise containing the response. - */ -const useGetApplicationTemplateMetadata = ( - id: string, - shouldFetch: boolean = true -): RequestResultInterface => { - - const requestConfig: RequestConfigInterface = { - headers: { - Accept: "application/json", - "Content-Type": "application/json" - }, - method: HttpMethods.GET, - url: store?.getState()?.config?.endpoints?.applicationTemplateMetadata?.replace("{{id}}", id) - }; - - const { data, error, isValidating, mutate } = useRequest(shouldFetch ? requestConfig : null); - - return { - data, - error, - isLoading: !error && !data, - isValidating, - mutate - }; -}; - -export default useGetApplicationTemplateMetadata; diff --git a/features/admin.applications.v1/api/use-get-application-template.ts b/features/admin.applications.v1/api/use-get-application-template.ts deleted file mode 100644 index 951ed4eff1c..00000000000 --- a/features/admin.applications.v1/api/use-get-application-template.ts +++ /dev/null @@ -1,58 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import useRequest, { - RequestConfigInterface, - RequestErrorInterface, - RequestResultInterface -} from "@wso2is/admin.core.v1/hooks/use-request"; -import { store } from "@wso2is/admin.core.v1/store"; -import { HttpMethods } from "@wso2is/core/models"; -import { ApplicationTemplateInterface } from "../models/application-templates"; - -/** - * Hook to fetch the application template details from the API. - * - * @param id - The id of the application template. - * @returns A promise containing the response. - */ -const useGetApplicationTemplate = ( - id: string, - shouldFetch: boolean = true -): RequestResultInterface => { - const requestConfig: RequestConfigInterface = { - headers: { - Accept: "application/json", - "Content-Type": "application/json" - }, - method: HttpMethods.GET, - url: store?.getState()?.config?.endpoints?.applicationTemplate?.replace("{{id}}", id) - }; - - const { data, error, isValidating, mutate } = useRequest(shouldFetch ? requestConfig : null); - - return { - data, - error, - isLoading: !error && !data, - isValidating, - mutate - }; -}; - -export default useGetApplicationTemplate; diff --git a/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx b/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx index 5c4588c3b6d..eb7eab7b81e 100644 --- a/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx +++ b/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx @@ -118,7 +118,6 @@ const ApplicationCreationAdapter: FunctionComponent ); diff --git a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx b/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx index e254d488365..49cf3ab1bb6 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx +++ b/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx @@ -22,12 +22,14 @@ import Checkbox from "@oxygen-ui/react/Checkbox"; import FormControl from "@oxygen-ui/react/FormControl"; import FormControlLabel from "@oxygen-ui/react/FormControlLabel"; import Typography from "@oxygen-ui/react/Typography"; +import useApplicationTemplate from "@wso2is/admin.application-templates.v1/hooks/use-application-template"; +import useApplicationTemplateMetadata from + "@wso2is/admin.application-templates.v1/hooks/use-application-template-metadata"; import { AppState, TierLimitReachErrorModal } from "@wso2is/admin.core.v1"; import { ModalWithSidePanel } from "@wso2is/admin.core.v1/components/modals/modal-with-side-panel"; import { AppConstants } from "@wso2is/admin.core.v1/constants/app-constants"; import { history } from "@wso2is/admin.core.v1/helpers/history"; import { EventPublisher } from "@wso2is/admin.core.v1/utils/event-publisher"; -import { ExtensionTemplateListInterface } from "@wso2is/admin.template-core.v1/models/templates"; import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; import { FinalForm, FormRenderProps, MutableState, Tools } from "@wso2is/form"; @@ -54,8 +56,6 @@ import { Grid, ModalProps } from "semantic-ui-react"; import { v4 as uuidv4 } from "uuid"; import { ApplicationFormDynamicField } from "./application-form-dynamic-field"; import { createApplication, useApplicationList } from "../../api"; -import useGetApplicationTemplate from "../../api/use-get-application-template"; -import useGetApplicationTemplateMetadata from "../../api/use-get-application-template-metadata"; import { ApplicationManagementConstants } from "../../constants"; import useApplicationSharingEligibility from "../../hooks/use-application-sharing-eligibility"; import useDynamicFieldValidations from "../../hooks/use-dynamic-field-validation"; @@ -69,10 +69,6 @@ import "./application-create-wizard.scss"; * Prop types of the `ApplicationCreateWizard` component. */ export interface ApplicationCreateWizardPropsInterface extends ModalProps, IdentifiableComponentInterface { - /** - * The template to be used for the application creation. - */ - template: ExtensionTemplateListInterface; /** * Callback triggered when closing the application creation wizard. */ @@ -87,18 +83,16 @@ export interface ApplicationCreateWizardPropsInterface extends ModalProps, Ident export const ApplicationCreateWizard: FunctionComponent = ( props: ApplicationCreateWizardPropsInterface ): ReactElement => { - const { ["data-componentid"]: componentId, template, onClose, ...rest } = props; + const { ["data-componentid"]: componentId, onClose, ...rest } = props; const { - data: templateData, - isLoading: isTemplateDataFetchRequestLoading, - error: templateDataFetchRequestError - } = useGetApplicationTemplate(template?.id); + template: templateData, + isTemplateRequestLoading: isTemplateDataFetchRequestLoading + } = useApplicationTemplate(); const { - data: templateMetadata, - isLoading: isTemplateMetadataFetchRequestLoading, - error: templateMetadataFetchRequestError - } = useGetApplicationTemplateMetadata(template?.id); + templateMetadata, + isTemplateMetadataRequestLoading: isTemplateMetadataFetchRequestLoading + } = useApplicationTemplateMetadata(); const isApplicationSharable: boolean = useApplicationSharingEligibility(); const { validate } = useDynamicFieldValidations(); const [ alert, setAlert, notification ] = useWizardAlert(); @@ -224,60 +218,6 @@ export const ApplicationCreateWizard: FunctionComponent { - if (!templateDataFetchRequestError) { - return; - } - - if (templateDataFetchRequestError?.response?.data?.description) { - dispatch(addAlert({ - description: templateDataFetchRequestError?.response?.data?.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.fetchTemplate.error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.fetchTemplate" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications." + - "fetchTemplate.genericError.message") - })); - }, [ templateDataFetchRequestError ]); - - /** - * Handle errors that occur during the application template meta data fetch request. - */ - useEffect(() => { - if (!templateMetadataFetchRequestError) { - return; - } - - if (templateMetadataFetchRequestError?.response?.data?.description) { - dispatch(addAlert({ - description: templateMetadataFetchRequestError?.response?.data?.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.fetchTemplateMetadata.error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.fetchTemplateMetadata" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications." + - "fetchTemplateMetadata.genericError.message") - })); - }, [ templateMetadataFetchRequestError ]); - /** * After the application is created, the user will be redirected to the * edit page using this function. @@ -543,8 +483,8 @@ export const ApplicationCreateWizard: FunctionComponent - { template?.name } - { template?.description } + { templateData?.name } + { templateData?.description } { diff --git a/features/admin.applications.v1/components/dynamic-forms/application-inbound-protocol-edit-form.tsx b/features/admin.applications.v1/components/dynamic-forms/application-inbound-protocol-edit-form.tsx index d553f3b55c2..8f3bda77713 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-inbound-protocol-edit-form.tsx +++ b/features/admin.applications.v1/components/dynamic-forms/application-inbound-protocol-edit-form.tsx @@ -16,6 +16,7 @@ * under the License. */ +import useApplicationTemplate from "@wso2is/admin.application-templates.v1/hooks/use-application-template"; import { AppState } from "@wso2is/admin.core.v1"; import useUIConfig from "@wso2is/admin.core.v1/hooks/use-ui-configs"; import { hasRequiredScopes } from "@wso2is/core/helpers"; @@ -40,7 +41,6 @@ import { Grid } from "semantic-ui-react"; import { ApplicationFormDynamicField } from "./application-form-dynamic-field"; import { updateAuthProtocolConfig } from "../../api"; import useGetApplicationInboundConfigs from "../../api/use-get-application-inbound-configs"; -import useGetApplicationTemplate from "../../api/use-get-application-template"; import { ApplicationInterface, SAML2ConfigurationInterface, @@ -103,10 +103,9 @@ export const ApplicationEditForm: FunctionComponent { - if (!templateDataFetchRequestError) { - return; - } - - if (templateDataFetchRequestError?.response?.data?.description) { - dispatch(addAlert({ - description: templateDataFetchRequestError?.response?.data?.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.fetchTemplate.error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.fetchTemplate" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications." + - "fetchTemplate.genericError.message") - })); - }, [ templateDataFetchRequestError ]); - /** * Handle errors that occur during the application template meta data fetch request. * TODO: Need to change the error message. diff --git a/features/admin.applications.v1/components/dynamic-forms/application-sync-wizard.scss b/features/admin.applications.v1/components/dynamic-forms/application-sync-wizard.scss deleted file mode 100644 index 7835834666f..00000000000 --- a/features/admin.applications.v1/components/dynamic-forms/application-sync-wizard.scss +++ /dev/null @@ -1,25 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - - .application-sync-wizard { - .application-sync-wizard-dynamic-fields { - &:not(:first-child) { - padding-top: 0; - } - } -} diff --git a/features/admin.applications.v1/components/dynamic-forms/application-sync-wizard.tsx b/features/admin.applications.v1/components/dynamic-forms/application-sync-wizard.tsx deleted file mode 100644 index 46628b732a4..00000000000 --- a/features/admin.applications.v1/components/dynamic-forms/application-sync-wizard.tsx +++ /dev/null @@ -1,594 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - - -import { ModalWithSidePanel } from "@wso2is/admin.core.v1/components/modals/modal-with-side-panel"; -import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; -import { addAlert } from "@wso2is/core/store"; -import { FinalForm, FormRenderProps, MutableState, Tools } from "@wso2is/form"; -import { - Heading, - LinkButton, - PrimaryButton -} from "@wso2is/react-components"; -import Ajv, { ErrorObject, ValidateFunction } from "ajv"; -import { AxiosError } from "axios"; -import cloneDeep from "lodash-es/cloneDeep"; -import get from "lodash-es/get"; -import merge from "lodash-es/merge"; -import omit from "lodash-es/omit"; -import set from "lodash-es/set"; -import unset from "lodash-es/unset"; -import React, { FunctionComponent, MouseEvent, ReactElement, useEffect, useMemo, useState } from "react"; -import { useTranslation } from "react-i18next"; -import { useDispatch } from "react-redux"; -import { Dispatch } from "redux"; -import { Grid, ModalProps } from "semantic-ui-react"; -import { ApplicationFormDynamicField } from "./application-form-dynamic-field"; -import { updateApplicationDetails, updateAuthProtocolConfig } from "../../api"; -import { useGetApplication } from "../../api/use-get-application"; -import useGetApplicationInboundConfigs from "../../api/use-get-application-inbound-configs"; -import useGetApplicationTemplate from "../../api/use-get-application-template"; -import useGetApplicationTemplateMetadata from "../../api/use-get-application-template-metadata"; -import useDynamicFieldValidations from "../../hooks/use-dynamic-field-validation"; -import { - ApplicationInterface, - MainApplicationInterface, - SAML2ConfigurationInterface, - SAML2ServiceProviderInterface, - SupportedAuthProtocolTypes -} from "../../models"; -import { DynamicFieldInterface } from "../../models/dynamic-fields"; -import buildCallBackUrlsWithRegExp from "../../utils/build-callback-urls-with-regexp"; -import "./application-sync-wizard.scss"; - -/** - * Prop types of the `ApplicationSyncWizard` component. - */ -export interface ApplicationSyncWizardPropsInterface extends ModalProps, IdentifiableComponentInterface { - /** - * Application id. - */ - applicationId: string; - /** - * Application template id. - */ - applicationTemplateId: string; - /** - * Callback triggered when changing the application outdate status. - */ - onApplicationOutdateStatusChange: (isApplicationOutdated: boolean) => void; - /** - * Flag to determine whether the sync wizard should be opened. - */ - showWizard: boolean; - /** - * Callback triggered when closing the application creation wizard. - */ - onClose: () => void; -} - -/** - * Dynamic application sync wizard component. - * - * @param Props - Props to be injected into the component. - */ -export const ApplicationSyncWizard: FunctionComponent = ( - props: ApplicationSyncWizardPropsInterface -): ReactElement => { - const { - applicationId, - applicationTemplateId, - onApplicationOutdateStatusChange, - showWizard, - onClose, - ["data-componentid"]: componentId, - ...rest - } = props; - - const { validate } = useDynamicFieldValidations(); - - const { t } = useTranslation(); - - const dispatch: Dispatch = useDispatch(); - - const { - data: templateData, - error: templateDataFetchRequestError - } = useGetApplicationTemplate(applicationTemplateId, !!applicationTemplateId); - const { - data: templateMetadata, - error: templateMetadataFetchRequestError - } = useGetApplicationTemplateMetadata(applicationTemplateId, !!applicationTemplateId); - const { - data: application, - mutate: mutateApplicationGetRequest, - error: applicationGetRequestError - } = useGetApplication(applicationId, !!applicationId); - const { - data: SAML2Configurations, - mutate: mutateSAML2ConfigData, - error: SAML2ConfigurationFetchError - } = useGetApplicationInboundConfigs(applicationId, SupportedAuthProtocolTypes.SAML, !!applicationId); - - const [ isSyncing, setIsSyncing ] = useState(false); - - /** - * Handle errors that occur during the application template data fetch request. - */ - useEffect(() => { - if (!templateDataFetchRequestError) { - return; - } - - if (templateDataFetchRequestError?.response?.data?.description) { - dispatch(addAlert({ - description: templateDataFetchRequestError?.response?.data?.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.fetchTemplate.error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.fetchTemplate" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications." + - "fetchTemplate.genericError.message") - })); - }, [ templateDataFetchRequestError ]); - - /** - * Handle errors that occur during the application template meta data fetch request. - */ - useEffect(() => { - if (!templateMetadataFetchRequestError) { - return; - } - - if (templateMetadataFetchRequestError?.response?.data?.description) { - dispatch(addAlert({ - description: templateMetadataFetchRequestError?.response?.data?.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.fetchTemplateMetadata.error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.fetchTemplateMetadata" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications." + - "fetchTemplateMetadata.genericError.message") - })); - }, [ templateMetadataFetchRequestError ]); - - /** - * Handles the application get request error. - */ - useEffect(() => { - if (!applicationGetRequestError) { - return; - } - - if (applicationGetRequestError.response?.data?.description) { - dispatch(addAlert({ - description: applicationGetRequestError.response.data.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.fetchApplication.error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.fetchApplication" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications.fetchApplication.genericError." + - "message") - })); - }, [ applicationGetRequestError ]); - - /** - * Handle errors that occur during the application inbound protocol data fetch request. - */ - useEffect(() => { - if (!SAML2ConfigurationFetchError) { - return; - } - - if (SAML2ConfigurationFetchError?.response?.data?.description) { - dispatch(addAlert({ - description: SAML2ConfigurationFetchError.response.data.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.getInboundProtocolConfig.error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.getInboundProtocolConfig" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications.getInboundProtocolConfig" + - ".genericError.message") - })); - }, [ SAML2ConfigurationFetchError ]); - - const validateSchema: ValidateFunction = useMemo(() => { - if (!templateData?.schema) { - return null; - } - - return new Ajv().compile(templateData?.schema); - }, [ templateData ]); - - const initialValues: MainApplicationInterface = useMemo(() => { - if (!application || !SAML2Configurations) { - return null; - } - - const applicationData: MainApplicationInterface = cloneDeep(application); - - applicationData.inboundProtocolConfiguration = { - saml: { - manualConfiguration: cloneDeep(SAML2Configurations) as SAML2ServiceProviderInterface - } - }; - - return applicationData; - }, [ application, SAML2Configurations ]); - - const applicationOutdateStatus: boolean = useMemo(() => { - let status: boolean = true; - - if (initialValues && validateSchema) { - status = validateSchema(initialValues); - } - - onApplicationOutdateStatusChange(!status); - - return !status; - }, [ initialValues, validateSchema ]); - - const handelSyncResult = (isError: boolean, error?: AxiosError) => { - if (!isError) { - dispatch(addAlert({ - description: t("applications:notifications.syncApplication.success" + - ".description"), - level: AlertLevels.SUCCESS, - message: t("applications:notifications.syncApplication.success.message") - })); - - return; - } - - if (error?.response?.data?.description) { - dispatch(addAlert({ - description: error.response.data.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.syncApplication.error" + - ".message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.syncApplication" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications.syncApplication.genericError" + - ".message") - })); - }; - - const syncOutdatedApplication = (data: Partial) => { - const updateMainApplicationData = ( - data: Partial - ): Promise => { - if (Object.keys(data).length === 0) { - return Promise.resolve(); - } - - return updateApplicationDetails(data); - }; - - if (!data) { - return; - } - - setIsSyncing(true); - - // Moderate Values to match API restrictions. - if (data?.inboundProtocolConfiguration?.oidc?.callbackURLs) { - data.inboundProtocolConfiguration.oidc.callbackURLs = buildCallBackUrlsWithRegExp( - data.inboundProtocolConfiguration.oidc.callbackURLs - ); - } - - const applicationData: Partial = omit(data, [ "inboundProtocolConfiguration" ]); - const applicationInboundProtocolData: SAML2ServiceProviderInterface = merge( - initialValues?.inboundProtocolConfiguration?.saml?.manualConfiguration, - data?.inboundProtocolConfiguration?.saml?.manualConfiguration - ); - - updateMainApplicationData(applicationData) - .then((response: ApplicationInterface) => { - const shouldUpdateInboundProtocol: boolean = - applicationInboundProtocolData && Object.keys(applicationInboundProtocolData).length > 0; - - if (response) { - mutateApplicationGetRequest(); - - if (!shouldUpdateInboundProtocol) { - handelSyncResult(false); - } - } - - if (shouldUpdateInboundProtocol) { - updateAuthProtocolConfig( - applicationId, - { - manualConfiguration: applicationInboundProtocolData - }, - SupportedAuthProtocolTypes.SAML - ).then(() => { - handelSyncResult(false); - mutateSAML2ConfigData(); - }).catch((error: AxiosError) => { - handelSyncResult(true, error); - }); - } - }) - .catch((error: AxiosError) => { - handelSyncResult(true, error); - }) - .finally(() => { - setIsSyncing(false); - onClose(); - }); - }; - - const formData: { - fields: DynamicFieldInterface[], - formInitialData: Partial - } = useMemo(() => { - if (!showWizard - || !applicationOutdateStatus - || !validateSchema?.errors - || !Array.isArray(validateSchema?.errors) - || validateSchema?.errors?.length == 0 - || !templateData?.payload) { - return { - fields: [], - formInitialData: null - }; - } - - const formInitialData: Partial = {}; - const fields: Set = new Set([]); - - validateSchema?.errors?.forEach((error: ErrorObject) => { - let lodashPath: string = ""; - const instancePath: string = error?.instancePath?.substring(1); - const pathKeys: string[] = instancePath?.split("/"); - const value: unknown = pathKeys?.reduce( - (obj: unknown, key: string) => { - let modifiedKey: string = key; - - if (!isNaN(Number(key))) { - modifiedKey = `[${key}]`; - } - - if (lodashPath === "") { - lodashPath += modifiedKey; - } else { - lodashPath += `.${modifiedKey}`; - } - - return obj[key]; - }, - templateData?.payload - ); - - if (value) { - if (typeof value === "string") { - const placeholderRegex: RegExp = /\${[^}]+}/g; - - const matches: string[] = value.match(placeholderRegex) || []; - - matches.forEach((match: string) => fields.add(match.substring(2, match.length - 1))); - } - - set(formInitialData, lodashPath, value); - } - }); - - if (fields?.size == 0) { - syncOutdatedApplication(formInitialData); - - return { - fields: [], - formInitialData: null - }; - } - - return { - fields: templateMetadata?.create?.form?.fields?.filter( - (field: DynamicFieldInterface) => fields.has(field?.name)), - formInitialData - }; - }, [ showWizard ]); - - /** - * Callback function triggered when clicking the form sync button. - * - * @param values - Submission values from the form fields. - */ - const onSubmit = (values: Partial): void => { - const formValues: Partial = cloneDeep(values); - - /** - * Make sure that cleared text fields are set to an empty string. - * Additionally, include the auto-submit properties in the form submission. - */ - formData?.fields?.forEach((field: DynamicFieldInterface) => { - if (field?.meta?.dependentProperties - && Array.isArray(field?.meta?.dependentProperties) - && field?.meta?.dependentProperties?.length > 0) { - const fieldValue: string = get(formValues, field?.name); - - if (typeof fieldValue === "string") { - field.meta.dependentProperties.forEach( - (property: string) => { - const propertyValue: string = get(formValues, property); - - if (propertyValue && typeof propertyValue === "string") { - set(formValues, property, propertyValue.replace(`\${${field?.name}}`, fieldValue)); - } - } - ); - } - } - - if (field?.disable) { - unset(formValues, field?.name); - } - }); - - syncOutdatedApplication(formValues); - }; - - let formSubmit: (e: MouseEvent) => void; - - return ( - 0 && !!formData?.formInitialData } - className="wizard application-sync-wizard" - dimmer="blurring" - closeOnDimmerClick={ false } - closeOnEscape - onClose={ onClose } - data-componentid={ componentId } - { ...rest } - > - - - { templateData?.name } - { templateData?.description } - - - { - , - Partial - >, - { changeValue }: Tools< - Partial, - Partial - > - ) => { - changeValue(state, fieldName, () => fieldVal); - } - } } - validate={ - (formValues: MainApplicationInterface) => - validate(formValues, formData?.fields) - } - render={ ({ form, handleSubmit }: FormRenderProps) => { - formSubmit = handleSubmit; - - return ( -
    - - { formData?.fields?.map( - (field: DynamicFieldInterface) => { - return ( - - - - - - ); - }) - } - -
    - ); - } } - /> - } -
    - - - - - - { t("common:cancel") } - - - - ) => formSubmit(e) } - floated="right" - data-componentid={ `${componentId}-sync-button` } - loading={ isSyncing } - disabled={ isSyncing } - > - { t("common:sync") } - - - - - -
    -
    - ); -}; - -/** - * Default props for the application sync wizard. - */ -ApplicationSyncWizard.defaultProps = { - "data-componentid": "application-sync-wizard" -}; diff --git a/features/admin.applications.v1/components/edit-application.tsx b/features/admin.applications.v1/components/edit-application.tsx index 4c9660a81b6..f74d461547f 100644 --- a/features/admin.applications.v1/components/edit-application.tsx +++ b/features/admin.applications.v1/components/edit-application.tsx @@ -17,6 +17,8 @@ */ import { Show } from "@wso2is/access-control"; +import useApplicationTemplateMetadata from + "@wso2is/admin.application-templates.v1/hooks/use-application-template-metadata"; import { AppState, CORSOriginsListInterface, @@ -30,7 +32,6 @@ import { MyAccountOverview } from "@wso2is/admin.extensions.v1/configs/component import AILoginFlowProvider from "@wso2is/admin.login-flow.ai.v1/providers/ai-login-flow-provider"; import { OrganizationType } from "@wso2is/admin.organizations.v1/constants"; import { useGetCurrentOrganizationType } from "@wso2is/admin.organizations.v1/hooks/use-get-organization-type"; -import { ExtensionTemplateListInterface } from "@wso2is/admin.template-core.v1/models/templates"; import { hasRequiredScopes, isFeatureEnabled } from "@wso2is/core/helpers"; import { AlertLevels, IdentifiableComponentInterface, SBACInterface } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; @@ -66,7 +67,6 @@ import { } from "./settings"; import { Info } from "./settings/info"; import { disableApplication, getInboundProtocolConfig } from "../api"; -import useGetApplicationTemplateMetadata from "../api/use-get-application-template-metadata"; import { ApplicationManagementConstants } from "../constants"; import CustomApplicationTemplate from "../data/application-templates/templates/custom-application/custom-application.json"; @@ -124,13 +124,6 @@ interface EditApplicationPropsInterface extends SBACInterface = onDelete, onUpdate, template, - extensionTemplate, readOnly, urlSearchParams, [ "data-componentid" ]: componentId @@ -173,10 +165,9 @@ export const EditApplication: FunctionComponent = const dispatch: Dispatch = useDispatch(); const { UIConfig } = useUIConfig(); const { - data: extensionTemplateMetadata, - isLoading: isExtensionTemplateMetadataFetchRequestLoading, - error: extensionTemplateMetadataFetchRequestError - } = useGetApplicationTemplateMetadata(extensionTemplate?.id, !!extensionTemplate); + templateMetadata: extensionTemplateMetadata, + isTemplateMetadataRequestLoading: isExtensionTemplateMetadataFetchRequestLoading + } = useApplicationTemplateMetadata(); const availableInboundProtocols: AuthProtocolMetaListItemInterface[] = useSelector((state: AppState) => state.application.meta.inboundProtocols); @@ -223,33 +214,6 @@ export const EditApplication: FunctionComponent = const [ enableStatus, setEnableStatus ] = useState(false); const [ showDisableConfirmationModal, setShowDisableConfirmationModal ] = useState(false); - /** - * Handle errors that occur during the application template meta data fetch request. - */ - useEffect(() => { - if (!extensionTemplateMetadataFetchRequestError) { - return; - } - - if (extensionTemplateMetadataFetchRequestError?.response?.data?.description) { - dispatch(addAlert({ - description: extensionTemplateMetadataFetchRequestError.response.data.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.fetchTemplateMetadata.error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.fetchTemplateMetadata" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications." + - "fetchTemplateMetadata.genericError.message") - })); - }, [ extensionTemplateMetadataFetchRequestError ]); - /** * Called when an application updates. * @@ -1392,7 +1356,7 @@ export const EditApplication: FunctionComponent = ? ( <> = ( const [ callBackIdpName, setcallBackIdpName ] = useState(); const [ callBackRedirect, setcallBackRedirect ] = useState(); - const [ showSyncStatus, setShowSyncStatus ] = useState(false); - const [ showWizard, setShowWizard ] = useState(false); - const { data: application, mutate: mutateApplicationGetRequest, @@ -510,55 +507,6 @@ const ApplicationEditPage: FunctionComponent = ( title={ ( <> { moderatedApplicationData?.name } - { - extensionApplicationTemplate && - extensionApplicationTemplate?.category === - ApplicationTemplateCategories.SSO_INTEGRATION && - showSyncStatus - ? ( - - { - "Your application's essential configurations " - + "may be outdated due to recent changes " - + `by ${extensionApplicationTemplate?.name} or ` - + "updates via the API. Click " - } - setShowWizard(true) } - > - here - - { - " to sync the configurations." - } - ) - } - labelColor="orange" - popupOptions={ - { - hoverable: true - } - } - trigger={ ( - - ) } - /> - ) - : null - } { /*TODO - Application status is not shown until the backend support for disabling is given @link https://github.com/wso2/product-is/issues/11453 { resolveApplicationStatusLabel() }*/ } @@ -639,40 +587,32 @@ const ApplicationEditPage: FunctionComponent = ( ) } > - { - setInboundProtocolList(list); - } } - getConfiguredInboundProtocolConfigs={ (configs: Record) => { - setInboundProtocolConfigs(configs); - } } - readOnly={ resolveReadOnlyState() } - /> - { - extensionApplicationTemplate && - extensionApplicationTemplate?.category === ApplicationTemplateCategories.SSO_INTEGRATION && - ( - setShowSyncStatus(isApplicationOutdated) - } - showWizard={ showWizard } - onClose={ () => setShowWizard(false) } - /> - ) - } + + + { + setInboundProtocolList(list); + } } + getConfiguredInboundProtocolConfigs={ (configs: Record) => { + setInboundProtocolConfigs(configs); + } } + readOnly={ resolveReadOnlyState() } + /> + + ); }; diff --git a/features/admin.applications.v1/pages/application-template.tsx b/features/admin.applications.v1/pages/application-template.tsx index 83909d1aa70..12f63e9b4d3 100755 --- a/features/admin.applications.v1/pages/application-template.tsx +++ b/features/admin.applications.v1/pages/application-template.tsx @@ -16,6 +16,9 @@ * under the License. */ +import ApplicationTemplateMetadataProvider from + "@wso2is/admin.application-templates.v1/provider/application-template-metadata-provider"; +import ApplicationTemplateProvider from "@wso2is/admin.application-templates.v1/provider/application-template-provider"; import { AppConstants, history @@ -84,11 +87,19 @@ const ApplicationTemplateSelectPage: FunctionComponent - setShowWizard(false) } - /> + > + + setShowWizard(false) } + /> + + ); }; diff --git a/features/admin.applications.v1/pages/applications.tsx b/features/admin.applications.v1/pages/applications.tsx index 859a8abcb8e..de4390d2cab 100644 --- a/features/admin.applications.v1/pages/applications.tsx +++ b/features/admin.applications.v1/pages/applications.tsx @@ -21,7 +21,6 @@ import { AdvancedSearchWithBasicFilters, AppConstants, AppState, - ConfigReducerStateInterface, EventPublisher, FeatureConfigInterface, UIConstants, @@ -72,10 +71,7 @@ import { import { useApplicationList, useMyAccountApplicationData } from "../api"; import { useGetApplication } from "../api/use-get-application"; import { ApplicationList } from "../components/application-list"; -import { MinimalAppCreateWizard } from "../components/wizard/minimal-application-create-wizard"; import { ApplicationManagementConstants } from "../constants"; -import CustomApplicationTemplate - from "../data/application-templates/templates/custom-application/custom-application.json"; import { ApplicationAccessTypes, ApplicationListInterface, ApplicationListItemInterface } from "../models"; const APPLICATIONS_LIST_SORTING_OPTIONS: DropdownItemProps[] = [ @@ -139,8 +135,6 @@ const ApplicationsPage: FunctionComponent = ( const [ listOffset, setListOffset ] = useState(0); const [ listItemLimit, setListItemLimit ] = useState(UIConstants.DEFAULT_RESOURCE_LIST_ITEM_LIMIT); const [ triggerClearQuery, setTriggerClearQuery ] = useState(false); - const [ showWizard, setShowWizard ] = useState(false); - const config: ConfigReducerStateInterface = useSelector((state: AppState) => state.config); const consumerAccountURL: string = useSelector((state: AppState) => state?.config?.deployment?.accountApp?.tenantQualifiedPath); const [ isMyAccountEnabled, setMyAccountStatus ] = useState(AppConstants.DEFAULT_MY_ACCOUNT_STATUS); @@ -764,22 +758,6 @@ const ApplicationsPage: FunctionComponent = ( data-componentid="application" /> - { showWizard && ( - setShowWizard(false) } - template={ CustomApplicationTemplate } - showHelpPanel={ true } - subTemplates={ CustomApplicationTemplate?.subTemplates } - subTemplatesSectionTitle={ CustomApplicationTemplate?.subTemplatesSectionTitle } - addProtocol={ false } - templateLoadingStrategy={ - config.ui.applicationTemplateLoadingStrategy - ?? ApplicationManagementConstants.DEFAULT_APP_TEMPLATE_LOADING_STRATEGY - } - /> - ) } ); }; diff --git a/features/admin.core.v1/configs/app.ts b/features/admin.core.v1/configs/app.ts index ad497f8a073..99fcdbf5913 100644 --- a/features/admin.core.v1/configs/app.ts +++ b/features/admin.core.v1/configs/app.ts @@ -17,6 +17,7 @@ */ import { getAPIResourceEndpoints } from "@wso2is/admin.api-resources.v2/configs/endpoint"; +import { getApplicationTemplatesResourcesEndpoints } from "@wso2is/admin.application-templates.v1/configs/endpoints"; import { getApplicationsResourceEndpoints } from "@wso2is/admin.applications.v1/configs/endpoints"; import { getBrandingResourceEndpoints } from "@wso2is/admin.branding.v1/configs/endpoints"; import { getCertificatesResourceEndpoints } from "@wso2is/admin.certificates.v1"; @@ -283,6 +284,7 @@ export class Config { ...getInsightsResourceEndpoints(this.getDeploymentConfig()?.serverHost), ...getConsoleSettingsResourceEndpoints(this.getDeploymentConfig()?.serverHost), ...getExtensionTemplatesEndpoints(this.resolveServerHost()), + ...getApplicationTemplatesResourcesEndpoints(this.resolveServerHost()), CORSOrigins: `${ this.getDeploymentConfig()?.serverHost }/api/server/v1/cors/origins`, // TODO: Remove this endpoint and use ID token to get the details me: `${ this.getDeploymentConfig()?.serverHost }/scim2/Me`, diff --git a/features/admin.core.v1/models/config.ts b/features/admin.core.v1/models/config.ts index 03698aa90cc..7f14247e737 100644 --- a/features/admin.core.v1/models/config.ts +++ b/features/admin.core.v1/models/config.ts @@ -17,6 +17,7 @@ */ import { ResponseMode, Storage } from "@asgardeo/auth-react"; +import { ApplicationsTemplatesEndpointsInterface } from "@wso2is/admin.application-templates.v1/models/endpoints"; import { ApplicationTemplateLoadingStrategies, ApplicationsResourceEndpointsInterface @@ -539,7 +540,8 @@ export interface ServiceResourceEndpointsInterface extends ClaimResourceEndpoint JWTAuthenticationServiceEndpointsInterface, BrandingPreferenceResourceEndpointsInterface, ConsoleSettingsResourceEndpointsInterface, - ExtensionTemplatesEndpointsInterface { + ExtensionTemplatesEndpointsInterface, + ApplicationsTemplatesEndpointsInterface { CORSOrigins: string; // TODO: Remove this endpoint and use ID token to get the details diff --git a/features/admin.template-core.v1/models/dynamic-fields.ts b/features/admin.template-core.v1/models/dynamic-fields.ts new file mode 100644 index 00000000000..bee89d6842c --- /dev/null +++ b/features/admin.template-core.v1/models/dynamic-fields.ts @@ -0,0 +1,183 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Interface to define a dynamic form. + */ +export interface DynamicFormInterface { + /** + * Dynamic field data needs to be rendered on the form. + */ + fields: DynamicFieldInterface[], + /** + * Should the form only submit the fields defined above. + */ + submitDefinedFieldsOnly?: boolean; + /** + * API to which the form values should be submitted. + */ + api?: SupportedAPIList; +} + +/** + * Data types required to render the dynamic input fields. + */ +export interface DynamicFieldInterface { + /** + * Unique identifier for the input field. + */ + id: string; + /** + * Aria label of the input field. + */ + "aria-label": string; + /** + * Name of the input field. + */ + name: string; + /** + * Label of the input field. + */ + label: string; + /** + * Input field type. + */ + type: DynamicInputFieldTypes; + /** + * Whether the field is optional or not. + */ + required: boolean; + /** + * Placeholder for the input field. + */ + placeholder: string; + /** + * Helper text for the input field. + */ + helperText: string; + /** + * The data component id for the input field. + */ + dataComponentId: string; + /** + * Indicates if the field is disabled (Value will not be submitted). + */ + disable?: boolean; + /** + * Indicates whether the field is read only. + */ + readOnly?: boolean; + /** + * Indicates whether the field is hidden. + */ + hidden?: boolean; + /** + * Array of validation rules for the field's input. + */ + validations?: ValidationRule[]; + /** + * Additional meta data need to decorate the dynamic input field. + */ + meta?: DynamicFieldMetadataInterface; +} + +/** + * Interface for the metadata of dynamic fields. + */ +export interface DynamicFieldMetadataInterface { + /** + * Names of the properties that should be templated using the current field value. + */ + dependentProperties?: string[]; + /** + * Names of placeholder strings included as templated strings in the current field. + */ + templatedPlaceholders?: string[]; + /** + * Names of the properties that should be templated using the current field value. + */ + dependent?: string[]; + /** + * Whether the current field value should be a generated value. + */ + generator: "uuid" + /** + * Custom props need to be provided into the field component. + */ + customFieldProps: Record +} + +/** + * Supported dynamic input field types. + */ +export enum DynamicInputFieldTypes { + /** + * Text input field. + */ + TEXT = "text", + /** + * Checkbox field. + */ + CHECKBOX = "checkbox", + /** + * Text Area. + */ + TEXTAREA = "textarea", + /** + * Application certificate field. + */ + APPLICATION_CERTIFICATE = "application-certificate" +} + +/** + * Representation of the validation rules for dynamic input field. + */ +export interface ValidationRule { + /** + * The validation rule type. + */ + type: ValidationRuleTypes; + /** + * Error message to be displayed when validation fails. + */ + errorMessage?: string; +} + +/** + * Supported validation rule types for dynamic input fields. + */ +export enum ValidationRuleTypes { + DOMAIN_NAME = "domainName", + APPLICATION_NAME = "applicationName", + REQUIRED = "required" +} + +/** + * List of supported APIs to which the form values can be submitted. + */ +export enum SupportedAPIList { + APPLICATION_PATCH = "PATCH:/api/server/v1/applications", + APPLICATION_SAML_INBOUND_PROTOCOL_PUT = "PUT:/api/server/v1/applications/{application-id}/inbound-protocols/saml" +} + +/** + * List of field value generators. + */ +export enum FieldValueGenerators { + UUID = "uuid" +} diff --git a/modules/i18n/src/models/namespaces/application-templates-ns.ts b/modules/i18n/src/models/namespaces/application-templates-ns.ts index 8815b8ce696..09d23e830e0 100644 --- a/modules/i18n/src/models/namespaces/application-templates-ns.ts +++ b/modules/i18n/src/models/namespaces/application-templates-ns.ts @@ -26,5 +26,27 @@ export interface applicationTemplatesNS { displayName: string; description: string; }; + }, + notifications: { + fetchTemplateMetadata: { + error: { + message: string; + description: string; + }; + genericError: { + message: string; + description: string; + }; + }; + fetchTemplate: { + error: { + message: string; + description: string; + }; + genericError: { + message: string; + description: string; + }; + }; } } diff --git a/modules/i18n/src/translations/en-US/portals/application-templates.ts b/modules/i18n/src/translations/en-US/portals/application-templates.ts index f649dc615b3..00e6f2938f3 100644 --- a/modules/i18n/src/translations/en-US/portals/application-templates.ts +++ b/modules/i18n/src/translations/en-US/portals/application-templates.ts @@ -28,5 +28,27 @@ export const applicationTemplates: applicationTemplatesNS = { + " Google Workspace, Salesforce, and more.", displayName: "SSO Integrations" } + }, + notifications: { + fetchTemplate: { + error: { + description: "{{description}}", + message: "Retrieval error" + }, + genericError: { + description: "An error occurred while retrieving application template data.", + message: "Something went wrong" + } + }, + fetchTemplateMetadata: { + error: { + description: "{{description}}", + message: "Retrieval error" + }, + genericError: { + description: "An error occurred while retrieving application template meta data.", + message: "Something went wrong" + } + } } }; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3b9217146d7..fae3362cea2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1829,6 +1829,12 @@ importers: features/admin.application-templates.v1: dependencies: + '@wso2is/admin.applications.v1': + specifier: ^2.21.11 + version: link:../admin.applications.v1 + '@wso2is/admin.core.v1': + specifier: ^2.21.11 + version: link:../admin.core.v1 '@wso2is/admin.template-core.v1': specifier: ^1.0.0 version: link:../admin.template-core.v1 From e9b73db7fdf587e82f9ce48aaf6f53d0b5c89198 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Tue, 9 Jul 2024 15:45:18 +0530 Subject: [PATCH 052/114] refactor the code --- .../application-creation-adapter.tsx | 14 ++-- .../application-template-card.scss | 0 .../components}/application-template-card.tsx | 22 ++++-- .../application-templates-grid.scss | 0 .../application-templates-grid.tsx | 12 ++- .../constants/templates.ts | 6 ++ .../models/templates.ts | 18 +++++ .../pages/application-template.tsx | 10 +-- .../public-api.ts | 3 +- .../utils/build-callback-urls-with-regexp.ts | 0 .../components/edit-application.tsx | 2 +- .../constants/application-templates.ts | 30 -------- features/admin.core.v1/configs/routes.tsx | 2 +- .../application-create-wizard.scss | 0 .../components}/application-create-wizard.tsx | 20 +++-- .../components}/application-edit-form.scss | 0 .../components}/application-edit-form.tsx | 8 +- .../application-form-dynamic-field.tsx | 4 +- ...application-inbound-protocol-edit-form.tsx | 18 ++--- .../application-main-edit-form.tsx | 10 +-- .../application-certificate-adapter.tsx | 12 +-- .../hooks/use-dynamic-field-validation.ts | 6 +- features/admin.template-core.v1/package.json | 2 + .../admin.template-core.v1/utils/templates.ts | 76 +++++++++++++++++++ pnpm-lock.yaml | 6 ++ 25 files changed, 184 insertions(+), 97 deletions(-) rename features/{admin.applications.v1/components/application-templates => admin.application-templates.v1/components}/application-creation-adapter.tsx (88%) rename features/{admin.applications.v1/components/application-templates => admin.application-templates.v1/components}/application-template-card.scss (100%) rename features/{admin.applications.v1/components/application-templates => admin.application-templates.v1/components}/application-template-card.tsx (88%) rename features/{admin.applications.v1/components/application-templates => admin.application-templates.v1/components}/application-templates-grid.scss (100%) rename features/{admin.applications.v1/components/application-templates => admin.application-templates.v1/components}/application-templates-grid.tsx (97%) rename features/{admin.applications.v1 => admin.application-templates.v1}/pages/application-template.tsx (93%) rename features/{admin.applications.v1 => admin.application-templates.v1}/utils/build-callback-urls-with-regexp.ts (100%) delete mode 100644 features/admin.applications.v1/constants/application-templates.ts rename features/{admin.applications.v1/components/dynamic-forms => admin.template-core.v1/components}/application-create-wizard.scss (100%) rename features/{admin.applications.v1/components/dynamic-forms => admin.template-core.v1/components}/application-create-wizard.tsx (97%) rename features/{admin.applications.v1/components/dynamic-forms => admin.template-core.v1/components}/application-edit-form.scss (100%) rename features/{admin.applications.v1/components/dynamic-forms => admin.template-core.v1/components}/application-edit-form.tsx (95%) rename features/{admin.applications.v1/components/dynamic-forms => admin.template-core.v1/components}/application-form-dynamic-field.tsx (98%) rename features/{admin.applications.v1/components/dynamic-forms => admin.template-core.v1/components}/application-inbound-protocol-edit-form.tsx (98%) rename features/{admin.applications.v1/components/dynamic-forms => admin.template-core.v1/components}/application-main-edit-form.tsx (97%) rename features/{admin.applications.v1/components/dynamic-forms => admin.template-core.v1/components}/custom-fields/application-certificate-adapter.tsx (96%) rename features/{admin.applications.v1 => admin.template-core.v1}/hooks/use-dynamic-field-validation.ts (98%) create mode 100644 features/admin.template-core.v1/utils/templates.ts diff --git a/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx b/features/admin.application-templates.v1/components/application-creation-adapter.tsx similarity index 88% rename from features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx rename to features/admin.application-templates.v1/components/application-creation-adapter.tsx index eb7eab7b81e..e767fbed5cc 100644 --- a/features/admin.applications.v1/components/application-templates/application-creation-adapter.tsx +++ b/features/admin.application-templates.v1/components/application-creation-adapter.tsx @@ -16,18 +16,20 @@ * under the License. */ +import { MinimalAppCreateWizard } from + "@wso2is/admin.applications.v1/components/wizard/minimal-application-create-wizard"; +import { ApplicationManagementConstants } from "@wso2is/admin.applications.v1/constants"; +import { ApplicationTemplateListItemInterface } from "@wso2is/admin.applications.v1/models"; +import { ApplicationTemplateManagementUtils } from + "@wso2is/admin.applications.v1/utils/application-template-management-utils"; import { AppState } from "@wso2is/admin.core.v1"; +import { ApplicationCreateWizard } from "@wso2is/admin.template-core.v1/components/application-create-wizard"; import { ExtensionTemplateListInterface } from "@wso2is/admin.template-core.v1/models/templates"; import { IdentifiableComponentInterface } from "@wso2is/core/models"; import { ContentLoader } from "@wso2is/react-components"; import React, { FunctionComponent, ReactElement, useEffect, useState } from "react"; import { useSelector } from "react-redux"; -import { ApplicationManagementConstants } from "../../constants"; -import { ApplicationTemplateListItemInterface } from "../../models"; -import { ApplicationTemplateCategories } from "../../models/application-templates"; -import { ApplicationTemplateManagementUtils } from "../../utils/application-template-management-utils"; -import { ApplicationCreateWizard } from "../dynamic-forms/application-create-wizard"; -import { MinimalAppCreateWizard } from "../wizard/minimal-application-create-wizard"; +import { ApplicationTemplateCategories } from "../models/templates"; /** * Props for the Application creation adapter component. diff --git a/features/admin.applications.v1/components/application-templates/application-template-card.scss b/features/admin.application-templates.v1/components/application-template-card.scss similarity index 100% rename from features/admin.applications.v1/components/application-templates/application-template-card.scss rename to features/admin.application-templates.v1/components/application-template-card.scss diff --git a/features/admin.applications.v1/components/application-templates/application-template-card.tsx b/features/admin.application-templates.v1/components/application-template-card.tsx similarity index 88% rename from features/admin.applications.v1/components/application-templates/application-template-card.tsx rename to features/admin.application-templates.v1/components/application-template-card.tsx index 0aaf0136f47..e4071293548 100644 --- a/features/admin.applications.v1/components/application-templates/application-template-card.tsx +++ b/features/admin.application-templates.v1/components/application-template-card.tsx @@ -22,18 +22,19 @@ import Card from "@oxygen-ui/react/Card"; import CardContent from "@oxygen-ui/react/CardContent"; import Tooltip from "@oxygen-ui/react/Tooltip"; import Typography from "@oxygen-ui/react/Typography"; -import { SupportedTechnologyMetadataInterface } from "@wso2is/admin.application-templates.v1/models/templates"; import { CustomAttributeInterface, - ExtensionTemplateListInterface + ExtensionTemplateListInterface, + ResourceTypes } from "@wso2is/admin.template-core.v1/models/templates"; +import { ExtensionTemplateManagementUtils } from "@wso2is/admin.template-core.v1/utils/templates"; import { IdentifiableComponentInterface } from "@wso2is/core/models"; import classnames from "classnames"; import React, { FunctionComponent, MouseEvent, ReactElement, useMemo } from "react"; import { useTranslation } from "react-i18next"; -import { ApplicationTemplateConstants } from "../../constants/application-templates"; +import { ApplicationTemplateConstants } from "../constants/templates"; import "./application-template-card.scss"; -import { ApplicationTemplateManagementUtils } from "../../utils/application-template-management-utils"; +import { SupportedTechnologyMetadataInterface } from "../models/templates"; /** * Props for the application template card component. @@ -137,7 +138,12 @@ const ApplicationTemplateCard: FunctionComponent
    @@ -165,8 +171,10 @@ const ApplicationTemplateCard: FunctionComponent ) diff --git a/features/admin.applications.v1/components/application-templates/application-templates-grid.scss b/features/admin.application-templates.v1/components/application-templates-grid.scss similarity index 100% rename from features/admin.applications.v1/components/application-templates/application-templates-grid.scss rename to features/admin.application-templates.v1/components/application-templates-grid.scss diff --git a/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx b/features/admin.application-templates.v1/components/application-templates-grid.tsx similarity index 97% rename from features/admin.applications.v1/components/application-templates/application-templates-grid.tsx rename to features/admin.application-templates.v1/components/application-templates-grid.tsx index 27afbcc6f61..ab4c91f05dd 100644 --- a/features/admin.applications.v1/components/application-templates/application-templates-grid.tsx +++ b/features/admin.application-templates.v1/components/application-templates-grid.tsx @@ -17,6 +17,9 @@ */ import { Typography } from "@mui/material"; +import { InboundProtocolsMeta } from "@wso2is/admin.applications.v1/components/meta"; +import { AuthProtocolMetaListItemInterface } from "@wso2is/admin.applications.v1/models"; +import { ApplicationManagementUtils } from "@wso2is/admin.applications.v1/utils/application-management-utils"; import { AppState, EventPublisher, getEmptyPlaceholderIllustrations } from "@wso2is/admin.core.v1"; import useExtensionTemplates from "@wso2is/admin.template-core.v1/hooks/use-extension-templates"; import { @@ -38,13 +41,8 @@ import React, { FunctionComponent, MouseEvent, ReactElement, useEffect, useMemo, import { useTranslation } from "react-i18next"; import { useSelector } from "react-redux"; import ApplicationTemplateCard from "./application-template-card"; -import { ApplicationTemplateConstants } from "../../constants/application-templates"; -import { AuthProtocolMetaListItemInterface } from "../../models"; -import { - ApplicationTemplateCategories -} from "../../models/application-templates"; -import { ApplicationManagementUtils } from "../../utils/application-management-utils"; -import { InboundProtocolsMeta } from "../meta"; +import { ApplicationTemplateConstants } from "../constants/templates"; +import { ApplicationTemplateCategories } from "../models/templates"; import "./application-templates-grid.scss"; /** diff --git a/features/admin.application-templates.v1/constants/templates.ts b/features/admin.application-templates.v1/constants/templates.ts index c4c2de54bd7..758ffe0b840 100644 --- a/features/admin.application-templates.v1/constants/templates.ts +++ b/features/admin.application-templates.v1/constants/templates.ts @@ -36,4 +36,10 @@ export class ApplicationTemplateConstants { id: "SSO-INTEGRATION" } ]; + + public static readonly COMING_SOON_ATTRIBUTE_KEY: string = "comingSoon"; + + public static readonly SUPPORTED_TECHNOLOGIES_ATTRIBUTE_KEY: string = "supportedTechnologies"; + + public static readonly CUSTOM_PROTOCOL_APPLICATION_TEMPLATE_ID: string = "custom-protocol-application"; } diff --git a/features/admin.application-templates.v1/models/templates.ts b/features/admin.application-templates.v1/models/templates.ts index 4844769cd04..258c28b3472 100644 --- a/features/admin.application-templates.v1/models/templates.ts +++ b/features/admin.application-templates.v1/models/templates.ts @@ -117,3 +117,21 @@ export interface ApplicationEditTabMetadataInterface { */ guide?: string; } + +/** + * Enum for application template categories. + * + * @readonly + */ +export enum ApplicationTemplateCategories { + /** + * Templates supported by default. + * ex: Web Application, SPA etc. + */ + DEFAULT = "DEFAULT", + /** + * SSO Integration templates. + * ex: Zoom, Salesforce etc. + */ + SSO_INTEGRATION = "SSO-INTEGRATION", +} diff --git a/features/admin.applications.v1/pages/application-template.tsx b/features/admin.application-templates.v1/pages/application-template.tsx similarity index 93% rename from features/admin.applications.v1/pages/application-template.tsx rename to features/admin.application-templates.v1/pages/application-template.tsx index 12f63e9b4d3..b0c342d2543 100755 --- a/features/admin.applications.v1/pages/application-template.tsx +++ b/features/admin.application-templates.v1/pages/application-template.tsx @@ -16,9 +16,6 @@ * under the License. */ -import ApplicationTemplateMetadataProvider from - "@wso2is/admin.application-templates.v1/provider/application-template-metadata-provider"; -import ApplicationTemplateProvider from "@wso2is/admin.application-templates.v1/provider/application-template-provider"; import { AppConstants, history @@ -28,8 +25,11 @@ import { TestableComponentInterface } from "@wso2is/core/models"; import { PageLayout } from "@wso2is/react-components"; import React, { FunctionComponent, ReactElement, useState } from "react"; import { useTranslation } from "react-i18next"; -import ApplicationCreationAdapter from "../components/application-templates/application-creation-adapter"; -import ApplicationTemplateGrid from "../components/application-templates/application-templates-grid"; +import ApplicationCreationAdapter from "../components/application-creation-adapter"; +import ApplicationTemplateGrid from "../components/application-templates-grid"; +import ApplicationTemplateMetadataProvider from + "../provider/application-template-metadata-provider"; +import ApplicationTemplateProvider from "../provider/application-template-provider"; /** * Props for the Applications templates page. diff --git a/features/admin.application-templates.v1/public-api.ts b/features/admin.application-templates.v1/public-api.ts index bd34ef7d813..19feaa78184 100644 --- a/features/admin.application-templates.v1/public-api.ts +++ b/features/admin.application-templates.v1/public-api.ts @@ -16,4 +16,5 @@ * under the License. */ -export const test: string = "dhja"; +export { default as ApplicationTemplateProvider } from "./provider/application-template-provider"; +export { default as ApplicationTemplateMetadataProvider } from "./provider/application-template-metadata-provider"; diff --git a/features/admin.applications.v1/utils/build-callback-urls-with-regexp.ts b/features/admin.application-templates.v1/utils/build-callback-urls-with-regexp.ts similarity index 100% rename from features/admin.applications.v1/utils/build-callback-urls-with-regexp.ts rename to features/admin.application-templates.v1/utils/build-callback-urls-with-regexp.ts diff --git a/features/admin.applications.v1/components/edit-application.tsx b/features/admin.applications.v1/components/edit-application.tsx index f74d461547f..c42a9e234ed 100644 --- a/features/admin.applications.v1/components/edit-application.tsx +++ b/features/admin.applications.v1/components/edit-application.tsx @@ -32,6 +32,7 @@ import { MyAccountOverview } from "@wso2is/admin.extensions.v1/configs/component import AILoginFlowProvider from "@wso2is/admin.login-flow.ai.v1/providers/ai-login-flow-provider"; import { OrganizationType } from "@wso2is/admin.organizations.v1/constants"; import { useGetCurrentOrganizationType } from "@wso2is/admin.organizations.v1/hooks/use-get-organization-type"; +import { ApplicationEditForm } from "@wso2is/admin.template-core.v1/components/application-edit-form"; import { hasRequiredScopes, isFeatureEnabled } from "@wso2is/core/helpers"; import { AlertLevels, IdentifiableComponentInterface, SBACInterface } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; @@ -53,7 +54,6 @@ import { useTranslation } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; import { Dispatch } from "redux"; import { CheckboxProps, Divider, Form, Grid, Menu, TabProps } from "semantic-ui-react"; -import { ApplicationEditForm } from "./dynamic-forms/application-edit-form"; import { MarkdownGuide } from "./help-panel/markdown/markdown-guide"; import { InboundProtocolsMeta } from "./meta"; import { diff --git a/features/admin.applications.v1/constants/application-templates.ts b/features/admin.applications.v1/constants/application-templates.ts deleted file mode 100644 index 040c3517542..00000000000 --- a/features/admin.applications.v1/constants/application-templates.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -/** - * Class containing application templates management constants. - */ -export class ApplicationTemplateConstants { - public static readonly CONSOLE_BASE_URL_PLACEHOLDER: string = "${CONSOLE_BASE_URL}"; - - public static readonly COMING_SOON_ATTRIBUTE_KEY: string = "comingSoon"; - - public static readonly SUPPORTED_TECHNOLOGIES_ATTRIBUTE_KEY: string = "supportedTechnologies"; - - public static readonly CUSTOM_PROTOCOL_APPLICATION_TEMPLATE_ID: string = "custom-protocol-application"; -} diff --git a/features/admin.core.v1/configs/routes.tsx b/features/admin.core.v1/configs/routes.tsx index d8806f80709..724f688e87f 100644 --- a/features/admin.core.v1/configs/routes.tsx +++ b/features/admin.core.v1/configs/routes.tsx @@ -216,7 +216,7 @@ export const getAppViewRoutes = (): RouteInterface[] => { category: "console:develop.features.sidePanel.categories.application", children: [ { - component: lazy(() => import("@wso2is/admin.applications.v1/pages/application-template")), + component: lazy(() => import("@wso2is/admin.application-templates.v1/pages/application-template")), exact: true, icon: { icon: getSidePanelIcons().childIcon diff --git a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.scss b/features/admin.template-core.v1/components/application-create-wizard.scss similarity index 100% rename from features/admin.applications.v1/components/dynamic-forms/application-create-wizard.scss rename to features/admin.template-core.v1/components/application-create-wizard.scss diff --git a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx b/features/admin.template-core.v1/components/application-create-wizard.tsx similarity index 97% rename from features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx rename to features/admin.template-core.v1/components/application-create-wizard.tsx index 49cf3ab1bb6..f2f790d91ca 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-create-wizard.tsx +++ b/features/admin.template-core.v1/components/application-create-wizard.tsx @@ -25,6 +25,16 @@ import Typography from "@oxygen-ui/react/Typography"; import useApplicationTemplate from "@wso2is/admin.application-templates.v1/hooks/use-application-template"; import useApplicationTemplateMetadata from "@wso2is/admin.application-templates.v1/hooks/use-application-template-metadata"; +import buildCallBackUrlsWithRegExp from "@wso2is/admin.application-templates.v1/utils/build-callback-urls-with-regexp"; +import { createApplication, useApplicationList } from "@wso2is/admin.applications.v1/api"; +import { ApplicationShareModal } from "@wso2is/admin.applications.v1/components/modals/application-share-modal"; +import { ApplicationManagementConstants } from "@wso2is/admin.applications.v1/constants"; +import useApplicationSharingEligibility from "@wso2is/admin.applications.v1/hooks/use-application-sharing-eligibility"; +import { + ApplicationListItemInterface, + MainApplicationInterface, + URLFragmentTypes +} from "@wso2is/admin.applications.v1/models"; import { AppState, TierLimitReachErrorModal } from "@wso2is/admin.core.v1"; import { ModalWithSidePanel } from "@wso2is/admin.core.v1/components/modals/modal-with-side-panel"; import { AppConstants } from "@wso2is/admin.core.v1/constants/app-constants"; @@ -55,14 +65,8 @@ import { Dispatch } from "redux"; import { Grid, ModalProps } from "semantic-ui-react"; import { v4 as uuidv4 } from "uuid"; import { ApplicationFormDynamicField } from "./application-form-dynamic-field"; -import { createApplication, useApplicationList } from "../../api"; -import { ApplicationManagementConstants } from "../../constants"; -import useApplicationSharingEligibility from "../../hooks/use-application-sharing-eligibility"; -import useDynamicFieldValidations from "../../hooks/use-dynamic-field-validation"; -import { ApplicationListItemInterface, MainApplicationInterface, URLFragmentTypes } from "../../models"; -import { DynamicFieldInterface, FieldValueGenerators } from "../../models/dynamic-fields"; -import buildCallBackUrlsWithRegExp from "../../utils/build-callback-urls-with-regexp"; -import { ApplicationShareModal } from "../modals/application-share-modal"; +import useDynamicFieldValidations from "../hooks/use-dynamic-field-validation"; +import { DynamicFieldInterface, FieldValueGenerators } from "../models/dynamic-fields"; import "./application-create-wizard.scss"; /** diff --git a/features/admin.applications.v1/components/dynamic-forms/application-edit-form.scss b/features/admin.template-core.v1/components/application-edit-form.scss similarity index 100% rename from features/admin.applications.v1/components/dynamic-forms/application-edit-form.scss rename to features/admin.template-core.v1/components/application-edit-form.scss diff --git a/features/admin.applications.v1/components/dynamic-forms/application-edit-form.tsx b/features/admin.template-core.v1/components/application-edit-form.tsx similarity index 95% rename from features/admin.applications.v1/components/dynamic-forms/application-edit-form.tsx rename to features/admin.template-core.v1/components/application-edit-form.tsx index 84259d36ce6..51ce00e71a7 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-edit-form.tsx +++ b/features/admin.template-core.v1/components/application-edit-form.tsx @@ -16,6 +16,8 @@ * under the License. */ +import { ApplicationEditTabMetadataInterface } from "@wso2is/admin.application-templates.v1/models/templates"; +import { ApplicationInterface } from "@wso2is/admin.applications.v1/models"; import { IdentifiableComponentInterface } from "@wso2is/core/models"; import { EmphasizedSegment, PrimaryButton } from "@wso2is/react-components"; import React, { FunctionComponent, MouseEvent, ReactElement } from "react"; @@ -23,11 +25,7 @@ import { useTranslation } from "react-i18next"; import { Grid } from "semantic-ui-react"; import { ApplicationEditForm as ApplicationInboundProtocolEditForm } from "./application-inbound-protocol-edit-form"; import { ApplicationEditForm as ApplicationMainEditForm } from "./application-main-edit-form"; -import { - ApplicationInterface -} from "../../models"; -import { ApplicationEditTabMetadataInterface } from "../../models/application-templates"; -import { DynamicFormInterface, SupportedAPIList } from "../../models/dynamic-fields"; +import { DynamicFormInterface, SupportedAPIList } from "../models/dynamic-fields"; import "./application-edit-form.scss"; /** diff --git a/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx b/features/admin.template-core.v1/components/application-form-dynamic-field.tsx similarity index 98% rename from features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx rename to features/admin.template-core.v1/components/application-form-dynamic-field.tsx index 41abe363481..889bb4c88bb 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-form-dynamic-field.tsx +++ b/features/admin.template-core.v1/components/application-form-dynamic-field.tsx @@ -16,13 +16,13 @@ * under the License. */ +import { ApplicationInterface } from "@wso2is/admin.applications.v1/models"; import { IdentifiableComponentInterface } from "@wso2is/core/models"; import { CheckboxFieldAdapter, FinalFormField, FormApi, TextFieldAdapter } from "@wso2is/form"; import { Hint } from "@wso2is/react-components"; import React, { FunctionComponent, PropsWithChildren, ReactElement } from "react"; import ApplicationCertificateAdapter from "./custom-fields/application-certificate-adapter"; -import { ApplicationInterface } from "../../models"; -import { DynamicFieldInterface, DynamicInputFieldTypes } from "../../models/dynamic-fields"; +import { DynamicFieldInterface, DynamicInputFieldTypes } from "../models/dynamic-fields"; /** * Prop types for the dynamic input fields of the application form. diff --git a/features/admin.applications.v1/components/dynamic-forms/application-inbound-protocol-edit-form.tsx b/features/admin.template-core.v1/components/application-inbound-protocol-edit-form.tsx similarity index 98% rename from features/admin.applications.v1/components/dynamic-forms/application-inbound-protocol-edit-form.tsx rename to features/admin.template-core.v1/components/application-inbound-protocol-edit-form.tsx index 8f3bda77713..c3d418db4c7 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-inbound-protocol-edit-form.tsx +++ b/features/admin.template-core.v1/components/application-inbound-protocol-edit-form.tsx @@ -17,6 +17,14 @@ */ import useApplicationTemplate from "@wso2is/admin.application-templates.v1/hooks/use-application-template"; +import { updateAuthProtocolConfig } from "@wso2is/admin.applications.v1/api"; +import useGetApplicationInboundConfigs from "@wso2is/admin.applications.v1/api/use-get-application-inbound-configs"; +import { + ApplicationInterface, + SAML2ConfigurationInterface, + SAML2ServiceProviderInterface, + SupportedAuthProtocolTypes +} from "@wso2is/admin.applications.v1/models"; import { AppState } from "@wso2is/admin.core.v1"; import useUIConfig from "@wso2is/admin.core.v1/hooks/use-ui-configs"; import { hasRequiredScopes } from "@wso2is/core/helpers"; @@ -39,15 +47,7 @@ import { useDispatch, useSelector } from "react-redux"; import { Dispatch } from "redux"; import { Grid } from "semantic-ui-react"; import { ApplicationFormDynamicField } from "./application-form-dynamic-field"; -import { updateAuthProtocolConfig } from "../../api"; -import useGetApplicationInboundConfigs from "../../api/use-get-application-inbound-configs"; -import { - ApplicationInterface, - SAML2ConfigurationInterface, - SAML2ServiceProviderInterface, - SupportedAuthProtocolTypes -} from "../../models"; -import { DynamicFieldInterface, DynamicFormInterface } from "../../models/dynamic-fields"; +import { DynamicFieldInterface, DynamicFormInterface } from "../models/dynamic-fields"; /** * Prop types of the `ApplicationEditForm` component. diff --git a/features/admin.applications.v1/components/dynamic-forms/application-main-edit-form.tsx b/features/admin.template-core.v1/components/application-main-edit-form.tsx similarity index 97% rename from features/admin.applications.v1/components/dynamic-forms/application-main-edit-form.tsx rename to features/admin.template-core.v1/components/application-main-edit-form.tsx index 466328c1166..6852294a927 100644 --- a/features/admin.applications.v1/components/dynamic-forms/application-main-edit-form.tsx +++ b/features/admin.template-core.v1/components/application-main-edit-form.tsx @@ -16,6 +16,8 @@ * under the License. */ +import { updateApplicationDetails } from "@wso2is/admin.applications.v1/api"; +import { ApplicationInterface } from "@wso2is/admin.applications.v1/models"; import { AppState } from "@wso2is/admin.core.v1"; import useUIConfig from "@wso2is/admin.core.v1/hooks/use-ui-configs"; import { hasRequiredScopes } from "@wso2is/core/helpers"; @@ -38,12 +40,8 @@ import { useDispatch, useSelector } from "react-redux"; import { Dispatch } from "redux"; import { Grid } from "semantic-ui-react"; import { ApplicationFormDynamicField } from "./application-form-dynamic-field"; -import { updateApplicationDetails } from "../../api"; -import useDynamicFieldValidations from "../../hooks/use-dynamic-field-validation"; -import { - ApplicationInterface -} from "../../models"; -import { DynamicFieldInterface, DynamicFormInterface } from "../../models/dynamic-fields"; +import useDynamicFieldValidations from "../hooks/use-dynamic-field-validation"; +import { DynamicFieldInterface, DynamicFormInterface } from "../models/dynamic-fields"; /** * Prop types of the `ApplicationEditForm` component. diff --git a/features/admin.applications.v1/components/dynamic-forms/custom-fields/application-certificate-adapter.tsx b/features/admin.template-core.v1/components/custom-fields/application-certificate-adapter.tsx similarity index 96% rename from features/admin.applications.v1/components/dynamic-forms/custom-fields/application-certificate-adapter.tsx rename to features/admin.template-core.v1/components/custom-fields/application-certificate-adapter.tsx index 9ef25f97e03..489f5dd3e03 100644 --- a/features/admin.applications.v1/components/dynamic-forms/custom-fields/application-certificate-adapter.tsx +++ b/features/admin.template-core.v1/components/custom-fields/application-certificate-adapter.tsx @@ -16,17 +16,17 @@ * under the License. */ -import { Code } from "@wso2is/react-components"; -import React, { Fragment, FunctionComponent, ReactElement } from "react"; -import { FieldRenderProps, useFormState } from "react-final-form"; -import { Trans, useTranslation } from "react-i18next"; +import { ApplicationCertificateWrapper } from "@wso2is/admin.applications.v1/components/settings/certificate"; import { ApplicationInterface, CertificateInterface, CertificateTypeInterface, SupportedAuthProtocolTypes -} from "../../../models"; -import { ApplicationCertificateWrapper } from "../../settings/certificate"; +} from "@wso2is/admin.applications.v1/models"; +import { Code } from "@wso2is/react-components"; +import React, { Fragment, FunctionComponent, ReactElement } from "react"; +import { FieldRenderProps, useFormState } from "react-final-form"; +import { Trans, useTranslation } from "react-i18next"; /** * Props for the ApplicationCertificateAdapter component. diff --git a/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts b/features/admin.template-core.v1/hooks/use-dynamic-field-validation.ts similarity index 98% rename from features/admin.applications.v1/hooks/use-dynamic-field-validation.ts rename to features/admin.template-core.v1/hooks/use-dynamic-field-validation.ts index 44ecfcb3ac9..c0a7d620d8b 100644 --- a/features/admin.applications.v1/hooks/use-dynamic-field-validation.ts +++ b/features/admin.template-core.v1/hooks/use-dynamic-field-validation.ts @@ -16,6 +16,9 @@ * under the License. */ +import { getApplicationList } from "@wso2is/admin.applications.v1/api"; +import { ApplicationManagementConstants } from "@wso2is/admin.applications.v1/constants"; +import { ApplicationListInterface, MainApplicationInterface } from "@wso2is/admin.applications.v1/models"; import { AppState } from "@wso2is/admin.core.v1"; import { AlertLevels } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; @@ -27,9 +30,6 @@ import { MutableRefObject, useRef, useState } from "react"; import { useTranslation } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; import { Dispatch } from "redux"; -import { getApplicationList } from "../api/application"; -import { ApplicationManagementConstants } from "../constants"; -import { ApplicationListInterface, MainApplicationInterface } from "../models"; import { DynamicFieldInterface, ValidationRule, diff --git a/features/admin.template-core.v1/package.json b/features/admin.template-core.v1/package.json index fa2420fbc93..edf38147aa3 100644 --- a/features/admin.template-core.v1/package.json +++ b/features/admin.template-core.v1/package.json @@ -7,6 +7,8 @@ "license": "Apache-2.0", "dependencies": { "@wso2is/core": "^2.0.50", + "@wso2is/admin.application-templates.v1": "^1.0.0", + "@wso2is/admin.applications.v1": "^2.21.11", "@wso2is/admin.core.v1": "^2.21.11", "i18next": "^21.9.1", "react-redux": "^7.2.9", diff --git a/features/admin.template-core.v1/utils/templates.ts b/features/admin.template-core.v1/utils/templates.ts new file mode 100644 index 00000000000..027c4f0e330 --- /dev/null +++ b/features/admin.template-core.v1/utils/templates.ts @@ -0,0 +1,76 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { AppConstants } from "@wso2is/admin.core.v1"; +import { ImageUtils, URLUtils } from "@wso2is/core/utils"; +import { ExtensionTemplateConstants } from "../constants/templates"; +import { ResourceTypes } from "../models/templates"; + +/** + * Utility class for Extension Templates related operations. + */ +export class ExtensionTemplateManagementUtils { + + /** + * Private constructor to avoid object instantiation from outside + * the class. + * + */ + private constructor() { } + + /** + * Util to resolve template resource path. + * + * @param path - Resource path. + * @param resourceType - Extension template type. + * @returns The absolute path to the resource location. + */ + public static resolveExtensionTemplateResourcePath(path: string, resourceType: ResourceTypes): string { + if (typeof path !== "string") { + return path; + } + + const basename: string = AppConstants.getAppBasename() ? `/${AppConstants.getAppBasename()}` : ""; + const clientOrigin: string = AppConstants.getClientOrigin(); + + if (path?.includes(ExtensionTemplateConstants.CONSOLE_BASE_URL_PLACEHOLDER)) { + return path.replace( + ExtensionTemplateConstants.CONSOLE_BASE_URL_PLACEHOLDER, + `${clientOrigin}${basename}` + ); + } + + if (URLUtils.isHttpsOrHttpUrl(path) && ImageUtils.isValidImageExtension(path)) { + return path; + } + + if (URLUtils.isDataUrl(path)) { + return path; + } + + if (AppConstants.getClientOrigin()) { + + if (path?.includes(clientOrigin)) { + + return path; + } + + return AppConstants.getClientOrigin() + basename + `/resources/${resourceType}s/` + path; + } + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index fae3362cea2..caa50e0d661 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16167,6 +16167,12 @@ importers: features/admin.template-core.v1: dependencies: + '@wso2is/admin.application-templates.v1': + specifier: ^1.0.0 + version: link:../admin.application-templates.v1 + '@wso2is/admin.applications.v1': + specifier: ^2.21.11 + version: link:../admin.applications.v1 '@wso2is/admin.core.v1': specifier: ^2.21.11 version: link:../admin.core.v1 From a1414792077e40100793cfe3a552cce83710f253 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Tue, 9 Jul 2024 16:00:21 +0530 Subject: [PATCH 053/114] fix the import paths --- .../utils/application-template-management-utils.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/features/admin.applications.v1/utils/application-template-management-utils.ts b/features/admin.applications.v1/utils/application-template-management-utils.ts index 036cfbb4658..7fbff16fff9 100644 --- a/features/admin.applications.v1/utils/application-template-management-utils.ts +++ b/features/admin.applications.v1/utils/application-template-management-utils.ts @@ -31,7 +31,6 @@ import startCase from "lodash-es/startCase"; import { getApplicationTemplateList } from "../api"; -import { ApplicationTemplateConstants } from "../constants/application-templates"; import { TemplateConfigInterface, getApplicationTemplatesConfig } from "../data/application-templates"; import CustomApplicationTemplate from "../data/application-templates/templates/custom-application/custom-application.json"; @@ -458,13 +457,6 @@ export class ApplicationTemplateManagementUtils { const basename: string = AppConstants.getAppBasename() ? `/${AppConstants.getAppBasename()}` : ""; const clientOrigin: string = AppConstants.getClientOrigin(); - if (path?.includes(ApplicationTemplateConstants.CONSOLE_BASE_URL_PLACEHOLDER)) { - return path.replace( - ApplicationTemplateConstants.CONSOLE_BASE_URL_PLACEHOLDER, - `${clientOrigin}${basename}` - ); - } - if (URLUtils.isHttpsOrHttpUrl(path) && ImageUtils.isValidImageExtension(path)) { return path; } From f084278071ca2d6510f28bc7e7b1c66908457b34 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Tue, 9 Jul 2024 16:16:26 +0530 Subject: [PATCH 054/114] remove unused files --- .../components/edit-application.tsx | 8 +- .../configs/endpoints.ts | 2 +- .../models/application-templates.ts | 128 ------------ .../models/dynamic-fields.ts | 183 ------------------ .../admin.applications.v1/models/endpoints.ts | 2 +- 5 files changed, 6 insertions(+), 317 deletions(-) delete mode 100644 features/admin.applications.v1/models/application-templates.ts delete mode 100644 features/admin.applications.v1/models/dynamic-fields.ts diff --git a/features/admin.applications.v1/components/edit-application.tsx b/features/admin.applications.v1/components/edit-application.tsx index c42a9e234ed..76afddb7ae8 100644 --- a/features/admin.applications.v1/components/edit-application.tsx +++ b/features/admin.applications.v1/components/edit-application.tsx @@ -19,6 +19,10 @@ import { Show } from "@wso2is/access-control"; import useApplicationTemplateMetadata from "@wso2is/admin.application-templates.v1/hooks/use-application-template-metadata"; +import { + ApplicationEditTabContentTypes, + ApplicationEditTabMetadataInterface +} from "@wso2is/admin.application-templates.v1/models/templates"; import { AppState, CORSOriginsListInterface, @@ -82,10 +86,6 @@ import { SAMLApplicationConfigurationInterface, SupportedAuthProtocolTypes } from "../models"; -import { - ApplicationEditTabContentTypes, - ApplicationEditTabMetadataInterface -} from "../models/application-templates"; import { ApplicationManagementUtils } from "../utils/application-management-utils"; /** diff --git a/features/admin.applications.v1/configs/endpoints.ts b/features/admin.applications.v1/configs/endpoints.ts index 9a6e1afbf6f..60ed2393ed0 100644 --- a/features/admin.applications.v1/configs/endpoints.ts +++ b/features/admin.applications.v1/configs/endpoints.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020-2024, WSO2 LLC. (https://www.wso2.com). + * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except diff --git a/features/admin.applications.v1/models/application-templates.ts b/features/admin.applications.v1/models/application-templates.ts deleted file mode 100644 index 79add9d02da..00000000000 --- a/features/admin.applications.v1/models/application-templates.ts +++ /dev/null @@ -1,128 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import { ExtensionTemplateCommonInterface } from "@wso2is/admin.template-core.v1/models/templates"; -import { Schema } from "ajv"; -import { MainApplicationInterface } from "./application"; -import { DynamicFormInterface } from "./dynamic-fields"; - -/** - * Interface for the application template. - */ -export interface ApplicationTemplateInterface extends ExtensionTemplateCommonInterface { - /** - * Create form payload parameters. - */ - payload: MainApplicationInterface; - /** - * Data validation schema for application API. - */ - schema?: Schema -} - -/** - * Interface for the application template metadata. - */ -export interface ApplicationTemplateMetadataInterface { - /** - * Application creation related metadata. - */ - create?: { - /** - * Dynamic input fields should be rendered in the application create wizard. - */ - form?: DynamicFormInterface; - /** - * Indicates whether the application is sharable with sub orgs. - */ - isApplicationSharable?: boolean; - /** - * Application creation guide metadata. - */ - guide?: string[]; - } - /** - * Application editing section related metadata. - */ - edit?: { - /** - * The metadata for tabs needs to be rendered on the edit page. - */ - tabs: ApplicationEditTabMetadataInterface[], - /** - * Tab id of the default active tab. - */ - defaultActiveTabId?: string; - } -} - -/** - * Possible Content Types for application editing tabs. - */ -export enum ApplicationEditTabContentTypes { - FORM = "form", - GUIDE = "guide" -} - -/** - * Interface to generate a tab in the application editing section. - */ -export interface ApplicationEditTabMetadataInterface { - /** - * Unique identifier for the tab. - */ - id: string; - /** - * Display name of the tab. - */ - displayName?: string; - /** - * Content Types for current tab. - */ - contentType?: ApplicationEditTabContentTypes; - /** - * Dynamic input fields which should be rendered in the current tab. - */ - forms?: DynamicFormInterface[]; - /** - * Flag to determine if a single update button is sufficient when multiple forms are present. - */ - singleForm?: boolean; - /** - * Guide content for application editing section. - */ - guide?: string; -} - -/** - * Enum for application template categories. - * - * @readonly - */ -export enum ApplicationTemplateCategories { - /** - * Templates supported by default. - * ex: Web Application, SPA etc. - */ - DEFAULT = "DEFAULT", - /** - * SSO Integration templates. - * ex: Zoom, Salesforce etc. - */ - SSO_INTEGRATION = "SSO-INTEGRATION", -} diff --git a/features/admin.applications.v1/models/dynamic-fields.ts b/features/admin.applications.v1/models/dynamic-fields.ts deleted file mode 100644 index bee89d6842c..00000000000 --- a/features/admin.applications.v1/models/dynamic-fields.ts +++ /dev/null @@ -1,183 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -/** - * Interface to define a dynamic form. - */ -export interface DynamicFormInterface { - /** - * Dynamic field data needs to be rendered on the form. - */ - fields: DynamicFieldInterface[], - /** - * Should the form only submit the fields defined above. - */ - submitDefinedFieldsOnly?: boolean; - /** - * API to which the form values should be submitted. - */ - api?: SupportedAPIList; -} - -/** - * Data types required to render the dynamic input fields. - */ -export interface DynamicFieldInterface { - /** - * Unique identifier for the input field. - */ - id: string; - /** - * Aria label of the input field. - */ - "aria-label": string; - /** - * Name of the input field. - */ - name: string; - /** - * Label of the input field. - */ - label: string; - /** - * Input field type. - */ - type: DynamicInputFieldTypes; - /** - * Whether the field is optional or not. - */ - required: boolean; - /** - * Placeholder for the input field. - */ - placeholder: string; - /** - * Helper text for the input field. - */ - helperText: string; - /** - * The data component id for the input field. - */ - dataComponentId: string; - /** - * Indicates if the field is disabled (Value will not be submitted). - */ - disable?: boolean; - /** - * Indicates whether the field is read only. - */ - readOnly?: boolean; - /** - * Indicates whether the field is hidden. - */ - hidden?: boolean; - /** - * Array of validation rules for the field's input. - */ - validations?: ValidationRule[]; - /** - * Additional meta data need to decorate the dynamic input field. - */ - meta?: DynamicFieldMetadataInterface; -} - -/** - * Interface for the metadata of dynamic fields. - */ -export interface DynamicFieldMetadataInterface { - /** - * Names of the properties that should be templated using the current field value. - */ - dependentProperties?: string[]; - /** - * Names of placeholder strings included as templated strings in the current field. - */ - templatedPlaceholders?: string[]; - /** - * Names of the properties that should be templated using the current field value. - */ - dependent?: string[]; - /** - * Whether the current field value should be a generated value. - */ - generator: "uuid" - /** - * Custom props need to be provided into the field component. - */ - customFieldProps: Record -} - -/** - * Supported dynamic input field types. - */ -export enum DynamicInputFieldTypes { - /** - * Text input field. - */ - TEXT = "text", - /** - * Checkbox field. - */ - CHECKBOX = "checkbox", - /** - * Text Area. - */ - TEXTAREA = "textarea", - /** - * Application certificate field. - */ - APPLICATION_CERTIFICATE = "application-certificate" -} - -/** - * Representation of the validation rules for dynamic input field. - */ -export interface ValidationRule { - /** - * The validation rule type. - */ - type: ValidationRuleTypes; - /** - * Error message to be displayed when validation fails. - */ - errorMessage?: string; -} - -/** - * Supported validation rule types for dynamic input fields. - */ -export enum ValidationRuleTypes { - DOMAIN_NAME = "domainName", - APPLICATION_NAME = "applicationName", - REQUIRED = "required" -} - -/** - * List of supported APIs to which the form values can be submitted. - */ -export enum SupportedAPIList { - APPLICATION_PATCH = "PATCH:/api/server/v1/applications", - APPLICATION_SAML_INBOUND_PROTOCOL_PUT = "PUT:/api/server/v1/applications/{application-id}/inbound-protocols/saml" -} - -/** - * List of field value generators. - */ -export enum FieldValueGenerators { - UUID = "uuid" -} diff --git a/features/admin.applications.v1/models/endpoints.ts b/features/admin.applications.v1/models/endpoints.ts index 84a78313591..6e5622f7cae 100644 --- a/features/admin.applications.v1/models/endpoints.ts +++ b/features/admin.applications.v1/models/endpoints.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020-2024, WSO2 LLC. (https://www.wso2.com). + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except From ad11e698d45b492f8eafd80647a35caef7eaf3b6 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Wed, 10 Jul 2024 09:31:35 +0530 Subject: [PATCH 055/114] refactor the markdown guide --- .../api/use-get-blob-resource.ts | 53 ------------ .../components/edit-application.tsx | 2 +- .../components}/markdown-guide.scss | 0 .../components}/markdown-guide.tsx | 33 ++++---- modules/react-components/package.json | 1 + .../markdown/components/blockquote.tsx | 0 .../renderer}/markdown/components/code.tsx | 0 .../markdown/components/divider.scss | 0 .../renderer}/markdown/components/divider.tsx | 0 .../markdown/components/heading.scss | 0 .../markdown/components/heading1.tsx | 0 .../markdown/components/heading2.tsx | 0 .../markdown/components/heading3.tsx | 0 .../markdown/components/heading4.tsx | 0 .../markdown/components/heading5.tsx | 0 .../markdown/components/heading6.tsx | 0 .../renderer}/markdown/components/image.scss | 0 .../renderer}/markdown/components/image.tsx | 0 .../renderer}/markdown/components/index.ts | 0 .../renderer}/markdown/components/italic.tsx | 0 .../markdown/components/list-item.tsx | 0 .../markdown/components/markdown-link.tsx | 83 ++++--------------- .../markdown/components/ordered-list.tsx | 0 .../markdown/components/paragraph.tsx | 0 .../renderer}/markdown/components/pre.tsx | 0 .../renderer}/markdown/components/strong.tsx | 0 .../markdown/components/unordered-list.tsx | 0 .../renderer}/markdown/components/utils.tsx | 0 .../components/renderer/markdown/markdown.tsx | 34 ++++++-- .../src/context}/global-markdown-context.tsx | 0 .../src/hooks}/use-global-markdown.ts | 2 +- .../providers}/global-markdown-provider.tsx | 2 +- pnpm-lock.yaml | 3 + 33 files changed, 63 insertions(+), 150 deletions(-) delete mode 100644 features/admin.applications.v1/api/use-get-blob-resource.ts rename features/{admin.applications.v1/components/help-panel/markdown => admin.template-core.v1/components}/markdown-guide.scss (100%) rename features/{admin.applications.v1/components/help-panel/markdown => admin.template-core.v1/components}/markdown-guide.tsx (91%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/blockquote.tsx (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/code.tsx (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/divider.scss (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/divider.tsx (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/heading.scss (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/heading1.tsx (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/heading2.tsx (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/heading3.tsx (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/heading4.tsx (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/heading5.tsx (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/heading6.tsx (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/image.scss (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/image.tsx (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/index.ts (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/italic.tsx (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/list-item.tsx (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/markdown-link.tsx (64%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/ordered-list.tsx (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/paragraph.tsx (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/pre.tsx (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/strong.tsx (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/unordered-list.tsx (100%) rename {features/admin.applications.v1/components/help-panel => modules/react-components/src/components/renderer}/markdown/components/utils.tsx (100%) rename {features/admin.applications.v1/components/help-panel/markdown => modules/react-components/src/context}/global-markdown-context.tsx (100%) rename {features/admin.applications.v1/components/help-panel/markdown => modules/react-components/src/hooks}/use-global-markdown.ts (97%) rename {features/admin.applications.v1/components/help-panel/markdown => modules/react-components/src/providers}/global-markdown-provider.tsx (97%) diff --git a/features/admin.applications.v1/api/use-get-blob-resource.ts b/features/admin.applications.v1/api/use-get-blob-resource.ts deleted file mode 100644 index b5dff238b36..00000000000 --- a/features/admin.applications.v1/api/use-get-blob-resource.ts +++ /dev/null @@ -1,53 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import useRequest, { RequestErrorInterface, RequestResultInterface } from "@wso2is/admin.core.v1/hooks/use-request"; -import { HttpMethods } from "@wso2is/core/models"; -import { AxiosRequestConfig } from "axios"; - -/** - * Hook to get a blob resource. - * - * @param url - Url of the resource. - * @param shouldFetch - Condition to check if data should be fetched. - * @returns Response as a promise. - */ -export const useGetBlobResource = ( - url: string, - shouldFetch: boolean = true -): RequestResultInterface => { - - const requestConfig: AxiosRequestConfig = { - headers: { - "Accept": "application/*,image/*" - }, - method: HttpMethods.GET, - responseType: "blob", - url - }; - - const { data, error, isValidating, mutate } = useRequest(shouldFetch ? requestConfig : null); - - return { - data, - error, - isLoading: shouldFetch && !error && !data, - isValidating, - mutate - }; -}; diff --git a/features/admin.applications.v1/components/edit-application.tsx b/features/admin.applications.v1/components/edit-application.tsx index 76afddb7ae8..97872c9fc21 100644 --- a/features/admin.applications.v1/components/edit-application.tsx +++ b/features/admin.applications.v1/components/edit-application.tsx @@ -37,6 +37,7 @@ import AILoginFlowProvider from "@wso2is/admin.login-flow.ai.v1/providers/ai-log import { OrganizationType } from "@wso2is/admin.organizations.v1/constants"; import { useGetCurrentOrganizationType } from "@wso2is/admin.organizations.v1/hooks/use-get-organization-type"; import { ApplicationEditForm } from "@wso2is/admin.template-core.v1/components/application-edit-form"; +import { MarkdownGuide } from "@wso2is/admin.template-core.v1/components/markdown-guide"; import { hasRequiredScopes, isFeatureEnabled } from "@wso2is/core/helpers"; import { AlertLevels, IdentifiableComponentInterface, SBACInterface } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; @@ -58,7 +59,6 @@ import { useTranslation } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; import { Dispatch } from "redux"; import { CheckboxProps, Divider, Form, Grid, Menu, TabProps } from "semantic-ui-react"; -import { MarkdownGuide } from "./help-panel/markdown/markdown-guide"; import { InboundProtocolsMeta } from "./meta"; import { AccessConfiguration, diff --git a/features/admin.applications.v1/components/help-panel/markdown/markdown-guide.scss b/features/admin.template-core.v1/components/markdown-guide.scss similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/markdown-guide.scss rename to features/admin.template-core.v1/components/markdown-guide.scss diff --git a/features/admin.applications.v1/components/help-panel/markdown/markdown-guide.tsx b/features/admin.template-core.v1/components/markdown-guide.tsx similarity index 91% rename from features/admin.applications.v1/components/help-panel/markdown/markdown-guide.tsx rename to features/admin.template-core.v1/components/markdown-guide.tsx index d6a47c6af14..54bfb14afef 100644 --- a/features/admin.applications.v1/components/help-panel/markdown/markdown-guide.tsx +++ b/features/admin.template-core.v1/components/markdown-guide.tsx @@ -16,6 +16,14 @@ * under the License. */ +import { useGetApplication } from "@wso2is/admin.applications.v1/api/use-get-application"; +import useGetApplicationInboundConfigs from "@wso2is/admin.applications.v1/api/use-get-application-inbound-configs"; +import { + ApplicationInterface, + SAML2ServiceProviderInterface, + SAMLApplicationConfigurationInterface, + SupportedAuthProtocolTypes +} from "@wso2is/admin.applications.v1/models"; import { AppState, history } from "@wso2is/admin.core.v1"; import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; @@ -30,16 +38,6 @@ import { useTranslation } from "react-i18next"; import { useDispatch, useSelector } from "react-redux"; import { Dispatch } from "redux"; import { Grid } from "semantic-ui-react"; -import * as CustomMarkdownComponents from "./components"; -import GlobalMarkdownProvider from "./global-markdown-provider"; -import { useGetApplication } from "../../../api/use-get-application"; -import useGetApplicationInboundConfigs from "../../../api/use-get-application-inbound-configs"; -import { - ApplicationInterface, - SAML2ServiceProviderInterface, - SAMLApplicationConfigurationInterface, - SupportedAuthProtocolTypes -} from "../../../models"; import "./markdown-guide.scss"; /** @@ -286,15 +284,12 @@ export const MarkdownGuide: FunctionComponent = ( isLoading || applicationLoading || applicationInboundProtocolLoading || !moderatedContent ? : ( - - - + ) } diff --git a/modules/react-components/package.json b/modules/react-components/package.json index 02fa40bc29a..655b1f30161 100644 --- a/modules/react-components/package.json +++ b/modules/react-components/package.json @@ -49,6 +49,7 @@ "@wso2is/theme": "^2.0.86", "classnames": "^2.2.6", "codemirror": "^5.52.0", + "file-saver": "^2.0.5", "i18next": "^21.9.1", "js-beautify": "^1.13.0", "jshint": "^2.11.0", diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/blockquote.tsx b/modules/react-components/src/components/renderer/markdown/components/blockquote.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/blockquote.tsx rename to modules/react-components/src/components/renderer/markdown/components/blockquote.tsx diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/code.tsx b/modules/react-components/src/components/renderer/markdown/components/code.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/code.tsx rename to modules/react-components/src/components/renderer/markdown/components/code.tsx diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/divider.scss b/modules/react-components/src/components/renderer/markdown/components/divider.scss similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/divider.scss rename to modules/react-components/src/components/renderer/markdown/components/divider.scss diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/divider.tsx b/modules/react-components/src/components/renderer/markdown/components/divider.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/divider.tsx rename to modules/react-components/src/components/renderer/markdown/components/divider.tsx diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/heading.scss b/modules/react-components/src/components/renderer/markdown/components/heading.scss similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/heading.scss rename to modules/react-components/src/components/renderer/markdown/components/heading.scss diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/heading1.tsx b/modules/react-components/src/components/renderer/markdown/components/heading1.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/heading1.tsx rename to modules/react-components/src/components/renderer/markdown/components/heading1.tsx diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/heading2.tsx b/modules/react-components/src/components/renderer/markdown/components/heading2.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/heading2.tsx rename to modules/react-components/src/components/renderer/markdown/components/heading2.tsx diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/heading3.tsx b/modules/react-components/src/components/renderer/markdown/components/heading3.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/heading3.tsx rename to modules/react-components/src/components/renderer/markdown/components/heading3.tsx diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/heading4.tsx b/modules/react-components/src/components/renderer/markdown/components/heading4.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/heading4.tsx rename to modules/react-components/src/components/renderer/markdown/components/heading4.tsx diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/heading5.tsx b/modules/react-components/src/components/renderer/markdown/components/heading5.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/heading5.tsx rename to modules/react-components/src/components/renderer/markdown/components/heading5.tsx diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/heading6.tsx b/modules/react-components/src/components/renderer/markdown/components/heading6.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/heading6.tsx rename to modules/react-components/src/components/renderer/markdown/components/heading6.tsx diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/image.scss b/modules/react-components/src/components/renderer/markdown/components/image.scss similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/image.scss rename to modules/react-components/src/components/renderer/markdown/components/image.scss diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/image.tsx b/modules/react-components/src/components/renderer/markdown/components/image.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/image.tsx rename to modules/react-components/src/components/renderer/markdown/components/image.tsx diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/index.ts b/modules/react-components/src/components/renderer/markdown/components/index.ts similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/index.ts rename to modules/react-components/src/components/renderer/markdown/components/index.ts diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/italic.tsx b/modules/react-components/src/components/renderer/markdown/components/italic.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/italic.tsx rename to modules/react-components/src/components/renderer/markdown/components/italic.tsx diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/list-item.tsx b/modules/react-components/src/components/renderer/markdown/components/list-item.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/list-item.tsx rename to modules/react-components/src/components/renderer/markdown/components/list-item.tsx diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/markdown-link.tsx b/modules/react-components/src/components/renderer/markdown/components/markdown-link.tsx similarity index 64% rename from features/admin.applications.v1/components/help-panel/markdown/components/markdown-link.tsx rename to modules/react-components/src/components/renderer/markdown/components/markdown-link.tsx index e602dc2c46a..24f478303a6 100644 --- a/features/admin.applications.v1/components/help-panel/markdown/components/markdown-link.tsx +++ b/modules/react-components/src/components/renderer/markdown/components/markdown-link.tsx @@ -16,20 +16,14 @@ * under the License. */ -import { AlertLevels } from "@wso2is/core/models"; -import { addAlert } from "@wso2is/core/store"; import { URLUtils } from "@wso2is/core/utils"; import { Link, MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; import { saveAs } from "file-saver"; -import React, { FunctionComponent, ReactElement, useEffect, useMemo, useState } from "react"; -import { useTranslation } from "react-i18next"; -import { useDispatch } from "react-redux"; -import { Dispatch } from "redux"; -import { useGetBlobResource } from "../../../../api/use-get-blob-resource"; -import useGlobalMarkdown from "../use-global-markdown"; +import React, { FunctionComponent, ReactElement, useMemo } from "react"; +import useGlobalMarkdown from "../../../../hooks/use-global-markdown"; const DEFAULT_DOWNLOAD_FILE_NAME: string = "download"; @@ -80,65 +74,12 @@ const MarkdownLink: FunctionComponent = (props: MarkdownLinkP "data-componentid": componentId } = props; - const dispatch: Dispatch = useDispatch(); - const { t } = useTranslation(); - const { onHandleInternalUrl } = useGlobalMarkdown(); - const [ downloadLink, setDownloadLink ] = useState(""); - - const { - data: blobData, - isLoading: blobFetchRequestIsLoading, - error: blobFetchRequestError - } = useGetBlobResource(downloadLink, !!downloadLink); - - /** - * Initiate the download when the blob resource becomes available. - */ - useEffect(() => { - if (blobData) { - if (dataConfig?.fileName) { - saveAs(blobData, dataConfig?.fileName); - } else { - saveAs(blobData, DEFAULT_DOWNLOAD_FILE_NAME); - } - - setDownloadLink(""); - } - }, [ blobData ]); - - /** - * Handles the blob resource fetch request error. - */ - useEffect(() => { - if (!blobFetchRequestError) { - return; - } - - if (blobFetchRequestError.response?.data?.description) { - dispatch(addAlert({ - description: blobFetchRequestError.response.data.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.fetchApplication.error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.fetchApplication" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications.fetchApplication.genericError." + - "message") - })); - }, [ blobFetchRequestError ]); - /** * Initiate the download process. */ - const initDownload = (): void => { + const initDownload = async (): Promise => { if (dataConfig?.content && dataConfig?.type) { const blob: Blob = new Blob([ atob(dataConfig?.content) ], { type: dataConfig?.type @@ -153,11 +94,21 @@ const MarkdownLink: FunctionComponent = (props: MarkdownLinkP return; } - if (blobFetchRequestIsLoading) { - return; - } + const response = await fetch(href); - setDownloadLink(href); + // Check if the response is ok (status is in the range 200-299). + if (response.ok) { + // Convert the response to a Blob. + const blob = await response.blob(); + + if (blob) { + if (dataConfig?.fileName) { + saveAs(blob, dataConfig?.fileName); + } else { + saveAs(blob, DEFAULT_DOWNLOAD_FILE_NAME); + } + } + } }; /** diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/ordered-list.tsx b/modules/react-components/src/components/renderer/markdown/components/ordered-list.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/ordered-list.tsx rename to modules/react-components/src/components/renderer/markdown/components/ordered-list.tsx diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/paragraph.tsx b/modules/react-components/src/components/renderer/markdown/components/paragraph.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/paragraph.tsx rename to modules/react-components/src/components/renderer/markdown/components/paragraph.tsx diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/pre.tsx b/modules/react-components/src/components/renderer/markdown/components/pre.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/pre.tsx rename to modules/react-components/src/components/renderer/markdown/components/pre.tsx diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/strong.tsx b/modules/react-components/src/components/renderer/markdown/components/strong.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/strong.tsx rename to modules/react-components/src/components/renderer/markdown/components/strong.tsx diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/unordered-list.tsx b/modules/react-components/src/components/renderer/markdown/components/unordered-list.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/unordered-list.tsx rename to modules/react-components/src/components/renderer/markdown/components/unordered-list.tsx diff --git a/features/admin.applications.v1/components/help-panel/markdown/components/utils.tsx b/modules/react-components/src/components/renderer/markdown/components/utils.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/components/utils.tsx rename to modules/react-components/src/components/renderer/markdown/components/utils.tsx diff --git a/modules/react-components/src/components/renderer/markdown/markdown.tsx b/modules/react-components/src/components/renderer/markdown/markdown.tsx index bb4082dd188..2cad67c5dad 100644 --- a/modules/react-components/src/components/renderer/markdown/markdown.tsx +++ b/modules/react-components/src/components/renderer/markdown/markdown.tsx @@ -21,6 +21,9 @@ import classNames from "classnames"; import React, { FunctionComponent, ReactElement } from "react"; import ReactMarkdown, { ExtraProps, Options } from "react-markdown"; import rehypeAttrs from "rehype-attr"; +import * as CustomMarkdownComponents from "./components"; +import { GlobalMarkdownContextProps } from "../../../context/global-markdown-context"; +import GlobalMarkdownProvider from "../../../providers/global-markdown-provider"; /** * Props interface for the Markdown custom component. @@ -42,6 +45,10 @@ export interface MarkdownPropsInterface extends Options, IdentifiableComponentIn * Text alignment. */ textAlign?: "left" | "center" | "right"; + /** + * Properties that can be provided to custom markdown components externally. + */ + properties?: GlobalMarkdownContextProps; } /** @@ -57,6 +64,7 @@ export const Markdown: FunctionComponent = (props: Markd source, className, textAlign, + properties, [ "data-componentid" ]: componentId, [ "data-testid" ]: testId, ...rest @@ -71,16 +79,24 @@ export const Markdown: FunctionComponent = (props: Markd ); return ( - - { source } - + + { source } + + ); }; diff --git a/features/admin.applications.v1/components/help-panel/markdown/global-markdown-context.tsx b/modules/react-components/src/context/global-markdown-context.tsx similarity index 100% rename from features/admin.applications.v1/components/help-panel/markdown/global-markdown-context.tsx rename to modules/react-components/src/context/global-markdown-context.tsx diff --git a/features/admin.applications.v1/components/help-panel/markdown/use-global-markdown.ts b/modules/react-components/src/hooks/use-global-markdown.ts similarity index 97% rename from features/admin.applications.v1/components/help-panel/markdown/use-global-markdown.ts rename to modules/react-components/src/hooks/use-global-markdown.ts index 8f8ead4fe3d..a9d6fa5f8c4 100644 --- a/features/admin.applications.v1/components/help-panel/markdown/use-global-markdown.ts +++ b/modules/react-components/src/hooks/use-global-markdown.ts @@ -17,7 +17,7 @@ */ import { useContext } from "react"; -import GlobalMarkdownContext, { GlobalMarkdownContextProps } from "./global-markdown-context"; +import GlobalMarkdownContext, { GlobalMarkdownContextProps } from "../context/global-markdown-context"; /** * Interface for the return type of the `useGlobalMarkdown` hook. diff --git a/features/admin.applications.v1/components/help-panel/markdown/global-markdown-provider.tsx b/modules/react-components/src/providers/global-markdown-provider.tsx similarity index 97% rename from features/admin.applications.v1/components/help-panel/markdown/global-markdown-provider.tsx rename to modules/react-components/src/providers/global-markdown-provider.tsx index a0ebbfa1a23..098ad6f071b 100644 --- a/features/admin.applications.v1/components/help-panel/markdown/global-markdown-provider.tsx +++ b/modules/react-components/src/providers/global-markdown-provider.tsx @@ -17,7 +17,7 @@ */ import React, { PropsWithChildren, ReactElement } from "react"; -import GlobalMarkdownContext, { GlobalMarkdownContextProps } from "./global-markdown-context"; +import GlobalMarkdownContext, { GlobalMarkdownContextProps } from "../context/global-markdown-context"; /** * Props interface for the global markdown provider. diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index caa50e0d661..29027f84c80 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -19939,6 +19939,9 @@ importers: codemirror: specifier: ^5.52.0 version: 5.65.16 + file-saver: + specifier: ^2.0.5 + version: 2.0.5 i18next: specifier: ^21.9.1 version: 21.10.0 From 82bd8f777c7cbaa7dfe2981599b8c94ba69dc937 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Wed, 10 Jul 2024 09:36:00 +0530 Subject: [PATCH 056/114] clean the application utils --- .../application-template-management-utils.ts | 35 ------------------- 1 file changed, 35 deletions(-) diff --git a/features/admin.applications.v1/utils/application-template-management-utils.ts b/features/admin.applications.v1/utils/application-template-management-utils.ts index 7fbff16fff9..c3d8b89e18a 100644 --- a/features/admin.applications.v1/utils/application-template-management-utils.ts +++ b/features/admin.applications.v1/utils/application-template-management-utils.ts @@ -16,12 +16,10 @@ * under the License. */ -import { AppConstants } from "@wso2is/admin.core.v1"; import { getTechnologyLogos } from "@wso2is/admin.core.v1/configs"; import { store } from "@wso2is/admin.core.v1/store"; import { AlertLevels } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; -import { ImageUtils, URLUtils } from "@wso2is/core/utils"; import { I18n } from "@wso2is/i18n"; import { TemplateCardTagInterface } from "@wso2is/react-components"; import { AxiosError } from "axios"; @@ -442,37 +440,4 @@ export class ApplicationTemplateManagementUtils { return templates; } - - /** - * Util to resolve application resource path. - * - * @param path - Resource path. - * @returns The absolute path to the resource location. - */ - public static resolveApplicationResourcePath(path: string): string { - if (typeof path !== "string") { - return path; - } - - const basename: string = AppConstants.getAppBasename() ? `/${AppConstants.getAppBasename()}` : ""; - const clientOrigin: string = AppConstants.getClientOrigin(); - - if (URLUtils.isHttpsOrHttpUrl(path) && ImageUtils.isValidImageExtension(path)) { - return path; - } - - if (URLUtils.isDataUrl(path)) { - return path; - } - - if (AppConstants.getClientOrigin()) { - - if (path?.includes(clientOrigin)) { - - return path; - } - - return AppConstants.getClientOrigin() + basename + "/resources/applications/" + path; - } - } } From 494ff56516d6c4af22b58d34e07aa046f829f3ea Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Wed, 10 Jul 2024 18:22:22 +0530 Subject: [PATCH 057/114] refactor the for life cycle handling --- .../use-custom-initialize-handlers.tsx | 67 +++ .../use-unique-application-name.tsx | 72 +++ .../build-callback-urls-with-regexp.ts | 0 .../use-custom-submission-handlers.tsx | 67 +++ .../use-application-name-validation.tsx | 162 ++++++ .../use-custom-validation-handlers.tsx | 69 +++ .../models/dynamic-fields.ts | 24 + .../application-template-management-utils.ts | 2 +- .../components/application-create-wizard.tsx | 14 +- .../initialize/extract-templated-fields.ts | 30 ++ .../initialize/use-initialize-handlers.tsx | 118 +++++ .../handlers/submission/disable-property.ts | 31 ++ .../submission/unique-id-generator.ts | 46 ++ .../submission/use-dependent-property.ts | 97 ++++ .../submission/use-submission-handlers.tsx | 136 ++++++ .../handlers/validation/required-field.ts | 33 ++ .../handlers/validation/url-validation.ts | 37 ++ .../validation/use-validation-handlers.tsx | 173 +++++++ .../components/resource-create-wizard.scss | 74 +++ .../components/resource-create-wizard.tsx | 460 ++++++++++++++++++ .../hooks/use-dynamic-field-validation.ts | 336 ------------- .../models/dynamic-fields.ts | 73 +-- 22 files changed, 1735 insertions(+), 386 deletions(-) create mode 100644 features/admin.application-templates.v1/components/forms/handlers/initialize/use-custom-initialize-handlers.tsx create mode 100644 features/admin.application-templates.v1/components/forms/handlers/initialize/use-unique-application-name.tsx create mode 100644 features/admin.application-templates.v1/components/forms/handlers/submission/build-callback-urls-with-regexp.ts create mode 100644 features/admin.application-templates.v1/components/forms/handlers/submission/use-custom-submission-handlers.tsx create mode 100644 features/admin.application-templates.v1/components/forms/handlers/validation/use-application-name-validation.tsx create mode 100644 features/admin.application-templates.v1/components/forms/handlers/validation/use-custom-validation-handlers.tsx create mode 100644 features/admin.application-templates.v1/models/dynamic-fields.ts create mode 100644 features/admin.template-core.v1/components/forms/handlers/initialize/extract-templated-fields.ts create mode 100644 features/admin.template-core.v1/components/forms/handlers/initialize/use-initialize-handlers.tsx create mode 100644 features/admin.template-core.v1/components/forms/handlers/submission/disable-property.ts create mode 100644 features/admin.template-core.v1/components/forms/handlers/submission/unique-id-generator.ts create mode 100644 features/admin.template-core.v1/components/forms/handlers/submission/use-dependent-property.ts create mode 100644 features/admin.template-core.v1/components/forms/handlers/submission/use-submission-handlers.tsx create mode 100644 features/admin.template-core.v1/components/forms/handlers/validation/required-field.ts create mode 100644 features/admin.template-core.v1/components/forms/handlers/validation/url-validation.ts create mode 100644 features/admin.template-core.v1/components/forms/handlers/validation/use-validation-handlers.tsx create mode 100644 features/admin.template-core.v1/components/resource-create-wizard.scss create mode 100644 features/admin.template-core.v1/components/resource-create-wizard.tsx delete mode 100644 features/admin.template-core.v1/hooks/use-dynamic-field-validation.ts diff --git a/features/admin.application-templates.v1/components/forms/handlers/initialize/use-custom-initialize-handlers.tsx b/features/admin.application-templates.v1/components/forms/handlers/initialize/use-custom-initialize-handlers.tsx new file mode 100644 index 00000000000..9815ec81f79 --- /dev/null +++ b/features/admin.application-templates.v1/components/forms/handlers/initialize/use-custom-initialize-handlers.tsx @@ -0,0 +1,67 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { CustomInitializeFunction } from + "@wso2is/admin.template-core.v1/components/forms/handlers/initialize/use-initialize-handlers"; +import { + DynamicFieldHandlerInterface, + DynamicFieldInterface +} from "@wso2is/admin.template-core.v1/models/dynamic-fields"; +import get from "lodash-es/get"; +import useUniqueApplicationName from "./use-unique-application-name"; +import { ApplicationTemplateValidationHandlers } from "../../../../models/dynamic-fields"; + +/** + * Hook for custom initialize handlers. + * + * @returns Custom initialize functions. + */ +const useInitializeHandlers = (): { customInitializers: CustomInitializeFunction } => { + + const { generateUniqueApplicationName } = useUniqueApplicationName(); + + /** + * Custom initializer functions to initialize the field based on the handler. + * + * @param formValues - The form values to be initialized. + * @param field - Metadata of the form field. + * @param handler - Handler definition. + * @param templatePayload - Template payload values. + */ + const customInitializers = async ( + formValues: Record, + field: DynamicFieldInterface, + handler: DynamicFieldHandlerInterface, + templatePayload: Record + ): Promise => { + switch (handler?.name) { + case ApplicationTemplateValidationHandlers.APPLICATION_NAME: + await generateUniqueApplicationName( + get(templatePayload, field?.name)?.toString()?.trim(), + formValues, + field?.name + ); + + break; + } + }; + + return { customInitializers }; +}; + +export default useInitializeHandlers; diff --git a/features/admin.application-templates.v1/components/forms/handlers/initialize/use-unique-application-name.tsx b/features/admin.application-templates.v1/components/forms/handlers/initialize/use-unique-application-name.tsx new file mode 100644 index 00000000000..5b4bec6d2d1 --- /dev/null +++ b/features/admin.application-templates.v1/components/forms/handlers/initialize/use-unique-application-name.tsx @@ -0,0 +1,72 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { getApplicationList } from "@wso2is/admin.applications.v1/api"; +import { ApplicationListInterface, ApplicationListItemInterface } from "@wso2is/admin.applications.v1/models"; +import set from "lodash-es/set"; + +/** + * Hook to generate a unique application name. + * + * @returns The function to generate unique application names. + */ +const useUniqueApplicationName = (): { + generateUniqueApplicationName: ( + initialApplicationName: string, + formValues: Record, + fieldName: string + ) => Promise +} => { + + /** + * Generate the next unique name by appending 1-based index number to the provided initial value. + * + * @param initialApplicationName - Initial value for the Application name. + * @returns A unique name from the provided list of names. + */ + const generateUniqueApplicationName = async ( + initialApplicationName: string, + formValues: Record, + fieldName: string + ): Promise => { + + let appName: string = initialApplicationName; + + const possibleListOfDuplicateApplications: ApplicationListInterface = await getApplicationList( + null, null, "name sw " + appName?.trim()); + + if (possibleListOfDuplicateApplications?.totalResults > 0) { + const applicationNameList: string[] = possibleListOfDuplicateApplications?.applications?.map( + (item: ApplicationListItemInterface) => item?.name); + + for (let i: number = 2; ; i++) { + if (!applicationNameList?.includes(appName)) { + break; + } + + appName = initialApplicationName + " " + i; + } + } + + set(formValues, fieldName, appName); + }; + + return { generateUniqueApplicationName }; +}; + +export default useUniqueApplicationName; diff --git a/features/admin.application-templates.v1/components/forms/handlers/submission/build-callback-urls-with-regexp.ts b/features/admin.application-templates.v1/components/forms/handlers/submission/build-callback-urls-with-regexp.ts new file mode 100644 index 00000000000..e69de29bb2d diff --git a/features/admin.application-templates.v1/components/forms/handlers/submission/use-custom-submission-handlers.tsx b/features/admin.application-templates.v1/components/forms/handlers/submission/use-custom-submission-handlers.tsx new file mode 100644 index 00000000000..9815ec81f79 --- /dev/null +++ b/features/admin.application-templates.v1/components/forms/handlers/submission/use-custom-submission-handlers.tsx @@ -0,0 +1,67 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { CustomInitializeFunction } from + "@wso2is/admin.template-core.v1/components/forms/handlers/initialize/use-initialize-handlers"; +import { + DynamicFieldHandlerInterface, + DynamicFieldInterface +} from "@wso2is/admin.template-core.v1/models/dynamic-fields"; +import get from "lodash-es/get"; +import useUniqueApplicationName from "./use-unique-application-name"; +import { ApplicationTemplateValidationHandlers } from "../../../../models/dynamic-fields"; + +/** + * Hook for custom initialize handlers. + * + * @returns Custom initialize functions. + */ +const useInitializeHandlers = (): { customInitializers: CustomInitializeFunction } => { + + const { generateUniqueApplicationName } = useUniqueApplicationName(); + + /** + * Custom initializer functions to initialize the field based on the handler. + * + * @param formValues - The form values to be initialized. + * @param field - Metadata of the form field. + * @param handler - Handler definition. + * @param templatePayload - Template payload values. + */ + const customInitializers = async ( + formValues: Record, + field: DynamicFieldInterface, + handler: DynamicFieldHandlerInterface, + templatePayload: Record + ): Promise => { + switch (handler?.name) { + case ApplicationTemplateValidationHandlers.APPLICATION_NAME: + await generateUniqueApplicationName( + get(templatePayload, field?.name)?.toString()?.trim(), + formValues, + field?.name + ); + + break; + } + }; + + return { customInitializers }; +}; + +export default useInitializeHandlers; diff --git a/features/admin.application-templates.v1/components/forms/handlers/validation/use-application-name-validation.tsx b/features/admin.application-templates.v1/components/forms/handlers/validation/use-application-name-validation.tsx new file mode 100644 index 00000000000..96aae82bfeb --- /dev/null +++ b/features/admin.application-templates.v1/components/forms/handlers/validation/use-application-name-validation.tsx @@ -0,0 +1,162 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { getApplicationList } from "@wso2is/admin.applications.v1/api"; +import { ApplicationManagementConstants } from "@wso2is/admin.applications.v1/constants"; +import { ApplicationListInterface } from "@wso2is/admin.applications.v1/models"; +import { AppState } from "@wso2is/admin.core.v1"; +import { AlertLevels } from "@wso2is/core/models"; +import { addAlert } from "@wso2is/core/store"; +import { AxiosError } from "axios"; +import debounce, { DebouncedFunc } from "lodash-es/debounce"; +import { MutableRefObject, useRef, useState } from "react"; +import { useTranslation } from "react-i18next"; +import { useDispatch, useSelector } from "react-redux"; +import { Dispatch } from "redux"; + +/** + * Hook for validate the application name. + * + * @returns The application name validation function. + */ +const useApplicationNameValidation = (): { + validateApplicationName: (name: string, id: string) => Promise +} => { + const { t } = useTranslation(); + + const dispatch: Dispatch = useDispatch(); + + const reservedAppNamePattern: string = useSelector((state: AppState) => { + return state?.config?.deployment?.extensions?.asgardeoReservedAppRegex as string; + }); + + const previouslyValidatedApplicationName: MutableRefObject = useRef(null); + const [ isApplicationNameAlreadyReserved, setIsApplicationNameAlreadyReserved ] = useState(false); + + /** + * Search for applications and retrieve a list for the given app name. + * + * @param appName - Name of the application for searching. + * @returns List of applications found based on the given name. + */ + const getApplications = (appName: string): Promise => { + + return getApplicationList(null, null, "name eq " + appName?.trim()) + .then((response: ApplicationListInterface) => response) + .catch((error: AxiosError) => { + if (error?.response?.data?.description) { + dispatch(addAlert({ + description: error.response.data.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.fetchApplications.error.message") + })); + + return null; + } + + dispatch(addAlert({ + description: t("applications:notifications." + + "fetchApplications.genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications." + + "fetchApplications.genericError.message") + })); + + return null; + }); + }; + + /** + * Checks whether the application name is reserved. + * + * @param name - Name of the application. + */ + const isAppNameReserved = (name: string) => { + if(!reservedAppNamePattern) { + return false; + } + const reservedAppRegex: RegExp = new RegExp(reservedAppNamePattern); + + return name && reservedAppRegex.test(name); + }; + + /** + * Checks whether the application name is valid. + * + * @param name - Name of the application. + */ + const isNameValid = (name: string) => { + return name && !!name?.match(ApplicationManagementConstants.FORM_FIELD_CONSTRAINTS.APP_NAME_PATTERN); + }; + + /** + * Check if there is any application with the given name. + * + * @param name - Name of the application. + * @param appId - application id. + */ + const isApplicationNameAlreadyExist: DebouncedFunc<(name: string, appId: string) => Promise> = debounce( + async (name: string, appId: string) => { + if (previouslyValidatedApplicationName?.current !== name) { + previouslyValidatedApplicationName.current = name; + + const response: ApplicationListInterface = await getApplications(name); + + setIsApplicationNameAlreadyReserved( + response?.totalResults > 0 && response?.applications[0]?.id !== appId); + } + }, + 500 + ); + + /** + * Checks whether the application name is valid. + * + * @param name - The value need to be validated. + * @returns Whether the provided value is a valid application name. + */ + const validateApplicationName = async (name: string, id: string): Promise => { + if (!isNameValid(name)) { + return t("applications:forms." + + "spaProtocolSettingsWizard.fields.name.validations.invalid", { + characterLimit: ApplicationManagementConstants.FORM_FIELD_CONSTRAINTS.APP_NAME_MAX_LENGTH, + name + }); + } + + if (isAppNameReserved(name)) { + return t("applications:forms.generalDetails.fields.name.validations.reserved", { + name + }); + } + + await isApplicationNameAlreadyExist(name, id); + + if (isApplicationNameAlreadyReserved) { + return t("applications:forms.generalDetails.fields.name.validations.duplicate"); + } + + return null; + }; + + return { + validateApplicationName + }; +}; + +export default useApplicationNameValidation; diff --git a/features/admin.application-templates.v1/components/forms/handlers/validation/use-custom-validation-handlers.tsx b/features/admin.application-templates.v1/components/forms/handlers/validation/use-custom-validation-handlers.tsx new file mode 100644 index 00000000000..7a23caa8ea3 --- /dev/null +++ b/features/admin.application-templates.v1/components/forms/handlers/validation/use-custom-validation-handlers.tsx @@ -0,0 +1,69 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { CustomValidationsFunction } from + "@wso2is/admin.template-core.v1/components/forms/handlers/validation/use-validation-handlers"; +import { + DynamicFieldHandlerInterface, + DynamicFieldInterface +} from "@wso2is/admin.template-core.v1/models/dynamic-fields"; +import get from "lodash-es/get"; +import useApplicationNameValidation from "./use-application-name-validation"; +import { ApplicationTemplateValidationHandlers } from "../../../../models/dynamic-fields"; + +/** + * Hook for custom validation handlers. + * + * @returns Custom validation functions. + */ +const useValidationHandlers = (): { customValidations: CustomValidationsFunction } => { + + const { validateApplicationName } = useApplicationNameValidation(); + + /** + * Custom validation function to validate the field based on the handler. + * + * @param formValues - The form values to be validated. + * @param field - Metadata of the form field. + * @param handler - Handler definition. + * @returns An error message if validation fails, or `null` if validation succeeds. + */ + const customValidations = async ( + formValues: Record, + field: DynamicFieldInterface, + handler: DynamicFieldHandlerInterface + ): Promise => { + let validationResult: string = null; + + switch (handler?.name) { + case ApplicationTemplateValidationHandlers.APPLICATION_NAME: + validationResult = await validateApplicationName( + get(formValues, field?.name)?.toString()?.trim(), + get(formValues, "id") + ); + + break; + } + + return validationResult; + }; + + return { customValidations }; +}; + +export default useValidationHandlers; diff --git a/features/admin.application-templates.v1/models/dynamic-fields.ts b/features/admin.application-templates.v1/models/dynamic-fields.ts new file mode 100644 index 00000000000..055c8c77dcd --- /dev/null +++ b/features/admin.application-templates.v1/models/dynamic-fields.ts @@ -0,0 +1,24 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Supported custom validation handlers for application templates. + */ +export enum ApplicationTemplateValidationHandlers { + APPLICATION_NAME = "applicationName", +} diff --git a/features/admin.applications.v1/utils/application-template-management-utils.ts b/features/admin.applications.v1/utils/application-template-management-utils.ts index c3d8b89e18a..cdf265e8f5d 100644 --- a/features/admin.applications.v1/utils/application-template-management-utils.ts +++ b/features/admin.applications.v1/utils/application-template-management-utils.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020-2024, WSO2 LLC. (https://www.wso2.com). + * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except diff --git a/features/admin.template-core.v1/components/application-create-wizard.tsx b/features/admin.template-core.v1/components/application-create-wizard.tsx index f2f790d91ca..69690d56e5a 100644 --- a/features/admin.template-core.v1/components/application-create-wizard.tsx +++ b/features/admin.template-core.v1/components/application-create-wizard.tsx @@ -68,6 +68,7 @@ import { ApplicationFormDynamicField } from "./application-form-dynamic-field"; import useDynamicFieldValidations from "../hooks/use-dynamic-field-validation"; import { DynamicFieldInterface, FieldValueGenerators } from "../models/dynamic-fields"; import "./application-create-wizard.scss"; +import useValidationHandlers, { CustomValidationsFunction } from "./forms/handlers/validation/use-validation-handlers"; /** * Prop types of the `ApplicationCreateWizard` component. @@ -77,6 +78,10 @@ export interface ApplicationCreateWizardPropsInterface extends ModalProps, Ident * Callback triggered when closing the application creation wizard. */ onClose: () => void; + /** + * Custom validation functions for form validations. + */ + customValidations?: CustomValidationsFunction; } /** @@ -87,7 +92,12 @@ export interface ApplicationCreateWizardPropsInterface extends ModalProps, Ident export const ApplicationCreateWizard: FunctionComponent = ( props: ApplicationCreateWizardPropsInterface ): ReactElement => { - const { ["data-componentid"]: componentId, onClose, ...rest } = props; + const { + ["data-componentid"]: componentId, + customValidations, + onClose, + ...rest + } = props; const { template: templateData, @@ -98,7 +108,7 @@ export const ApplicationCreateWizard: FunctionComponent): void => { + // TODO: Implement the actual logic. +}; + +export default extractTemplatedFields; diff --git a/features/admin.template-core.v1/components/forms/handlers/initialize/use-initialize-handlers.tsx b/features/admin.template-core.v1/components/forms/handlers/initialize/use-initialize-handlers.tsx new file mode 100644 index 00000000000..d49459c6aea --- /dev/null +++ b/features/admin.template-core.v1/components/forms/handlers/initialize/use-initialize-handlers.tsx @@ -0,0 +1,118 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import get from "lodash-es/get"; +import extractTemplatedFields from "./extract-templated-fields"; +import { + CommonInitializeHandlers, + DynamicFieldHandlerInterface, + DynamicFieldInterface, + FieldHandlerTypes +} from "../../../../models/dynamic-fields"; + +/** + * Function definition for custom initialize handler. + */ +export type CustomInitializeFunction = ( + formValues: Record, + field: DynamicFieldInterface, + handler: DynamicFieldHandlerInterface, + templatePayload: Record +) => Promise; + +/** + * Hook for initialize handlers. + * + * @param customInitializers - Extension for custom initialize functions. + * @returns An initialize function for the fields. + */ +const useInitializeHandlers = ( + customInitializers: CustomInitializeFunction +): { + initialize: ( + formValues: Record, + fields: DynamicFieldInterface[], + templateData: Record + ) => Promise } => { + + /** + * Initialize a field based on its initialize handlers. + * + * @param values - The form values to be initialized. + * @param field - Metadata of the form field. + * @param initializers - An array of initializers for the field. + * @param templatePayload - Template payload values. + */ + const initializeField = async ( + values: Record, + field: DynamicFieldInterface, + initializers: DynamicFieldHandlerInterface[], + templatePayload: Record + ): Promise => { + for (const initializer of initializers) { + const { name } = initializer; + + switch (name) { + case CommonInitializeHandlers.EXTRACT_TEMPLATED_FIELDS: + extractTemplatedFields( + get(values, field?.name), + get(templatePayload, field?.name), + values + ); + + break; + default: + if (customInitializers) { + await customInitializers(values, field, initializer, templatePayload); + } + } + } + }; + + /** + * Initialize all provided fields according to their respective initialize handlers. + * + * @param formValues - Current values of all form fields. + * @param fields - Metadata associated with each field. + * @param templatePayload - Template payload values. + */ + const initializeAllFields = async ( + formValues: Record, + fields: DynamicFieldInterface[], + templateData: Record + ): Promise => { + for (const field of fields) { + const initializers: DynamicFieldHandlerInterface[] = field?.handlers?.filter( + (handler: DynamicFieldHandlerInterface) => handler?.type === FieldHandlerTypes.INITIALIZE) || []; + + if (initializers?.length > 0) { + await initializeField(formValues, field, initializers, templateData); + } + } + }; + + return { + initialize: ( + formValues: Record, + fields: DynamicFieldInterface[], + templateData: Record + ): Promise => initializeAllFields(formValues, fields, templateData) + }; +}; + +export default useInitializeHandlers; diff --git a/features/admin.template-core.v1/components/forms/handlers/submission/disable-property.ts b/features/admin.template-core.v1/components/forms/handlers/submission/disable-property.ts new file mode 100644 index 00000000000..56c83d296dd --- /dev/null +++ b/features/admin.template-core.v1/components/forms/handlers/submission/disable-property.ts @@ -0,0 +1,31 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import unset from "lodash-es/unset"; + +/** + * Remove disabled properties from the form values. + * + * @param formValues - Object containing initial values for the form. + * @param fieldName - Path of the field value within the object. + */ +const disableProperty = (formValues:Record, fieldName: string): void => { + unset(formValues, fieldName); +}; + +export default disableProperty; diff --git a/features/admin.template-core.v1/components/forms/handlers/submission/unique-id-generator.ts b/features/admin.template-core.v1/components/forms/handlers/submission/unique-id-generator.ts new file mode 100644 index 00000000000..a3d48ea9592 --- /dev/null +++ b/features/admin.template-core.v1/components/forms/handlers/submission/unique-id-generator.ts @@ -0,0 +1,46 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import get from "lodash-es/get"; +import set from "lodash-es/set"; +import { v4 as uuidv4 } from "uuid"; + +/** + * Generate a unique ID and replace the templated placeholder with it. + * + * @param templateValue - Value defined in the template. + * @param formValues - Object containing initial values for the form. + * @param fieldName - Path of the field value within the object. + * @param placeholder - Placeholder that needs to be replaced. + */ +const uniqueIDGenerator = ( + templateValue: string, + formValues:Record, + fieldName: string, + placeholder: string +): void => { + const currentValue: any = get(formValues, fieldName); + + if (currentValue && typeof currentValue === "string" && currentValue.includes(`\${${placeholder}}`)) { + set(formValues, fieldName, currentValue?.replace(`\${${placeholder}}`, uuidv4())); + } else if (templateValue && typeof templateValue === "string") { + set(formValues, fieldName, templateValue?.replace(`\${${placeholder}}`, uuidv4())); + } +}; + +export default uniqueIDGenerator; diff --git a/features/admin.template-core.v1/components/forms/handlers/submission/use-dependent-property.ts b/features/admin.template-core.v1/components/forms/handlers/submission/use-dependent-property.ts new file mode 100644 index 00000000000..6c3c485ac2d --- /dev/null +++ b/features/admin.template-core.v1/components/forms/handlers/submission/use-dependent-property.ts @@ -0,0 +1,97 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { AppState } from "@wso2is/admin.core.v1"; +import get from "lodash-es/get"; +import set from "lodash-es/set"; +import { useSelector } from "react-redux"; + +/** + * Hook to replace placeholders of dependent properties. + * + * @returns The function to handle dependent properties. + */ +const useDependentProperty = (): { + dependentProperty: ( + templateValue: string, + formValues:Record, + fieldName: string, + placeholder: string + ) => void +} => { + const tenantDomain: string = useSelector((state: AppState) => state?.auth?.tenantDomain); + const clientOrigin: string = useSelector((state: AppState) => state?.config?.deployment?.clientOrigin); + const serverOrigin: string = useSelector((state: AppState) => state?.config?.deployment?.idpConfigs?.serverOrigin); + const appBaseNameWithoutTenant: string = useSelector((state: AppState) => + state?.config?.deployment?.appBaseNameWithoutTenant); + + /** + * Resolve the value corresponding to the given placeholder. + * + * @param placeholder - Value placeholder. + * @returns the corresponding value of the placeholder. + */ + const getPlaceholderValues = (placeholder: string): string => { + switch(placeholder) { + case "tenantDomain": + return tenantDomain; + case "clientOrigin": + return clientOrigin; + case "serverOrigin": + return serverOrigin; + case "appBaseNameWithoutTenant": + return appBaseNameWithoutTenant; + default: + return ""; + } + }; + + /** + * Replace placeholders of dependent properties. + * + * @param templateValue - Value defined in the template. + * @param formValues - Object containing initial values for the form. + * @param fieldName - Path of the field value within the object. + * @param placeholder - Placeholder that needs to be replaced. + */ + const dependentProperty = async ( + templateValue: string, + formValues:Record, + fieldName: string, + placeholder: string + ): Promise => { + const currentValue: any = get(formValues, fieldName); + let placeholderValue: any = get(formValues, placeholder); + + if (!placeholderValue || typeof placeholderValue !== "string") { + placeholderValue = getPlaceholderValues(placeholder); + } + + if (placeholder) { + if (currentValue && typeof currentValue === "string" && currentValue.includes(`\${${placeholder}}`)) { + set(formValues, fieldName, currentValue?.replace(`\${${placeholder}}`, placeholderValue)); + } else if (templateValue && typeof templateValue === "string") { + set(formValues, fieldName, templateValue?.replace(`\${${placeholder}}`, placeholderValue)); + } + } + }; + + return { dependentProperty }; +}; + +export default useDependentProperty; diff --git a/features/admin.template-core.v1/components/forms/handlers/submission/use-submission-handlers.tsx b/features/admin.template-core.v1/components/forms/handlers/submission/use-submission-handlers.tsx new file mode 100644 index 00000000000..d8cbb53fe23 --- /dev/null +++ b/features/admin.template-core.v1/components/forms/handlers/submission/use-submission-handlers.tsx @@ -0,0 +1,136 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import get from "lodash-es/get"; +import disableProperty from "./disable-property"; +import uniqueIDGenerator from "./unique-id-generator"; +import useDependentProperty from "./use-dependent-property"; +import { + CommonSubmissionHandlers, + DynamicFieldHandlerInterface, + DynamicFieldInterface, + FieldHandlerTypes +} from "../../../../models/dynamic-fields"; + +/** + * Function definition for custom submission handler. + */ +export type CustomSubmissionFunction = ( + formValues: Record, + field: DynamicFieldInterface, + handler: DynamicFieldHandlerInterface, + templatePayload: Record +) => Promise; + +/** + * Hook for submission handlers. + * + * @param customSubmissionHandlers - Extension for custom submission handlers. + * @returns An submission function for the fields. + */ +const useSubmissionHandlers = ( + customSubmissionHandlers: CustomSubmissionFunction +): { + submission: ( + formValues: Record, + fields: DynamicFieldInterface[], + templateData: Record + ) => Promise } => { + + const { dependentProperty } = useDependentProperty(); + + /** + * Modify the field value based on its submission handlers. + * + * @param values - The form values to be submitted. + * @param field - Metadata of the form field. + * @param initializers - An array of submission handlers for the field. + * @param templatePayload - Template payload values. + */ + const submitField = async ( + values: Record, + field: DynamicFieldInterface, + submissionHandlers: DynamicFieldHandlerInterface[], + templatePayload: Record + ): Promise => { + for (const submissionHandler of submissionHandlers) { + const { name, props } = submissionHandler; + + switch (name) { + case CommonSubmissionHandlers.UNIQUE_ID_GENERATOR: + uniqueIDGenerator( + get(templatePayload, field?.name), + values, + field?.name, + props?.placeholder + ); + + break; + case CommonSubmissionHandlers.DEPENDENT_PROPERTY: + dependentProperty( + get(templatePayload, field?.name), + values, + field?.name, + props?.placeholder + ); + + break; + case CommonSubmissionHandlers.DISABLE_PROPERTY: + disableProperty(values, field?.name); + + break; + default: + if (customSubmissionHandlers) { + await customSubmissionHandlers(values, field, submissionHandler, templatePayload); + } + } + } + }; + + /** + * Modify all provided fields according to their respective submission handlers. + * + * @param formValues - Current values of all form fields. + * @param fields - Metadata associated with each field. + * @param templatePayload - Template payload values. + */ + const submitAllFields = async ( + formValues: Record, + fields: DynamicFieldInterface[], + templateData: Record + ): Promise => { + for (const field of fields) { + const submissionHandlers: DynamicFieldHandlerInterface[] = field?.handlers?.filter( + (handler: DynamicFieldHandlerInterface) => handler?.type === FieldHandlerTypes.SUBMISSION) || []; + + if (submissionHandlers?.length > 0) { + await submitField(formValues, field, submissionHandlers, templateData); + } + } + }; + + return { + submission: ( + formValues: Record, + fields: DynamicFieldInterface[], + templateData: Record + ): Promise => submitAllFields(formValues, fields, templateData) + }; +}; + +export default useSubmissionHandlers; diff --git a/features/admin.template-core.v1/components/forms/handlers/validation/required-field.ts b/features/admin.template-core.v1/components/forms/handlers/validation/required-field.ts new file mode 100644 index 00000000000..60d4df91ebe --- /dev/null +++ b/features/admin.template-core.v1/components/forms/handlers/validation/required-field.ts @@ -0,0 +1,33 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * Check if the field is filled with a value. + * + * @param value - The value need to be validated. + * @returns Whether the provided value is a non empty value. + */ +const requiredField = (value: unknown): string | null => { + if (!value) { + return "applications:forms.dynamicApplicationCreateWizard.common.validations.required"; + } + + return null; +}; + +export default requiredField; diff --git a/features/admin.template-core.v1/components/forms/handlers/validation/url-validation.ts b/features/admin.template-core.v1/components/forms/handlers/validation/url-validation.ts new file mode 100644 index 00000000000..1164c7ff9b1 --- /dev/null +++ b/features/admin.template-core.v1/components/forms/handlers/validation/url-validation.ts @@ -0,0 +1,37 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { URLUtils } from "@wso2is/core/utils"; + +/** + * Verify if the provided value is a valid URL. + * + * @param url - The values need to be validated. + * @returns Whether the provided value is a valid url or not. + */ +const validateURL = (url: string): string | null => { + const isValidURL: boolean = URLUtils.isURLValid(url); + + if (!isValidURL) { + return "applications:forms.dynamicApplicationCreateWizard.domainName.validations.invalid"; + } + + return null; +}; + +export default validateURL; diff --git a/features/admin.template-core.v1/components/forms/handlers/validation/use-validation-handlers.tsx b/features/admin.template-core.v1/components/forms/handlers/validation/use-validation-handlers.tsx new file mode 100644 index 00000000000..5a56c4edf3a --- /dev/null +++ b/features/admin.template-core.v1/components/forms/handlers/validation/use-validation-handlers.tsx @@ -0,0 +1,173 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import get from "lodash-es/get"; +import set from "lodash-es/set"; +import { useTranslation } from "react-i18next"; +import requiredField from "./required-field"; +import validateURL from "./url-validation"; +import { + CommonValidationHandlers, + DynamicFieldHandlerInterface, + DynamicFieldInterface, + FieldHandlerTypes +} from "../../../../models/dynamic-fields"; + +/** + * Function definition for custom validations. + */ +export type CustomValidationsFunction = ( + formValues: Record, + field: DynamicFieldInterface, + handler: DynamicFieldHandlerInterface +) => Promise; + +/** + * Hook for field validation handlers. + * + * @param customValidations - Extension for custom validation functions. + * @returns A validation function for the fields. + */ +const useValidationHandlers = ( + customValidations: CustomValidationsFunction +): { + validate: ( + formValues: Record, + fields: DynamicFieldInterface[] + ) => Promise<{ [key: string]: string }> } => { + + const { t, i18n } = useTranslation(); + + /** + * Handle error messages based on the validation rule error message. + * If the validation rule contains an error message, that message will be returned. + * If there is no configured error message, the function will return the default error message. + * + * @param validationResult - Result of the validation function. + * @param errorMessage - Custom error message for the validation rule. + * @returns The final error message or null based on the validation result. + */ + const handleErrorMessage = (validationResult: string | null, errorMessage: string): string | null => { + if (validationResult) { + if (errorMessage) { + if (i18n.exists(errorMessage)) { + return t(errorMessage); + } + + return errorMessage; + } + + return t(validationResult); + } + + // If all validation rules are successful, return null for the errorMessage. + return null; + }; + + /** + * Validates a field based on its validation rules. + * + * @param values - The form values to be validated. + * @param field - Metadata of the form field. + * @param validations - An array of validation rules for the field. + * @returns An error message if validation fails, or `null` if validation succeeds. + */ + const validateField = async ( + values: Record, + field: DynamicFieldInterface, + validations: DynamicFieldHandlerInterface[] + ): Promise => { + if (!validations) { + return null; + } + + for (const validation of validations) { + const { name, props } = validation; + + let validationResult: string = null; + + switch (name) { + case CommonValidationHandlers.REQUIRED: + validationResult = handleErrorMessage(requiredField(get(values, field?.name)), props?.errorMessage); + + break; + case CommonValidationHandlers.URL: + validationResult = handleErrorMessage( + await validateURL(get(values, field?.name)), props?.errorMessage); + + break; + } + + if (!validationResult && customValidations) { + validationResult = await customValidations(values, field, validation); + } + + if (validationResult) { + return validationResult; + } + } + + return null; + }; + + /** + * Validate all provided fields according to their respective validation rules. + * + * @param formValues - Current values of all form fields. + * @param fields - Metadata associated with each field. + * @returns An error object containing error messages for each provided field. + */ + const validateAllFields = async ( + formValues: Record, + fields: DynamicFieldInterface[] + ): Promise<{ [key: string]: string }> => { + const errorObject: { [key: string]: string } = {}; + + for (const field of fields) { + let validations: DynamicFieldHandlerInterface[] = field?.handlers?.filter( + (handler: DynamicFieldHandlerInterface) => handler?.type === FieldHandlerTypes.VALIDATION) || []; + + if (field?.required) { + validations = [ + { name: CommonValidationHandlers.REQUIRED, type: FieldHandlerTypes.VALIDATION }, + ...validations + ]; + } + + if (validations?.length > 0) { + const error: string = await validateField(formValues, field, validations); + + if (error) { + set(errorObject, field?.name, error); + } + } + } + + return errorObject; + }; + + return { + validate: ( + formValues: Record, + fields: DynamicFieldInterface[] + ): Promise<{ [key: string]: string }> => + validateAllFields(formValues, fields) + }; +}; + +export default useValidationHandlers; diff --git a/features/admin.template-core.v1/components/resource-create-wizard.scss b/features/admin.template-core.v1/components/resource-create-wizard.scss new file mode 100644 index 00000000000..523b02704fc --- /dev/null +++ b/features/admin.template-core.v1/components/resource-create-wizard.scss @@ -0,0 +1,74 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +.resource-create-wizard { + .resource-create-wizard-dynamic-fields { + &:not(:first-child) { + padding-top: 0; + } + } + + .installation-guide-content { + display: flex; + flex-direction: column; + justify-content: space-between; + + .installation-guide-stepper { + display: flex; + flex-direction: row; + align-content: center; + justify-content: space-between; + align-items: center; + + .installation-guide-stepper-progress { + display: flex; + flex-direction: column; + justify-content: center; + height: 100%; + width: 100%; + margin-right: 30px; + + .oxygen-typography { + margin-bottom: 3px; + } + + .MuiLinearProgress-root { + height: 8px; + border-radius: 5px; + } + } + + .installation-guide-stepper-pagination { + .MuiPagination-ul { + display: flex; + flex-direction: row; + flex-wrap: nowrap; + align-content: center; + justify-content: center; + align-items: center; + + li { + &:not(:first-child):not(:last-child) { + display: none; + } + } + } + } + } + } +} diff --git a/features/admin.template-core.v1/components/resource-create-wizard.tsx b/features/admin.template-core.v1/components/resource-create-wizard.tsx new file mode 100644 index 00000000000..12503f94688 --- /dev/null +++ b/features/admin.template-core.v1/components/resource-create-wizard.tsx @@ -0,0 +1,460 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import LinearProgress from "@mui/material/LinearProgress"; +import Pagination from "@mui/material/Pagination"; +import Typography from "@oxygen-ui/react/Typography"; +import buildCallBackUrlsWithRegExp from "@wso2is/admin.application-templates.v1/utils/build-callback-urls-with-regexp"; +import { createApplication } from "@wso2is/admin.applications.v1/api"; +import { ApplicationManagementConstants } from "@wso2is/admin.applications.v1/constants"; +import { MainApplicationInterface } from "@wso2is/admin.applications.v1/models"; +import { ModalWithSidePanel } from "@wso2is/admin.core.v1/components/modals/modal-with-side-panel"; +import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; +import { addAlert } from "@wso2is/core/store"; +import { FinalForm, FormRenderProps, MutableState, Tools } from "@wso2is/form"; +import { + ContentLoader, + Heading, + LinkButton, + Markdown, + PrimaryButton, + useWizardAlert +} from "@wso2is/react-components"; +import { AxiosError, AxiosResponse } from "axios"; +import cloneDeep from "lodash-es/cloneDeep"; +import get from "lodash-es/get"; +import has from "lodash-es/has"; +import pick from "lodash-es/pick"; +import set from "lodash-es/set"; +import unset from "lodash-es/unset"; +import React, { ChangeEvent, FunctionComponent, MouseEvent, ReactElement, useMemo, useState } from "react"; +import { useTranslation } from "react-i18next"; +import { useDispatch } from "react-redux"; +import { Dispatch } from "redux"; +import { Grid, ModalProps } from "semantic-ui-react"; +import { v4 as uuidv4 } from "uuid"; +import { ApplicationFormDynamicField } from "./application-form-dynamic-field"; +import useInitializeHandlers, { CustomInitializeFunction } from "./forms/handlers/initialize/use-initialize-handlers"; +import useValidationHandlers, { CustomValidationsFunction } from "./forms/handlers/validation/use-validation-handlers"; +import { DynamicFieldInterface, DynamicFormInterface } from "../models/dynamic-fields"; +import "./resource-create-wizard.scss"; + +/** + * Prop types of the `ResourceCreateWizard` component. + */ +export interface ResourceCreateWizardPropsInterface extends ModalProps, IdentifiableComponentInterface { + /** + * Whether the resource creation wizard should be displayed. + */ + showWizard?: boolean; + /** + * Callback triggered when closing the resource creation wizard. + */ + onClose?: () => void; + /** + * Custom validation functions for form validations. + */ + customValidations?: CustomValidationsFunction; + /** + * Custom initialize functions. + */ + customInitializers?: CustomInitializeFunction; + /** + * Definition of the form for the resource creation wizard. + */ + form: DynamicFormInterface; + /** + * Wizard guide as an array of strings. + */ + guide: string[], + /** + * Initial values for the form fields. + */ + initialFormValues: Record; + /** + * Identifier of the extension template. + */ + templateId: string; + /** + * Name of the extension template. + */ + templateName: string; + /** + * Description of the extension template. + */ + templateDescription: string; + /** + * Template payload values. + */ + templatePayload: Record; + /** + * i18n key of the form main button text. + */ + buttonText: string; + /** + * Function to handle form submission. + */ + onFormSubmit: (values: Record, callback: () => void) => void; +} + +/** + * Dynamic resource create wizard component. + * + * @param Props - Props to be injected into the component. + */ +export const ResourceCreateWizard: FunctionComponent = ( + props: ResourceCreateWizardPropsInterface +): ReactElement => { + const { + ["data-componentid"]: componentId, + form, + initialFormValues, + showWizard, + templateId, + templateName, + templateDescription, + templatePayload, + guide, + buttonText, + customValidations, + customInitializers, + onClose, + ...rest + } = props; + + const { validate } = useValidationHandlers(customValidations); + const { initialize } = useInitializeHandlers(customInitializers); + const [ alert, setAlert, notification ] = useWizardAlert(); + + const { t } = useTranslation(); + const dispatch: Dispatch = useDispatch(); + + const [ installGuideActivePage, setInstallGuideActivePage ] = useState(1); + const [ isSubmitting, setIsSubmitting ] = useState(false); + + /** + * Moderate the initially provided data for the form. + */ + const formInitialValues: Record = useMemo(async () => { + if (!initialFormValues) { + return null; + } + + let initialValues: Record; + + if (form?.submitDefinedFieldsOnly) { + const paths: string[] = form?.fields?.map((field: DynamicFieldInterface) => field?.name); + + initialValues = pick(initialFormValues, paths); + } else { + initialValues = cloneDeep(initialFormValues); + } + + await initialize(initialValues, form?.fields, templatePayload); + + /** + * Template ID must be submitted when creating the application. + */ + if (!initialValues?.templateId) { + initialValues.templateId = initialFormValues?.templateId; + } + + return initialValues; + }, [ initialFormValues ]); + + /** + * This function will navigate the user to the notification message if there are any errors. + */ + const scrollToNotification = () => { + document.getElementById("notification-div")?.scrollIntoView({ behavior: "smooth" }); + }; + + /** + * Callback function triggered when clicking the form submit button. + * + * @param values - Submission values from the form fields. + */ + const onSubmit = (values: Record): void => { + setIsSubmitting(true); + const formValues: Record = cloneDeep(values); + + /** + * Make sure that cleared text fields are set to an empty string. + */ + form?.fields?.forEach((field: DynamicFieldInterface) => { + if (!has(formValues, field?.name)) { + const initialValue: any = get(formInitialValues, field?.name); + + if (initialValue && typeof initialValue === "string") { + set(formValues, field?.name, ""); + } + } + }); + + // Moderate Values to match API restrictions. + if (formValues?.inboundProtocolConfiguration?.oidc?.callbackURLs) { + formValues.inboundProtocolConfiguration.oidc.callbackURLs = buildCallBackUrlsWithRegExp( + formValues.inboundProtocolConfiguration.oidc.callbackURLs + ); + } + + createApplication(formValues) + .then((response: AxiosResponse) => { + eventPublisher.compute(() => { + eventPublisher.publish("application-register-new-application", { + type: templateData?.id + }); + }); + + dispatch( + addAlert({ + description: t( + "applications:notifications." + + "addApplication.success.description" + ), + level: AlertLevels.SUCCESS, + message: t( + "applications:notifications." + + "addApplication.success.message" + ) + }) + ); + + const location: string = response.headers.location; + const createdAppID: string = location.substring(location.lastIndexOf("/") + 1); + + if (isApplicationSharingEnabled) { + setLastCreatedApplicationId(createdAppID); + setShowApplicationShareModal(true); + } else { + handleAppCreationComplete(createdAppID); + } + }) + .catch((error: AxiosError) => { + if (error?.response?.status === 403 + && error?.response?.data?.code === ApplicationManagementConstants + .ERROR_CREATE_LIMIT_REACHED.getErrorCode()) { + setOpenLimitReachedModal(true); + + return; + } + + if (error?.response?.data?.description) { + setAlert({ + description: error.response.data.description, + level: AlertLevels.ERROR, + message: t( + "applications:notifications." + + "addApplication.error.message" + ) + }); + scrollToNotification(); + + return; + } + + setAlert({ + description: t( + "applications:notifications." + + "addApplication.genericError.description" + ), + level: AlertLevels.ERROR, + message: t( + "applications:notifications." + + "addApplication.genericError.message" + ) + }); + scrollToNotification(); + }) + .finally(() => setIsSubmitting(false)); + }; + + let formSubmit: (e: MouseEvent) => void; + + return ( + + + + { templateName } + { templateDescription } + + + { + !formInitialValues + ? + : ( + <> + { alert && ( + + + + { notification } + + + + ) } + , + Record + >, + { changeValue }: Tools< + Record, + Record + > + ) => { + changeValue(state, fieldName, () => fieldVal); + } + } } + validate={ + (formValues: Record) => validate(formValues, form?.fields) + } + render={ ({ form: formState, handleSubmit }: FormRenderProps) => { + formSubmit = handleSubmit; + + return ( +
    + + { form?.fields.map( + (field: DynamicFieldInterface) => { + if (field?.hidden) { + return null; + } + + return ( + + + + + + ); + }) + } + +
    + ); + } } + /> + + ) + } +
    + + + + + + { t("common:cancel") } + + + + ) => formSubmit(e) } + floated="right" + data-componentid={ `${componentId}-create-button` } + loading={ isSubmitting } + disabled={ isSubmitting } + > + { t(buttonText) } + + + + + +
    + { guide && ( + + +
    + { t("applications:wizards.minimalAppCreationWizard.help.heading") } +
    +
    + + { Array.isArray(guide) && ( + <> + + { guide.length > 1 && ( +
    +
    + + Page { installGuideActivePage } of{ " " } + { guide.length } + + +
    + { + setInstallGuideActivePage(page); + } } + /> +
    + ) } + + ) } +
    +
    + ) } +
    + ); +}; + +/** + * Default props for the resource creation wizard. + */ +ResourceCreateWizard.defaultProps = { + "data-componentid": "resource-create-wizard" +}; diff --git a/features/admin.template-core.v1/hooks/use-dynamic-field-validation.ts b/features/admin.template-core.v1/hooks/use-dynamic-field-validation.ts deleted file mode 100644 index c0a7d620d8b..00000000000 --- a/features/admin.template-core.v1/hooks/use-dynamic-field-validation.ts +++ /dev/null @@ -1,336 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import { getApplicationList } from "@wso2is/admin.applications.v1/api"; -import { ApplicationManagementConstants } from "@wso2is/admin.applications.v1/constants"; -import { ApplicationListInterface, MainApplicationInterface } from "@wso2is/admin.applications.v1/models"; -import { AppState } from "@wso2is/admin.core.v1"; -import { AlertLevels } from "@wso2is/core/models"; -import { addAlert } from "@wso2is/core/store"; -import { AxiosError } from "axios"; -import debounce, { DebouncedFunc } from "lodash-es/debounce"; -import get from "lodash-es/get"; -import set from "lodash-es/set"; -import { MutableRefObject, useRef, useState } from "react"; -import { useTranslation } from "react-i18next"; -import { useDispatch, useSelector } from "react-redux"; -import { Dispatch } from "redux"; -import { - DynamicFieldInterface, - ValidationRule, - ValidationRuleTypes -} from "../models/dynamic-fields"; - -/** - * Custom hook for dynamic field validations. - * - * @returns A validation function for the field. - */ -const useDynamicFieldValidations = (): { - validate: ( - formValues: MainApplicationInterface, - fields: DynamicFieldInterface[] - ) => Promise<{ [key in keyof Partial]: string }> } => { - const { t, i18n } = useTranslation(); - - const dispatch: Dispatch = useDispatch(); - - const reservedAppNamePattern: string = useSelector((state: AppState) => { - return state?.config?.deployment?.extensions?.asgardeoReservedAppRegex as string; - }); - - const previouslyValidatedApplicationName: MutableRefObject = useRef(null); - const [ - isApplicationNameAlreadyReserved, - setIsApplicationNameAlreadyReserved - ] = useState(false); - - /** - * Search for applications and retrieve a list for the given app name. - * - * @param appName - Name of the application for searching. - * @returns List of applications found based on the given name. - */ - const getApplications = (appName: string): Promise => { - - return getApplicationList(null, null, "name eq " + appName?.trim()) - .then((response: ApplicationListInterface) => response) - .catch((error: AxiosError) => { - if (error?.response?.data?.description) { - dispatch(addAlert({ - description: error.response.data.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.fetchApplications.error.message") - })); - - return null; - } - - dispatch(addAlert({ - description: t("applications:notifications." + - "fetchApplications.genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications." + - "fetchApplications.genericError.message") - })); - - return null; - }); - }; - - /** - * Handle error messages based on the validation rule error message. - * If the validation rule contains an error message, that message will be returned. - * If there is no configured error message, the function will return the default error message. - * - * @param validationResult - Result of the validation function. - * @param errorMessage - Custom error message for the validation rule. - * @returns The final error message or null based on the validation result. - */ - const handleErrorMessage = (validationResult: string | null, errorMessage: string): string | null => { - if (validationResult) { - if (errorMessage) { - if (i18n.exists(errorMessage)) { - return t(errorMessage); - } - - return errorMessage; - } - - return t(validationResult); - } - - // If all validation rules are successful, return null for the errorMessage. - return null; - }; - - /** - * Validates a field based on its validation rules. - * - * @param values - The form values to be validated. - * @param field - Metadata of the form field. - * @param validations - An array of validation rules for the field. - * @returns An error message if validation fails, or `null` if validation succeeds. - */ - const validateField = async ( - values: MainApplicationInterface, - field: DynamicFieldInterface, - validations: ValidationRule[] - ): Promise => { - if (!validations) { - return null; - } - - for (const validation of validations) { - const { type, errorMessage } = validation; - - let validationResult: string = null; - - switch (type) { - case ValidationRuleTypes.DOMAIN_NAME: - validationResult = handleErrorMessage(validateDomainName(values, field), errorMessage); - - break; - case ValidationRuleTypes.APPLICATION_NAME: - validationResult = handleErrorMessage(await validateApplicationName(values, field), errorMessage); - - break; - case ValidationRuleTypes.REQUIRED: - validationResult = handleErrorMessage(requiredField(values, field), errorMessage); - - break; - } - - if (validationResult) { - return validationResult; - } - } - - return null; - }; - - /** - * Validate all provided fields according to their respective validation rules. - * - * @param formValues - Current values of all form fields. - * @param fields - Metadata associated with each field. - * @returns An error object containing error messages for each provided field. - */ - const validateAllFields = async ( - formValues: MainApplicationInterface, - fields: DynamicFieldInterface[] - ): Promise<{ [key in keyof Partial]: string }> => { - const errorObject: { [key in keyof Partial]: string } = {}; - - for (const field of fields) { - let validations: ValidationRule[] = []; - - if (field?.validations && Array.isArray(field?.validations) && field?.validations?.length > 0) { - validations = [ ...field.validations ]; - } - - if (field?.required) { - validations = [ { type: ValidationRuleTypes.REQUIRED }, ...validations ]; - } - - if (validations?.length > 0) { - const error: string = await validateField(formValues, field, validations); - - if (error) { - set(errorObject, field?.name, error); - } - } - } - - return errorObject; - }; - - /** - * Check if the field is filled with a value. - * - * @param values - The values need to be validated. - * @param field - Metadata of the form field. - * @returns Whether the provided value is a non empty value. - */ - const requiredField = ( - values: MainApplicationInterface, - field: DynamicFieldInterface - ): string | null => { - const value: any = get(values, field?.name); - - if (!value) { - return "applications:forms.dynamicApplicationCreateWizard.common.validations.required"; - } - - return null; - }; - - /** - * Verify if the provided value is a domain name. - * - * @param values - The values need to be validated. - * @param field - Metadata of the form field. - * @returns Whether the provided value is a valid domain name or not. - */ - const validateDomainName = ( - values: MainApplicationInterface, - field: DynamicFieldInterface - ): string | null => { - const value: any = get(values, field?.name); - - // Regular expression to validate domain name. - const domainRegex: RegExp = - /^(?!-)[A-Za-z0-9-]{1,63}(? { - if(!reservedAppNamePattern) { - return false; - } - const reservedAppRegex: RegExp = new RegExp(reservedAppNamePattern); - - return name && reservedAppRegex.test(name); - }; - - /** - * Checks whether the application name is valid. - * - * @param name - Name of the application. - */ - const isNameValid = (name: string) => { - return name && !!name?.match(ApplicationManagementConstants.FORM_FIELD_CONSTRAINTS.APP_NAME_PATTERN); - }; - - /** - * Check if there is any application with the given name. - * - * @param name - Name of the application. - * @param appId - application id. - */ - const isApplicationNameAlreadyExist: DebouncedFunc<(name: string, appId: string) => Promise> = debounce( - async (name: string, appId: string) => { - if (previouslyValidatedApplicationName?.current !== name) { - previouslyValidatedApplicationName.current = name; - - const response: ApplicationListInterface = await getApplications(name); - - setIsApplicationNameAlreadyReserved( - response?.totalResults > 0 && response?.applications[0]?.id !== appId); - } - }, - 500 - ); - - /** - * Checks whether the application name is valid. - * - * @param values - The values need to be validated. - * @param field - Metadata of the form field. - * @returns Whether the provided value is a valid application name. - */ - const validateApplicationName = async ( - values: MainApplicationInterface, - field: DynamicFieldInterface - ): Promise => { - const appName: string = get(values, field?.name)?.toString()?.trim(); - - if (!isNameValid(appName)) { - return t("applications:forms." + - "spaProtocolSettingsWizard.fields.name.validations.invalid", { - appName, - characterLimit: ApplicationManagementConstants.FORM_FIELD_CONSTRAINTS.APP_NAME_MAX_LENGTH - }); - } - - if (isAppNameReserved(appName)) { - return t("applications:forms.generalDetails.fields.name.validations.reserved", { - appName - }); - } - - await isApplicationNameAlreadyExist(appName, values?.id); - - if (isApplicationNameAlreadyReserved) { - return t("applications:forms.generalDetails.fields.name.validations.duplicate"); - } - - return null; - }; - - return { - validate: ( - formValues: MainApplicationInterface, - fields: DynamicFieldInterface[] - ): Promise<{ [key in keyof Partial]: string }> => - validateAllFields(formValues, fields) - }; -}; - -export default useDynamicFieldValidations; diff --git a/features/admin.template-core.v1/models/dynamic-fields.ts b/features/admin.template-core.v1/models/dynamic-fields.ts index bee89d6842c..fe669cc8d36 100644 --- a/features/admin.template-core.v1/models/dynamic-fields.ts +++ b/features/admin.template-core.v1/models/dynamic-fields.ts @@ -28,10 +28,6 @@ export interface DynamicFormInterface { * Should the form only submit the fields defined above. */ submitDefinedFieldsOnly?: boolean; - /** - * API to which the form values should be submitted. - */ - api?: SupportedAPIList; } /** @@ -87,39 +83,27 @@ export interface DynamicFieldInterface { */ hidden?: boolean; /** - * Array of validation rules for the field's input. - */ - validations?: ValidationRule[]; - /** - * Additional meta data need to decorate the dynamic input field. + * Array of handlers to manage this field at various phases of the form life cycle. */ - meta?: DynamicFieldMetadataInterface; + handlers?: DynamicFieldHandlerInterface[]; } /** - * Interface for the metadata of dynamic fields. + * Interface for the handlers of dynamic fields. */ -export interface DynamicFieldMetadataInterface { +export interface DynamicFieldHandlerInterface { /** - * Names of the properties that should be templated using the current field value. + * Name of the handler. */ - dependentProperties?: string[]; - /** - * Names of placeholder strings included as templated strings in the current field. - */ - templatedPlaceholders?: string[]; - /** - * Names of the properties that should be templated using the current field value. - */ - dependent?: string[]; + name: string; /** - * Whether the current field value should be a generated value. + * Type of handler based on the form life cycle. */ - generator: "uuid" + type: FieldHandlerTypes; /** - * Custom props need to be provided into the field component. + * Props that need to be passed into the handler method. */ - customFieldProps: Record + props?: Record; } /** @@ -145,39 +129,34 @@ export enum DynamicInputFieldTypes { } /** - * Representation of the validation rules for dynamic input field. + * Supported field handler types for dynamic input fields. */ -export interface ValidationRule { - /** - * The validation rule type. - */ - type: ValidationRuleTypes; - /** - * Error message to be displayed when validation fails. - */ - errorMessage?: string; +export enum FieldHandlerTypes { + INITIALIZE = "initialize", + VALIDATION = "validation", + SUBMISSION = "submission" } /** - * Supported validation rule types for dynamic input fields. + * Supported common validation handlers. */ -export enum ValidationRuleTypes { - DOMAIN_NAME = "domainName", - APPLICATION_NAME = "applicationName", +export enum CommonValidationHandlers { + URL = "url", REQUIRED = "required" } /** - * List of supported APIs to which the form values can be submitted. + * Supported common initialize handlers. */ -export enum SupportedAPIList { - APPLICATION_PATCH = "PATCH:/api/server/v1/applications", - APPLICATION_SAML_INBOUND_PROTOCOL_PUT = "PUT:/api/server/v1/applications/{application-id}/inbound-protocols/saml" +export enum CommonInitializeHandlers { + EXTRACT_TEMPLATED_FIELDS = "extractTemplatedFields" } /** - * List of field value generators. + * Supported common submission handlers. */ -export enum FieldValueGenerators { - UUID = "uuid" +export enum CommonSubmissionHandlers { + UNIQUE_ID_GENERATOR = "uniqueIDGenerator", + DISABLE_PROPERTY = "disableProperty", + DEPENDENT_PROPERTY = "dependentProperty" } From 4d098403c623f85736711db0eadbc0906c96fe17 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Thu, 11 Jul 2024 18:04:26 +0530 Subject: [PATCH 058/114] complete refactoring of application create wizard --- .../components/application-create-wizard.tsx | 281 +++++++ .../application-creation-adapter.tsx | 2 +- .../use-custom-initialize-handlers.tsx | 4 +- .../use-unique-application-name.tsx | 34 +- .../build-callback-urls-with-regexp.ts | 48 ++ .../use-custom-submission-handlers.tsx | 37 +- .../constants/templates.ts | 2 + .../models/dynamic-fields.ts | 14 + .../models/templates.ts | 4 - .../utils/build-callback-urls-with-regexp.ts | 44 -- .../components/application-create-wizard.scss | 78 -- .../components/application-create-wizard.tsx | 695 ------------------ .../components/application-edit-form.tsx | 75 +- ...namic-field.tsx => form-dynamic-field.tsx} | 47 +- .../submission/use-submission-handlers.tsx | 9 +- .../components/resource-create-wizard.tsx | 159 ++-- 16 files changed, 498 insertions(+), 1035 deletions(-) create mode 100644 features/admin.application-templates.v1/components/application-create-wizard.tsx delete mode 100644 features/admin.application-templates.v1/utils/build-callback-urls-with-regexp.ts delete mode 100644 features/admin.template-core.v1/components/application-create-wizard.scss delete mode 100644 features/admin.template-core.v1/components/application-create-wizard.tsx rename features/admin.template-core.v1/components/{application-form-dynamic-field.tsx => form-dynamic-field.tsx} (76%) diff --git a/features/admin.application-templates.v1/components/application-create-wizard.tsx b/features/admin.application-templates.v1/components/application-create-wizard.tsx new file mode 100644 index 00000000000..950096d2eb2 --- /dev/null +++ b/features/admin.application-templates.v1/components/application-create-wizard.tsx @@ -0,0 +1,281 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { createApplication } from "@wso2is/admin.applications.v1/api"; +import { ApplicationShareModal } from "@wso2is/admin.applications.v1/components/modals/application-share-modal"; +import { ApplicationManagementConstants } from "@wso2is/admin.applications.v1/constants"; +import useApplicationSharingEligibility from "@wso2is/admin.applications.v1/hooks/use-application-sharing-eligibility"; +import { MainApplicationInterface, URLFragmentTypes } from "@wso2is/admin.applications.v1/models"; +import { AppState, TierLimitReachErrorModal } from "@wso2is/admin.core.v1"; +import { AppConstants } from "@wso2is/admin.core.v1/constants/app-constants"; +import { history } from "@wso2is/admin.core.v1/helpers/history"; +import { EventPublisher } from "@wso2is/admin.core.v1/utils/event-publisher"; +import { ResourceCreateWizard } from "@wso2is/admin.template-core.v1/components/resource-create-wizard"; +import { DynamicFieldInterface, DynamicFormInterface } from "@wso2is/admin.template-core.v1/models/dynamic-fields"; +import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; +import { addAlert } from "@wso2is/core/store"; +import { AxiosError, AxiosResponse } from "axios"; +import cloneDeep from "lodash-es/cloneDeep"; +import get from "lodash-es/get"; +import unset from "lodash-es/unset"; +import React, { FunctionComponent, ReactElement, useMemo, useState } from "react"; +import { useTranslation } from "react-i18next"; +import { useDispatch, useSelector } from "react-redux"; +import { Dispatch } from "redux"; +import { ModalProps } from "semantic-ui-react"; +import useInitializeHandlers from "./forms/handlers/initialize/use-custom-initialize-handlers"; +import useSubmissionHandlers from "./forms/handlers/submission/use-custom-submission-handlers"; +import useValidationHandlers from "./forms/handlers/validation/use-custom-validation-handlers"; +import { ApplicationTemplateConstants } from "../constants/templates"; +import useApplicationTemplate from "../hooks/use-application-template"; +import useApplicationTemplateMetadata from "../hooks/use-application-template-metadata"; + +/** + * Prop types of the `ApplicationCreateWizard` component. + */ +export interface ApplicationCreateWizardPropsInterface extends ModalProps, IdentifiableComponentInterface { + /** + * Callback triggered when closing the application creation wizard. + */ + onClose: () => void; +} + +/** + * Dynamic application create wizard component. + * + * @param Props - Props to be injected into the component. + */ +export const ApplicationCreateWizard: FunctionComponent = ( + props: ApplicationCreateWizardPropsInterface +): ReactElement => { + const { + ["data-componentid"]: componentId, + onClose + } = props; + + const { customValidations } = useValidationHandlers(); + const { customInitializers } = useInitializeHandlers(); + const { customSubmissionHandlers } = useSubmissionHandlers(); + const { + template: templateData, + isTemplateRequestLoading: isTemplateDataFetchRequestLoading + } = useApplicationTemplate(); + const { + templateMetadata, + isTemplateMetadataRequestLoading: isTemplateMetadataFetchRequestLoading + } = useApplicationTemplateMetadata(); + const isApplicationSharable: boolean = useApplicationSharingEligibility(); + + const { t } = useTranslation(); + const dispatch: Dispatch = useDispatch(); + + const [ showApplicationShareModal, setShowApplicationShareModal ] = useState(false); + const [ lastCreatedApplicationId, setLastCreatedApplicationId ] = useState(null); + const [ openLimitReachedModal, setOpenLimitReachedModal ] = useState(false); + + const isClientSecretHashEnabled: boolean = useSelector((state: AppState) => + state?.config?.ui?.isClientSecretHashEnabled); + + const eventPublisher: EventPublisher = EventPublisher.getInstance(); + + /** + * Apply additional conditions to filter the form fields. + */ + const formDefinition: DynamicFormInterface = useMemo(() => { + if (!templateMetadata) { + return null; + } + + const form: DynamicFormInterface = cloneDeep(templateMetadata?.create?.form); + + if (!isApplicationSharable) { + form.fields = form?.fields?.filter((field: DynamicFieldInterface) => + field?.name !== ApplicationTemplateConstants.APPLICATION_CREATE_WIZARD_SHARING_FIELD_NAME); + } + + return form; + }, [ templateMetadata, isApplicationSharable ]); + + /** + * After the application is created, the user will be redirected to the + * edit page using this function. + * + * @param createdAppId - ID of the created application. + */ + const handleAppCreationComplete = (createdAppId: string): void => { + // The created resource's id is sent as a location header. + // If that's available, navigate to the edit page. + if (createdAppId) { + let searchParams: string = "?"; + const defaultTabIndex: number = 0; + + if (isClientSecretHashEnabled) { + searchParams = `${ searchParams }${ + ApplicationManagementConstants.CLIENT_SECRET_HASH_ENABLED_URL_SEARCH_PARAM_KEY }=true`; + } + + history.push({ + hash: `#${URLFragmentTypes.TAB_INDEX}${defaultTabIndex}`, + pathname: AppConstants.getPaths()?.get("APPLICATION_EDIT")?.replace(":id", createdAppId), + search: searchParams + }); + + return; + } + + // Fallback to applications page, if the location header is not present. + history.push(AppConstants.getPaths().get("APPLICATIONS")); + }; + + /** + * Function to handle wizard form submission. + * + * @param values - Submission values from the form fields. + * @param callback - Callback function to execute after form submission is complete. + */ + const handleFormSubmission = ( + values: Record, + callback: (errorMsg: string, errorDescription: string) => void + ): void => { + const isApplicationSharingEnabled: boolean = get( + values, ApplicationTemplateConstants.APPLICATION_CREATE_WIZARD_SHARING_FIELD_NAME) ?? false; + + unset(values, ApplicationTemplateConstants.APPLICATION_CREATE_WIZARD_SHARING_FIELD_NAME); + + createApplication(values as MainApplicationInterface) + .then((response: AxiosResponse) => { + eventPublisher.compute(() => { + eventPublisher.publish("application-register-new-application", { + type: templateData?.id + }); + }); + + dispatch(addAlert({ + description: t("applications:notifications.addApplication.success.description"), + level: AlertLevels.SUCCESS, + message: t("applications:notifications.addApplication.success.message") + })); + + const location: string = response.headers.location; + const createdAppID: string = location.substring(location.lastIndexOf("/") + 1); + + callback(null, null); + + if (isApplicationSharingEnabled) { + setLastCreatedApplicationId(createdAppID); + setShowApplicationShareModal(true); + } else { + handleAppCreationComplete(createdAppID); + } + }) + .catch((error: AxiosError) => { + if (error?.response?.status === 403 + && error?.response?.data?.code === ApplicationManagementConstants + .ERROR_CREATE_LIMIT_REACHED.getErrorCode()) { + setOpenLimitReachedModal(true); + + return; + } + + if (error?.response?.data?.description) { + callback(error.response.data.description, t( + "applications:notifications.addApplication.error.message" + )); + + return; + } + + callback( + t("applications:notifications.addApplication.genericError.description"), + t("applications:notifications.addApplication.error.message") + ); + }); + }; + + if (openLimitReachedModal) { + return ( + { + setOpenLimitReachedModal(false); + onClose(); + } + } + header={ t( + "applications:notifications.tierLimitReachedError.heading" + ) } + description={ t( + "applications:notifications." + + "tierLimitReachedError.emptyPlaceholder.subtitles" + ) } + message={ t( + "applications:notifications." + + "tierLimitReachedError.emptyPlaceholder.title" + ) } + openModal={ openLimitReachedModal } + /> + ); + } + + if (showApplicationShareModal) { + return ( + setShowApplicationShareModal(false) } + onApplicationSharingCompleted={ () => { + setShowApplicationShareModal(false); + handleAppCreationComplete(lastCreatedApplicationId); + setLastCreatedApplicationId(null); + } } + /> + ); + } + + return ( + + ); +}; + +/** + * Default props for the application creation wizard. + */ +ApplicationCreateWizard.defaultProps = { + "data-componentid": "application-create-wizard" +}; diff --git a/features/admin.application-templates.v1/components/application-creation-adapter.tsx b/features/admin.application-templates.v1/components/application-creation-adapter.tsx index e767fbed5cc..5864ec1e0f0 100644 --- a/features/admin.application-templates.v1/components/application-creation-adapter.tsx +++ b/features/admin.application-templates.v1/components/application-creation-adapter.tsx @@ -23,12 +23,12 @@ import { ApplicationTemplateListItemInterface } from "@wso2is/admin.applications import { ApplicationTemplateManagementUtils } from "@wso2is/admin.applications.v1/utils/application-template-management-utils"; import { AppState } from "@wso2is/admin.core.v1"; -import { ApplicationCreateWizard } from "@wso2is/admin.template-core.v1/components/application-create-wizard"; import { ExtensionTemplateListInterface } from "@wso2is/admin.template-core.v1/models/templates"; import { IdentifiableComponentInterface } from "@wso2is/core/models"; import { ContentLoader } from "@wso2is/react-components"; import React, { FunctionComponent, ReactElement, useEffect, useState } from "react"; import { useSelector } from "react-redux"; +import { ApplicationCreateWizard } from "./application-create-wizard"; import { ApplicationTemplateCategories } from "../models/templates"; /** diff --git a/features/admin.application-templates.v1/components/forms/handlers/initialize/use-custom-initialize-handlers.tsx b/features/admin.application-templates.v1/components/forms/handlers/initialize/use-custom-initialize-handlers.tsx index 9815ec81f79..89afa0eddf9 100644 --- a/features/admin.application-templates.v1/components/forms/handlers/initialize/use-custom-initialize-handlers.tsx +++ b/features/admin.application-templates.v1/components/forms/handlers/initialize/use-custom-initialize-handlers.tsx @@ -24,7 +24,7 @@ import { } from "@wso2is/admin.template-core.v1/models/dynamic-fields"; import get from "lodash-es/get"; import useUniqueApplicationName from "./use-unique-application-name"; -import { ApplicationTemplateValidationHandlers } from "../../../../models/dynamic-fields"; +import { ApplicationTemplateInitializeHandlers } from "../../../../models/dynamic-fields"; /** * Hook for custom initialize handlers. @@ -50,7 +50,7 @@ const useInitializeHandlers = (): { customInitializers: CustomInitializeFunction templatePayload: Record ): Promise => { switch (handler?.name) { - case ApplicationTemplateValidationHandlers.APPLICATION_NAME: + case ApplicationTemplateInitializeHandlers.UNIQUE_APPLICATION_NAME: await generateUniqueApplicationName( get(templatePayload, field?.name)?.toString()?.trim(), formValues, diff --git a/features/admin.application-templates.v1/components/forms/handlers/initialize/use-unique-application-name.tsx b/features/admin.application-templates.v1/components/forms/handlers/initialize/use-unique-application-name.tsx index 5b4bec6d2d1..e73623082af 100644 --- a/features/admin.application-templates.v1/components/forms/handlers/initialize/use-unique-application-name.tsx +++ b/features/admin.application-templates.v1/components/forms/handlers/initialize/use-unique-application-name.tsx @@ -19,6 +19,21 @@ import { getApplicationList } from "@wso2is/admin.applications.v1/api"; import { ApplicationListInterface, ApplicationListItemInterface } from "@wso2is/admin.applications.v1/models"; import set from "lodash-es/set"; +import { MutableRefObject, useRef } from "react"; + +/** + * Interface for duplicate application list cache. + */ +interface DuplicateApplicationListCache { + /** + * Application list response for recently searched application name. + */ + appList: ApplicationListInterface; + /** + * Recently searched application name. + */ + appName: string; +} /** * Hook to generate a unique application name. @@ -28,10 +43,12 @@ import set from "lodash-es/set"; const useUniqueApplicationName = (): { generateUniqueApplicationName: ( initialApplicationName: string, - formValues: Record, + formValues: Record, fieldName: string ) => Promise } => { + const duplicateApplicationListCache: MutableRefObject = + useRef(null); /** * Generate the next unique name by appending 1-based index number to the provided initial value. @@ -41,14 +58,21 @@ const useUniqueApplicationName = (): { */ const generateUniqueApplicationName = async ( initialApplicationName: string, - formValues: Record, + formValues: Record, fieldName: string ): Promise => { - let appName: string = initialApplicationName; + let appName: string = initialApplicationName?.trim(); + let possibleListOfDuplicateApplications: ApplicationListInterface = + duplicateApplicationListCache?.current?.appList; - const possibleListOfDuplicateApplications: ApplicationListInterface = await getApplicationList( - null, null, "name sw " + appName?.trim()); + if (duplicateApplicationListCache?.current?.appName !== appName) { + possibleListOfDuplicateApplications = await getApplicationList(null, null, "name sw " + appName); + duplicateApplicationListCache.current = { + appList: possibleListOfDuplicateApplications, + appName + }; + } if (possibleListOfDuplicateApplications?.totalResults > 0) { const applicationNameList: string[] = possibleListOfDuplicateApplications?.applications?.map( diff --git a/features/admin.application-templates.v1/components/forms/handlers/submission/build-callback-urls-with-regexp.ts b/features/admin.application-templates.v1/components/forms/handlers/submission/build-callback-urls-with-regexp.ts index e69de29bb2d..b4020bd0715 100644 --- a/features/admin.application-templates.v1/components/forms/handlers/submission/build-callback-urls-with-regexp.ts +++ b/features/admin.application-templates.v1/components/forms/handlers/submission/build-callback-urls-with-regexp.ts @@ -0,0 +1,48 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import get from "lodash-es/get"; + +/** + * Build an array of URLs or a regular expression string from an array of URLs. + * + * @param formValues - Object containing initial values for the form. + * @param fieldName - Path of the field value within the object. + * @returns An array of URLs or a regular expression string. + * + * @example + * // When there is a single URL: + * const url = buildCallBackUrlsWithRegExp(["https://example.com/login"]); + * // Result: ["https://example.com/login"] + * + * // When there are multiple URLs: + * const urls = buildCallBackUrlsWithRegExp(["https://example.com/login", "https://app.example.com/login"]); + * // Result: ["regexp=(https://example.com/login|https://app.example.com/login)"] + */ +const buildCallBackUrlsWithRegExp = (formValues: Record, fieldName: string): string[] => { + const urls: string[] = get(formValues, fieldName); + const sanitizedURLs: string[] = urls?.map((url: string) => url?.replace(/['"]+/g, "")) || []; + + if (sanitizedURLs?.length > 1) { + return [ `regexp=(${sanitizedURLs.join("|")})` ]; + } + + return sanitizedURLs; +}; + +export default buildCallBackUrlsWithRegExp; diff --git a/features/admin.application-templates.v1/components/forms/handlers/submission/use-custom-submission-handlers.tsx b/features/admin.application-templates.v1/components/forms/handlers/submission/use-custom-submission-handlers.tsx index 9815ec81f79..a6b8c07826f 100644 --- a/features/admin.application-templates.v1/components/forms/handlers/submission/use-custom-submission-handlers.tsx +++ b/features/admin.application-templates.v1/components/forms/handlers/submission/use-custom-submission-handlers.tsx @@ -16,52 +16,45 @@ * under the License. */ -import { CustomInitializeFunction } from - "@wso2is/admin.template-core.v1/components/forms/handlers/initialize/use-initialize-handlers"; +import { CustomSubmissionFunction } from + "@wso2is/admin.template-core.v1/components/forms/handlers/submission/use-submission-handlers"; import { DynamicFieldHandlerInterface, DynamicFieldInterface } from "@wso2is/admin.template-core.v1/models/dynamic-fields"; -import get from "lodash-es/get"; -import useUniqueApplicationName from "./use-unique-application-name"; -import { ApplicationTemplateValidationHandlers } from "../../../../models/dynamic-fields"; +import buildCallBackUrlsWithRegExp from "./build-callback-urls-with-regexp"; +import { ApplicationTemplateSubmissionHandlers } from "../../../../models/dynamic-fields"; /** - * Hook for custom initialize handlers. + * Hook for custom submission handlers. * - * @returns Custom initialize functions. + * @returns Custom submission handler functions. */ -const useInitializeHandlers = (): { customInitializers: CustomInitializeFunction } => { - - const { generateUniqueApplicationName } = useUniqueApplicationName(); +const useSubmissionHandlers = (): { customSubmissionHandlers: CustomSubmissionFunction } => { /** - * Custom initializer functions to initialize the field based on the handler. + * Custom submission handler functions to modify the fields. * - * @param formValues - The form values to be initialized. + * @param formValues - The form values to be handled by submission handlers. * @param field - Metadata of the form field. * @param handler - Handler definition. * @param templatePayload - Template payload values. */ - const customInitializers = async ( + const customSubmissionHandlers = async ( formValues: Record, field: DynamicFieldInterface, handler: DynamicFieldHandlerInterface, - templatePayload: Record + _templatePayload: Record ): Promise => { switch (handler?.name) { - case ApplicationTemplateValidationHandlers.APPLICATION_NAME: - await generateUniqueApplicationName( - get(templatePayload, field?.name)?.toString()?.trim(), - formValues, - field?.name - ); + case ApplicationTemplateSubmissionHandlers.BUILD_CALLBACK_URLS_WITH_REGEXP: + buildCallBackUrlsWithRegExp(formValues, field?.name); break; } }; - return { customInitializers }; + return { customSubmissionHandlers }; }; -export default useInitializeHandlers; +export default useSubmissionHandlers; diff --git a/features/admin.application-templates.v1/constants/templates.ts b/features/admin.application-templates.v1/constants/templates.ts index 758ffe0b840..6b017947d5a 100644 --- a/features/admin.application-templates.v1/constants/templates.ts +++ b/features/admin.application-templates.v1/constants/templates.ts @@ -42,4 +42,6 @@ export class ApplicationTemplateConstants { public static readonly SUPPORTED_TECHNOLOGIES_ATTRIBUTE_KEY: string = "supportedTechnologies"; public static readonly CUSTOM_PROTOCOL_APPLICATION_TEMPLATE_ID: string = "custom-protocol-application"; + + public static readonly APPLICATION_CREATE_WIZARD_SHARING_FIELD_NAME: string = "isApplicationSharable"; } diff --git a/features/admin.application-templates.v1/models/dynamic-fields.ts b/features/admin.application-templates.v1/models/dynamic-fields.ts index 055c8c77dcd..29c09fab08f 100644 --- a/features/admin.application-templates.v1/models/dynamic-fields.ts +++ b/features/admin.application-templates.v1/models/dynamic-fields.ts @@ -22,3 +22,17 @@ export enum ApplicationTemplateValidationHandlers { APPLICATION_NAME = "applicationName", } + +/** + * Supported custom initialize handlers for application templates. + */ +export enum ApplicationTemplateInitializeHandlers { + UNIQUE_APPLICATION_NAME = "uniqueApplicationName", +} + +/** + * Supported custom submission handlers for application templates. + */ +export enum ApplicationTemplateSubmissionHandlers { + BUILD_CALLBACK_URLS_WITH_REGEXP = "buildCallbackURLsWithRegexp", +} diff --git a/features/admin.application-templates.v1/models/templates.ts b/features/admin.application-templates.v1/models/templates.ts index 258c28b3472..cd02eb817f9 100644 --- a/features/admin.application-templates.v1/models/templates.ts +++ b/features/admin.application-templates.v1/models/templates.ts @@ -56,10 +56,6 @@ export interface ApplicationTemplateMetadataInterface { * Dynamic input fields should be rendered in the application create wizard. */ form?: DynamicFormInterface; - /** - * Indicates whether the application is sharable with sub orgs. - */ - isApplicationSharable?: boolean; /** * Application creation guide metadata. */ diff --git a/features/admin.application-templates.v1/utils/build-callback-urls-with-regexp.ts b/features/admin.application-templates.v1/utils/build-callback-urls-with-regexp.ts deleted file mode 100644 index 7d33eb44505..00000000000 --- a/features/admin.application-templates.v1/utils/build-callback-urls-with-regexp.ts +++ /dev/null @@ -1,44 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -/** - * Build an array of URLs or a regular expression string from an array of URLs. - * - * @param urls - An array of URLs. - * @returns An array of URLs or a regular expression string. - * - * @example - * // When there is a single URL: - * const url = buildCallBackUrlsWithRegExp(["https://example.com/login"]); - * // Result: ["https://example.com/login"] - * - * // When there are multiple URLs: - * const urls = buildCallBackUrlsWithRegExp(["https://example.com/login", "https://app.example.com/login"]); - * // Result: ["regexp=(https://example.com/login|https://app.example.com/login)"] - */ -const buildCallBackUrlsWithRegExp = (urls: string[]): string[] => { - const sanitizedURLs: string[] = urls?.map((url: string) => url?.replace(/['"]+/g, "")); - - if (sanitizedURLs?.length > 1) { - return [ `regexp=(${sanitizedURLs.join("|")})` ]; - } - - return sanitizedURLs; -}; - -export default buildCallBackUrlsWithRegExp; diff --git a/features/admin.template-core.v1/components/application-create-wizard.scss b/features/admin.template-core.v1/components/application-create-wizard.scss deleted file mode 100644 index 2b31f9b11bf..00000000000 --- a/features/admin.template-core.v1/components/application-create-wizard.scss +++ /dev/null @@ -1,78 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -.application-create-wizard { - .application-create-wizard-dynamic-fields { - &:not(:first-child) { - padding-top: 0; - } - } - - .application-share-field { - padding-top: 0; - } - - .installation-guide-content { - display: flex; - flex-direction: column; - justify-content: space-between; - - .installation-guide-stepper { - display: flex; - flex-direction: row; - align-content: center; - justify-content: space-between; - align-items: center; - - .installation-guide-stepper-progress { - display: flex; - flex-direction: column; - justify-content: center; - height: 100%; - width: 100%; - margin-right: 30px; - - .oxygen-typography { - margin-bottom: 3px; - } - - .MuiLinearProgress-root { - height: 8px; - border-radius: 5px; - } - } - - .installation-guide-stepper-pagination { - .MuiPagination-ul { - display: flex; - flex-direction: row; - flex-wrap: nowrap; - align-content: center; - justify-content: center; - align-items: center; - - li { - &:not(:first-child):not(:last-child) { - display: none; - } - } - } - } - } - } -} diff --git a/features/admin.template-core.v1/components/application-create-wizard.tsx b/features/admin.template-core.v1/components/application-create-wizard.tsx deleted file mode 100644 index 69690d56e5a..00000000000 --- a/features/admin.template-core.v1/components/application-create-wizard.tsx +++ /dev/null @@ -1,695 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import LinearProgress from "@mui/material/LinearProgress"; -import Pagination from "@mui/material/Pagination"; -import Checkbox from "@oxygen-ui/react/Checkbox"; -import FormControl from "@oxygen-ui/react/FormControl"; -import FormControlLabel from "@oxygen-ui/react/FormControlLabel"; -import Typography from "@oxygen-ui/react/Typography"; -import useApplicationTemplate from "@wso2is/admin.application-templates.v1/hooks/use-application-template"; -import useApplicationTemplateMetadata from - "@wso2is/admin.application-templates.v1/hooks/use-application-template-metadata"; -import buildCallBackUrlsWithRegExp from "@wso2is/admin.application-templates.v1/utils/build-callback-urls-with-regexp"; -import { createApplication, useApplicationList } from "@wso2is/admin.applications.v1/api"; -import { ApplicationShareModal } from "@wso2is/admin.applications.v1/components/modals/application-share-modal"; -import { ApplicationManagementConstants } from "@wso2is/admin.applications.v1/constants"; -import useApplicationSharingEligibility from "@wso2is/admin.applications.v1/hooks/use-application-sharing-eligibility"; -import { - ApplicationListItemInterface, - MainApplicationInterface, - URLFragmentTypes -} from "@wso2is/admin.applications.v1/models"; -import { AppState, TierLimitReachErrorModal } from "@wso2is/admin.core.v1"; -import { ModalWithSidePanel } from "@wso2is/admin.core.v1/components/modals/modal-with-side-panel"; -import { AppConstants } from "@wso2is/admin.core.v1/constants/app-constants"; -import { history } from "@wso2is/admin.core.v1/helpers/history"; -import { EventPublisher } from "@wso2is/admin.core.v1/utils/event-publisher"; -import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; -import { addAlert } from "@wso2is/core/store"; -import { FinalForm, FormRenderProps, MutableState, Tools } from "@wso2is/form"; -import { - ContentLoader, - Heading, - LinkButton, - Markdown, - PrimaryButton, - useWizardAlert -} from "@wso2is/react-components"; -import { AxiosError, AxiosResponse } from "axios"; -import cloneDeep from "lodash-es/cloneDeep"; -import get from "lodash-es/get"; -import has from "lodash-es/has"; -import pick from "lodash-es/pick"; -import set from "lodash-es/set"; -import unset from "lodash-es/unset"; -import React, { ChangeEvent, FunctionComponent, MouseEvent, ReactElement, useEffect, useMemo, useState } from "react"; -import { useTranslation } from "react-i18next"; -import { useDispatch, useSelector } from "react-redux"; -import { Dispatch } from "redux"; -import { Grid, ModalProps } from "semantic-ui-react"; -import { v4 as uuidv4 } from "uuid"; -import { ApplicationFormDynamicField } from "./application-form-dynamic-field"; -import useDynamicFieldValidations from "../hooks/use-dynamic-field-validation"; -import { DynamicFieldInterface, FieldValueGenerators } from "../models/dynamic-fields"; -import "./application-create-wizard.scss"; -import useValidationHandlers, { CustomValidationsFunction } from "./forms/handlers/validation/use-validation-handlers"; - -/** - * Prop types of the `ApplicationCreateWizard` component. - */ -export interface ApplicationCreateWizardPropsInterface extends ModalProps, IdentifiableComponentInterface { - /** - * Callback triggered when closing the application creation wizard. - */ - onClose: () => void; - /** - * Custom validation functions for form validations. - */ - customValidations?: CustomValidationsFunction; -} - -/** - * Dynamic application create wizard component. - * - * @param Props - Props to be injected into the component. - */ -export const ApplicationCreateWizard: FunctionComponent = ( - props: ApplicationCreateWizardPropsInterface -): ReactElement => { - const { - ["data-componentid"]: componentId, - customValidations, - onClose, - ...rest - } = props; - - const { - template: templateData, - isTemplateRequestLoading: isTemplateDataFetchRequestLoading - } = useApplicationTemplate(); - const { - templateMetadata, - isTemplateMetadataRequestLoading: isTemplateMetadataFetchRequestLoading - } = useApplicationTemplateMetadata(); - const isApplicationSharable: boolean = useApplicationSharingEligibility(); - const { validate } = useValidationHandlers(customValidations); - const [ alert, setAlert, notification ] = useWizardAlert(); - const { - data: possibleListOfDuplicateApplications, - isLoading: isApplicationsFetchRequestLoading, - error: applicationsFetchRequestError - } = useApplicationList(null, null, null, "name sw " + templateData?.payload?.name, !!templateData?.payload?.name); - - const { t } = useTranslation(); - const dispatch: Dispatch = useDispatch(); - - const [ installGuideActivePage, setInstallGuideActivePage ] = useState(1); - const [ showApplicationShareModal, setShowApplicationShareModal ] = useState(false); - const [ lastCreatedApplicationId, setLastCreatedApplicationId ] = useState(null); - const [ isApplicationSharingEnabled, setIsApplicationSharingEnabled ] = useState(false); - const [ openLimitReachedModal, setOpenLimitReachedModal ] = useState(false); - const [ isSubmitting, setIsSubmitting ] = useState(false); - - const isClientSecretHashEnabled: boolean = useSelector((state: AppState) => - state?.config?.ui?.isClientSecretHashEnabled); - const tenantDomain: string = useSelector((state: AppState) => state?.auth?.tenantDomain); - const clientOrigin: string = useSelector((state: AppState) => state?.config?.deployment?.clientOrigin); - const serverOrigin: string = useSelector((state: AppState) => state?.config?.deployment?.idpConfigs?.serverOrigin); - const appBaseNameWithoutTenant: string = useSelector((state: AppState) => - state?.config?.deployment?.appBaseNameWithoutTenant); - - const eventPublisher: EventPublisher = EventPublisher.getInstance(); - - /** - * Generate the next unique name by appending 1-based index number to the provided initial value. - * - * @param initialApplicationName - Initial value for the Application name. - * @returns A unique name from the provided list of names. - */ - const generateUniqueApplicationName = (initialApplicationName: string): string => { - - let appName: string = initialApplicationName; - - if (possibleListOfDuplicateApplications?.totalResults > 0) { - const applicationNameList: string[] = possibleListOfDuplicateApplications?.applications?.map( - (item: ApplicationListItemInterface) => item?.name); - - for (let i: number = 2; ; i++) { - if (!applicationNameList?.includes(appName)) { - break; - } - - appName = initialApplicationName + " " + i; - } - } - - return appName; - }; - - /** - * Prepare the initial values before assigning them to the form fields. - * - * @param initialValues - Initial values defined in template. - * @returns Moderated initial values. - */ - const moderateInitialValues = ( - initialValues: Partial, - templatePayload: MainApplicationInterface - ): Partial => { - if (initialValues?.name) { - initialValues.name = generateUniqueApplicationName(templatePayload?.name); - } - - /** - * Template ID must be submitted when creating the application. - */ - if (!initialValues?.templateId) { - initialValues.templateId = templatePayload?.templateId; - } - - return initialValues; - }; - - const formInitialValues: Partial = useMemo(() => { - if (!templateData?.payload) { - return null; - } - - let initialValues: Partial; - - if (templateMetadata?.create?.form?.submitDefinedFieldsOnly) { - const paths: string[] = templateMetadata?.create?.form?.fields?.map( - (field: DynamicFieldInterface) => field?.name); - - initialValues = pick(templateData?.payload, paths); - } else { - initialValues = cloneDeep(templateData?.payload); - } - - return moderateInitialValues(initialValues, templateData?.payload); - }, [ templateData?.payload, possibleListOfDuplicateApplications ]); - - /** - * Handle errors that occur during the application list fetch request. - */ - useEffect(() => { - if (!applicationsFetchRequestError) { - return; - } - - if (applicationsFetchRequestError?.response?.data?.description) { - dispatch(addAlert({ - description: applicationsFetchRequestError?.response?.data?.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.fetchApplications.error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications." + - "fetchApplications.genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications." + - "fetchApplications.genericError.message") - })); - }, [ applicationsFetchRequestError ]); - - /** - * After the application is created, the user will be redirected to the - * edit page using this function. - * - * @param createdAppId - ID of the created application. - */ - const handleAppCreationComplete = (createdAppId: string): void => { - // The created resource's id is sent as a location header. - // If that's available, navigate to the edit page. - if (createdAppId) { - let searchParams: string = "?"; - const defaultTabIndex: number = 0; - - if (isClientSecretHashEnabled) { - searchParams = `${ searchParams }${ - ApplicationManagementConstants.CLIENT_SECRET_HASH_ENABLED_URL_SEARCH_PARAM_KEY }=true`; - } - - history.push({ - hash: `#${URLFragmentTypes.TAB_INDEX}${defaultTabIndex}`, - pathname: AppConstants.getPaths()?.get("APPLICATION_EDIT")?.replace(":id", createdAppId), - search: searchParams - }); - - return; - } - - // Fallback to applications page, if the location header is not present. - history.push(AppConstants.getPaths().get("APPLICATIONS")); - }; - - /** - * This function will navigate the user to the notification message if there are any errors. - */ - const scrollToNotification = () => { - document.getElementById("notification-div")?.scrollIntoView({ behavior: "smooth" }); - }; - - const getTemplatedValues = (property: string): string => { - switch(property) { - case "tenantDomain": - return tenantDomain; - case "clientOrigin": - return clientOrigin; - case "serverOrigin": - return serverOrigin; - case "appBaseNameWithoutTenant": - return appBaseNameWithoutTenant; - default: - return ""; - } - }; - - /** - * Callback function triggered when clicking the form submit button. - * - * @param values - Submission values from the form fields. - */ - const onSubmit = (values: MainApplicationInterface): void => { - setIsSubmitting(true); - const formValues: MainApplicationInterface = cloneDeep(values); - - /** - * Make sure that cleared text fields are set to an empty string. - * Additionally, include the auto-submit properties in the form submission. - */ - templateMetadata?.create?.form?.fields?.forEach((field: DynamicFieldInterface) => { - if (!has(formValues, field?.name)) { - const initialValue: any = get(formInitialValues, field?.name); - - if (initialValue && typeof initialValue === "string") { - set(formValues, field?.name, ""); - } - } - - if (field?.meta?.generator === FieldValueGenerators.UUID) { - set(formValues, field?.name, uuidv4()); - } - - if (field?.meta?.dependentProperties - && Array.isArray(field?.meta?.dependentProperties) - && field?.meta?.dependentProperties?.length > 0) { - const fieldValue: string = get(formValues, field?.name); - - if (typeof fieldValue === "string") { - field.meta.dependentProperties.forEach( - (property: string) => { - const propertyValue: string = get(formValues, property); - - if (propertyValue && typeof propertyValue === "string") { - set(formValues, property, propertyValue.replace(`\${${field?.name}}`, fieldValue)); - } - } - ); - } - } - - if (field?.meta?.templatedPlaceholders - && Array.isArray(field?.meta?.templatedPlaceholders) - && field?.meta?.templatedPlaceholders?.length > 0) { - let fieldValue: string = get(formValues, field?.name); - - if (typeof fieldValue === "string") { - field.meta.templatedPlaceholders.forEach( - (property: string) => { - let propertyValue: string = get(formValues, property); - - if (!propertyValue) { - propertyValue = getTemplatedValues(property); - } - - if (propertyValue && typeof propertyValue === "string") { - fieldValue = fieldValue.replace(`\${${property}}`, propertyValue); - } - } - ); - - set(formValues, field?.name, fieldValue); - } - } - }); - - templateMetadata?.create?.form?.fields?.forEach((field: DynamicFieldInterface) => { - if (field?.disable) { - unset(formValues, field?.name); - } - }); - - // Moderate Values to match API restrictions. - if (formValues?.inboundProtocolConfiguration?.oidc?.callbackURLs) { - formValues.inboundProtocolConfiguration.oidc.callbackURLs = buildCallBackUrlsWithRegExp( - formValues.inboundProtocolConfiguration.oidc.callbackURLs - ); - } - - createApplication(formValues) - .then((response: AxiosResponse) => { - eventPublisher.compute(() => { - eventPublisher.publish("application-register-new-application", { - type: templateData?.id - }); - }); - - dispatch( - addAlert({ - description: t( - "applications:notifications." + - "addApplication.success.description" - ), - level: AlertLevels.SUCCESS, - message: t( - "applications:notifications." + - "addApplication.success.message" - ) - }) - ); - - const location: string = response.headers.location; - const createdAppID: string = location.substring(location.lastIndexOf("/") + 1); - - if (isApplicationSharingEnabled) { - setLastCreatedApplicationId(createdAppID); - setShowApplicationShareModal(true); - } else { - handleAppCreationComplete(createdAppID); - } - }) - .catch((error: AxiosError) => { - if (error?.response?.status === 403 - && error?.response?.data?.code === ApplicationManagementConstants - .ERROR_CREATE_LIMIT_REACHED.getErrorCode()) { - setOpenLimitReachedModal(true); - - return; - } - - if (error?.response?.data?.description) { - setAlert({ - description: error.response.data.description, - level: AlertLevels.ERROR, - message: t( - "applications:notifications." + - "addApplication.error.message" - ) - }); - scrollToNotification(); - - return; - } - - setAlert({ - description: t( - "applications:notifications." + - "addApplication.genericError.description" - ), - level: AlertLevels.ERROR, - message: t( - "applications:notifications." + - "addApplication.genericError.message" - ) - }); - scrollToNotification(); - }) - .finally(() => setIsSubmitting(false)); - }; - - let formSubmit: (e: MouseEvent) => void; - - if (openLimitReachedModal) { - return ( - { - setOpenLimitReachedModal(false); - onClose(); - } - } - header={ t( - "applications:notifications.tierLimitReachedError.heading" - ) } - description={ t( - "applications:notifications." + - "tierLimitReachedError.emptyPlaceholder.subtitles" - ) } - message={ t( - "applications:notifications." + - "tierLimitReachedError.emptyPlaceholder.title" - ) } - openModal={ openLimitReachedModal } - /> - ); - } - - if (showApplicationShareModal) { - return ( - setShowApplicationShareModal(false) } - onApplicationSharingCompleted={ () => { - setShowApplicationShareModal(false); - handleAppCreationComplete(lastCreatedApplicationId); - setLastCreatedApplicationId(null); - } } - /> - ); - } - - return ( - - - - { templateData?.name } - { templateData?.description } - - - { - isTemplateDataFetchRequestLoading - || isTemplateMetadataFetchRequestLoading - || (templateData?.payload?.name && isApplicationsFetchRequestLoading) - ? - : ( - <> - { alert && ( - - - - { notification } - - - - ) } - , - Partial - >, - { changeValue }: Tools< - Partial, - Partial - > - ) => { - changeValue(state, fieldName, () => fieldVal); - } - } } - validate={ - (formValues: MainApplicationInterface) => - validate(formValues, templateMetadata?.create?.form?.fields) - } - render={ ({ form, handleSubmit }: FormRenderProps) => { - formSubmit = handleSubmit; - - return ( -
    - - { templateMetadata?.create?.form?.fields.map( - (field: DynamicFieldInterface) => { - if (field?.hidden) { - return null; - } - - return ( - - - - - - ); - }) - } - -
    - ); - } } - /> - { templateMetadata?.create?.isApplicationSharable && isApplicationSharable && ( - - - - - ) => { - setIsApplicationSharingEnabled( - e?.target?.checked - ); - } } - /> - ) } - label={ - t("applications:forms.generalDetails.fields" + - ".isSharingEnabled.label") - } - /> - - - - - ) } - - ) - } -
    - - - - - - { t("common:cancel") } - - - - ) => formSubmit(e) } - floated="right" - data-componentid={ `${componentId}-create-button` } - loading={ isSubmitting } - disabled={ isSubmitting } - > - { t("common:create") } - - - - - -
    - { templateMetadata?.create?.guide && ( - - -
    - { t("applications:wizards.minimalAppCreationWizard.help.heading") } -
    -
    - - { Array.isArray(templateMetadata?.create?.guide) && ( - <> - - { templateMetadata.create.guide.length > 1 && ( -
    -
    - - Page { installGuideActivePage } of{ " " } - { templateMetadata.create.guide.length } - - -
    - { - setInstallGuideActivePage(page); - } } - /> -
    - ) } - - ) } -
    -
    - ) } -
    - ); -}; - -/** - * Default props for the application creation wizard. - */ -ApplicationCreateWizard.defaultProps = { - "data-componentid": "application-create-wizard" -}; diff --git a/features/admin.template-core.v1/components/application-edit-form.tsx b/features/admin.template-core.v1/components/application-edit-form.tsx index 51ce00e71a7..e13cf9dbe7a 100644 --- a/features/admin.template-core.v1/components/application-edit-form.tsx +++ b/features/admin.template-core.v1/components/application-edit-form.tsx @@ -23,9 +23,7 @@ import { EmphasizedSegment, PrimaryButton } from "@wso2is/react-components"; import React, { FunctionComponent, MouseEvent, ReactElement } from "react"; import { useTranslation } from "react-i18next"; import { Grid } from "semantic-ui-react"; -import { ApplicationEditForm as ApplicationInboundProtocolEditForm } from "./application-inbound-protocol-edit-form"; -import { ApplicationEditForm as ApplicationMainEditForm } from "./application-main-edit-form"; -import { DynamicFormInterface, SupportedAPIList } from "../models/dynamic-fields"; +import { DynamicFormInterface } from "../models/dynamic-fields"; import "./application-edit-form.scss"; /** @@ -71,46 +69,47 @@ export const ApplicationEditForm: FunctionComponent) => void) }> = {}; + const formSubmissions: any = {}; const { t } = useTranslation(); const renderForms = () => { return tab?.forms?.map((form: DynamicFormInterface) => { - switch(form?.api) { - case SupportedAPIList.APPLICATION_PATCH: - return ( - ) => void) => - formSubmissions[form?.api] = submissionFunction - } - /> - ); - case SupportedAPIList.APPLICATION_SAML_INBOUND_PROTOCOL_PUT: - return ( - ) => void) => - formSubmissions[form?.api] = submissionFunction - } - /> - ); - } + // switch(form?.api) { + // case SupportedAPIList.APPLICATION_PATCH: + // return ( + // ) => void) => + // formSubmissions[form?.api] = submissionFunction + // } + // /> + // ); + // case SupportedAPIList.APPLICATION_SAML_INBOUND_PROTOCOL_PUT: + // return ( + // ) => void) => + // formSubmissions[form?.api] = submissionFunction + // } + // /> + // ); + // } + return null; }); }; diff --git a/features/admin.template-core.v1/components/application-form-dynamic-field.tsx b/features/admin.template-core.v1/components/form-dynamic-field.tsx similarity index 76% rename from features/admin.template-core.v1/components/application-form-dynamic-field.tsx rename to features/admin.template-core.v1/components/form-dynamic-field.tsx index 889bb4c88bb..5d80ba9dd53 100644 --- a/features/admin.template-core.v1/components/application-form-dynamic-field.tsx +++ b/features/admin.template-core.v1/components/form-dynamic-field.tsx @@ -16,18 +16,16 @@ * under the License. */ -import { ApplicationInterface } from "@wso2is/admin.applications.v1/models"; import { IdentifiableComponentInterface } from "@wso2is/core/models"; import { CheckboxFieldAdapter, FinalFormField, FormApi, TextFieldAdapter } from "@wso2is/form"; import { Hint } from "@wso2is/react-components"; import React, { FunctionComponent, PropsWithChildren, ReactElement } from "react"; -import ApplicationCertificateAdapter from "./custom-fields/application-certificate-adapter"; import { DynamicFieldInterface, DynamicInputFieldTypes } from "../models/dynamic-fields"; /** - * Prop types for the dynamic input fields of the application form. + * Prop types for the dynamic input fields. */ -export interface ApplicationFormDynamicFieldPropsInterface extends IdentifiableComponentInterface { +export interface FormDynamicFieldPropsInterface extends IdentifiableComponentInterface { /** * Field configs. */ @@ -40,30 +38,20 @@ export interface ApplicationFormDynamicFieldPropsInterface extends IdentifiableC * Whether the form field is read only or not. */ readOnly?: boolean; - /** - * Data of the current application. - */ - application?: ApplicationInterface; - /** - * Callback to trigger when the application update occurs. - */ - onApplicationUpdate?: (id: string) => void; } /** * Component responsible for generating the field based on the provided field configs. * - * @param props - Props injected to the `ApplicationFormDynamicField` component. + * @param props - Props injected to the `FormDynamicField` component. */ -export const ApplicationFormDynamicField: FunctionComponent> = (props: PropsWithChildren): ReactElement => { +export const FormDynamicField: FunctionComponent> = (props: PropsWithChildren): ReactElement => { const { field, form: _form, readOnly, - application, - onApplicationUpdate, ["data-componentid"]: componentId, ...rest } = props; @@ -145,23 +133,6 @@ export const ApplicationFormDynamicField: FunctionComponent ); - case DynamicInputFieldTypes.APPLICATION_CERTIFICATE: - if (!application || !onApplicationUpdate) { - return null; - } - - return ( - - ); default: return ( ): Promise => { for (const field of fields) { - const submissionHandlers: DynamicFieldHandlerInterface[] = field?.handlers?.filter( + let submissionHandlers: DynamicFieldHandlerInterface[] = field?.handlers?.filter( (handler: DynamicFieldHandlerInterface) => handler?.type === FieldHandlerTypes.SUBMISSION) || []; + if (field?.disable) { + submissionHandlers = [ + ...submissionHandlers, + { name: CommonSubmissionHandlers.DISABLE_PROPERTY, type: FieldHandlerTypes.SUBMISSION } + ]; + } + if (submissionHandlers?.length > 0) { await submitField(formValues, field, submissionHandlers, templateData); } diff --git a/features/admin.template-core.v1/components/resource-create-wizard.tsx b/features/admin.template-core.v1/components/resource-create-wizard.tsx index 12503f94688..e555f84c331 100644 --- a/features/admin.template-core.v1/components/resource-create-wizard.tsx +++ b/features/admin.template-core.v1/components/resource-create-wizard.tsx @@ -19,13 +19,8 @@ import LinearProgress from "@mui/material/LinearProgress"; import Pagination from "@mui/material/Pagination"; import Typography from "@oxygen-ui/react/Typography"; -import buildCallBackUrlsWithRegExp from "@wso2is/admin.application-templates.v1/utils/build-callback-urls-with-regexp"; -import { createApplication } from "@wso2is/admin.applications.v1/api"; -import { ApplicationManagementConstants } from "@wso2is/admin.applications.v1/constants"; -import { MainApplicationInterface } from "@wso2is/admin.applications.v1/models"; import { ModalWithSidePanel } from "@wso2is/admin.core.v1/components/modals/modal-with-side-panel"; import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; -import { addAlert } from "@wso2is/core/store"; import { FinalForm, FormRenderProps, MutableState, Tools } from "@wso2is/form"; import { ContentLoader, @@ -35,21 +30,17 @@ import { PrimaryButton, useWizardAlert } from "@wso2is/react-components"; -import { AxiosError, AxiosResponse } from "axios"; import cloneDeep from "lodash-es/cloneDeep"; import get from "lodash-es/get"; import has from "lodash-es/has"; import pick from "lodash-es/pick"; import set from "lodash-es/set"; -import unset from "lodash-es/unset"; -import React, { ChangeEvent, FunctionComponent, MouseEvent, ReactElement, useMemo, useState } from "react"; +import React, { ChangeEvent, FunctionComponent, MouseEvent, ReactElement, useEffect, useState } from "react"; import { useTranslation } from "react-i18next"; -import { useDispatch } from "react-redux"; -import { Dispatch } from "redux"; import { Grid, ModalProps } from "semantic-ui-react"; -import { v4 as uuidv4 } from "uuid"; -import { ApplicationFormDynamicField } from "./application-form-dynamic-field"; +import { FormDynamicField } from "./form-dynamic-field"; import useInitializeHandlers, { CustomInitializeFunction } from "./forms/handlers/initialize/use-initialize-handlers"; +import useSubmissionHandlers, { CustomSubmissionFunction } from "./forms/handlers/submission/use-submission-handlers"; import useValidationHandlers, { CustomValidationsFunction } from "./forms/handlers/validation/use-validation-handlers"; import { DynamicFieldInterface, DynamicFormInterface } from "../models/dynamic-fields"; import "./resource-create-wizard.scss"; @@ -74,6 +65,10 @@ export interface ResourceCreateWizardPropsInterface extends ModalProps, Identifi * Custom initialize functions. */ customInitializers?: CustomInitializeFunction; + /** + * Custom submission handler functions. + */ + customSubmissionHandlers?: CustomSubmissionFunction; /** * Definition of the form for the resource creation wizard. */ @@ -109,7 +104,11 @@ export interface ResourceCreateWizardPropsInterface extends ModalProps, Identifi /** * Function to handle form submission. */ - onFormSubmit: (values: Record, callback: () => void) => void; + onFormSubmit: (values: Record, callback: (errorMsg: string, errorDescription: string) => void) => void; + /** + * Loading status for the wizard. + */ + isLoading: boolean; } /** @@ -133,49 +132,57 @@ export const ResourceCreateWizard: FunctionComponent(1); const [ isSubmitting, setIsSubmitting ] = useState(false); + const [ formInitialValues, setFormInitialValues ] = useState<{ [key: string]: any }>(null); /** * Moderate the initially provided data for the form. */ - const formInitialValues: Record = useMemo(async () => { - if (!initialFormValues) { - return null; - } + useEffect(() => { + const prepareInitialValues = async (): Promise => { + let initialValues: Record; + + if (form?.submitDefinedFieldsOnly) { + const paths: string[] = form?.fields?.map((field: DynamicFieldInterface) => field?.name); - let initialValues: Record; + initialValues = pick(initialFormValues, paths); + } else { + initialValues = cloneDeep(initialFormValues); + } - if (form?.submitDefinedFieldsOnly) { - const paths: string[] = form?.fields?.map((field: DynamicFieldInterface) => field?.name); + await initialize(initialValues, form?.fields, templatePayload); - initialValues = pick(initialFormValues, paths); - } else { - initialValues = cloneDeep(initialFormValues); - } + /** + * Template ID must be submitted when creating the application. + */ + if (!initialValues?.templateId) { + initialValues.templateId = initialFormValues?.templateId; + } - await initialize(initialValues, form?.fields, templatePayload); + setFormInitialValues(initialValues); + }; - /** - * Template ID must be submitted when creating the application. - */ - if (!initialValues?.templateId) { - initialValues.templateId = initialFormValues?.templateId; + if (!initialFormValues || !form || !templatePayload) { + return; } - return initialValues; - }, [ initialFormValues ]); + prepareInitialValues(); + }, [ initialFormValues, form, templatePayload ]); /** * This function will navigate the user to the notification message if there are any errors. @@ -189,7 +196,7 @@ export const ResourceCreateWizard: FunctionComponent): void => { + const onSubmit = async (values: Record): Promise => { setIsSubmitting(true); const formValues: Record = cloneDeep(values); @@ -206,82 +213,20 @@ export const ResourceCreateWizard: FunctionComponent { - eventPublisher.compute(() => { - eventPublisher.publish("application-register-new-application", { - type: templateData?.id - }); - }); - - dispatch( - addAlert({ - description: t( - "applications:notifications." + - "addApplication.success.description" - ), - level: AlertLevels.SUCCESS, - message: t( - "applications:notifications." + - "addApplication.success.message" - ) - }) - ); - - const location: string = response.headers.location; - const createdAppID: string = location.substring(location.lastIndexOf("/") + 1); - - if (isApplicationSharingEnabled) { - setLastCreatedApplicationId(createdAppID); - setShowApplicationShareModal(true); - } else { - handleAppCreationComplete(createdAppID); - } - }) - .catch((error: AxiosError) => { - if (error?.response?.status === 403 - && error?.response?.data?.code === ApplicationManagementConstants - .ERROR_CREATE_LIMIT_REACHED.getErrorCode()) { - setOpenLimitReachedModal(true); - - return; - } - - if (error?.response?.data?.description) { - setAlert({ - description: error.response.data.description, - level: AlertLevels.ERROR, - message: t( - "applications:notifications." + - "addApplication.error.message" - ) - }); - scrollToNotification(); + await submission(formValues, form?.fields, templatePayload); - return; - } + onFormSubmit(formValues, (errorMsg: string, errorDescription: string) => { + setIsSubmitting(false); + if (errorMsg) { setAlert({ - description: t( - "applications:notifications." + - "addApplication.genericError.description" - ), + description: errorDescription, level: AlertLevels.ERROR, - message: t( - "applications:notifications." + - "addApplication.genericError.message" - ) + message: errorMsg }); scrollToNotification(); - }) - .finally(() => setIsSubmitting(false)); + } + }); }; let formSubmit: (e: MouseEvent) => void; @@ -304,7 +249,7 @@ export const ResourceCreateWizard: FunctionComponent { - !formInitialValues + !formInitialValues || isLoading ? : ( <> @@ -362,7 +307,7 @@ export const ResourceCreateWizard: FunctionComponent - @@ -396,7 +341,7 @@ export const ResourceCreateWizard: FunctionComponent - { t(buttonText) } + { buttonText }
    From f35e0b2a21f103c01971de2bfe6b5225a90af930 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Fri, 12 Jul 2024 12:56:25 +0530 Subject: [PATCH 059/114] refactor the application edit form --- .../components/application-edit-form.tsx | 300 ++++++++++++++++++ .../models/templates.ts | 6 +- .../application-certificate-adapter.tsx | 151 --------- .../components/resource-create-wizard.tsx | 10 +- .../components/template-dynamic-form.scss | 25 ++ .../components/template-dynamic-form.tsx | 262 +++++++++++++++ 6 files changed, 590 insertions(+), 164 deletions(-) create mode 100644 features/admin.application-templates.v1/components/application-edit-form.tsx delete mode 100644 features/admin.template-core.v1/components/custom-fields/application-certificate-adapter.tsx create mode 100644 features/admin.template-core.v1/components/template-dynamic-form.scss create mode 100644 features/admin.template-core.v1/components/template-dynamic-form.tsx diff --git a/features/admin.application-templates.v1/components/application-edit-form.tsx b/features/admin.application-templates.v1/components/application-edit-form.tsx new file mode 100644 index 00000000000..28d23ec3d93 --- /dev/null +++ b/features/admin.application-templates.v1/components/application-edit-form.tsx @@ -0,0 +1,300 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { updateApplicationDetails, updateAuthProtocolConfig } from "@wso2is/admin.applications.v1/api"; +import useGetApplicationInboundConfigs from "@wso2is/admin.applications.v1/api/use-get-application-inbound-configs"; +import { + ApplicationInterface, + MainApplicationInterface, + SupportedAuthProtocolTypes +} from "@wso2is/admin.applications.v1/models"; +import { TemplateDynamicForm } from "@wso2is/admin.template-core.v1/components/template-dynamic-form"; +import { DynamicFieldInterface } from "@wso2is/admin.template-core.v1/models/dynamic-fields"; +import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; +import { addAlert } from "@wso2is/core/store"; +import { AxiosError } from "axios"; +import cloneDeep from "lodash-es/cloneDeep"; +import isEqual from "lodash-es/isEqual"; +import pick from "lodash-es/pick"; +import unset from "lodash-es/unset"; +import React, { FunctionComponent, ReactElement, useEffect, useMemo } from "react"; +import { useTranslation } from "react-i18next"; +import { useDispatch } from "react-redux"; +import { Dispatch } from "redux"; +import useInitializeHandlers from "./forms/handlers/initialize/use-custom-initialize-handlers"; +import useSubmissionHandlers from "./forms/handlers/submission/use-custom-submission-handlers"; +import useValidationHandlers from "./forms/handlers/validation/use-custom-validation-handlers"; +import useApplicationTemplate from "../hooks/use-application-template"; +import { ApplicationEditTabMetadataInterface } from "../models/templates"; + +/** + * Prop types of the `ApplicationEditForm` component. + */ +export interface ApplicationEditFormPropsInterface extends IdentifiableComponentInterface { + /** + * The tab metadata to be used for the application edit form generation. + */ + tab: ApplicationEditTabMetadataInterface; + /** + * Current editing application data. + */ + application: ApplicationInterface; + /** + * Is the application info request loading. + */ + isLoading?: boolean; + /** + * Callback to update the application details. + */ + onUpdate: (id: string) => void; + /** + * Make the form read only. + */ + readOnly?: boolean; +} + +/** + * Dynamic application edit form component. + * + * @param Props - Props to be injected into the component. + */ +export const ApplicationEditForm: FunctionComponent = ( + props: ApplicationEditFormPropsInterface +): ReactElement => { + const { + tab, + application, + isLoading, + onUpdate, + readOnly, + ["data-componentid"]: componentId + } = props; + + const { customValidations } = useValidationHandlers(); + const { customInitializers } = useInitializeHandlers(); + const { customSubmissionHandlers } = useSubmissionHandlers(); + const { + template: templateData, + isTemplateRequestLoading: isTemplateDataFetchRequestLoading + } = useApplicationTemplate(); + + const { t } = useTranslation(); + const dispatch: Dispatch = useDispatch(); + + /** + * Determine the protocol type to retrieve the inbound protocol configurations. + */ + const protocolType: string = useMemo(() => { + if (application?.inboundProtocols?.[0]?.self) { + const urlParts: string[] = application.inboundProtocols[0].self.split("/") ?? []; + + if (urlParts.length > 0) { + return urlParts[urlParts.length - 1]; + } + } + + return ""; + }, [ application ]); + + const { + data: inboundProtocolConfigurations, + error: inboundProtocolConfigurationFetchError, + isLoading: isLoadingInboundConfigurations, + mutate: mutateProtocolConfigurations + } = useGetApplicationInboundConfigs(application?.id, protocolType, !!application?.id && !!protocolType); + + /** + * Handle errors that occur during the application inbound protocol data fetch request. + */ + useEffect(() => { + if (!inboundProtocolConfigurationFetchError) { + return; + } + + if (inboundProtocolConfigurationFetchError?.response?.data?.description) { + dispatch(addAlert({ + description: inboundProtocolConfigurationFetchError.response.data.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.getInboundProtocolConfig.error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.getInboundProtocolConfig" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications.getInboundProtocolConfig" + + ".genericError.message") + })); + }, [ inboundProtocolConfigurationFetchError ]); + + /** + * Prepare the initial value object for the application edit form. + */ + const initialValues: MainApplicationInterface = useMemo(() => { + if (!inboundProtocolConfigurations || !application) { + return null; + } + + const formInitialValues: MainApplicationInterface = cloneDeep(application); + let protocolKeyName: string = protocolType; + + if (SupportedAuthProtocolTypes.WS_FEDERATION === protocolKeyName) { + protocolKeyName = "passiveSts"; + } else if (SupportedAuthProtocolTypes.WS_TRUST === protocolKeyName) { + protocolKeyName = "wsTrust"; + } + + formInitialValues.inboundProtocolConfiguration = { + [ protocolKeyName ]: { + manualConfiguration: inboundProtocolConfigurations + } + }; + + return formInitialValues; + }, [ inboundProtocolConfigurations, application ]); + + /** + * Function to handle form submission. + * + * @param values - Submission values from the form fields. + * @param callback - Callback function to execute after form submission is complete. + */ + const handleFormSubmission = (values: Record, callback: () => void): void => { + const editPaths: string[] = tab?.form?.fields?.map((field: DynamicFieldInterface) => field?.name); + let protocolConfigurations: Record; + + if (values?.inboundProtocolConfiguration) { + if (!isEqual(values?.inboundProtocolConfiguration, inboundProtocolConfigurations)) { + protocolConfigurations = values?.inboundProtocolConfiguration; + } + unset(values, "inboundProtocolConfiguration"); + } + + const applicationConfigurations: Record = pick(values, editPaths); + + const updateProtocolConfigurations = () => { + let protocolKeyName: string = protocolType; + + if (SupportedAuthProtocolTypes.WS_FEDERATION === protocolKeyName) { + protocolKeyName = "passiveSts"; + } else if (SupportedAuthProtocolTypes.WS_TRUST === protocolKeyName) { + protocolKeyName = "wsTrust"; + } + + updateAuthProtocolConfig( + application?.id, + protocolConfigurations?.[protocolKeyName], + protocolType + ).then(() => { + mutateProtocolConfigurations(); + + dispatch(addAlert({ + description: t("applications:notifications.updateApplication.success" + + ".description"), + level: AlertLevels.SUCCESS, + message: t("applications:notifications.updateApplication.success.message") + })); + }).catch((error: AxiosError) => { + if (error?.response?.data?.description) { + dispatch(addAlert({ + description: error.response.data.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.updateInboundProtocolConfig" + + ".error.message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.updateInboundProtocolConfig" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications.updateInboundProtocolConfig" + + ".genericError.message") + })); + }); + }; + + if (applicationConfigurations && Object.keys(applicationConfigurations)?.length > 0) { + updateApplicationDetails(applicationConfigurations) + .then(() => { + onUpdate(application?.id); + + if (protocolConfigurations) { + updateProtocolConfigurations(); + } else { + dispatch(addAlert({ + description: t("applications:notifications.updateApplication.success" + + ".description"), + level: AlertLevels.SUCCESS, + message: t("applications:notifications.updateApplication.success.message") + })); + } + }) + .catch((error: AxiosError) => { + if (error?.response?.data?.description) { + dispatch(addAlert({ + description: error.response.data.description, + level: AlertLevels.ERROR, + message: t("applications:notifications.updateApplication.error" + + ".message") + })); + + return; + } + + dispatch(addAlert({ + description: t("applications:notifications.updateApplication" + + ".genericError.description"), + level: AlertLevels.ERROR, + message: t("applications:notifications.updateApplication.genericError" + + ".message") + })); + }).finally(() => callback()); + } else if (protocolConfigurations) { + updateProtocolConfigurations(); + } + }; + + return ( + + ); +}; + +/** + * Default props for the application edit form component. + */ +ApplicationEditForm.defaultProps = { + "data-componentid": "application-edit-form" +}; diff --git a/features/admin.application-templates.v1/models/templates.ts b/features/admin.application-templates.v1/models/templates.ts index cd02eb817f9..233288930cf 100644 --- a/features/admin.application-templates.v1/models/templates.ts +++ b/features/admin.application-templates.v1/models/templates.ts @@ -103,11 +103,7 @@ export interface ApplicationEditTabMetadataInterface { /** * Dynamic input fields which should be rendered in the current tab. */ - forms?: DynamicFormInterface[]; - /** - * Flag to determine if a single update button is sufficient when multiple forms are present. - */ - singleForm?: boolean; + form?: DynamicFormInterface; /** * Guide content for application editing section. */ diff --git a/features/admin.template-core.v1/components/custom-fields/application-certificate-adapter.tsx b/features/admin.template-core.v1/components/custom-fields/application-certificate-adapter.tsx deleted file mode 100644 index 489f5dd3e03..00000000000 --- a/features/admin.template-core.v1/components/custom-fields/application-certificate-adapter.tsx +++ /dev/null @@ -1,151 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import { ApplicationCertificateWrapper } from "@wso2is/admin.applications.v1/components/settings/certificate"; -import { - ApplicationInterface, - CertificateInterface, - CertificateTypeInterface, - SupportedAuthProtocolTypes -} from "@wso2is/admin.applications.v1/models"; -import { Code } from "@wso2is/react-components"; -import React, { Fragment, FunctionComponent, ReactElement } from "react"; -import { FieldRenderProps, useFormState } from "react-final-form"; -import { Trans, useTranslation } from "react-i18next"; - -/** - * Props for the ApplicationCertificateAdapter component. - */ -export interface ApplicationCertificateAdapterPropsInterface extends - FieldRenderProps { - /** - * The type of protocol to which the certificate belongs. - */ - protocol: SupportedAuthProtocolTypes; - /** - * Data of the current application. - */ - application: ApplicationInterface; - /** - * Callback to trigger when the application update occurs. - */ - onApplicationUpdate: (id: string) => void; - /** - * Determine whether to hide the JWKS certificate option. - */ - hideJWKS: boolean; - /** - * Indicates whether the field is required. - */ - required: boolean; - /** - * Indicates whether the field is a read-only field. - */ - readonly: boolean; -} - -/** - * Application certificate adapter for use with React Final Form. - * This adapter wraps the ApplicationCertificateWrapper component and integrates it with React Final Form. - * - * @param props - The component props. - * @returns The ApplicationCertificateWrapper component. - */ -const ApplicationCertificateAdapter: FunctionComponent = ( - props: ApplicationCertificateAdapterPropsInterface -): ReactElement => { - const { - input, - protocol, - application, - onApplicationUpdate, - hideJWKS, - required, - readOnly - } = props; - - const { t } = useTranslation(); - const { values, submitting } = useFormState(); - - const checkDeleteAllowed = () => { - if (protocol === SupportedAuthProtocolTypes.SAML) { - return !values?.requestValidation?.enableSignatureValidation && - !values?.singleSignOnProfile?.assertion?.encryption?.enabled; - } else if (protocol === SupportedAuthProtocolTypes.OIDC) { - return !(values.idToken?.encryption?.enabled); - } - - return true; - }; - - const getDeleteIsNotAllowedTooltip = () => { - if (protocol === SupportedAuthProtocolTypes.SAML) { - return t("applications:forms." + - "inboundSAML.sections.certificates.disabledPopup"); - } else if (protocol === SupportedAuthProtocolTypes.OIDC) { - return ( - - - This certificate is used to encrypt the id_token. - First, you need to disable id_token encryption to proceed. - - - ); - } - - return null; - }; - - const canDiscardCertificate = () => { - if (protocol === SupportedAuthProtocolTypes.SAML) { - return !values?.requestValidation?.enableSignatureValidation; - } - - return false; - }; - - return ( - <> - input?.onChange({ ...input?.value, value }) } - updateCertType={ (certType: CertificateTypeInterface) => - input?.onChange({ ...input?.value, type: certType }) } - canDiscardCertificate = { (): boolean => canDiscardCertificate() } - certificate={ input?.value } - readOnly={ readOnly } - hidden={ false } - isRequired={ required } - hideJWKS={ hideJWKS } - triggerSubmit={ submitting } - hideDivider={ true } - /> - - ); -}; - -export default ApplicationCertificateAdapter; diff --git a/features/admin.template-core.v1/components/resource-create-wizard.tsx b/features/admin.template-core.v1/components/resource-create-wizard.tsx index e555f84c331..15d3bc9efd6 100644 --- a/features/admin.template-core.v1/components/resource-create-wizard.tsx +++ b/features/admin.template-core.v1/components/resource-create-wizard.tsx @@ -268,14 +268,8 @@ export const ResourceCreateWizard: FunctionComponent, - Record - >, - { changeValue }: Tools< - Record, - Record - > + state: MutableState, Record>, + { changeValue }: Tools, Record> ) => { changeValue(state, fieldName, () => fieldVal); } diff --git a/features/admin.template-core.v1/components/template-dynamic-form.scss b/features/admin.template-core.v1/components/template-dynamic-form.scss new file mode 100644 index 00000000000..c1060003590 --- /dev/null +++ b/features/admin.template-core.v1/components/template-dynamic-form.scss @@ -0,0 +1,25 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +.template-dynamic-form { + .template-dynamic-form-dynamic-fields { + &:not(:first-child) { + padding-top: 0; + } + } +} diff --git a/features/admin.template-core.v1/components/template-dynamic-form.tsx b/features/admin.template-core.v1/components/template-dynamic-form.tsx new file mode 100644 index 00000000000..365044b5a75 --- /dev/null +++ b/features/admin.template-core.v1/components/template-dynamic-form.tsx @@ -0,0 +1,262 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { ApplicationInterface } from "@wso2is/admin.applications.v1/models"; +import { AppState } from "@wso2is/admin.core.v1"; +import useUIConfig from "@wso2is/admin.core.v1/hooks/use-ui-configs"; +import { hasRequiredScopes } from "@wso2is/core/helpers"; +import { IdentifiableComponentInterface } from "@wso2is/core/models"; +import { FinalForm, FormRenderProps, MutableState, Tools } from "@wso2is/form"; +import { + ContentLoader, + EmphasizedSegment, + PrimaryButton +} from "@wso2is/react-components"; +import cloneDeep from "lodash-es/cloneDeep"; +import get from "lodash-es/get"; +import has from "lodash-es/has"; +import pick from "lodash-es/pick"; +import set from "lodash-es/set"; +import React, { FunctionComponent, ReactElement, useEffect, useState } from "react"; +import { useSelector } from "react-redux"; +import { Grid } from "semantic-ui-react"; +import { FormDynamicField } from "./form-dynamic-field"; +import useInitializeHandlers, { CustomInitializeFunction } from "./forms/handlers/initialize/use-initialize-handlers"; +import useSubmissionHandlers, { CustomSubmissionFunction } from "./forms/handlers/submission/use-submission-handlers"; +import useValidationHandlers, { CustomValidationsFunction } from "./forms/handlers/validation/use-validation-handlers"; +import { DynamicFieldInterface, DynamicFormInterface } from "../models/dynamic-fields"; +import "dynamic-form.scss"; + +/** + * Prop types of the `TemplateDynamicForm` component. + */ +export interface TemplateDynamicFormPropsInterface extends IdentifiableComponentInterface { + /** + * Custom validation functions for form validations. + */ + customValidations?: CustomValidationsFunction; + /** + * Custom initialize functions. + */ + customInitializers?: CustomInitializeFunction; + /** + * Custom submission handler functions. + */ + customSubmissionHandlers?: CustomSubmissionFunction; + /** + * Definition of the dynamic form. + */ + form: DynamicFormInterface; + /** + * Initial values for the form fields. + */ + initialFormValues: Record; + /** + * Template payload values. + */ + templatePayload: Record; + /** + * i18n key of the form main button text. + */ + buttonText: string; + /** + * Function to handle form submission. + */ + onFormSubmit: (values: Record, callback: () => void) => void; + /** + * Loading status for the wizard. + */ + isLoading: boolean; + /** + * Prop to indicate whether the form is read-only. + */ + readOnly: boolean; +} + +/** + * Template Dynamic form component. + * + * @param Props - Props to be injected into the component. + */ +export const TemplateDynamicForm: FunctionComponent = ( + props: TemplateDynamicFormPropsInterface +): ReactElement => { + const { + customInitializers, + customSubmissionHandlers, + customValidations, + form, + initialFormValues, + templatePayload, + buttonText, + onFormSubmit, + isLoading, + readOnly, + ["data-componentid"]: componentId + } = props; + + const { validate } = useValidationHandlers(customValidations); + const { initialize } = useInitializeHandlers(customInitializers); + const { submission } = useSubmissionHandlers(customSubmissionHandlers); + + const { UIConfig } = useUIConfig(); + const allowedScopes: string = useSelector((state: AppState) => state?.auth?.allowedScopes); + const [ isSubmitting, setIsSubmitting ] = useState(false); + const [ formInitialValues, setFormInitialValues ] = useState<{ [key: string]: any }>(null); + + /** + * Moderate the initially provided data for the form. + */ + useEffect(() => { + const prepareInitialValues = async (): Promise => { + let initialValues: Record; + + if (form?.submitDefinedFieldsOnly) { + const paths: string[] = form?.fields?.map((field: DynamicFieldInterface) => field?.name); + + initialValues = pick(initialFormValues, paths); + } else { + initialValues = cloneDeep(initialFormValues); + } + + await initialize(initialValues, form?.fields, templatePayload); + + setFormInitialValues(initialValues); + }; + + if (!initialFormValues || !form || !templatePayload) { + return; + } + + prepareInitialValues(); + }, [ initialFormValues, form, templatePayload ]); + + /** + * Callback function triggered when clicking the form submit button. + * + * @param values - Submission values from the form fields. + */ + const onSubmit = async (values: ApplicationInterface): Promise => { + setIsSubmitting(true); + const formValues: ApplicationInterface = cloneDeep(values); + + /** + * Make sure that cleared text fields are set to an empty string. + */ + form?.fields?.forEach((field: DynamicFieldInterface) => { + if (!has(formValues, field?.name)) { + const initialValue: any = get(formInitialValues, field?.name); + + if (initialValue && typeof initialValue === "string") { + set(formValues, field?.name, ""); + } + } + }); + + await submission(formValues, form?.fields, templatePayload); + + onFormSubmit(formValues, () => setIsSubmitting(false)); + }; + + return ( + + { + !formInitialValues || isLoading + ? + : ( + , Record>, + { changeValue }: Tools, Record> + ) => { + changeValue(state, fieldName, () => fieldVal); + } + } } + validate={ (formValues: Record) => validate(formValues, form?.fields) } + render={ ({ form: formState, handleSubmit }: FormRenderProps) => { + return ( +
    + + { form?.fields?.map( + (field: DynamicFieldInterface) => { + return ( + + + + + + ); + }) + } + + + + { buttonText } + + + + +
    + ); + } } + /> + ) + } +
    + ); +}; + +/** + * Default props for the template dynamic form component. + */ +TemplateDynamicForm.defaultProps = { + "data-componentid": "template-dynamic-form" +}; From 6f2a426e4f8094b0174264d9cf4348b493db36e8 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Fri, 12 Jul 2024 17:24:56 +0530 Subject: [PATCH 060/114] complete refactoring of the dynamic application edit form --- .../components/application-edit-form.tsx | 69 +++++++++++++------ .../components/edit-application.tsx | 4 +- .../initialize/extract-templated-fields.ts | 41 ++++++++++- .../initialize/use-initialize-handlers.tsx | 9 +-- .../handlers/submission/templated-property.ts | 50 ++++++++++++++ .../submission/use-submission-handlers.tsx | 10 +++ .../components/resource-create-wizard.scss | 6 -- .../components/resource-create-wizard.tsx | 2 - .../components/template-dynamic-form.scss | 25 ------- .../components/template-dynamic-form.tsx | 8 +-- .../models/dynamic-fields.ts | 3 +- 11 files changed, 159 insertions(+), 68 deletions(-) create mode 100644 features/admin.template-core.v1/components/forms/handlers/submission/templated-property.ts delete mode 100644 features/admin.template-core.v1/components/template-dynamic-form.scss diff --git a/features/admin.application-templates.v1/components/application-edit-form.tsx b/features/admin.application-templates.v1/components/application-edit-form.tsx index 28d23ec3d93..9b29c926fa4 100644 --- a/features/admin.application-templates.v1/components/application-edit-form.tsx +++ b/features/admin.application-templates.v1/components/application-edit-form.tsx @@ -21,6 +21,7 @@ import useGetApplicationInboundConfigs from "@wso2is/admin.applications.v1/api/u import { ApplicationInterface, MainApplicationInterface, + SAML2ServiceProviderInterface, SupportedAuthProtocolTypes } from "@wso2is/admin.applications.v1/models"; import { TemplateDynamicForm } from "@wso2is/admin.template-core.v1/components/template-dynamic-form"; @@ -162,11 +163,17 @@ export const ApplicationEditForm: FunctionComponent, callback: () => void): void => { + let protocolKeyName: string = protocolType; + + if (SupportedAuthProtocolTypes.WS_FEDERATION === protocolKeyName) { + protocolKeyName = "passiveSts"; + } else if (SupportedAuthProtocolTypes.WS_TRUST === protocolKeyName) { + protocolKeyName = "wsTrust"; + } + const editPaths: string[] = tab?.form?.fields?.map((field: DynamicFieldInterface) => field?.name); let protocolConfigurations: Record; - - if (values?.inboundProtocolConfiguration) { - if (!isEqual(values?.inboundProtocolConfiguration, inboundProtocolConfigurations)) { - protocolConfigurations = values?.inboundProtocolConfiguration; + let applicationConfigurations: Record; + + if (values?.inboundProtocolConfiguration?.[protocolKeyName]) { + if (SupportedAuthProtocolTypes.SAML === protocolKeyName) { + if (values?.inboundProtocolConfiguration?.[protocolKeyName]?.manualConfiguration) { + if (!isEqual(values?.inboundProtocolConfiguration?.[protocolKeyName]?.manualConfiguration, + inboundProtocolConfigurations)) { + protocolConfigurations = values?.inboundProtocolConfiguration?.[protocolKeyName]; + } + } else { + protocolConfigurations = values?.inboundProtocolConfiguration?.[protocolKeyName]; + } + } else { + if (!isEqual(values?.inboundProtocolConfiguration?.[protocolKeyName], inboundProtocolConfigurations)) { + protocolConfigurations = values?.inboundProtocolConfiguration?.[protocolKeyName]; + } } unset(values, "inboundProtocolConfiguration"); } - const applicationConfigurations: Record = pick(values, editPaths); + values.id = application?.id; + if (!isEqual(values, application)) { + editPaths.push("id"); + applicationConfigurations = pick(values, editPaths); + } const updateProtocolConfigurations = () => { - let protocolKeyName: string = protocolType; - - if (SupportedAuthProtocolTypes.WS_FEDERATION === protocolKeyName) { - protocolKeyName = "passiveSts"; - } else if (SupportedAuthProtocolTypes.WS_TRUST === protocolKeyName) { - protocolKeyName = "wsTrust"; - } - updateAuthProtocolConfig( application?.id, - protocolConfigurations?.[protocolKeyName], + protocolConfigurations, protocolType ).then(() => { mutateProtocolConfigurations(); @@ -231,7 +254,7 @@ export const ApplicationEditForm: FunctionComponent callback()); }; if (applicationConfigurations && Object.keys(applicationConfigurations)?.length > 0) { @@ -248,6 +271,8 @@ export const ApplicationEditForm: FunctionComponent { @@ -269,7 +294,9 @@ export const ApplicationEditForm: FunctionComponent callback()); + + callback(); + }); } else if (protocolConfigurations) { updateProtocolConfigurations(); } diff --git a/features/admin.applications.v1/components/edit-application.tsx b/features/admin.applications.v1/components/edit-application.tsx index 97872c9fc21..e6d3d8ae2b2 100644 --- a/features/admin.applications.v1/components/edit-application.tsx +++ b/features/admin.applications.v1/components/edit-application.tsx @@ -17,6 +17,7 @@ */ import { Show } from "@wso2is/access-control"; +import { ApplicationEditForm } from "@wso2is/admin.application-templates.v1/components/application-edit-form"; import useApplicationTemplateMetadata from "@wso2is/admin.application-templates.v1/hooks/use-application-template-metadata"; import { @@ -36,7 +37,6 @@ import { MyAccountOverview } from "@wso2is/admin.extensions.v1/configs/component import AILoginFlowProvider from "@wso2is/admin.login-flow.ai.v1/providers/ai-login-flow-provider"; import { OrganizationType } from "@wso2is/admin.organizations.v1/constants"; import { useGetCurrentOrganizationType } from "@wso2is/admin.organizations.v1/hooks/use-get-organization-type"; -import { ApplicationEditForm } from "@wso2is/admin.template-core.v1/components/application-edit-form"; import { MarkdownGuide } from "@wso2is/admin.template-core.v1/components/markdown-guide"; import { hasRequiredScopes, isFeatureEnabled } from "@wso2is/core/helpers"; import { AlertLevels, IdentifiableComponentInterface, SBACInterface } from "@wso2is/core/models"; @@ -998,7 +998,7 @@ export const EditApplication: FunctionComponent = break; case ApplicationEditTabContentTypes.FORM: - if (tab?.forms && Array.isArray(tab?.forms) && tab?.forms.length > 0) { + if (tab?.form) { filteredTabs.push({ componentId: tab?.id, "data-tabid": tab?.id, diff --git a/features/admin.template-core.v1/components/forms/handlers/initialize/extract-templated-fields.ts b/features/admin.template-core.v1/components/forms/handlers/initialize/extract-templated-fields.ts index 1f72639edc3..e8d0f797917 100644 --- a/features/admin.template-core.v1/components/forms/handlers/initialize/extract-templated-fields.ts +++ b/features/admin.template-core.v1/components/forms/handlers/initialize/extract-templated-fields.ts @@ -16,15 +16,50 @@ * under the License. */ +import get from "lodash-es/get"; +import set from "lodash-es/set"; + +/** + * Convert templated property values into regex patterns. + * + * @param template - Templated property value. + * @returns The regex pattern identifies the templated strings. + */ +const templateToRegex = (template: string): RegExp => { + // Escape special regex characters in the template + const escapedTemplate: string = template.replace(/[-\\^$*+?.,()|[\]{}]/g, "\\$&"); + + // Replace ${variable} with a named capturing group pattern + const regexString: string = escapedTemplate.replace(/\\\$\\\{([^}]+)\\\}/g, "(?<$1>.+)"); + + // Create and return the regular expression object + return new RegExp("^" + regexString + "$"); +}; + /** * Extract template strings from the current value. * - * @param currentValue - Current field value. * @param templateValue - Value defined in the template. * @param formValues - Object containing initial values for the form. + * @param fieldName - Path of the field value within the object. + * @param propertyPath - Path of the templated property. */ -const extractTemplatedFields = (currentValue: string, templateValue: string, formValues:Record): void => { - // TODO: Implement the actual logic. +const extractTemplatedFields = ( + templateValue: string, + formValues:Record, + fieldName: string, + propertyPath: string +): void => { + const currentValue: string = get(formValues, propertyPath); + + if (currentValue && typeof currentValue === "string" + && templateValue && typeof templateValue === "string") { + const regex: RegExp = templateToRegex(templateValue); + + const match: RegExpMatchArray = currentValue.match(regex); + + set(formValues, fieldName, match?.groups?.[fieldName] ?? ""); + } }; export default extractTemplatedFields; diff --git a/features/admin.template-core.v1/components/forms/handlers/initialize/use-initialize-handlers.tsx b/features/admin.template-core.v1/components/forms/handlers/initialize/use-initialize-handlers.tsx index d49459c6aea..7aed1e33540 100644 --- a/features/admin.template-core.v1/components/forms/handlers/initialize/use-initialize-handlers.tsx +++ b/features/admin.template-core.v1/components/forms/handlers/initialize/use-initialize-handlers.tsx @@ -65,14 +65,15 @@ const useInitializeHandlers = ( templatePayload: Record ): Promise => { for (const initializer of initializers) { - const { name } = initializer; + const { name, props } = initializer; switch (name) { case CommonInitializeHandlers.EXTRACT_TEMPLATED_FIELDS: extractTemplatedFields( - get(values, field?.name), - get(templatePayload, field?.name), - values + get(templatePayload, props?.propertyPath), + values, + field?.name, + props?.propertyPath ); break; diff --git a/features/admin.template-core.v1/components/forms/handlers/submission/templated-property.ts b/features/admin.template-core.v1/components/forms/handlers/submission/templated-property.ts new file mode 100644 index 00000000000..6a7f82979fc --- /dev/null +++ b/features/admin.template-core.v1/components/forms/handlers/submission/templated-property.ts @@ -0,0 +1,50 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import get from "lodash-es/get"; +import set from "lodash-es/set"; +import unset from "lodash-es/unset"; + +/** + * Replace placeholders of templated properties. + * + * @param templateValue - Value defined in the template. + * @param formValues - Object containing initial values for the form. + * @param fieldName - Path of the field value within the object. + * @param propertyPath - Path of the templated property. + */ +const templatedProperty = ( + templateValue: string, + formValues:Record, + fieldName: string, + propertyPath: string +): void => { + const currentValue: any = get(formValues, propertyPath); + const placeholderValue: any = get(formValues, fieldName); + + if (placeholderValue && typeof placeholderValue === "string") { + if (currentValue && typeof currentValue === "string" && currentValue.includes(`\${${fieldName}}`)) { + set(formValues, propertyPath, currentValue?.replace(`\${${fieldName}}`, placeholderValue)); + } else if (templateValue && typeof templateValue === "string") { + set(formValues, propertyPath, templateValue?.replace(`\${${fieldName}}`, placeholderValue)); + } + unset(formValues, fieldName); + } +}; + +export default templatedProperty; diff --git a/features/admin.template-core.v1/components/forms/handlers/submission/use-submission-handlers.tsx b/features/admin.template-core.v1/components/forms/handlers/submission/use-submission-handlers.tsx index c7368fcee10..315fb8937d0 100644 --- a/features/admin.template-core.v1/components/forms/handlers/submission/use-submission-handlers.tsx +++ b/features/admin.template-core.v1/components/forms/handlers/submission/use-submission-handlers.tsx @@ -18,6 +18,7 @@ import get from "lodash-es/get"; import disableProperty from "./disable-property"; +import templatedProperty from "./templated-property"; import uniqueIDGenerator from "./unique-id-generator"; import useDependentProperty from "./use-dependent-property"; import { @@ -93,6 +94,15 @@ const useSubmissionHandlers = ( case CommonSubmissionHandlers.DISABLE_PROPERTY: disableProperty(values, field?.name); + break; + case CommonSubmissionHandlers.TEMPLATED_PROPERTY: + templatedProperty( + get(templatePayload, props?.propertyPath), + values, + field?.name, + props?.propertyPath + ); + break; default: if (customSubmissionHandlers) { diff --git a/features/admin.template-core.v1/components/resource-create-wizard.scss b/features/admin.template-core.v1/components/resource-create-wizard.scss index 523b02704fc..4811d516d6f 100644 --- a/features/admin.template-core.v1/components/resource-create-wizard.scss +++ b/features/admin.template-core.v1/components/resource-create-wizard.scss @@ -17,12 +17,6 @@ */ .resource-create-wizard { - .resource-create-wizard-dynamic-fields { - &:not(:first-child) { - padding-top: 0; - } - } - .installation-guide-content { display: flex; flex-direction: column; diff --git a/features/admin.template-core.v1/components/resource-create-wizard.tsx b/features/admin.template-core.v1/components/resource-create-wizard.tsx index 15d3bc9efd6..1d798b03d63 100644 --- a/features/admin.template-core.v1/components/resource-create-wizard.tsx +++ b/features/admin.template-core.v1/components/resource-create-wizard.tsx @@ -293,8 +293,6 @@ export const ResourceCreateWizard: FunctionComponent @@ -202,12 +200,14 @@ export const TemplateDynamicForm: FunctionComponent { form?.fields?.map( (field: DynamicFieldInterface) => { + if (field?.hidden) { + return null; + } + return ( Date: Sat, 13 Jul 2024 18:36:55 +0530 Subject: [PATCH 061/114] refactor the markdown guide --- .../components/application-markdown-guide.tsx | 202 +++++++++ .../public-api.ts | 1 + .../components/edit-application.tsx | 25 +- features/admin.applications.v1/public-api.ts | 1 - .../components/application-edit-form.scss | 25 -- .../components/application-edit-form.tsx | 151 ------- ...application-inbound-protocol-edit-form.tsx | 401 ------------------ .../components/application-main-edit-form.tsx | 309 -------------- .../components/markdown-guide.tsx | 193 +-------- 9 files changed, 227 insertions(+), 1081 deletions(-) create mode 100644 features/admin.application-templates.v1/components/application-markdown-guide.tsx delete mode 100644 features/admin.template-core.v1/components/application-edit-form.scss delete mode 100644 features/admin.template-core.v1/components/application-edit-form.tsx delete mode 100644 features/admin.template-core.v1/components/application-inbound-protocol-edit-form.tsx delete mode 100644 features/admin.template-core.v1/components/application-main-edit-form.tsx diff --git a/features/admin.application-templates.v1/components/application-markdown-guide.tsx b/features/admin.application-templates.v1/components/application-markdown-guide.tsx new file mode 100644 index 00000000000..979470aaccc --- /dev/null +++ b/features/admin.application-templates.v1/components/application-markdown-guide.tsx @@ -0,0 +1,202 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { + ApplicationInterface, + OIDCApplicationConfigurationInterface, + OIDCDataInterface, + PassiveStsConfigurationInterface, + SAML2ConfigurationInterface, + SAMLApplicationConfigurationInterface, + SupportedAuthProtocolTypes, + WSTrustConfigurationInterface +} from "@wso2is/admin.applications.v1/models"; +import { AppState } from "@wso2is/admin.core.v1"; +import { MarkdownGuide } from "@wso2is/admin.template-core.v1/components/markdown-guide"; +import { IdentifiableComponentInterface } from "@wso2is/core/models"; +import set from "lodash-es/set"; +import React, { FunctionComponent, ReactElement, useMemo } from "react"; +import { useSelector } from "react-redux"; + +/** + * Prop types of the `ApplicationMarkdownGuide` component. + */ +export interface ApplicationMarkdownGuidePropsInterface extends IdentifiableComponentInterface { + /** + * Current editing application data. + */ + application: ApplicationInterface; + /** + * Current editing application inbound protocol data. + */ + inboundProtocolConfigurations: OIDCDataInterface | SAML2ConfigurationInterface | WSTrustConfigurationInterface + | PassiveStsConfigurationInterface; + /** + * Content to be displayed in Markdown format. + */ + content: string; + /** + * Is the application info request loading. + */ + isLoading?: boolean; + /** + * Current application protocol name. + */ + protocolName: string; +} + +/** + * An interface that includes all the moderated data types using initial data. + */ +interface ModeratedData { + pemCertificate?: string; +} + +/** + * An interface that includes all the data types which can be used in the markdown guide. + */ +interface MarkdownGuideDataInterface { + general?: ApplicationInterface; + protocol?: { + oidc?: OIDCDataInterface; + saml?: SAML2ConfigurationInterface; + wsTrust?: WSTrustConfigurationInterface; + passiveSts?: PassiveStsConfigurationInterface; + }; + metadata?: { + saml?: SAMLApplicationConfigurationInterface; + odic?: OIDCApplicationConfigurationInterface; + }; + tenantDomain?: string; + clientOrigin?: string; + serverOrigin?: string; + moderatedData?: ModeratedData; +} + +/** + * Application markdown guide generation component. + * + * @param Props - Props to be injected into the component. + */ +export const ApplicationMarkdownGuide: FunctionComponent = ( + props: ApplicationMarkdownGuidePropsInterface +): ReactElement => { + const { + application, + inboundProtocolConfigurations, + content, + isLoading, + protocolName, + ["data-componentid"]: componentId + } = props; + + const samlConfigurations: SAMLApplicationConfigurationInterface = useSelector( + (state: AppState) => state?.application?.samlConfigurations); + const oidcConfigurations: SAMLApplicationConfigurationInterface = useSelector( + (state: AppState) => state?.application?.oidcConfigurations); + const tenantDomain: string = useSelector((state: AppState) => state?.auth?.tenantDomain); + const clientOrigin: string = useSelector((state: AppState) => state?.config?.deployment?.clientOrigin); + const serverOrigin: string = useSelector((state: AppState) => state?.config?.deployment?.idpConfigs?.serverOrigin); + + /** + * Convert certificate into the pem format. + * + * @param cert - Certificate in string format. + * @returns Pem format certificate content. + */ + function getPemFormatCertificate(cert: string): string { + const header: string = "-----BEGIN CERTIFICATE-----"; + const footer: string = "-----END CERTIFICATE-----"; + const lineLength: number = 64; + + // Insert line breaks every `lineLength` characters. + const formattedCert: string = cert.match(new RegExp(".{1," + lineLength + "}", "g"))?.join("\n") || ""; + + return `${header}\n${formattedCert}\n${footer}`; + } + + /** + * Prepare moderated data using the initial API response data. + */ + const getModeratedData = (): ModeratedData => { + const data: ModeratedData = {}; + + if (samlConfigurations?.certificate) { + data.pemCertificate = btoa(getPemFormatCertificate(samlConfigurations?.certificate)); + } + + return data; + }; + + /** + * Create a unified data object for the current application + * by combining multiple API responses. + */ + const data: MarkdownGuideDataInterface = useMemo(() => { + if (!application || !inboundProtocolConfigurations || !samlConfigurations || !oidcConfigurations + || !tenantDomain || !clientOrigin || !serverOrigin + ) { + return null; + } + + let protocolKeyName: string = protocolName; + + if (SupportedAuthProtocolTypes.WS_FEDERATION === protocolKeyName) { + protocolKeyName = "passiveSts"; + } else if (SupportedAuthProtocolTypes.WS_TRUST === protocolKeyName) { + protocolKeyName = "wsTrust"; + } + + const markdownDataObject: MarkdownGuideDataInterface = {}; + + markdownDataObject.general = application; + set(markdownDataObject, `protocol.${protocolKeyName}`, inboundProtocolConfigurations); + set(markdownDataObject, "metadata.saml", samlConfigurations); + set(markdownDataObject, "metadata.oidc", samlConfigurations); + markdownDataObject.tenantDomain = tenantDomain; + markdownDataObject.clientOrigin = clientOrigin; + markdownDataObject.serverOrigin = serverOrigin; + markdownDataObject.moderatedData = getModeratedData(); + + return markdownDataObject; + }, [ + application, + inboundProtocolConfigurations, + samlConfigurations, + oidcConfigurations, + tenantDomain, + clientOrigin, + serverOrigin + ]); + + return ( + + ); +}; + +/** + * Default props for the `ApplicationMarkdownGuide` guide. + */ +ApplicationMarkdownGuide.defaultProps = { + "data-componentid": "application-markdown-guide" +}; diff --git a/features/admin.application-templates.v1/public-api.ts b/features/admin.application-templates.v1/public-api.ts index 19feaa78184..82d118f85e6 100644 --- a/features/admin.application-templates.v1/public-api.ts +++ b/features/admin.application-templates.v1/public-api.ts @@ -18,3 +18,4 @@ export { default as ApplicationTemplateProvider } from "./provider/application-template-provider"; export { default as ApplicationTemplateMetadataProvider } from "./provider/application-template-metadata-provider"; +export { default as ApplicationTemplatePage } from "./pages/application-template"; diff --git a/features/admin.applications.v1/components/edit-application.tsx b/features/admin.applications.v1/components/edit-application.tsx index e6d3d8ae2b2..cf49131fcce 100644 --- a/features/admin.applications.v1/components/edit-application.tsx +++ b/features/admin.applications.v1/components/edit-application.tsx @@ -18,6 +18,7 @@ import { Show } from "@wso2is/access-control"; import { ApplicationEditForm } from "@wso2is/admin.application-templates.v1/components/application-edit-form"; +import { ApplicationMarkdownGuide } from "@wso2is/admin.application-templates.v1/components/application-markdown-guide"; import useApplicationTemplateMetadata from "@wso2is/admin.application-templates.v1/hooks/use-application-template-metadata"; import { @@ -37,7 +38,6 @@ import { MyAccountOverview } from "@wso2is/admin.extensions.v1/configs/component import AILoginFlowProvider from "@wso2is/admin.login-flow.ai.v1/providers/ai-login-flow-provider"; import { OrganizationType } from "@wso2is/admin.organizations.v1/constants"; import { useGetCurrentOrganizationType } from "@wso2is/admin.organizations.v1/hooks/use-get-organization-type"; -import { MarkdownGuide } from "@wso2is/admin.template-core.v1/components/markdown-guide"; import { hasRequiredScopes, isFeatureEnabled } from "@wso2is/core/helpers"; import { AlertLevels, IdentifiableComponentInterface, SBACInterface } from "@wso2is/core/models"; import { addAlert } from "@wso2is/core/store"; @@ -675,14 +675,21 @@ export const EditApplication: FunctionComponent = * @param guideContent - Content to display in Markdown format. * @returns The rendered tab pane. */ - const MarkdownGuideTabPane = (guideContent: string): ReactElement => ( - - - - ); + const MarkdownGuideTabPane = (guideContent: string): ReactElement => { + const firstProtocolName: string = mapProtocolTypeToName(application?.inboundProtocols?.[0]?.type); + + return ( + + + + ); + }; /** * Resolves the tab panes based on the application config. diff --git a/features/admin.applications.v1/public-api.ts b/features/admin.applications.v1/public-api.ts index 7eea914409b..cac0483f861 100644 --- a/features/admin.applications.v1/public-api.ts +++ b/features/admin.applications.v1/public-api.ts @@ -18,4 +18,3 @@ export { default as ApplicationEditPage } from "./pages/application-edit"; export { default as ApplicationsPage } from "./pages/applications"; -export { default as ApplicationTemplatePage } from "./pages/application-template"; diff --git a/features/admin.template-core.v1/components/application-edit-form.scss b/features/admin.template-core.v1/components/application-edit-form.scss deleted file mode 100644 index 4841b9a37f6..00000000000 --- a/features/admin.template-core.v1/components/application-edit-form.scss +++ /dev/null @@ -1,25 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -.application-dynamic-edit-form { - .application-edit-form-dynamic-fields { - &:not(:first-child) { - padding-top: 0; - } - } -} diff --git a/features/admin.template-core.v1/components/application-edit-form.tsx b/features/admin.template-core.v1/components/application-edit-form.tsx deleted file mode 100644 index e13cf9dbe7a..00000000000 --- a/features/admin.template-core.v1/components/application-edit-form.tsx +++ /dev/null @@ -1,151 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import { ApplicationEditTabMetadataInterface } from "@wso2is/admin.application-templates.v1/models/templates"; -import { ApplicationInterface } from "@wso2is/admin.applications.v1/models"; -import { IdentifiableComponentInterface } from "@wso2is/core/models"; -import { EmphasizedSegment, PrimaryButton } from "@wso2is/react-components"; -import React, { FunctionComponent, MouseEvent, ReactElement } from "react"; -import { useTranslation } from "react-i18next"; -import { Grid } from "semantic-ui-react"; -import { DynamicFormInterface } from "../models/dynamic-fields"; -import "./application-edit-form.scss"; - -/** - * Prop types of the `ApplicationEditForm` component. - */ -export interface ApplicationEditFormPropsInterface extends IdentifiableComponentInterface { - /** - * The tab metadata to be used for the application edit form generation. - */ - tab: ApplicationEditTabMetadataInterface - /** - * Current editing application data. - */ - application: ApplicationInterface; - /** - * Is the application info request loading. - */ - isLoading?: boolean; - /** - * Callback to update the application details. - */ - onUpdate: (id: string) => void; - /** - * Make the form read only. - */ - readOnly?: boolean; -} - -/** - * Dynamic application edit form component. - * - * @param Props - Props to be injected into the component. - */ -export const ApplicationEditForm: FunctionComponent = ( - props: ApplicationEditFormPropsInterface -): ReactElement => { - const { - tab, - application, - isLoading, - onUpdate, - readOnly, - ["data-componentid"]: componentId - } = props; - - const formSubmissions: any = {}; - - const { t } = useTranslation(); - - const renderForms = () => { - return tab?.forms?.map((form: DynamicFormInterface) => { - // switch(form?.api) { - // case SupportedAPIList.APPLICATION_PATCH: - // return ( - // ) => void) => - // formSubmissions[form?.api] = submissionFunction - // } - // /> - // ); - // case SupportedAPIList.APPLICATION_SAML_INBOUND_PROTOCOL_PUT: - // return ( - // ) => void) => - // formSubmissions[form?.api] = submissionFunction - // } - // /> - // ); - // } - return null; - }); - }; - - return ( - - { renderForms() } - { - tab?.singleForm && ( - - - - ) => Object.values( - formSubmissions).forEach( - (func: (e: MouseEvent) => void) => func(e)) } - > - { t("common:update") } - - - - - ) - } - - ); -}; - -/** - * Default props for the application edit form component. - */ -ApplicationEditForm.defaultProps = { - "data-componentid": "application-edit-form" -}; diff --git a/features/admin.template-core.v1/components/application-inbound-protocol-edit-form.tsx b/features/admin.template-core.v1/components/application-inbound-protocol-edit-form.tsx deleted file mode 100644 index c3d418db4c7..00000000000 --- a/features/admin.template-core.v1/components/application-inbound-protocol-edit-form.tsx +++ /dev/null @@ -1,401 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import useApplicationTemplate from "@wso2is/admin.application-templates.v1/hooks/use-application-template"; -import { updateAuthProtocolConfig } from "@wso2is/admin.applications.v1/api"; -import useGetApplicationInboundConfigs from "@wso2is/admin.applications.v1/api/use-get-application-inbound-configs"; -import { - ApplicationInterface, - SAML2ConfigurationInterface, - SAML2ServiceProviderInterface, - SupportedAuthProtocolTypes -} from "@wso2is/admin.applications.v1/models"; -import { AppState } from "@wso2is/admin.core.v1"; -import useUIConfig from "@wso2is/admin.core.v1/hooks/use-ui-configs"; -import { hasRequiredScopes } from "@wso2is/core/helpers"; -import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; -import { addAlert } from "@wso2is/core/store"; -import { FinalForm, FormApi, FormRenderProps, MutableState, Tools } from "@wso2is/form"; -import { - ContentLoader, - PrimaryButton -} from "@wso2is/react-components"; -import { AxiosError } from "axios"; -import cloneDeep from "lodash-es/cloneDeep"; -import get from "lodash-es/get"; -import has from "lodash-es/has"; -import set from "lodash-es/set"; -import unset from "lodash-es/unset"; -import React, { FunctionComponent, MouseEvent, ReactElement, useEffect, useMemo, useState } from "react"; -import { useTranslation } from "react-i18next"; -import { useDispatch, useSelector } from "react-redux"; -import { Dispatch } from "redux"; -import { Grid } from "semantic-ui-react"; -import { ApplicationFormDynamicField } from "./application-form-dynamic-field"; -import { DynamicFieldInterface, DynamicFormInterface } from "../models/dynamic-fields"; - -/** - * Prop types of the `ApplicationEditForm` component. - */ -export interface ApplicationEditFormPropsInterface extends IdentifiableComponentInterface { - /** - * The tab metadata to be used for the application edit form generation. - */ - formMetadata: DynamicFormInterface - /** - * Current editing application data. - */ - application: ApplicationInterface; - /** - * Is the application info request loading. - */ - isLoading?: boolean; - /** - * Callback to update the application details. - */ - onUpdate: (id: string) => void; - /** - * Make the form read only. - */ - readOnly?: boolean; - /** - * Exposing the function to trigger form submission. - */ - formSubmission?: (submissionFunction: (e: MouseEvent) => void) => void; - /** - * Flag to check whether the internal submit button should be hidden. - */ - hideSubmitBtn?: boolean; -} - -/** - * Dynamic application edit form component. - * - * @param Props - Props to be injected into the component. - */ -export const ApplicationEditForm: FunctionComponent = ( - props: ApplicationEditFormPropsInterface -): ReactElement => { - const { - formMetadata, - application, - isLoading, - onUpdate, - readOnly, - formSubmission, - hideSubmitBtn, - ["data-componentid"]: componentId - } = props; - - const { - template: templateData, - isTemplateRequestLoading: isTemplateDataFetchRequestLoading - } = useApplicationTemplate(); - const { - data: SAML2Configurations, - error: SAML2ConfigurationFetchError, - isLoading: isLoadingSAML2Configuration - } = useGetApplicationInboundConfigs(application?.id, SupportedAuthProtocolTypes.SAML); - - const { t } = useTranslation(); - const dispatch: Dispatch = useDispatch(); - const { UIConfig } = useUIConfig(); - const allowedScopes: string = useSelector((state: AppState) => state?.auth?.allowedScopes); - const [ isSubmitting, setIsSubmitting ] = useState(false); - - /** - * Prepare the initial values before assigning them to the form fields. - * - * @param application - application data. - * @returns Moderated initial values. - */ - const moderateInitialValues = (samlConfig: SAML2ServiceProviderInterface): SAML2ServiceProviderInterface => { - const templateToRegex = (template: string): RegExp => { - // Escape special regex characters in the template - const escapedTemplate: string = template.replace(/[-\\^$*+?.,()|[\]{}]/g, "\\$&"); - - // Replace ${variable} with a named capturing group pattern - const regexString: string = escapedTemplate.replace(/\\\$\\\{([^}]+)\\\}/g, "(?<$1>.+)"); - - // Create and return the regular expression object - return new RegExp("^" + regexString + "$"); - }; - - formMetadata?.fields?.forEach((field: DynamicFieldInterface) => { - if (field?.meta?.dependentProperties - && Array.isArray(field?.meta?.dependentProperties) - && field?.meta?.dependentProperties?.length > 0 - ) { - for(const path of field.meta.dependentProperties) { - const dependentPropertyValue: string = get(samlConfig, path); - const templateValue: string = get( - templateData?.payload?.inboundProtocolConfiguration?.saml?.manualConfiguration, path); - - if (typeof dependentPropertyValue === "string" - && templateValue && typeof templateValue === "string") { - const regex: RegExp = templateToRegex(templateValue); - - const match: RegExpMatchArray = dependentPropertyValue.match(regex); - - if (match?.groups?.[field?.name]) { - if (samlConfig[field?.name]) { - if (samlConfig[field?.name] === match?.groups?.[field?.name]) { - continue; - } - } else { - samlConfig[field?.name] = match?.groups?.[field?.name]; - - continue; - } - - samlConfig[field?.name] = ""; - - break; - } - } - } - } - }); - - return samlConfig; - }; - - const initialValues: SAML2ServiceProviderInterface = useMemo( - () => { - if (!SAML2Configurations && !templateData) { - return null; - } - - return moderateInitialValues(cloneDeep(SAML2Configurations) as SAML2ServiceProviderInterface); - }, - [ SAML2Configurations, templateData ] - ); - - /** - * Handle errors that occur during the application template meta data fetch request. - * TODO: Need to change the error message. - */ - useEffect(() => { - if (!SAML2ConfigurationFetchError) { - return; - } - - if (SAML2ConfigurationFetchError?.response?.data?.description) { - dispatch(addAlert({ - description: SAML2ConfigurationFetchError.response.data.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.fetchTemplateMetadata.error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.fetchTemplateMetadata" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications." + - "fetchTemplateMetadata.genericError.message") - })); - }, [ SAML2ConfigurationFetchError ]); - - /** - * Callback function triggered when clicking the form submit button. - * - * @param values - Submission values from the form fields. - */ - const onSubmit = (values: SAML2ServiceProviderInterface, form: FormApi): void => { - if (!form?.getState()?.dirty) { - return; - } - - setIsSubmitting(true); - const formValues: SAML2ServiceProviderInterface = cloneDeep(values); - - /** - * Make sure that cleared text fields are set to an empty string. - * Additionally, include the auto-submit properties in the form submission. - */ - formMetadata?.fields?.forEach((field: DynamicFieldInterface) => { - if (!has(formValues, field?.name)) { - const initialValue: any = get(initialValues, field?.name); - - if (initialValue && typeof initialValue === "string") { - set(formValues, field?.name, ""); - } - } - - if (field?.meta?.dependentProperties - && Array.isArray(field?.meta?.dependentProperties) - && field?.meta?.dependentProperties?.length > 0) { - const fieldValue: string = get(formValues, field?.name); - - if (typeof fieldValue === "string") { - field.meta.dependentProperties.forEach( - (property: string) => { - if (!get(formValues, property).includes(`\${${ field?.name }}`)) { - set(formValues, property, get( - templateData?.payload?.inboundProtocolConfiguration?.saml?.manualConfiguration, - property)); - } - const propertyValue: string = get(formValues, property); - - if (propertyValue && typeof propertyValue === "string") { - set(formValues, property, propertyValue.replace(`\${${field?.name}}`, fieldValue)); - } - } - ); - } - } - - if (field?.disable) { - unset(formValues, field?.name); - } - }); - - updateAuthProtocolConfig( - application?.id, - { - manualConfiguration: formValues - }, - SupportedAuthProtocolTypes.SAML - ).then(() => { - dispatch(addAlert({ - description: t("applications:notifications.updateInboundProtocolConfig" + - ".success.description"), - level: AlertLevels.SUCCESS, - message: t("applications:notifications.updateInboundProtocolConfig" + - ".success.message") - })); - - onUpdate(application?.id); - }).catch((error: AxiosError) => { - if (error?.response?.data?.description) { - dispatch(addAlert({ - description: error.response.data.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.updateInboundProtocolConfig" + - ".error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.updateInboundProtocolConfig" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications.updateInboundProtocolConfig" + - ".genericError.message") - })); - }).finally(() => setIsSubmitting(false)); - }; - - return isLoading || isLoadingSAML2Configuration || isTemplateDataFetchRequestLoading - ? - : ( - , - Partial - >, - { changeValue }: Tools< - Partial, - Partial - > - ) => { - changeValue(state, fieldName, () => fieldVal); - } - } } - render={ ({ form, handleSubmit }: FormRenderProps) => { - formSubmission(handleSubmit); - - return ( -
    - - { formMetadata?.fields?.map( - (field: DynamicFieldInterface) => { - if (field?.hidden) { - return null; - } - - return ( - - - - - - ); - }) - } - { - !hideSubmitBtn && ( - - - - { t("common:update") } - - - - ) - } - -
    - ); - } } - /> - ); -}; - -/** - * Default props for the application edit form component. - */ -ApplicationEditForm.defaultProps = { - "data-componentid": "application-edit-form" -}; diff --git a/features/admin.template-core.v1/components/application-main-edit-form.tsx b/features/admin.template-core.v1/components/application-main-edit-form.tsx deleted file mode 100644 index 6852294a927..00000000000 --- a/features/admin.template-core.v1/components/application-main-edit-form.tsx +++ /dev/null @@ -1,309 +0,0 @@ -/** - * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import { updateApplicationDetails } from "@wso2is/admin.applications.v1/api"; -import { ApplicationInterface } from "@wso2is/admin.applications.v1/models"; -import { AppState } from "@wso2is/admin.core.v1"; -import useUIConfig from "@wso2is/admin.core.v1/hooks/use-ui-configs"; -import { hasRequiredScopes } from "@wso2is/core/helpers"; -import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; -import { addAlert } from "@wso2is/core/store"; -import { FinalForm, FormApi, FormRenderProps, MutableState, Tools } from "@wso2is/form"; -import { - ContentLoader, - PrimaryButton -} from "@wso2is/react-components"; -import { AxiosError } from "axios"; -import cloneDeep from "lodash-es/cloneDeep"; -import get from "lodash-es/get"; -import pick from "lodash-es/pick"; -import set from "lodash-es/set"; -import unset from "lodash-es/unset"; -import React, { FunctionComponent, MouseEvent, ReactElement, useState } from "react"; -import { useTranslation } from "react-i18next"; -import { useDispatch, useSelector } from "react-redux"; -import { Dispatch } from "redux"; -import { Grid } from "semantic-ui-react"; -import { ApplicationFormDynamicField } from "./application-form-dynamic-field"; -import useDynamicFieldValidations from "../hooks/use-dynamic-field-validation"; -import { DynamicFieldInterface, DynamicFormInterface } from "../models/dynamic-fields"; - -/** - * Prop types of the `ApplicationEditForm` component. - */ -export interface ApplicationEditFormPropsInterface extends IdentifiableComponentInterface { - /** - * The tab metadata to be used for the application edit form generation. - */ - formMetadata: DynamicFormInterface - /** - * Current editing application data. - */ - application: ApplicationInterface; - /** - * Is the application info request loading. - */ - isLoading?: boolean; - /** - * Callback to update the application details. - */ - onUpdate: (id: string) => void; - /** - * Make the form read only. - */ - readOnly?: boolean; - /** - * Exposing the function to trigger form submission. - */ - formSubmission?: (submissionFunction: (e: MouseEvent) => void) => void; - /** - * Flag to check whether the internal submit button should be hidden. - */ - hideSubmitBtn?: boolean; -} - -/** - * Dynamic application edit form component. - * - * @param Props - Props to be injected into the component. - */ -export const ApplicationEditForm: FunctionComponent = ( - props: ApplicationEditFormPropsInterface -): ReactElement => { - const { - formMetadata, - application, - isLoading, - onUpdate, - readOnly, - formSubmission, - hideSubmitBtn, - ["data-componentid"]: componentId - } = props; - - const { validate } = useDynamicFieldValidations(); - - const { t } = useTranslation(); - const dispatch: Dispatch = useDispatch(); - const { UIConfig } = useUIConfig(); - const allowedScopes: string = useSelector((state: AppState) => state?.auth?.allowedScopes); - const [ isSubmitting, setIsSubmitting ] = useState(false); - - /** - * Callback function triggered when clicking the form submit button. - * - * @param values - Submission values from the form fields. - */ - const onSubmit = (values: ApplicationInterface, form: FormApi): void => { - if (!form?.getState()?.dirty) { - return; - } - - setIsSubmitting(true); - const formValues: ApplicationInterface = cloneDeep(values); - - formMetadata?.fields?.forEach((field: DynamicFieldInterface) => { - if (!form?.getFieldState(field?.name)?.dirty) { - unset(formValues, field?.name); - } - }); - - /** - * Make sure that cleared text fields are set to an empty string. - * Additionally, include the auto-submit properties in the form submission. - */ - formMetadata?.fields?.forEach((field: DynamicFieldInterface) => { - // TODO: Need to modify this. Conflict with above logic. - // if (!has(formValues, field?.name)) { - // const initialValue: any = get(application, field?.name); - // if (initialValue && typeof initialValue === "string") { - // set(formValues, field?.name, ""); - // } - // } - - if (field?.meta?.dependentProperties - && Array.isArray(field?.meta?.dependentProperties) - && field?.meta?.dependentProperties?.length > 0) { - const fieldValue: string = get(formValues, field?.name); - - if (typeof fieldValue === "string") { - field.meta.dependentProperties.forEach( - (property: string) => { - const propertyValue: string = get(formValues, property); - - if (propertyValue && typeof propertyValue === "string") { - set(formValues, property, propertyValue.replace(`\${${field?.name}}`, fieldValue)); - } - } - ); - } - } - - if (field?.disable) { - unset(formValues, field?.name); - } - }); - - updateApplicationDetails(formValues) - .then(() => { - dispatch(addAlert({ - description: t("applications:notifications.updateApplication.success" + - ".description"), - level: AlertLevels.SUCCESS, - message: t("applications:notifications.updateApplication.success.message") - })); - - onUpdate(application?.id); - }) - .catch((error: AxiosError) => { - if (error?.response?.data?.description) { - dispatch(addAlert({ - description: error.response.data.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.updateApplication.error" + - ".message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.updateApplication" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications.updateApplication.genericError" + - ".message") - })); - }) - .finally(() => setIsSubmitting(false)); - }; - - /** - * Prepare the initial values before assigning them to the form fields. - * - * @param application - application data. - * @returns Moderated initial values. - */ - const moderateInitialValues = (application: ApplicationInterface): Partial => { - if (!formMetadata?.submitDefinedFieldsOnly) { - return application; - } - - const paths: string[] = formMetadata?.fields?.map((field: DynamicFieldInterface) => field?.name); - - // The ID needs to be submitted to perform the update operation. - paths.push("id"); - - return pick(application, paths); - }; - - return isLoading - ? - : ( - , - Partial - >, - { changeValue }: Tools< - Partial, - Partial - > - ) => { - changeValue(state, fieldName, () => fieldVal); - } - } } - validate={ - (formValues: ApplicationInterface) => - validate(formValues, formMetadata?.fields) - } - render={ ({ form, handleSubmit }: FormRenderProps) => { - formSubmission(handleSubmit); - - return ( -
    - - { formMetadata?.fields?.map( - (field: DynamicFieldInterface) => { - return ( - - - - - - ); - }) - } - { - !hideSubmitBtn && ( - - - - { t("common:update") } - - - - ) - } - -
    - ); - } } - /> - ); -}; - -/** - * Default props for the application edit form component. - */ -ApplicationEditForm.defaultProps = { - "data-componentid": "application-edit-form" -}; diff --git a/features/admin.template-core.v1/components/markdown-guide.tsx b/features/admin.template-core.v1/components/markdown-guide.tsx index 54bfb14afef..b663540b368 100644 --- a/features/admin.template-core.v1/components/markdown-guide.tsx +++ b/features/admin.template-core.v1/components/markdown-guide.tsx @@ -16,27 +16,15 @@ * under the License. */ -import { useGetApplication } from "@wso2is/admin.applications.v1/api/use-get-application"; -import useGetApplicationInboundConfigs from "@wso2is/admin.applications.v1/api/use-get-application-inbound-configs"; -import { - ApplicationInterface, - SAML2ServiceProviderInterface, - SAMLApplicationConfigurationInterface, - SupportedAuthProtocolTypes -} from "@wso2is/admin.applications.v1/models"; import { AppState, history } from "@wso2is/admin.core.v1"; -import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; -import { addAlert } from "@wso2is/core/store"; +import { IdentifiableComponentInterface } from "@wso2is/core/models"; import { ContentLoader, Markdown } from "@wso2is/react-components"; import get from "lodash-es/get"; -import set from "lodash-es/set"; -import React, { FunctionComponent, ReactElement, useEffect, useMemo } from "react"; -import { useTranslation } from "react-i18next"; -import { useDispatch, useSelector } from "react-redux"; -import { Dispatch } from "redux"; +import React, { FunctionComponent, ReactElement, useMemo } from "react"; +import { useSelector } from "react-redux"; import { Grid } from "semantic-ui-react"; import "./markdown-guide.scss"; @@ -45,43 +33,19 @@ import "./markdown-guide.scss"; */ export interface MarkdownGuidePropsInterface extends IdentifiableComponentInterface { /** - * Id of the current application. + * Data that can be templated in a Markdown script. */ - applicationId: string; + data: Record; /** * Content to be displayed in Markdown format. */ content: string; /** - * Is the application info request loading. + * Is the markdown data request loading. */ isLoading?: boolean; } -/** - * An interface that includes all the moderated data types using initial data. - */ -interface ModeratedData { - pemCertificate?: string; -} - -/** - * An interface that includes all the data types which can be used in the markdown guide. - */ -interface MarkdownGuideDataInterface { - general?: ApplicationInterface; - protocol?: { - saml?: SAML2ServiceProviderInterface; - }; - metadata?: { - saml?: SAMLApplicationConfigurationInterface; - } - tenantDomain?: string; - clientOrigin?: string; - serverOrigin?: string; - moderatedData?: ModeratedData; -} - /** * Markdown guide generation component. * @@ -91,156 +55,15 @@ export const MarkdownGuide: FunctionComponent = ( props: MarkdownGuidePropsInterface ): ReactElement => { const { - applicationId, + data, content, isLoading, ["data-componentid"]: componentId } = props; - const { t } = useTranslation(); - - const dispatch: Dispatch = useDispatch(); - - const { - data: application, - isLoading: applicationLoading, - error: applicationFetchRequestError - } = useGetApplication(applicationId, !!applicationId); - const { - data: applicationInboundProtocol, - isLoading: applicationInboundProtocolLoading, - error: applicationInboundProtocolFetchRequestError - } = useGetApplicationInboundConfigs(applicationId, SupportedAuthProtocolTypes.SAML, !!applicationId); - const samlConfigurations: SAMLApplicationConfigurationInterface = useSelector( - (state: AppState) => state?.application?.samlConfigurations); - const tenantDomain: string = useSelector((state: AppState) => state?.auth?.tenantDomain); - const clientOrigin: string = useSelector((state: AppState) => state?.config?.deployment?.clientOrigin); - const serverOrigin: string = useSelector((state: AppState) => state?.config?.deployment?.idpConfigs?.serverOrigin); const appBaseName: string = useSelector((state: AppState) => state?.config?.deployment?.appBaseName); - /** - * Handles the application get request error. - */ - useEffect(() => { - if (!applicationFetchRequestError) { - return; - } - - if (applicationFetchRequestError.response?.data?.description) { - dispatch(addAlert({ - description: applicationFetchRequestError.response.data.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.fetchApplication.error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.fetchApplication" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications.fetchApplication.genericError." + - "message") - })); - }, [ applicationFetchRequestError ]); - - /** - * Handle errors that occur during the application inbound protocol data fetch request. - */ - useEffect(() => { - if (!applicationInboundProtocolFetchRequestError) { - return; - } - - if (applicationInboundProtocolFetchRequestError?.response?.data?.description) { - dispatch(addAlert({ - description: applicationInboundProtocolFetchRequestError.response.data.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.getInboundProtocolConfig.error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.getInboundProtocolConfig" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications.getInboundProtocolConfig" + - ".genericError.message") - })); - }, [ applicationInboundProtocolFetchRequestError ]); - - /** - * Convert certificate into the pem format. - * - * @param cert - Certificate in string format. - * @returns Pem format certificate content. - */ - function getPemFormatCertificate(cert: string): string { - const header: string = "-----BEGIN CERTIFICATE-----"; - const footer: string = "-----END CERTIFICATE-----"; - const lineLength: number = 64; - - // Insert line breaks every `lineLength` characters. - const formattedCert: string = cert.match(new RegExp(".{1," + lineLength + "}", "g"))?.join("\n") || ""; - - return `${header}\n${formattedCert}\n${footer}`; - } - - /** - * Prepare moderated data using the initial API response data. - */ - const getModeratedData = (): ModeratedData => { - const data: ModeratedData = {}; - - if (samlConfigurations?.certificate) { - data.pemCertificate = btoa(getPemFormatCertificate(samlConfigurations?.certificate)); - } - - return data; - }; - - /** - * Create a unified data object for the current application - * by combining multiple API responses. - */ - const data: MarkdownGuideDataInterface = useMemo(() => { - const markdownDataObject: MarkdownGuideDataInterface = {}; - - if (application) { - markdownDataObject.general = application; - } - if (applicationInboundProtocol) { - set(markdownDataObject, "protocol.saml", applicationInboundProtocol); - } - if (samlConfigurations) { - set(markdownDataObject, "metadata.saml", samlConfigurations); - } - if (tenantDomain) { - markdownDataObject.tenantDomain = tenantDomain; - } - if (clientOrigin) { - markdownDataObject.clientOrigin = clientOrigin; - } - if (serverOrigin) { - markdownDataObject.serverOrigin = serverOrigin; - } - if (application) { - markdownDataObject.moderatedData = getModeratedData(); - } - - return markdownDataObject; - }, [ - application, - applicationInboundProtocol, - samlConfigurations, - tenantDomain, - clientOrigin - ]); - /** * Create the final markdown content to render by replacing the possible * included placeholders. @@ -281,7 +104,7 @@ export const MarkdownGuide: FunctionComponent = ( { - isLoading || applicationLoading || applicationInboundProtocolLoading || !moderatedContent + isLoading || !moderatedContent ? : ( Date: Sun, 14 Jul 2024 14:26:31 +0530 Subject: [PATCH 062/114] remove unnecessary api calls --- .../components/application-edit-form.tsx | 86 ++++++------------- .../components/edit-application.tsx | 29 ++++--- 2 files changed, 46 insertions(+), 69 deletions(-) diff --git a/features/admin.application-templates.v1/components/application-edit-form.tsx b/features/admin.application-templates.v1/components/application-edit-form.tsx index 9b29c926fa4..c9c468d4f38 100644 --- a/features/admin.application-templates.v1/components/application-edit-form.tsx +++ b/features/admin.application-templates.v1/components/application-edit-form.tsx @@ -17,12 +17,15 @@ */ import { updateApplicationDetails, updateAuthProtocolConfig } from "@wso2is/admin.applications.v1/api"; -import useGetApplicationInboundConfigs from "@wso2is/admin.applications.v1/api/use-get-application-inbound-configs"; import { ApplicationInterface, MainApplicationInterface, + OIDCDataInterface, + PassiveStsConfigurationInterface, + SAML2ConfigurationInterface, SAML2ServiceProviderInterface, - SupportedAuthProtocolTypes + SupportedAuthProtocolTypes, + WSTrustConfigurationInterface } from "@wso2is/admin.applications.v1/models"; import { TemplateDynamicForm } from "@wso2is/admin.template-core.v1/components/template-dynamic-form"; import { DynamicFieldInterface } from "@wso2is/admin.template-core.v1/models/dynamic-fields"; @@ -33,7 +36,7 @@ import cloneDeep from "lodash-es/cloneDeep"; import isEqual from "lodash-es/isEqual"; import pick from "lodash-es/pick"; import unset from "lodash-es/unset"; -import React, { FunctionComponent, ReactElement, useEffect, useMemo } from "react"; +import React, { FunctionComponent, ReactElement, useMemo } from "react"; import { useTranslation } from "react-i18next"; import { useDispatch } from "react-redux"; import { Dispatch } from "redux"; @@ -55,6 +58,15 @@ export interface ApplicationEditFormPropsInterface extends IdentifiableComponent * Current editing application data. */ application: ApplicationInterface; + /** + * Current application protocol name. + */ + protocolName: string; + /** + * Current editing application inbound protocol data. + */ + inboundProtocolConfigurations: OIDCDataInterface | SAML2ConfigurationInterface | WSTrustConfigurationInterface + | PassiveStsConfigurationInterface; /** * Is the application info request loading. */ @@ -63,6 +75,10 @@ export interface ApplicationEditFormPropsInterface extends IdentifiableComponent * Callback to update the application details. */ onUpdate: (id: string) => void; + /** + * Callback to update the application protocol details. + */ + onProtocolUpdate: () => void; /** * Make the form read only. */ @@ -80,8 +96,11 @@ export const ApplicationEditForm: FunctionComponent { - if (application?.inboundProtocols?.[0]?.self) { - const urlParts: string[] = application.inboundProtocols[0].self.split("/") ?? []; - - if (urlParts.length > 0) { - return urlParts[urlParts.length - 1]; - } - } - - return ""; - }, [ application ]); - - const { - data: inboundProtocolConfigurations, - error: inboundProtocolConfigurationFetchError, - isLoading: isLoadingInboundConfigurations, - mutate: mutateProtocolConfigurations - } = useGetApplicationInboundConfigs(application?.id, protocolType, !!application?.id && !!protocolType); - - /** - * Handle errors that occur during the application inbound protocol data fetch request. - */ - useEffect(() => { - if (!inboundProtocolConfigurationFetchError) { - return; - } - - if (inboundProtocolConfigurationFetchError?.response?.data?.description) { - dispatch(addAlert({ - description: inboundProtocolConfigurationFetchError.response.data.description, - level: AlertLevels.ERROR, - message: t("applications:notifications.getInboundProtocolConfig.error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("applications:notifications.getInboundProtocolConfig" + - ".genericError.description"), - level: AlertLevels.ERROR, - message: t("applications:notifications.getInboundProtocolConfig" + - ".genericError.message") - })); - }, [ inboundProtocolConfigurationFetchError ]); - /** * Prepare the initial value object for the application edit form. */ const initialValues: MainApplicationInterface = useMemo(() => { - if (!inboundProtocolConfigurations || !application) { + if (!inboundProtocolConfigurations || !application || !protocolName) { return null; } const formInitialValues: MainApplicationInterface = cloneDeep(application); - let protocolKeyName: string = protocolType; + let protocolKeyName: string = protocolName; if (SupportedAuthProtocolTypes.WS_FEDERATION === protocolKeyName) { protocolKeyName = "passiveSts"; @@ -185,7 +155,7 @@ export const ApplicationEditForm: FunctionComponent, callback: () => void): void => { - let protocolKeyName: string = protocolType; + let protocolKeyName: string = protocolName; if (SupportedAuthProtocolTypes.WS_FEDERATION === protocolKeyName) { protocolKeyName = "passiveSts"; @@ -225,9 +195,9 @@ export const ApplicationEditForm: FunctionComponent { - mutateProtocolConfigurations(); + onProtocolUpdate(); dispatch(addAlert({ description: t("applications:notifications.updateApplication.success" + @@ -312,7 +282,7 @@ export const ApplicationEditForm: FunctionComponent diff --git a/features/admin.applications.v1/components/edit-application.tsx b/features/admin.applications.v1/components/edit-application.tsx index cf49131fcce..d4d9746477c 100644 --- a/features/admin.applications.v1/components/edit-application.tsx +++ b/features/admin.applications.v1/components/edit-application.tsx @@ -657,17 +657,24 @@ export const EditApplication: FunctionComponent = * @param tab - The metadata for the tab. * @returns The rendered tab pane. */ - const DynamicApplicationEditTabPane = (tab: ApplicationEditTabMetadataInterface): ReactElement => ( - - - - ); + const DynamicApplicationEditTabPane = (tab: ApplicationEditTabMetadataInterface): ReactElement => { + const firstProtocolName: string = mapProtocolTypeToName(application?.inboundProtocols?.[0]?.type); + + return ( + + + + ); + }; /** * Renders a markdown guide tab pane. From 9aa5c0d503eaa53b916f3ae71a813c7cf3b986c0 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Sun, 14 Jul 2024 15:23:12 +0530 Subject: [PATCH 063/114] clean the code base --- .../components/application-edit-form.tsx | 2 +- .../components/application-templates-grid.tsx | 6 +- .../admin.applications.v1/api/application.ts | 2 +- .../application-certificate-wrapper.tsx | 12 +- features/admin.applications.v1/package.json | 1 - features/admin.core.v1/configs/app.ts | 2 +- .../admin.core.v1/constants/i18n-constants.ts | 4 +- .../pages/identity-provider-edit.tsx | 677 ------------------ .../handlers/validation/required-field.ts | 2 +- .../handlers/validation/url-validation.ts | 2 +- .../constants/templates.ts | 4 +- .../provider/extension-templates-provider.tsx | 6 +- features/index.ts | 1 + modules/i18n/src/constants.ts | 2 +- .../namespaces/application-templates-ns.ts | 13 +- .../src/models/namespaces/applications-ns.ts | 43 -- .../i18n/src/models/namespaces/common-ns.ts | 1 - modules/i18n/src/models/namespaces/index.ts | 2 +- ...on-templates-ns.ts => template-core-ns.ts} | 16 +- .../src/translations/de-DE/portals/common.ts | 1 - .../en-US/portals/application-templates.ts | 9 + .../en-US/portals/applications.ts | 43 -- .../src/translations/en-US/portals/common.ts | 1 - .../src/translations/en-US/portals/index.ts | 2 +- ...xtension-templates.ts => template-core.ts} | 18 +- .../src/translations/es-ES/portals/common.ts | 1 - .../src/translations/fr-FR/portals/common.ts | 1 - .../src/translations/ja-JP/portals/common.ts | 1 - .../src/translations/pt-BR/portals/common.ts | 1 - .../src/translations/pt-PT/portals/common.ts | 1 - .../src/translations/si-LK/portals/common.ts | 1 - .../src/translations/ta-IN/portals/common.ts | 1 - .../src/translations/zh-CN/portals/common.ts | 1 - pnpm-lock.yaml | 3 - 34 files changed, 73 insertions(+), 810 deletions(-) delete mode 100644 features/admin.identity-providers.v1/pages/identity-provider-edit.tsx rename modules/i18n/src/models/namespaces/{extension-templates-ns.ts => template-core-ns.ts} (77%) rename modules/i18n/src/translations/en-US/portals/{extension-templates.ts => template-core.ts} (74%) diff --git a/features/admin.application-templates.v1/components/application-edit-form.tsx b/features/admin.application-templates.v1/components/application-edit-form.tsx index c9c468d4f38..0662267f78f 100644 --- a/features/admin.application-templates.v1/components/application-edit-form.tsx +++ b/features/admin.application-templates.v1/components/application-edit-form.tsx @@ -228,7 +228,7 @@ export const ApplicationEditForm: FunctionComponent 0) { - updateApplicationDetails(applicationConfigurations) + updateApplicationDetails(applicationConfigurations as ApplicationInterface) .then(() => { onUpdate(application?.id); diff --git a/features/admin.application-templates.v1/components/application-templates-grid.tsx b/features/admin.application-templates.v1/components/application-templates-grid.tsx index ab4c91f05dd..08a15194f30 100644 --- a/features/admin.application-templates.v1/components/application-templates-grid.tsx +++ b/features/admin.application-templates.v1/components/application-templates-grid.tsx @@ -278,12 +278,12 @@ const ApplicationTemplateGrid: FunctionComponent(id: string, status: boolean): Promise = * @returns A promise containing the response. */ export const updateApplicationDetails = ( - app: Partial, + app: ApplicationInterface, skipEmptyPayloads?: boolean ): Promise => { const { id, ...rest } = app; diff --git a/features/admin.applications.v1/components/settings/certificate/application-certificate-wrapper.tsx b/features/admin.applications.v1/components/settings/certificate/application-certificate-wrapper.tsx index fef658b9cad..0f8c1c55d49 100644 --- a/features/admin.applications.v1/components/settings/certificate/application-certificate-wrapper.tsx +++ b/features/admin.applications.v1/components/settings/certificate/application-certificate-wrapper.tsx @@ -79,7 +79,6 @@ interface ApplicationWrapperCertificatesPropsInterface extends TestableComponent readOnly: boolean; triggerSubmit?: boolean; canDiscardCertificate?: () => boolean; - hideDivider?: boolean; } /** @@ -107,7 +106,6 @@ export const ApplicationCertificateWrapper: FunctionComponent - { - !hideDivider && ( - - - - ) - } + + + { diff --git a/features/admin.applications.v1/package.json b/features/admin.applications.v1/package.json index 9fd8168b0fa..970ef76557d 100644 --- a/features/admin.applications.v1/package.json +++ b/features/admin.applications.v1/package.json @@ -43,7 +43,6 @@ "@wso2is/admin.userstores.v1": "^2.20.41", "@wso2is/admin.wsfed-configuration.v1": "^2.20.41", "classnames": "^2.2.6", - "ajv": "^8.16.0", "axios": "^0.19.2", "codemirror": "^5.52.0", "file-saver": "^2.0.5", diff --git a/features/admin.core.v1/configs/app.ts b/features/admin.core.v1/configs/app.ts index 99fcdbf5913..c609a00c5ad 100644 --- a/features/admin.core.v1/configs/app.ts +++ b/features/admin.core.v1/configs/app.ts @@ -225,7 +225,7 @@ export class Config { I18nConstants.IDP_NAMESPACE, I18nConstants.API_RESOURCES_NAMESPACE, I18nConstants.AI_NAMESPACE, - I18nConstants.EXTENSION_TEMPLATES_NAMESPACE, + I18nConstants.TEMPLATE_CORE_NAMESPACE, I18nConstants.APPLICATION_TEMPLATES_NAMESPACE ], preload: [] diff --git a/features/admin.core.v1/constants/i18n-constants.ts b/features/admin.core.v1/constants/i18n-constants.ts index 4277889ad63..5a9cd7abe42 100644 --- a/features/admin.core.v1/constants/i18n-constants.ts +++ b/features/admin.core.v1/constants/i18n-constants.ts @@ -254,7 +254,7 @@ export class I18nConstants { /** * Extension Templates namespace. */ - public static readonly EXTENSION_TEMPLATES_NAMESPACE: string = I18nModuleConstants.EXTENSION_TEMPLATES_NAMESPACE; + public static readonly TEMPLATE_CORE_NAMESPACE: string = I18nModuleConstants.TEMPLATE_CORE_NAMESPACE; /** * Locations of the I18n namespaces. @@ -303,7 +303,7 @@ export class I18nConstants { [ I18nConstants.API_RESOURCES_NAMESPACE, "portals" ], [ I18nConstants.AI_NAMESPACE, "portals" ], [ I18nConstants.APPLICATION_TEMPLATES_NAMESPACE, "portals" ], - [ I18nConstants.EXTENSION_TEMPLATES_NAMESPACE, "portals" ] + [ I18nConstants.TEMPLATE_CORE_NAMESPACE, "portals" ] ]); /** diff --git a/features/admin.identity-providers.v1/pages/identity-provider-edit.tsx b/features/admin.identity-providers.v1/pages/identity-provider-edit.tsx deleted file mode 100644 index 3744f70ce01..00000000000 --- a/features/admin.identity-providers.v1/pages/identity-provider-edit.tsx +++ /dev/null @@ -1,677 +0,0 @@ -/** - * Copyright (c) 2023-2024, WSO2 LLC. (https://www.wso2.com). - * - * WSO2 LLC. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import { - AppConstants, - AppState, - ConfigReducerStateInterface, - FeatureConfigInterface, - history -} from "@wso2is/admin.core.v1"; -import { AuthenticatorExtensionsConfigInterface, identityProviderConfig } from "@wso2is/admin.extensions.v1/configs"; -import { IdentityAppsApiException } from "@wso2is/core/exceptions"; -import { hasRequiredScopes } from "@wso2is/core/helpers"; -import { AlertLevels, TestableComponentInterface } from "@wso2is/core/models"; -import { addAlert } from "@wso2is/core/store"; -import { - AnimatedAvatar, - AppAvatar, - LabelWithPopup, - Popup, - TabPageLayout -} from "@wso2is/react-components"; -import get from "lodash-es/get"; -import React, { - Fragment, - FunctionComponent, - ReactElement, - ReactNode, - useEffect, - useMemo, - useRef, - useState -} from "react"; -import { useTranslation } from "react-i18next"; -import { useDispatch, useSelector } from "react-redux"; -import { RouteComponentProps } from "react-router"; -import { Dispatch } from "redux"; -import { Label } from "semantic-ui-react"; -import { getIdentityProviderDetail, getLocalAuthenticator, getMultiFactorAuthenticatorDetails } from "../api"; -import { EditMultiFactorAuthenticator } from "../components/edit-multi-factor-authenticator"; -import { EditIdentityProvider } from "../components/identity-provider-edit"; -import { IdentityProviderManagementConstants } from "../constants"; -import { AuthenticatorMeta } from "../meta"; -import { - AuthenticatorInterface, - IdentityProviderInterface, - IdentityProviderTemplateItemInterface, - IdentityProviderTemplateLoadingStrategies, - MultiFactorAuthenticatorInterface, - SupportedQuickStartTemplateTypes -} from "../models"; -import { IdentityProviderManagementUtils, IdentityProviderTemplateManagementUtils } from "../utils"; - -/** - * Proptypes for the IDP edit page component. - */ -type IDPEditPagePropsInterface = TestableComponentInterface; - -/** - * Identity Provider Edit page. - * - * @param props - Props injected to the component. - * - * @returns React element. - */ -const IdentityProviderEditPage: FunctionComponent = ( - props: IDPEditPagePropsInterface & RouteComponentProps -): ReactElement => { - - const { - location, - [ "data-testid" ]: testId - } = props; - - const dispatch: Dispatch = useDispatch(); - - const { t } = useTranslation(); - - const config: ConfigReducerStateInterface = useSelector((state: AppState) => state.config); - const identityProviderTemplates: IdentityProviderTemplateItemInterface[] = useSelector( - (state: AppState) => state.identityProvider.templates); - - const idpDescElement: React.MutableRefObject = useRef(null); - - const [ - identityProviderTemplate, - setIdentityProviderTemplate - ] = useState(undefined); - const [ - connector, - setConnector - ] = useState(undefined); - const [ - isConnectorDetailsFetchRequestLoading, - setConnectorDetailFetchRequestLoading - ] = useState(undefined); - // eslint-disable-next-line @typescript-eslint/no-unused-vars - const [ isExtensionsAvailable, setIsExtensionsAvailable ] = useState(false); - const [ useNewConnectionsView, setUseNewConnectionsView ] = useState(undefined); - const featureConfig: FeatureConfigInterface = useSelector((state: AppState) => state.config.ui.features); - const allowedScopes: string = useSelector((state: AppState) => state?.auth?.allowedScopes); - const [ isDescTruncated, setIsDescTruncated ] = useState(false); - const [ tabIdentifier, setTabIdentifier ] = useState(); - const [ isAutomaticTabRedirectionEnabled, setIsAutomaticTabRedirectionEnabled ] = useState(false); - - - const isReadOnly: boolean = useMemo(() => ( - !hasRequiredScopes( - featureConfig?.identityProviders, featureConfig?.identityProviders?.scopes?.update, allowedScopes) - ), [ featureConfig, allowedScopes ]); - - useEffect(() => { - /** - * What's the goal of this effect? - * To figure out the application's description is truncated or not. - * - * A comprehensive explanation is added in {@link ApplicationEditPage} - * in a similar {@link useEffect}. - */ - if (idpDescElement || isConnectorDetailsFetchRequestLoading) { - const nativeElement: HTMLDivElement = idpDescElement.current; - - if (nativeElement && (nativeElement.offsetWidth < nativeElement.scrollWidth)) { - setIsDescTruncated(true); - } - } - }, [ idpDescElement, isConnectorDetailsFetchRequestLoading ]); - - /** - * Use effect for the initial component load. - */ - useEffect(() => { - - if (!identityProviderConfig) { - return; - } - - const path: string[] = location.pathname.split("/"); - const id: string = path[ path.length - 1 ]; - - const authenticatorConfig: AuthenticatorExtensionsConfigInterface = get(identityProviderConfig - .authenticators, id); - - if (authenticatorConfig?.isEnabled) { - getMultiFactorAuthenticator(id, authenticatorConfig?.useAuthenticatorsAPI); - - return; - } - - getIdentityProvider(id); - }, [ identityProviderConfig ]); - - /** - * Checks if the listing view defined in the config is the new connections view. - */ - useEffect(() => { - - if (useNewConnectionsView !== undefined) { - return; - } - - setUseNewConnectionsView(identityProviderConfig.useNewConnectionsView); - }, [ identityProviderConfig ]); - - /** - * Checks if the user needs to go to a specific tab index. - */ - useEffect(() => { - const tabName: string = location.state as string; - - if (tabName !== undefined) { - setIsAutomaticTabRedirectionEnabled(true); - setTabIdentifier(tabName); - } - }, []); - - /** - * Get IDP templates. - */ - useEffect(() => { - - if (identityProviderTemplates !== undefined) { - return; - } - - setConnectorDetailFetchRequestLoading(true); - - const useAPI: boolean = config.ui.identityProviderTemplateLoadingStrategy - ? config.ui.identityProviderTemplateLoadingStrategy === IdentityProviderTemplateLoadingStrategies.REMOTE - : IdentityProviderManagementConstants. - DEFAULT_IDP_TEMPLATE_LOADING_STRATEGY === IdentityProviderTemplateLoadingStrategies.REMOTE; - - IdentityProviderTemplateManagementUtils.getIdentityProviderTemplates(useAPI) - .finally(() => { - setConnectorDetailFetchRequestLoading(false); - }); - }, [ identityProviderTemplates ]); - - /** - * Load the template that the IDP is built on. - */ - useEffect(() => { - - // Return if connector is not defined. - if (!connector) { - return; - } - - // Return if connector is not an IdP. - if (!IdentityProviderManagementUtils.isConnectorIdentityProvider(connector)) { - return; - } - - if (!(identityProviderTemplates - && identityProviderTemplates instanceof Array - && identityProviderTemplates.length > 0)) { - - return; - } - - // TODO: Creating internal mapping to resolve the IDP template. - // TODO: First phase of the issue is fixed, keeping this for backward compatibility. - // Tracked Here - https://github.com/wso2/product-is/issues/11023 - const resolveTemplateId = (authenticatorId: string) => { - - if (authenticatorId) { - if (authenticatorId === IdentityProviderManagementConstants.FACEBOOK_AUTHENTICATOR_ID) { - return IdentityProviderManagementConstants.IDP_TEMPLATE_IDS.FACEBOOK; - } else if (authenticatorId === IdentityProviderManagementConstants.GOOGLE_OIDC_AUTHENTICATOR_ID) { - return IdentityProviderManagementConstants.IDP_TEMPLATE_IDS.GOOGLE; - } else if (authenticatorId === IdentityProviderManagementConstants.OIDC_AUTHENTICATOR_ID) { - return IdentityProviderManagementConstants.IDP_TEMPLATE_IDS.OIDC; - } else if (authenticatorId === IdentityProviderManagementConstants.SAML_AUTHENTICATOR_ID) { - return IdentityProviderManagementConstants.IDP_TEMPLATE_IDS.SAML; - } else if (authenticatorId === IdentityProviderManagementConstants.GITHUB_AUTHENTICATOR_ID) { - return IdentityProviderManagementConstants.IDP_TEMPLATE_IDS.GITHUB; - } else if (authenticatorId === IdentityProviderManagementConstants.APPLE_AUTHENTICATOR_ID) { - return IdentityProviderManagementConstants.IDP_TEMPLATE_IDS.APPLE; - } - } - - return ""; - }; - - const template: IdentityProviderTemplateItemInterface = identityProviderTemplates - .find((template: IdentityProviderTemplateItemInterface) => { - return template.id === (connector.templateId - ?? resolveTemplateId(connector.federatedAuthenticators?.defaultAuthenticatorId)); - }); - - setIdentityProviderTemplate(template); - }, [ identityProviderTemplates, connector ]); - - /** - * Retrieves idp details from the API. - * - * @param id - IDP id. - */ - const getIdentityProvider = (id: string): void => { - setConnectorDetailFetchRequestLoading(true); - - getIdentityProviderDetail(id) - .then((response: IdentityProviderInterface | MultiFactorAuthenticatorInterface | AuthenticatorInterface) => - { - setConnector(response); - }) - .catch((error: IdentityAppsApiException) => { - if (error.response && error.response.data && error.response.data.description) { - dispatch(addAlert({ - description: t("authenticationProvider:" + - "notifications.getIDP.error.description", - { description: error.response.data.description }), - level: AlertLevels.ERROR, - message: t("authenticationProvider:" + - "notifications.getIDP.error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("authenticationProvider:" + - "notifications.getIDP.genericError.description"), - level: AlertLevels.ERROR, - message: t("authenticationProvider:" + - "notifications.getIDP.genericError.message") - })); - }) - .finally(() => { - setConnectorDetailFetchRequestLoading(false); - }); - }; - - /** - * Retrieves the local authenticator details from the API. - * - * @param id - Authenticator id. - * @param useAuthenticatorsAPI - Use the - */ - const getMultiFactorAuthenticator = (id: string, useAuthenticatorsAPI: boolean = true): void => { - - setConnectorDetailFetchRequestLoading(true); - - /** - * Get authenticator details from either governance API or `authenticators` API. - * @param cb - Callback. - * @returns Promise containing authenticator details. - */ - const getAuthenticatorDetails = (cb: (id: string) => Promise) => { - - cb(id) - .then((response: T) => { - setConnector(response); - }) - .catch((error: IdentityAppsApiException) => { - if (error.response && error.response.data && error.response.data.description) { - dispatch(addAlert({ - description: t("authenticationProvider:" + - "notifications.getConnectionDetails.error.description", - { description: error.response.data.description }), - level: AlertLevels.ERROR, - message: t("authenticationProvider:" + - "notifications.getConnectionDetails.error.message") - })); - - return; - } - - dispatch(addAlert({ - description: t("authenticationProvider:" + - "notifications.getConnectionDetails.genericError.description"), - level: AlertLevels.ERROR, - message: t("authenticationProvider:" + - "notifications.getConnectionDetails.genericError.message") - })); - }) - .finally(() => { - setConnectorDetailFetchRequestLoading(false); - }); - }; - - if (useAuthenticatorsAPI) { - getAuthenticatorDetails(getLocalAuthenticator); - - return; - } - - getAuthenticatorDetails(getMultiFactorAuthenticatorDetails); - }; - - /** - * Handles the back button click event. - */ - const handleBackButtonClick = (): void => { - - history.push(AppConstants.getPaths().get("IDP")); - }; - - /** - * Called when an idp is deleted. - */ - const handleIdentityProviderDelete = (): void => { - - history.push(AppConstants.getPaths().get("IDP")); - }; - - /** - * Called when an idp updates. - * - * @param id - IDP id. - */ - const handleIdentityProviderUpdate = (id: string): void => { - - getIdentityProvider(id); - }; - - /** - * Called when an Multi-factor authenticator updates. - * - * @param id - Authenticator id. - */ - const handleMultiFactorAuthenticatorUpdate = (id: string): void => { - - if (!identityProviderConfig) { - return; - } - - const authenticatorConfig: AuthenticatorExtensionsConfigInterface = get(identityProviderConfig - .authenticators, id); - - getMultiFactorAuthenticator(id, authenticatorConfig?.useAuthenticatorsAPI); - }; - - /** - * Resolves the connector status label. - * - * @param connector - Evaluating connector. - * - * @returns React element. - */ - const resolveStatusLabel = (connector: IdentityProviderInterface - | MultiFactorAuthenticatorInterface): ReactElement => { - - // Return `null` if connector is not defined. - if (!connector) { - return null; - } - - // Return `null` if connector is not an IdP. - if (!IdentityProviderManagementUtils.isConnectorIdentityProvider(connector)) { - return null; - } - - if (connector?.isEnabled) { - return ( - - ); - } else { - return ( - - ); - } - }; - - /** - * Resolves the connector image. - * - * @param connector - Evaluating connector. - * - * @returns React element. - */ - const resolveConnectorImage = (connector: IdentityProviderInterface - | MultiFactorAuthenticatorInterface): ReactElement => { - - if (!connector) { - return ( - - ); - } - - if (IdentityProviderManagementUtils.isConnectorIdentityProvider(connector)) { - if (connector.image) { - return ( - - ); - } - - return ( - - ); - } - - return ( - - ); - }; - - /** - * Resolves the connector name. - * - * @param connector - Evaluating connector. - * - * @returns React element. - */ - const resolveConnectorName = (connector: IdentityProviderInterface - | MultiFactorAuthenticatorInterface): ReactNode => { - - if (!connector) { - return null; - } - - if (IdentityProviderManagementUtils.isConnectorIdentityProvider(connector)) { - - return ( - - { connector.name } - { - (isConnectorDetailsFetchRequestLoading === false - && connector.name) && resolveStatusLabel(connector) - } - - ); - } - - if (connector.id === IdentityProviderManagementConstants.FIDO_AUTHENTICATOR_ID) { - connector.displayName = identityProviderConfig.getOverriddenAuthenticatorDisplayName( - connector.id, connector.displayName); - } - - return connector.friendlyName || connector.displayName || connector.name; - }; - - /** - * Resolves the connector description. - * - * @param connector - Evaluating connector. - * - * @returns React element. - */ - const resolveConnectorDescription = (connector: IdentityProviderInterface - | MultiFactorAuthenticatorInterface): ReactNode => { - - if (!connector) { - return null; - } - - if (IdentityProviderManagementUtils.isConnectorIdentityProvider(connector)) { - - return ( -
    - { - identityProviderTemplate?.name && - - } - { connector?.description } - ) } - /> -
    - ); - } - - return ( -
    - { - connector?.description - ? ( - { connector?.description } - ) } - /> - ) - : AuthenticatorMeta.getAuthenticatorDescription( - connector.id - ) - } -
    - ); - }; - - return ( - - { - IdentityProviderManagementUtils.isConnectorIdentityProvider(connector) - ? ( - setIsExtensionsAvailable(isAvailable) - } - type={ identityProviderTemplate?.id } - isReadOnly={ isReadOnly } - isAutomaticTabRedirectionEnabled={ isAutomaticTabRedirectionEnabled } - tabIdentifier={ tabIdentifier } - /> - ) - : ( - - ) - } - - ); -}; - -/** - * Default proptypes for the IDP edit page component. - */ -IdentityProviderEditPage.defaultProps = { - "data-testid": "idp-edit-page" -}; - -/** - * A default export was added to support React.lazy. - * TODO: Change this to a named export once react starts supporting named exports for code splitting. - * @see {@link https://reactjs.org/docs/code-splitting.html#reactlazy} - */ -export default IdentityProviderEditPage; diff --git a/features/admin.template-core.v1/components/forms/handlers/validation/required-field.ts b/features/admin.template-core.v1/components/forms/handlers/validation/required-field.ts index 60d4df91ebe..bc69d0c9d17 100644 --- a/features/admin.template-core.v1/components/forms/handlers/validation/required-field.ts +++ b/features/admin.template-core.v1/components/forms/handlers/validation/required-field.ts @@ -24,7 +24,7 @@ */ const requiredField = (value: unknown): string | null => { if (!value) { - return "applications:forms.dynamicApplicationCreateWizard.common.validations.required"; + return "templateCore:forms.resourceCreateWizard.common.validations.required"; } return null; diff --git a/features/admin.template-core.v1/components/forms/handlers/validation/url-validation.ts b/features/admin.template-core.v1/components/forms/handlers/validation/url-validation.ts index 1164c7ff9b1..c46e66370f7 100644 --- a/features/admin.template-core.v1/components/forms/handlers/validation/url-validation.ts +++ b/features/admin.template-core.v1/components/forms/handlers/validation/url-validation.ts @@ -28,7 +28,7 @@ const validateURL = (url: string): string | null => { const isValidURL: boolean = URLUtils.isURLValid(url); if (!isValidURL) { - return "applications:forms.dynamicApplicationCreateWizard.domainName.validations.invalid"; + return "templateCore:forms.resourceCreateWizard.domainName.validations.invalid"; } return null; diff --git a/features/admin.template-core.v1/constants/templates.ts b/features/admin.template-core.v1/constants/templates.ts index b881d62909c..0df33df760f 100644 --- a/features/admin.template-core.v1/constants/templates.ts +++ b/features/admin.template-core.v1/constants/templates.ts @@ -25,8 +25,8 @@ export class ExtensionTemplateConstants { public static readonly CONSOLE_BASE_URL_PLACEHOLDER: string = "${CONSOLE_BASE_URL}"; public static readonly OTHER_CATEGORY_INFO: ExtensionTemplateCategoryInterface = { - description: "extensionTemplates:categories.other.description", - displayName: "extensionTemplates:categories.other.displayName", + description: "templateCore:categories.other.description", + displayName: "templateCore:categories.other.displayName", displayOrder: Infinity, id: "OTHER" } diff --git a/features/admin.template-core.v1/provider/extension-templates-provider.tsx b/features/admin.template-core.v1/provider/extension-templates-provider.tsx index e47ab1ca2fd..70ecc9bd164 100644 --- a/features/admin.template-core.v1/provider/extension-templates-provider.tsx +++ b/features/admin.template-core.v1/provider/extension-templates-provider.tsx @@ -128,7 +128,7 @@ const ExtensionTemplatesProvider: FunctionComponent< dispatch(addAlert({ description: extensionTemplatesFetchRequestError.response.data.description, level: AlertLevels.ERROR, - message: t("extensionTemplates:notifications." + + message: t("templateCore:notifications." + "fetchTemplates.error.message") })); @@ -136,10 +136,10 @@ const ExtensionTemplatesProvider: FunctionComponent< } dispatch(addAlert({ - description: t("extensionTemplates:notifications.fetchTemplates" + + description: t("templateCore:notifications.fetchTemplates" + ".genericError.description", { type: resourceType }), level: AlertLevels.ERROR, - message: t("extensionTemplates:notifications." + + message: t("templateCore:notifications." + "fetchTemplates.genericError.message") })); }, [ extensionTemplatesFetchRequestError ]); diff --git a/features/index.ts b/features/index.ts index 9678d057682..2e5bf832e37 100644 --- a/features/index.ts +++ b/features/index.ts @@ -18,6 +18,7 @@ export * from "./admin.api-resources.v2/public-api"; export * from "./admin.application-roles.v1/public-api"; +export * from "./admin.application-templates.v1/public-api"; export * from "./admin.applications.v1/public-api"; export * from "./admin.authentication.v1/public-api"; export * from "./admin.authorization.v1/public-api"; diff --git a/modules/i18n/src/constants.ts b/modules/i18n/src/constants.ts index e8cb8c2c61b..619f0f25fd7 100644 --- a/modules/i18n/src/constants.ts +++ b/modules/i18n/src/constants.ts @@ -311,5 +311,5 @@ export class I18nModuleConstants { * @type {string} * @default */ - public static readonly EXTENSION_TEMPLATES_NAMESPACE: string = "extensionTemplates"; + public static readonly TEMPLATE_CORE_NAMESPACE: string = "templateCore"; } diff --git a/modules/i18n/src/models/namespaces/application-templates-ns.ts b/modules/i18n/src/models/namespaces/application-templates-ns.ts index 09d23e830e0..17e49bc4122 100644 --- a/modules/i18n/src/models/namespaces/application-templates-ns.ts +++ b/modules/i18n/src/models/namespaces/application-templates-ns.ts @@ -26,7 +26,7 @@ export interface applicationTemplatesNS { displayName: string; description: string; }; - }, + }; notifications: { fetchTemplateMetadata: { error: { @@ -48,5 +48,14 @@ export interface applicationTemplatesNS { description: string; }; }; - } + }; + placeholders: { + emptyApplicationTypeList: { + title: string; + subtitles: { + 0: string; + 1: string; + }; + }; + }; } diff --git a/modules/i18n/src/models/namespaces/applications-ns.ts b/modules/i18n/src/models/namespaces/applications-ns.ts index beabc90abe9..903d1179006 100644 --- a/modules/i18n/src/models/namespaces/applications-ns.ts +++ b/modules/i18n/src/models/namespaces/applications-ns.ts @@ -1889,18 +1889,6 @@ export interface ApplicationsNS { }; urlDeepLinkError: string; }; - }; - dynamicApplicationCreateWizard: { - common: { - validations: { - required: string; - } - }, - domainName: { - validations: { - invalid: string; - } - } } }; helpPanel: { @@ -2322,16 +2310,6 @@ export interface ApplicationsNS { description: string; }; }; - fetchTemplateMetadata: { - error: { - message: string; - description: string; - }; - genericError: { - message: string; - description: string; - }; - }; fetchTemplate: { error: { message: string; @@ -2438,20 +2416,6 @@ export interface ApplicationsNS { description: string; }; }; - syncApplication: { - error: { - message: string; - description: string; - }; - genericError: { - message: string; - description: string; - }; - success: { - message: string; - description: string; - }; - }; disableApplication: { error: { message: string; @@ -2609,13 +2573,6 @@ export interface ApplicationsNS { }; }; placeholders: { - emptyApplicationTypeList: { - title: string; - subtitles: { - 0: string; - 1: string; - }; - }; emptyAttributesList: { action: string; title: string; diff --git a/modules/i18n/src/models/namespaces/common-ns.ts b/modules/i18n/src/models/namespaces/common-ns.ts index 9c9548b8968..66fbdcd98ed 100644 --- a/modules/i18n/src/models/namespaces/common-ns.ts +++ b/modules/i18n/src/models/namespaces/common-ns.ts @@ -151,7 +151,6 @@ export interface CommonNS { showMore: string; showPassword: string; skip: string; - sync: string; generatePassword: string; startsWith: string; step: string; diff --git a/modules/i18n/src/models/namespaces/index.ts b/modules/i18n/src/models/namespaces/index.ts index 95b077bc399..821dc494ddf 100644 --- a/modules/i18n/src/models/namespaces/index.ts +++ b/modules/i18n/src/models/namespaces/index.ts @@ -50,7 +50,7 @@ export * from "./console-settings-ns"; export * from "./secrets-ns"; export * from "./branding-ns"; export * from "./email-templates-ns"; -export * from "./extension-templates-ns"; +export * from "./template-core-ns"; export * from "./application-templates-ns"; export * from "./certificates-ns"; export * from "./authentication-provider-ns"; diff --git a/modules/i18n/src/models/namespaces/extension-templates-ns.ts b/modules/i18n/src/models/namespaces/template-core-ns.ts similarity index 77% rename from modules/i18n/src/models/namespaces/extension-templates-ns.ts rename to modules/i18n/src/models/namespaces/template-core-ns.ts index 683b679bc2c..e10e09a3271 100644 --- a/modules/i18n/src/models/namespaces/extension-templates-ns.ts +++ b/modules/i18n/src/models/namespaces/template-core-ns.ts @@ -16,13 +16,27 @@ * under the License. */ -export interface extensionTemplatesNS { +export interface templateCoreNS { categories: { other: { displayName: string; description: string; }; }; + forms: { + resourceCreateWizard: { + common: { + validations: { + required: string; + } + }, + url: { + validations: { + invalid: string; + } + } + }; + }; notifications: { fetchTemplates: { error: { diff --git a/modules/i18n/src/translations/de-DE/portals/common.ts b/modules/i18n/src/translations/de-DE/portals/common.ts index 6652a0136a6..22f024916ae 100644 --- a/modules/i18n/src/translations/de-DE/portals/common.ts +++ b/modules/i18n/src/translations/de-DE/portals/common.ts @@ -174,7 +174,6 @@ export const common: CommonNS = { "strong": "stark", "submit": "einreichen", "switch": "Schalter", - "sync": "Synchronisieren", "technologies": "Technologien", "terminate": "Beenden", "terminateAll": "Alle beenden", diff --git a/modules/i18n/src/translations/en-US/portals/application-templates.ts b/modules/i18n/src/translations/en-US/portals/application-templates.ts index 00e6f2938f3..76577537317 100644 --- a/modules/i18n/src/translations/en-US/portals/application-templates.ts +++ b/modules/i18n/src/translations/en-US/portals/application-templates.ts @@ -50,5 +50,14 @@ export const applicationTemplates: applicationTemplatesNS = { message: "Something went wrong" } } + }, + placeholders: { + emptyApplicationTypeList: { + subtitles: { + 0: "There are currently no application types available.", + 1: "for configuration." + }, + title: "No application types found" + } } }; diff --git a/modules/i18n/src/translations/en-US/portals/applications.ts b/modules/i18n/src/translations/en-US/portals/applications.ts index accea1b0b33..0df3e957879 100644 --- a/modules/i18n/src/translations/en-US/portals/applications.ts +++ b/modules/i18n/src/translations/en-US/portals/applications.ts @@ -2201,18 +2201,6 @@ export const applications: ApplicationsNS = { }, urlDeepLinkError: "The entered URL is not a deep link." } - }, - dynamicApplicationCreateWizard: { - common: { - validations: { - required: "This is a required field." - } - }, - domainName: { - validations: { - invalid: "Invalid domain name. Please enter a valid domain name." - } - } } }, helpPanel: { @@ -2676,16 +2664,6 @@ export const applications: ApplicationsNS = { message: "Retrieval successful" } }, - fetchTemplateMetadata: { - error: { - description: "{{description}}", - message: "Retrieval error" - }, - genericError: { - description: "An error occurred while retrieving application template meta data.", - message: "Something went wrong" - } - }, fetchTemplate: { error: { description: "{{description}}", @@ -2807,20 +2785,6 @@ export const applications: ApplicationsNS = { message: "Update successful" } }, - syncApplication: { - error: { - description: "{{description}}", - message: "Sync error" - }, - genericError: { - description: "Failed to sync the application.", - message: "Something went wrong" - }, - success: { - description: "Successfully synced the application.", - message: "Sync successful" - } - }, disableApplication: { error: { description: "{{description}}", @@ -2930,13 +2894,6 @@ export const applications: ApplicationsNS = { } }, placeholders: { - emptyApplicationTypeList: { - subtitles: { - 0: "There are currently no application types available.", - 1: "for configuration." - }, - title: "No application types found" - }, emptyAttributesList: { action: "Add User Attribute", subtitles: "There are no user attributes selected for the application at the moment.", diff --git a/modules/i18n/src/translations/en-US/portals/common.ts b/modules/i18n/src/translations/en-US/portals/common.ts index bee3c279713..966656a16a5 100755 --- a/modules/i18n/src/translations/en-US/portals/common.ts +++ b/modules/i18n/src/translations/en-US/portals/common.ts @@ -174,7 +174,6 @@ export const common: CommonNS = { strong: "Strong", submit: "Submit", switch: "Switch", - sync: "Sync", technologies: "Technologies", terminate: "Terminate", terminateAll: "Terminate all", diff --git a/modules/i18n/src/translations/en-US/portals/index.ts b/modules/i18n/src/translations/en-US/portals/index.ts index 9625735a18d..6acf763e819 100644 --- a/modules/i18n/src/translations/en-US/portals/index.ts +++ b/modules/i18n/src/translations/en-US/portals/index.ts @@ -58,5 +58,5 @@ export * from "./applications"; export * from "./idp"; export * from "./api-resources"; export * from "./ai"; -export * from "./extension-templates"; +export * from "./template-core"; export * from "./application-templates"; diff --git a/modules/i18n/src/translations/en-US/portals/extension-templates.ts b/modules/i18n/src/translations/en-US/portals/template-core.ts similarity index 74% rename from modules/i18n/src/translations/en-US/portals/extension-templates.ts rename to modules/i18n/src/translations/en-US/portals/template-core.ts index 5bb3e97d570..06020f10aa5 100644 --- a/modules/i18n/src/translations/en-US/portals/extension-templates.ts +++ b/modules/i18n/src/translations/en-US/portals/template-core.ts @@ -15,15 +15,29 @@ * specific language governing permissions and limitations * under the License. */ -import { extensionTemplatesNS } from "../../../models"; +import { templateCoreNS } from "../../../models"; -export const extensionTemplates: extensionTemplatesNS = { +export const templateCore: templateCoreNS = { categories: { other: { description: "Other types of un-categorized integrations.", displayName: "Others" } }, + forms: { + resourceCreateWizard: { + common: { + validations: { + required: "This is a required field." + } + }, + url: { + validations: { + invalid: "Invalid URL. Please enter a valid URL." + } + } + } + }, notifications: { fetchTemplates: { error: { diff --git a/modules/i18n/src/translations/es-ES/portals/common.ts b/modules/i18n/src/translations/es-ES/portals/common.ts index a3cab38ef8b..f126bf26453 100644 --- a/modules/i18n/src/translations/es-ES/portals/common.ts +++ b/modules/i18n/src/translations/es-ES/portals/common.ts @@ -174,7 +174,6 @@ export const common: CommonNS = { strong: "Fuerte", submit: "Enviar", switch: "Cambiar", - sync: "Sincronizar", technologies: "Tecnologías", terminate: "Terminar", terminateAll: "Terminar todo", diff --git a/modules/i18n/src/translations/fr-FR/portals/common.ts b/modules/i18n/src/translations/fr-FR/portals/common.ts index 57858c459e0..c5d39412419 100755 --- a/modules/i18n/src/translations/fr-FR/portals/common.ts +++ b/modules/i18n/src/translations/fr-FR/portals/common.ts @@ -175,7 +175,6 @@ export const common: CommonNS = { strong: "Fort", submit: "Valider", switch: "Changer", - sync: "Synchroniser", technologies: "Technologies", terminate: "Terminer", terminateAll: "Tout terminer", diff --git a/modules/i18n/src/translations/ja-JP/portals/common.ts b/modules/i18n/src/translations/ja-JP/portals/common.ts index 0dc7a99dfd7..34538f08064 100644 --- a/modules/i18n/src/translations/ja-JP/portals/common.ts +++ b/modules/i18n/src/translations/ja-JP/portals/common.ts @@ -174,7 +174,6 @@ export const common: CommonNS = { "strong": "強い", "submit": "提出する", "switch": "スイッチ", - "sync": "同期", "technologies": "テクノロジー", "terminate": "終了します", "terminateAll": "すべてを終了します", diff --git a/modules/i18n/src/translations/pt-BR/portals/common.ts b/modules/i18n/src/translations/pt-BR/portals/common.ts index 5bf268b8046..ab071f6349b 100755 --- a/modules/i18n/src/translations/pt-BR/portals/common.ts +++ b/modules/i18n/src/translations/pt-BR/portals/common.ts @@ -174,7 +174,6 @@ export const common: CommonNS = { strong: "Forte", submit: "Enviar", switch: "Alternar", - sync: "Sincronizar", technologies: "Tecnologias", terminate: "Encerrar", terminateAll: "Encerrar todos", diff --git a/modules/i18n/src/translations/pt-PT/portals/common.ts b/modules/i18n/src/translations/pt-PT/portals/common.ts index e1ac91079fa..f1042c6b17e 100755 --- a/modules/i18n/src/translations/pt-PT/portals/common.ts +++ b/modules/i18n/src/translations/pt-PT/portals/common.ts @@ -174,7 +174,6 @@ export const common: CommonNS = { strong: "Forte", submit: "Enviar", switch: "Interruptor", - sync: "Sincronizar", technologies: "Tecnologias", terminate: "Terminar", terminateAll: "Terminar tudo", diff --git a/modules/i18n/src/translations/si-LK/portals/common.ts b/modules/i18n/src/translations/si-LK/portals/common.ts index 26ce23d6187..01fa09c9e6c 100755 --- a/modules/i18n/src/translations/si-LK/portals/common.ts +++ b/modules/i18n/src/translations/si-LK/portals/common.ts @@ -174,7 +174,6 @@ export const common: CommonNS = { strong: "ශක්තිමත්", submit: "ඉදිරිපත් කරන්න", switch: "මාරු කරන්න", - sync: "සමමුහුර්ත කරන්න", technologies: "තාක්ෂණයන්", terminate: "අවසන් කරන්න", terminateAll: "සියල්ල අවසන් කරන්න", diff --git a/modules/i18n/src/translations/ta-IN/portals/common.ts b/modules/i18n/src/translations/ta-IN/portals/common.ts index 19e6b9467fa..a7ece5ef710 100755 --- a/modules/i18n/src/translations/ta-IN/portals/common.ts +++ b/modules/i18n/src/translations/ta-IN/portals/common.ts @@ -175,7 +175,6 @@ export const common: CommonNS = { strong: "வலுவான", submit: "சமர்ப்பி", switch: "மாற்று", - sync: "ஒத்திசை", technologies: "தொழில்நுட்பங்கள்", terminate: "முடி", terminateAll: "அனைத்தையும் முடி", diff --git a/modules/i18n/src/translations/zh-CN/portals/common.ts b/modules/i18n/src/translations/zh-CN/portals/common.ts index 11f9b8ba898..a0b60b1a48a 100755 --- a/modules/i18n/src/translations/zh-CN/portals/common.ts +++ b/modules/i18n/src/translations/zh-CN/portals/common.ts @@ -174,7 +174,6 @@ export const common: CommonNS = { "strong": "强的", "submit": "提交", "switch": "转变", - "sync": "同步", "technologies": "技术", "terminate": "终止", "terminateAll": "终止所有", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 29027f84c80..1c6d99938d5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2004,9 +2004,6 @@ importers: '@wso2is/validation': specifier: ^2.0.5 version: link:../../modules/validation - ajv: - specifier: ^8.16.0 - version: 8.16.0 axios: specifier: ^0.19.2 version: 0.19.2 From dfcf7e05463ebd5191dd6f06f8ce6d0098159192 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Sun, 14 Jul 2024 15:27:24 +0530 Subject: [PATCH 064/114] add missing semi colon --- modules/i18n/src/models/namespaces/applications-ns.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/i18n/src/models/namespaces/applications-ns.ts b/modules/i18n/src/models/namespaces/applications-ns.ts index 903d1179006..b1ab8b549a1 100644 --- a/modules/i18n/src/models/namespaces/applications-ns.ts +++ b/modules/i18n/src/models/namespaces/applications-ns.ts @@ -1889,7 +1889,7 @@ export interface ApplicationsNS { }; urlDeepLinkError: string; }; - } + }; }; helpPanel: { tabs: { From 50ca72303a37786a1150106214d041d15c63f8f1 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Sun, 14 Jul 2024 17:41:38 +0530 Subject: [PATCH 065/114] add support to hide the application tab components through template --- .../application-tab-components-filter.tsx | 113 + .../models/templates.ts | 5 + .../components/forms/inbound-saml-form.tsx | 2490 +++++++++-------- 3 files changed, 1370 insertions(+), 1238 deletions(-) create mode 100644 features/admin.application-templates.v1/components/application-tab-components-filter.tsx diff --git a/features/admin.application-templates.v1/components/application-tab-components-filter.tsx b/features/admin.application-templates.v1/components/application-tab-components-filter.tsx new file mode 100644 index 00000000000..543d4f6a3af --- /dev/null +++ b/features/admin.application-templates.v1/components/application-tab-components-filter.tsx @@ -0,0 +1,113 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { IdentifiableComponentInterface } from "@wso2is/core/models"; +import { ContentLoader } from "@wso2is/react-components"; +import React, { FunctionComponent, PropsWithChildren, ReactElement, ReactNode, useMemo } from "react"; +import { Grid } from "semantic-ui-react"; +import { ApplicationTabIDs } from "../../admin.extensions.v1"; +import useApplicationTemplateMetadata from "../hooks/use-application-template-metadata"; +import { ApplicationEditTabMetadataInterface } from "../models/templates"; + +/** + * Prop types of the `ApplicationTabComponentsFilter` component. + */ +export interface ApplicationTabComponentsFilterPropsInterface extends IdentifiableComponentInterface { + /** + * Current tab id. + */ + tabId: ApplicationTabIDs; +} + +/** + * Application tab components filtering component. + * + * @param Props - Props to be injected into the component. + */ +export const ApplicationTabComponentsFilter: FunctionComponent< + PropsWithChildren +> = ( + props: PropsWithChildren +): ReactElement => { + const { + tabId, + children + } = props; + + const { + templateMetadata, + isTemplateMetadataRequestLoading + } = useApplicationTemplateMetadata(); + + /** + * Extract the data-component IDs that need to be hidden in the current application tab. + */ + const hiddenComponents: string[] = useMemo(() => { + let componentList: string[] = []; + + templateMetadata?.edit?.tabs?.forEach((tab: ApplicationEditTabMetadataInterface) => { + if (tab?.id === tabId) { + if (tab?.hiddenComponents + && Array.isArray(tab?.hiddenComponents) + && tab?.hiddenComponents?.length > 0) { + componentList = tab?.hiddenComponents; + } + } + }); + + return componentList; + }, [ templateMetadata, tabId ]); + + return ( + isTemplateMetadataRequestLoading || !hiddenComponents + ? ( + + + + + + ) + : hiddenComponents?.length === 0 + ? ( + <> + { children } + + ) : ( + <> + { + React.Children.map(children, (child: ReactNode) => { + const componentId: string = child?.["props"]?.["data-componentid"]; + + if (componentId && hiddenComponents?.includes(componentId)) { + return null; + } + + return child; + }) + } + + ) + ); +}; + +/** + * Default props for the `ApplicationTabComponentsFilter` component. + */ +ApplicationTabComponentsFilter.defaultProps = { + "data-componentid": "application-tab-components-filter" +}; diff --git a/features/admin.application-templates.v1/models/templates.ts b/features/admin.application-templates.v1/models/templates.ts index 233288930cf..2e274fcc126 100644 --- a/features/admin.application-templates.v1/models/templates.ts +++ b/features/admin.application-templates.v1/models/templates.ts @@ -108,6 +108,11 @@ export interface ApplicationEditTabMetadataInterface { * Guide content for application editing section. */ guide?: string; + /** + * Component IDs that need to be hidden from a predefined tab. + * This is only effective if the `contentType` is not defined. + */ + hiddenComponents?: string[]; } /** diff --git a/features/admin.applications.v1/components/forms/inbound-saml-form.tsx b/features/admin.applications.v1/components/forms/inbound-saml-form.tsx index 8c26b51eaa5..565e605b62f 100644 --- a/features/admin.applications.v1/components/forms/inbound-saml-form.tsx +++ b/features/admin.applications.v1/components/forms/inbound-saml-form.tsx @@ -15,8 +15,11 @@ * specific language governing permissions and limitations * under the License. */ + +import { ApplicationTabComponentsFilter } from + "@wso2is/admin.application-templates.v1/components/application-tab-components-filter"; import { AppState, ConfigReducerStateInterface } from "@wso2is/admin.core.v1"; -import { applicationConfig, commonConfig } from "@wso2is/admin.extensions.v1"; +import { ApplicationTabIDs, applicationConfig, commonConfig } from "@wso2is/admin.extensions.v1"; import { getAvailableNameIDFormats } from "@wso2is/admin.identity-providers.v1/components/utils/saml-idp-utils"; import { TestableComponentInterface } from "@wso2is/core/models"; import { URLUtils } from "@wso2is/core/utils"; @@ -528,63 +531,64 @@ export const InboundSAMLForm: FunctionComponent = ) } - - - - { - initialValues?.issuer - ? ( - -
    - -
    - -
    - ) - : ( - - ) - } - - - This specifies the unique identifier of the application. This is also the - saml2:Issuer value specified in the SAML - authentication request issued by the application. - - -
    -
    - { - (applicationConfig.inboundSAMLForm.showApplicationQualifier) && ( - <> + + + + { + initialValues?.issuer + ? ( + +
    + +
    + +
    + ) + : ( + + ) + } + + + This specifies the unique identifier of the application. This is also the + saml2:Issuer value specified in the SAML + authentication request issued by the application. + + +
    +
    + { + (applicationConfig.inboundSAMLForm.showApplicationQualifier) && ( = - - ) - } -
    - - - { - setAssertionConsumerUrls(url); - - if (initialValues?.assertionConsumerUrls?.toString() !== url) { - setIsFormStale(true); - } - } } - labelName={ - t("applications:forms.inboundSAML.fields" + - ".assertionURLs.label") - } - value={ initialValues?.assertionConsumerUrls.toString() } - placeholder={ - t("applications:forms.inboundSAML.fields" + - ".assertionURLs" + - ".placeholder") - } - validationErrorMsg={ - t("applications:forms.inboundSAML.fields" + - ".assertionURLs" + - ".validations.invalid") - } - validation={ (value: string) => { - - let label: ReactElement = null; + ) + } +
    + + + { + setAssertionConsumerUrls(url); - if (!URLUtils.isHttpsOrHttpUrl(value)) { - label = ( - - ); + if (initialValues?.assertionConsumerUrls?.toString() !== url) { + setIsFormStale(true); + } + } } + labelName={ + t("applications:forms.inboundSAML.fields" + + ".assertionURLs.label") } - - if (!URLUtils.isMobileDeepLink(value)) { - return false; + value={ initialValues?.assertionConsumerUrls.toString() } + placeholder={ + t("applications:forms.inboundSAML.fields" + + ".assertionURLs" + + ".placeholder") } + validationErrorMsg={ + t("applications:forms.inboundSAML.fields" + + ".assertionURLs" + + ".validations.invalid") + } + validation={ (value: string) => { - setAssertionConsumerURLsErrorLabel(label); + let label: ReactElement = null; - return true; - } } - required={ true } - showError={ showAssertionConsumerUrlError } - setShowError={ setAssertionConsumerUrlError } - hint={ - t("applications:forms.inboundSAML.fields" + - ".assertionURLs.hint") - } - readOnly={ readOnly } - addURLTooltip={ t("common:addURL") } - duplicateURLErrorMessage={ t("common:duplicateURLError") } - data-testid={ `${ testId }-assertion-consumer-url-input` } - showPredictions={ false } - customLabel={ assertionConsumerURLsErrorLabel } - popupHeaderPositive={ t("applications:URLInput.withLabel." - + "positive.header") } - popupHeaderNegative={ t("applications:URLInput.withLabel." - + "negative.header") } - popupContentPositive={ t("applications:URLInput.withLabel." - + "positive.content", { productName: config.ui.productName }) } - popupContentNegative={ t("applications:URLInput.withLabel." - + "negative.content", { productName: config.ui.productName }) } - popupDetailedContentPositive={ t("applications:URLInput." - + "withLabel.positive.detailedContent.0") } - popupDetailedContentNegative={ t("applications:URLInput." - + "withLabel.negative.detailedContent.0") } - insecureURLDescription={ t("console:common.validations.inSecureURL.description") } - showLessContent={ t("common:showLess") } - showMoreContent={ t("common:showMore") } - /> - - - - - - - - { t("applications:forms.inboundSAML.fields" + - ".defaultAssertionURL.hint") } - - - - - - { - if (!FormValidation.url(value)) { - validation.errorMessages.push( - t("applications:forms.inboundSAML.fields" + - ".idpEntityIdAlias.validations.invalid") - ); - validation.isValid = false; - } - } } - value={ initialValues?.idpEntityIdAlias } - readOnly={ readOnly } - data-testid={ `${ testId }-idp-entity-id-alias-input` } - /> - - + { t("console:common.validations.unrecognizedURL.description") } + + ); + } + + if (!URLUtils.isMobileDeepLink(value)) { + return false; + } + + setAssertionConsumerURLsErrorLabel(label); + + return true; } } - i18nKey={ - "applications:forms.inboundSAML.fields" + - ".idpEntityIdAlias.hint" - } - > - This value can override the default Identity Provider (IdP) entity ID - defaultIdpEntityID. The IdP entity ID is used as the - saml2:Issuer of the SAML response that is - generated by productName. - - - - - - { /*Request Validation*/ } - - - - - - - { t("applications:forms.inboundSAML.sections" + - ".requestValidation.heading") } - - - - { - isSignatureValidationCertificateAliasEnabled && ( - - - + + + + + + + + { t("applications:forms.inboundSAML.fields" + + ".defaultAssertionURL.hint") } + + + + + + { + if (!FormValidation.url(value)) { + validation.errorMessages.push( + t("applications:forms.inboundSAML.fields" + + ".idpEntityIdAlias.validations.invalid") + ); + validation.isValid = false; } - name="signatureValidationCertAlias" - type="dropdown" - required={ false } - disabled={ !isRequestSignatureValidationEnabled } - value={ initialValues?.requestValidation.signatureValidationCertAlias } - requiredErrorMessage={ - t("applications:forms.inboundSAML.sections" + - ".requestValidation.fields.signatureValidationCertAlias.validations" + - ".empty") + } } + value={ initialValues?.idpEntityIdAlias } + readOnly={ readOnly } + data-testid={ `${ testId }-idp-entity-id-alias-input` } + /> + + - - { t("applications:forms.inboundSAML.sections" + - ".requestValidation.fields.signatureValidationCertAlias.hint") } - - - - ) - } + > + This value can override the default Identity Provider (IdP) entity ID + defaultIdpEntityID. The IdP entity ID is used as the + saml2:Issuer of the SAML response that is + generated by productName. + + +
    +
    - { /*Response/Assertion Signing*/ } - - - - - - - { t("applications:forms.inboundSAML.sections" + - ".responseSigning.heading") } - - - - - - - - - - - - - - - { /*Single SignOn Profile*/ } - - - - - - - { t("applications:forms.inboundSAML.sections" + - ".ssoProfile.heading") } - - - - { - isArtifactBindingAllowed - ? ( +
    + { + isSignatureValidationCertificateAliasEnabled && ( - + { t("applications:forms.inboundSAML.sections" + - ".ssoProfile.fields.artifactBinding.hint") } + ".requestValidation.fields.signatureValidationCertAlias.hint") } ) - : null - } - - - - - { t("applications:forms.inboundSAML." + - "sections.ssoProfile.fields.idpInitiatedSSO.hint") } - - - - - - - - - - { t("applications:forms.inboundSAML.sections.assertion" + - ".heading") } - - - -
    - - - { - setAudiences(url); - - if (initialValues - ?.singleSignOnProfile?.assertion?.audiences?.toString() !== url) { - setIsFormStale(true); - } - } } - labelName={ - t("applications:forms.inboundSAML.sections" + - ".assertion.fields.audience.label") - } - value={ initialValues?.singleSignOnProfile.assertion.audiences.toString() } - placeholder={ - t("applications:forms.inboundSAML.sections" + - ".assertion.fields.audience.placeholder") - } - validationErrorMsg={ - t("applications:forms.inboundSAML.sections" + - ".assertion.fields.audience.validations.invalid") - } - validation={ (value: string) => { - - let label: ReactElement = null; + } - if (!URLUtils.isHttpUrl(value) && !URLUtils.isHttpsUrl(value)) { - label = ( - - ); + { /*Response/Assertion Signing*/ } + + + + + + + { t("applications:forms.inboundSAML.sections" + + ".responseSigning.heading") } + + + + + + + + + + + + + - if (!URLUtils.isMobileDeepLink(value)) { - return false; + { /*Single SignOn Profile*/ } + + + + + + + { t("applications:forms.inboundSAML.sections" + + ".ssoProfile.heading") } + + + + { + isArtifactBindingAllowed + ? ( + + + + + { t("applications:forms.inboundSAML.sections" + + ".ssoProfile.fields.artifactBinding.hint") } + + + + ) + : null + } + + + + + { t("applications:forms.inboundSAML." + + "sections.ssoProfile.fields.idpInitiatedSSO.hint") } + + + + + + + + + + { t("applications:forms.inboundSAML.sections.assertion" + + ".heading") } + + + +
    + + + { + setAudiences(url); + + if (initialValues + ?.singleSignOnProfile?.assertion?.audiences?.toString() !== url) { + setIsFormStale(true); + } + } } + labelName={ + t("applications:forms.inboundSAML.sections" + + ".assertion.fields.audience.label") + } + value={ initialValues?.singleSignOnProfile.assertion.audiences.toString() } + placeholder={ + t("applications:forms.inboundSAML.sections" + + ".assertion.fields.audience.placeholder") + } + validationErrorMsg={ + t("applications:forms.inboundSAML.sections" + + ".assertion.fields.audience.validations.invalid") } + validation={ (value: string) => { - setAudiencesErrorLabel(label); + let label: ReactElement = null; - return true; - } } - showError={ showAudienceError } - setShowError={ setAudienceError } - hint={ - t("applications:forms.inboundSAML.sections" + - ".assertion.fields.audience.hint") - } - readOnly={ readOnly } - addURLTooltip={ t("common:addURL") } - duplicateURLErrorMessage={ t("common:duplicateURLError") } - data-testid={ `${ testId }-audience-url-input` } - showPredictions={ false } - customLabel={ audiencesErrorLabel } - popupHeaderPositive={ t("applications:URLInput.withLabel." - + "positive.header") } - popupHeaderNegative={ t("applications:URLInput.withLabel." - + "negative.header") } - popupContentPositive={ t("applications:URLInput.withLabel." - + "positive.content", { productName: config.ui.productName }) } - popupContentNegative={ t("applications:URLInput.withLabel." - + "negative.content", { productName: config.ui.productName }) } - popupDetailedContentPositive={ t("applications:URLInput." - + "withLabel.positive.detailedContent.0") } - popupDetailedContentNegative={ t("applications:URLInput." - + "withLabel.negative.detailedContent.0") } - insecureURLDescription={ t("console:common.validations.inSecureURL.description") } - showLessContent={ t("common:showLess") } - showMoreContent={ t("common:showMore") } - /> - - -
    - - - { - setRecipients(url); - - if (initialValues - ?.singleSignOnProfile?.assertion?.recipients?.toString() !== url) { - setIsFormStale(true); - } - } } - labelName={ - t("applications:forms.inboundSAML.sections" + - ".assertion.fields.recipients.label") - } - value={ initialValues?.singleSignOnProfile.assertion.recipients.toString() } - placeholder={ - t("applications:forms.inboundSAML.sections" + - ".assertion.fields.recipients.placeholder") - } - validationErrorMsg={ - t("applications:forms.inboundSAML.sections" + - ".assertion.fields.recipients.validations.invalid") - } - validation={ (value: string) => { + if (!URLUtils.isHttpUrl(value) && !URLUtils.isHttpsUrl(value)) { + label = ( + + ); + } - let label: ReactElement = null; + if (!URLUtils.isMobileDeepLink(value)) { + return false; + } - if (!URLUtils.isHttpUrl(value) && !URLUtils.isHttpsUrl(value)) { - label = ( - - ); - } + setAudiencesErrorLabel(label); - if (!URLUtils.isMobileDeepLink(value)) { - return false; + return true; + } } + showError={ showAudienceError } + setShowError={ setAudienceError } + hint={ + t("applications:forms.inboundSAML.sections" + + ".assertion.fields.audience.hint") + } + readOnly={ readOnly } + addURLTooltip={ t("common:addURL") } + duplicateURLErrorMessage={ t("common:duplicateURLError") } + data-testid={ `${ testId }-audience-url-input` } + showPredictions={ false } + customLabel={ audiencesErrorLabel } + popupHeaderPositive={ t("applications:URLInput.withLabel." + + "positive.header") } + popupHeaderNegative={ t("applications:URLInput.withLabel." + + "negative.header") } + popupContentPositive={ t("applications:URLInput.withLabel." + + "positive.content", { productName: config.ui.productName }) } + popupContentNegative={ t("applications:URLInput.withLabel." + + "negative.content", { productName: config.ui.productName }) } + popupDetailedContentPositive={ t("applications:URLInput." + + "withLabel.positive.detailedContent.0") } + popupDetailedContentNegative={ t("applications:URLInput." + + "withLabel.negative.detailedContent.0") } + insecureURLDescription={ + t("console:common.validations.inSecureURL.description") } + showLessContent={ t("common:showLess") } + showMoreContent={ t("common:showMore") } + /> + + +
    + + + { + setRecipients(url); + + if (initialValues + ?.singleSignOnProfile?.assertion?.recipients?.toString() !== url) { + setIsFormStale(true); + } + } } + labelName={ + t("applications:forms.inboundSAML.sections" + + ".assertion.fields.recipients.label") } + value={ initialValues?.singleSignOnProfile.assertion.recipients.toString() } + placeholder={ + t("applications:forms.inboundSAML.sections" + + ".assertion.fields.recipients.placeholder") + } + validationErrorMsg={ + t("applications:forms.inboundSAML.sections" + + ".assertion.fields.recipients.validations.invalid") + } + validation={ (value: string) => { - setRecipientsErrorLabel(label); + let label: ReactElement = null; - return true; - } } - showError={ showRecipientsError } - setShowError={ setRecipientsError } - hint={ - t("applications:forms.inboundSAML.sections" + - ".assertion.fields.recipients.hint") - } - readOnly={ readOnly } - addURLTooltip={ t("common:addURL") } - duplicateURLErrorMessage={ t("common:duplicateURLError") } - data-testid={ `${ testId }-recipients-url-input` } - showPredictions={ false } - customLabel={ recipientsErrorLabel } - popupHeaderPositive={ t("applications:URLInput.withLabel." - + "positive.header") } - popupHeaderNegative={ t("applications:URLInput.withLabel." - + "negative.header") } - popupContentPositive={ t("applications:URLInput.withLabel." - + "positive.content", { productName: config.ui.productName }) } - popupContentNegative={ t("applications:URLInput.withLabel." - + "negative.content", { productName: config.ui.productName }) } - popupDetailedContentPositive={ t("applications:URLInput." - + "withLabel.positive.detailedContent.0") } - popupDetailedContentNegative={ t("applications:URLInput." - + "withLabel.negative.detailedContent.0") } - insecureURLDescription={ t("console:common.validations.inSecureURL.description") } - showLessContent={ t("common:showLess") } - showMoreContent={ t("common:showMore") } - /> - - - - - ) => { - setAssertionEncryptionEnabled( - values.get("assertionEncryption").includes("enableAssertionEncryption") - ); + if (!URLUtils.isHttpUrl(value) && !URLUtils.isHttpsUrl(value)) { + label = ( + + ); + } + + if (!URLUtils.isMobileDeepLink(value)) { + return false; + } + + setRecipientsErrorLabel(label); + + return true; + } } + showError={ showRecipientsError } + setShowError={ setRecipientsError } + hint={ + t("applications:forms.inboundSAML.sections" + + ".assertion.fields.recipients.hint") } - } - children={ [ - { - label: t("applications:forms.inboundSAML" + - ".sections.encryption.fields.assertionEncryption.label"), - value: "enableAssertionEncryption" - } - ] } - readOnly={ readOnly } - data-testid={ `${ testId }-assertion-encryption-checkbox` } - /> - - { t("applications:forms.inboundSAML" + - ".sections.encryption.fields.assertionEncryption.hint") } - - - - - - - - - - - - - - - - - - - - { t("applications:forms.inboundSAML.sections" + - ".attributeProfile.heading") } - - + + + + - - { t("applications:forms.inboundSAML.sections" + - ".attributeProfile.fields.enable.hint") } - - - - { - (applicationConfig.inboundSAMLForm.showAttributeConsumingServiceIndex) && ( - <> - - - - - { t("applications:forms.inboundSAML.sections" + - ".attributeProfile.fields.serviceIndex.hint") } - - - - - ) - } + value={ + (initialValues?.singleSignOnProfile.assertion.encryption.enabled) + ? [ "enableAssertionEncryption" ] + : [] + } + type="checkbox" + listen={ + (values: Map) => { + setAssertionEncryptionEnabled( + values + .get("assertionEncryption") + .includes("enableAssertionEncryption") + ); + } + } + children={ [ + { + label: t("applications:forms.inboundSAML" + + ".sections.encryption.fields.assertionEncryption.label"), + value: "enableAssertionEncryption" + } + ] } + readOnly={ readOnly } + data-testid={ `${ testId }-assertion-encryption-checkbox` } + /> + + { t("applications:forms.inboundSAML" + + ".sections.encryption.fields.assertionEncryption.hint") } + +
    +
    + + + + + + + + + + + + + + + + + { t("applications:forms.inboundSAML.sections" + + ".attributeProfile.heading") } + + + + { + (applicationConfig.inboundSAMLForm.showAttributeConsumingServiceIndex) && ( + <> + + + + + { t("applications:forms.inboundSAML.sections" + + ".attributeProfile.fields.serviceIndex.hint") } + + + + + ) + } - { /*Single Logout Profile*/ } - - - - - - - { t("applications:forms.inboundSAML.sections" + - ".sloProfile.heading") } - - + + + + + { t("applications:forms.inboundSAML.sections" + + ".idpInitiatedSLO.heading") } + + + +
    + { + setReturnToURLS(url); + + if (initialValues + ?.singleLogoutProfile + ?.idpInitiatedSingleLogout?.returnToUrls?.toString() !== url) { + setIsFormStale(true); + } + } } + labelName={ + t("applications:forms.inboundSAML.sections" + + ".idpInitiatedSLO.fields.returnToURLs.label") } - } } - labelName={ - t("applications:forms.inboundSAML.sections" + - ".idpInitiatedSLO.fields.returnToURLs.label") - } - value={ - initialValues?.singleLogoutProfile.idpInitiatedSingleLogout.returnToUrls.toString() - } - placeholder={ - t("applications:forms.inboundSAML.sections" + - ".idpInitiatedSLO.fields.returnToURLs.placeholder") - } - validationErrorMsg={ - t("applications:forms.inboundSAML.sections" + - ".idpInitiatedSLO.fields.returnToURLs.validations.invalid") - } - validation={ (value: string) => { - - let label: ReactElement = null; - - if (!URLUtils.isHttpUrl(value) && !URLUtils.isHttpsUrl(value)) { - label = ( - - ); + value={ + initialValues?.singleLogoutProfile.idpInitiatedSingleLogout.returnToUrls.toString() } - - if (!URLUtils.isMobileDeepLink(value)) { - return false; + placeholder={ + t("applications:forms.inboundSAML.sections" + + ".idpInitiatedSLO.fields.returnToURLs.placeholder") } - - setReturnToURLsErrorLabel(label); - - return true; - } } - showError={ returnToURLSError } - setShowError={ setReturnToURLSError } - disabled={ !isIdpInitiatedSingleLogoutEnabled || !isSingleLogoutProfileEnabled } - readOnly={ readOnly } - addURLTooltip={ t("common:addURL") } - duplicateURLErrorMessage={ t("common:duplicateURLError") } - data-testid={ `${ testId }-return-to-urls-input` } - showPredictions={ false } - customLabel={ returnToURLsErrorLabel } - popupHeaderPositive={ t("applications:URLInput.withLabel." - + "positive.header") } - popupHeaderNegative={ t("applications:URLInput.withLabel." - + "negative.header") } - popupContentPositive={ t("applications:URLInput.withLabel." - + "positive.content", { productName: config.ui.productName }) } - popupContentNegative={ t("applications:URLInput.withLabel." - + "negative.content", { productName: config.ui.productName }) } - popupDetailedContentPositive={ t("applications:URLInput." - + "withLabel.positive.detailedContent.0") } - popupDetailedContentNegative={ t("applications:URLInput." - + "withLabel.negative.detailedContent.0") } - insecureURLDescription={ t("console:common.validations.inSecureURL.description") } - showLessContent={ t("common:showLess") } - showMoreContent={ t("common:showMore") } - /> - - { t("applications:forms.inboundSAML.sections" + - ".idpInitiatedSLO.fields.returnToURLs.hint") + validationErrorMsg={ + t("applications:forms.inboundSAML.sections" + + ".idpInitiatedSLO.fields.returnToURLs.validations.invalid") + } + validation={ (value: string) => { + + let label: ReactElement = null; + + if (!URLUtils.isHttpUrl(value) && !URLUtils.isHttpsUrl(value)) { + label = ( + + ); + } + + if (!URLUtils.isMobileDeepLink(value)) { + return false; + } + + setReturnToURLsErrorLabel(label); + + return true; + } } + showError={ returnToURLSError } + setShowError={ setReturnToURLSError } + disabled={ !isIdpInitiatedSingleLogoutEnabled || !isSingleLogoutProfileEnabled } + readOnly={ readOnly } + addURLTooltip={ t("common:addURL") } + duplicateURLErrorMessage={ t("common:duplicateURLError") } + data-testid={ `${ testId }-return-to-urls-input` } + showPredictions={ false } + customLabel={ returnToURLsErrorLabel } + popupHeaderPositive={ t("applications:URLInput.withLabel." + + "positive.header") } + popupHeaderNegative={ t("applications:URLInput.withLabel." + + "negative.header") } + popupContentPositive={ t("applications:URLInput.withLabel." + + "positive.content", { productName: config.ui.productName }) } + popupContentNegative={ t("applications:URLInput.withLabel." + + "negative.content", { productName: config.ui.productName }) } + popupDetailedContentPositive={ t("applications:URLInput." + + "withLabel.positive.detailedContent.0") } + popupDetailedContentNegative={ t("applications:URLInput." + + "withLabel.negative.detailedContent.0") } + insecureURLDescription={ t("console:common.validations.inSecureURL.description") } + showLessContent={ t("common:showLess") } + showMoreContent={ t("common:showMore") } + /> + + { t("applications:forms.inboundSAML.sections" + + ".idpInitiatedSLO.fields.returnToURLs.hint") + } + + + { /* Assertion Query/Request Profile */ } + { + (applicationConfig.inboundSAMLForm.showQueryRequestProfile) && ( + <> + + + + + + + { t("applications:forms.inboundSAML.sections" + + ".requestProfile.heading") } + + + + + ) } - - - { /* Assertion Query/Request Profile */ } - { - (applicationConfig.inboundSAMLForm.showQueryRequestProfile) && ( - <> + { /* Certificate Section */ } + + + !isRequestSignatureValidationEnabled } + certificate={ certificate } + readOnly={ readOnly } + hidden={ false } + isRequired={ true } + hideJWKS={ true } + triggerSubmit={ triggerCertSubmit } + /> + + + { + !readOnly && ( - - - - - { t("applications:forms.inboundSAML.sections" + - ".requestProfile.heading") } - - - - ) - } - { /* Certificate Section */ } - - - !isRequestSignatureValidationEnabled } - certificate={ certificate } - readOnly={ readOnly } - hidden={ false } - isRequired={ true } - hideJWKS={ true } - triggerSubmit={ triggerCertSubmit } - /> - - - { - !readOnly && ( - - - - - - - ) - } + ) + } + ) From 97edf158081500fffeedccda39c6e223ecccaa77 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Sun, 14 Jul 2024 18:58:35 +0530 Subject: [PATCH 066/114] revert pnpm lock file changes --- pnpm-lock.yaml | 31313 ++++++++++++++++++----------------------------- 1 file changed, 11959 insertions(+), 19354 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c18e1c1e04f..8a456a421ad 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: '9.0' +lockfileVersion: '6.0' settings: autoInstallPeers: true @@ -69,7 +69,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react-app-polyfill: specifier: ^1.0.4 version: 1.0.6 @@ -82,18 +82,21 @@ importers: react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) + react-markdown: + specifier: ^4.3.1 + version: 4.3.1(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@16.14.0)(react@16.14.0) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) react-top-loading-bar: specifier: ^1.2.0 - version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 @@ -136,7 +139,7 @@ importers: version: 7.24.7 '@changesets/changelog-github': specifier: ^0.4.8 - version: 0.4.8(encoding@0.1.13) + version: 0.4.8 '@changesets/cli': specifier: ^2.26.1 version: 2.27.5 @@ -205,7 +208,7 @@ importers: version: 6.4.6(@types/jest@29.4.4)(jest@29.4.3) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.3.1(react-dom@18.3.1)(react@18.3.1) '@testing-library/user-event': specifier: ^14.5.2 version: 14.5.2(@testing-library/dom@9.3.4) @@ -265,19 +268,19 @@ importers: version: 10.4.13(postcss@8.4.39) babel-loader: specifier: ^8.1.0 - version: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) babel-plugin-rename-jsx-attribute: specifier: ^0.2.4 - version: 0.2.4(babel-core@7.0.0-bridge.0(@babel/core@7.24.7)) + version: 0.2.4(babel-core@6.26.3) child_process: specifier: ^1.0.2 version: 1.0.2 compression-webpack-plugin: specifier: ^7.1.2 - version: 7.1.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 7.1.2(webpack@5.84.1) copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) core-js: specifier: ^3.6.5 version: 3.37.1 @@ -322,13 +325,13 @@ importers: version: 2.7.0(eslint@8.46.0)(webpack@5.84.1) extract-text-webpack-plugin: specifier: ^4.0.0-beta.0 - version: 4.0.0-beta.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0-beta.0(webpack@5.84.1) fast-xml-parser: specifier: ^3.15.0 version: 3.21.1 file-loader: specifier: ^2.0.0 - version: 2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.0.0(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 version: 6.5.3(eslint@8.46.0)(typescript@5.1.6)(webpack@5.84.1) @@ -340,7 +343,7 @@ importers: version: 7.2.3 html-webpack-plugin: specifier: ^5.2.0 - version: 5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 5.6.0(webpack@5.84.1) identity-obj-proxy: specifier: ^3.0.0 version: 3.0.0 @@ -355,7 +358,7 @@ importers: version: 5.6.2(@swc-node/register@1.6.8)(@swc/core@1.3.99) less-loader: specifier: ^5.0.0 - version: 5.0.0(less@3.12.2)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 5.0.0(less@3.13.1)(webpack@5.84.1) less-plugin-inline-urls: specifier: ^1.2.0 version: 1.2.0 @@ -376,7 +379,7 @@ importers: version: 1.2.0 mini-css-extract-plugin: specifier: ^0.4.3 - version: 0.4.5(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.5(webpack@5.84.1) nx: specifier: 17.0.0 version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) @@ -397,10 +400,10 @@ importers: version: 15.8.1 raw-loader: specifier: ^4.0.2 - version: 4.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.2(webpack@5.84.1) react-hot-loader: specifier: ^4.13.0 - version: 4.13.1(@types/react@18.0.18) + version: 4.13.1 react-refresh: specifier: ^0.10.0 version: 0.10.0 @@ -433,7 +436,7 @@ importers: version: 5.3.10(@swc/core@1.3.99)(esbuild@0.18.20)(webpack@5.84.1) thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: 29.1.5 version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.4.3)(typescript@5.1.6) @@ -466,7 +469,7 @@ importers: version: 5.10.0 worker-loader: specifier: ^2.0.0 - version: 2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.0.0(webpack@5.84.1) write-file-webpack-plugin: specifier: ^4.5.1 version: 4.5.1 @@ -475,7 +478,7 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) @@ -484,28 +487,28 @@ importers: version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -688,7 +691,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -697,31 +700,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: 11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -730,7 +733,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -742,13 +745,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -758,7 +761,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@svgr/webpack': specifier: 4.3.2 version: 4.3.2 @@ -767,10 +770,10 @@ importers: version: 9.3.4 '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) + version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.3.1(react-dom@18.3.1)(react@18.3.1) '@testing-library/user-event': specifier: ^14.5.2 version: 14.5.2(@testing-library/dom@9.3.4) @@ -827,7 +830,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -836,16 +839,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -863,13 +866,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) jest-environment-jsdom: specifier: ^29.7.0 version: 29.7.0 @@ -878,10 +881,10 @@ importers: version: 4.0.0(jest-environment-jsdom@29.7.0) json-minimizer-webpack-plugin: specifier: ^5.0.0 - version: 5.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 5.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -899,7 +902,7 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^29.1.2 version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) @@ -911,22 +914,22 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@babel/polyfill': specifier: ^7.0.0 version: 7.12.1 '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -995,19 +998,19 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) react-top-loading-bar: specifier: ^1.2.0 - version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 @@ -1019,7 +1022,7 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -1029,7 +1032,7 @@ importers: devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) + version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) '@types/history': specifier: ^4.7.3 version: 4.7.11 @@ -1071,7 +1074,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -1080,16 +1083,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -1107,10 +1110,10 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^3.1.1 - version: 3.2.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 3.2.0(eslint@7.32.0)(webpack@5.84.1) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -1119,10 +1122,10 @@ importers: version: 4.0.0(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^5.0.0 - version: 5.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 5.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -1140,7 +1143,7 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^29.1.2 version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) @@ -1152,7 +1155,7 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) @@ -1161,28 +1164,28 @@ importers: version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../modules/access-control @@ -1227,7 +1230,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -1260,7 +1263,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -1269,31 +1272,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: 11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -1302,7 +1305,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -1314,13 +1317,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -1330,7 +1333,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -1417,7 +1420,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -1429,16 +1432,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -1453,13 +1456,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -1468,10 +1471,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -1510,10 +1513,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -1522,31 +1525,31 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -1585,10 +1588,10 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) @@ -1597,7 +1600,7 @@ importers: version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) devDependencies: '@rollup/plugin-commonjs': specifier: ^25.0.7 @@ -1655,34 +1658,34 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -1721,10 +1724,10 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) @@ -1733,7 +1736,7 @@ importers: version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) devDependencies: '@rollup/plugin-commonjs': specifier: ^25.0.7 @@ -1842,16 +1845,16 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) devDependencies: '@rollup/plugin-commonjs': specifier: ^25.0.7 @@ -1911,114 +1914,44 @@ importers: specifier: ^4.6.4 version: 4.9.5 - features/admin.application-templates.v1: - dependencies: - '@wso2is/admin.applications.v1': - specifier: ^2.21.11 - version: link:../admin.applications.v1 - '@wso2is/admin.core.v1': - specifier: ^2.21.11 - version: link:../admin.core.v1 - '@wso2is/admin.template-core.v1': - specifier: ^1.0.0 - version: link:../admin.template-core.v1 - react: - specifier: ^18.2.0 - version: 18.3.1 - react-dom: - specifier: ^18.2.0 - version: 18.3.1(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) - devDependencies: - '@rollup/plugin-commonjs': - specifier: ^25.0.7 - version: 25.0.8(rollup@4.18.0) - '@rollup/plugin-dynamic-import-vars': - specifier: ^2.1.2 - version: 2.1.2(rollup@4.18.0) - '@rollup/plugin-image': - specifier: ^3.0.3 - version: 3.0.3(rollup@4.18.0) - '@rollup/plugin-json': - specifier: ^6.1.0 - version: 6.1.0(rollup@4.18.0) - '@rollup/plugin-node-resolve': - specifier: ^15.2.3 - version: 15.2.3(rollup@4.18.0) - '@rollup/plugin-typescript': - specifier: ^11.1.6 - version: 11.1.6(rollup@4.18.0)(tslib@2.6.3)(typescript@4.9.5) - '@svgr/rollup': - specifier: ^6.2.1 - version: 6.5.1 - rollup: - specifier: ^4.17.2 - version: 4.18.0 - rollup-plugin-dts: - specifier: ^6.1.1 - version: 6.1.1(rollup@4.18.0)(typescript@4.9.5) - rollup-plugin-generate-package-json: - specifier: ^3.2.0 - version: 3.2.0(rollup@4.18.0) - rollup-plugin-polyfill-node: - specifier: ^0.13.0 - version: 0.13.0(rollup@4.18.0) - rollup-plugin-scss: - specifier: ^4.0.0 - version: 4.0.0 - rollup-plugin-styles: - specifier: ^4.0.0 - version: 4.0.0(rollup@4.18.0) - rollup-plugin-svg: - specifier: ^2.0.0 - version: 2.0.0 - typescript: - specifier: ^4.6.4 - version: 4.9.5 - features/admin.applications.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control '@wso2is/admin.api-resources.v2': specifier: ^2.20.60 version: link:../admin.api-resources.v2 - '@wso2is/admin.application-templates.v1': - specifier: ^1.0.0 - version: link:../admin.application-templates.v1 '@wso2is/admin.authentication-flow-builder.v1': specifier: ^2.20.60 version: link:../admin.authentication-flow-builder.v1 @@ -2067,9 +2000,6 @@ importers: '@wso2is/admin.server-configurations.v1': specifier: ^2.21.2 version: link:../admin.server-configurations.v1 - '@wso2is/admin.template-core.v1': - specifier: ^1.0.0 - version: link:../admin.template-core.v1 '@wso2is/admin.userstores.v1': specifier: ^2.20.60 version: link:../admin.userstores.v1 @@ -2132,13 +2062,13 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) @@ -2147,7 +2077,7 @@ importers: version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 @@ -2223,31 +2153,31 @@ importers: version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.applications.v1': specifier: ^2.21.30 version: link:../admin.applications.v1 @@ -2307,19 +2237,19 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) devDependencies: '@rollup/plugin-commonjs': specifier: ^25.0.7 @@ -2386,7 +2316,7 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@wso2is/admin.authorization.v1': specifier: ^2.20.22 version: link:../admin.authorization.v1 @@ -2422,7 +2352,7 @@ importers: version: 18.3.1(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) @@ -2489,13 +2419,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -2507,28 +2437,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -2573,7 +2503,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -2606,7 +2536,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -2615,31 +2545,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -2648,7 +2578,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -2660,13 +2590,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -2676,7 +2606,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -2763,7 +2693,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -2772,16 +2702,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -2796,13 +2726,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -2811,10 +2741,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -2853,10 +2783,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -2923,13 +2853,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -2941,28 +2871,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -3022,7 +2952,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -3055,7 +2985,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -3064,31 +2994,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -3097,7 +3027,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -3109,13 +3039,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -3125,7 +3055,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -3212,7 +3142,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -3221,16 +3151,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -3245,13 +3175,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -3260,10 +3190,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -3302,10 +3232,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -3314,13 +3244,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -3332,28 +3262,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -3419,7 +3349,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -3452,7 +3382,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -3461,31 +3391,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -3494,7 +3424,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -3506,13 +3436,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -3522,7 +3452,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -3609,7 +3539,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -3618,16 +3548,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -3642,13 +3572,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -3657,10 +3587,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -3699,10 +3629,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -3711,13 +3641,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -3729,28 +3659,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -3798,7 +3728,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -3834,7 +3764,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -3843,31 +3773,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -3876,7 +3806,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -3888,13 +3818,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -3904,7 +3834,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -3991,7 +3921,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -4000,16 +3930,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -4024,13 +3954,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -4039,10 +3969,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -4081,10 +4011,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -4093,13 +4023,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -4111,28 +4041,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -4198,7 +4128,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -4231,7 +4161,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -4240,31 +4170,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -4273,7 +4203,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -4285,13 +4215,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -4301,7 +4231,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -4388,7 +4318,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -4397,16 +4327,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -4421,13 +4351,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -4436,10 +4366,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -4478,10 +4408,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -4490,13 +4420,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -4508,28 +4438,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -4560,9 +4490,6 @@ importers: '@wso2is/admin.roles.v2': specifier: ^2.20.60 version: link:../admin.roles.v2 - '@wso2is/admin.template-core.v1': - specifier: ^1.0.0 - version: link:../admin.template-core.v1 '@wso2is/admin.userstores.v1': specifier: ^2.20.60 version: link:../admin.userstores.v1 @@ -4607,7 +4534,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -4640,7 +4567,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -4649,31 +4576,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -4682,7 +4609,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -4694,13 +4621,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -4710,7 +4637,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -4797,7 +4724,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -4806,16 +4733,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -4830,13 +4757,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -4845,10 +4772,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -4887,10 +4814,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -4899,13 +4826,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -4917,28 +4844,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -5016,7 +4943,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -5049,7 +4976,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -5058,31 +4985,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -5091,7 +5018,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -5103,13 +5030,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -5119,7 +5046,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -5206,7 +5133,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -5215,16 +5142,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -5239,13 +5166,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -5254,10 +5181,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -5296,10 +5223,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -5308,34 +5235,34 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -5345,9 +5272,6 @@ importers: '@wso2is/admin.api-resources.v2': specifier: ^2.20.60 version: link:../admin.api-resources.v2 - '@wso2is/admin.application-templates.v1': - specifier: ^1.0.0 - version: link:../admin.application-templates.v1 '@wso2is/admin.applications.v1': specifier: ^2.21.30 version: link:../admin.applications.v1 @@ -5444,9 +5368,6 @@ importers: '@wso2is/admin.sms-providers.v1': specifier: ^2.20.60 version: link:../admin.sms-providers.v1 - '@wso2is/admin.template-core.v1': - specifier: ^1.0.0 - version: link:../admin.template-core.v1 '@wso2is/admin.tenants.v1': specifier: ^2.20.60 version: link:../admin.tenants.v1 @@ -5503,7 +5424,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -5512,31 +5433,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -5545,7 +5466,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -5557,20 +5478,20 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -5657,7 +5578,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -5666,16 +5587,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -5690,13 +5611,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -5705,10 +5626,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -5747,10 +5668,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -5759,13 +5680,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -5777,28 +5698,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -5849,7 +5770,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -5882,7 +5803,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -5891,31 +5812,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -5924,7 +5845,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -5936,13 +5857,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -5952,7 +5873,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -6039,7 +5960,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -6048,16 +5969,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -6072,13 +5993,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -6087,10 +6008,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -6129,10 +6050,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -6141,13 +6062,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -6159,28 +6080,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -6234,7 +6155,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -6267,7 +6188,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -6276,31 +6197,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -6309,7 +6230,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -6321,13 +6242,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -6337,7 +6258,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -6424,7 +6345,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -6433,16 +6354,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -6457,13 +6378,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -6472,10 +6393,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -6514,10 +6435,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -6526,13 +6447,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -6544,28 +6465,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -6613,7 +6534,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -6646,7 +6567,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -6655,31 +6576,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -6688,7 +6609,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -6700,13 +6621,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -6716,7 +6637,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -6803,7 +6724,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -6812,16 +6733,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -6836,13 +6757,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -6851,10 +6772,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -6893,10 +6814,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -6905,13 +6826,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -6923,28 +6844,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -6995,7 +6916,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -7028,7 +6949,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -7037,31 +6958,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -7070,7 +6991,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -7082,13 +7003,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -7098,7 +7019,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -7185,7 +7106,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -7194,16 +7115,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -7218,13 +7139,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -7233,10 +7154,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -7275,10 +7196,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -7287,13 +7208,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -7305,28 +7226,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -7428,7 +7349,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -7461,7 +7382,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -7470,31 +7391,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -7503,7 +7424,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -7515,13 +7436,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -7531,7 +7452,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -7618,7 +7539,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -7627,16 +7548,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -7651,13 +7572,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -7666,10 +7587,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -7708,10 +7629,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -7720,13 +7641,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -7738,28 +7659,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -7810,7 +7731,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -7843,7 +7764,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -7852,31 +7773,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -7885,7 +7806,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -7897,13 +7818,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -7913,7 +7834,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -8000,7 +7921,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -8009,16 +7930,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -8033,13 +7954,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -8048,10 +7969,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -8090,10 +8011,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -8102,13 +8023,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -8120,28 +8041,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -8207,7 +8128,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -8240,7 +8161,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -8249,31 +8170,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -8282,7 +8203,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -8294,13 +8215,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -8310,7 +8231,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -8397,7 +8318,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -8406,16 +8327,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -8430,13 +8351,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -8445,10 +8366,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -8487,10 +8408,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -8499,13 +8420,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -8517,28 +8438,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -8613,7 +8534,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -8646,7 +8567,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -8655,31 +8576,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -8688,7 +8609,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -8700,13 +8621,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -8716,7 +8637,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -8803,7 +8724,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -8812,16 +8733,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -8836,13 +8757,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -8851,10 +8772,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -8893,10 +8814,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -8905,13 +8826,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -8923,28 +8844,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -8995,7 +8916,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -9028,7 +8949,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -9037,31 +8958,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -9070,7 +8991,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -9082,13 +9003,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -9098,7 +9019,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -9185,7 +9106,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -9194,16 +9115,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -9218,13 +9139,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -9233,10 +9154,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -9275,10 +9196,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -9287,13 +9208,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -9305,28 +9226,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -9371,7 +9292,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -9404,7 +9325,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -9413,22 +9334,22 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) @@ -9440,7 +9361,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -9452,13 +9373,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -9468,7 +9389,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -9555,7 +9476,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -9564,16 +9485,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -9588,13 +9509,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -9603,10 +9524,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -9645,10 +9566,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -9657,13 +9578,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -9675,28 +9596,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -9759,7 +9680,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -9792,7 +9713,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -9801,31 +9722,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -9834,7 +9755,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -9846,13 +9767,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -9862,7 +9783,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -9949,7 +9870,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -9958,16 +9879,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -9982,13 +9903,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -9997,10 +9918,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -10039,10 +9960,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -10051,13 +9972,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -10069,28 +9990,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -10144,7 +10065,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -10177,7 +10098,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -10186,31 +10107,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -10219,7 +10140,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -10231,13 +10152,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -10247,7 +10168,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -10334,7 +10255,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -10343,16 +10264,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -10367,13 +10288,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -10382,10 +10303,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -10424,10 +10345,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -10436,13 +10357,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -10454,28 +10375,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -10523,7 +10444,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -10556,7 +10477,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -10565,31 +10486,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -10598,7 +10519,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -10610,13 +10531,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -10626,7 +10547,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -10713,7 +10634,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -10722,16 +10643,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -10746,13 +10667,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -10761,10 +10682,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -10803,10 +10724,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -10815,13 +10736,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -10833,28 +10754,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -10905,7 +10826,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -10938,7 +10859,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -10947,31 +10868,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -10980,7 +10901,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -10992,13 +10913,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -11008,7 +10929,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -11095,7 +11016,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -11104,16 +11025,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -11128,13 +11049,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -11143,10 +11064,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -11185,10 +11106,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -11197,13 +11118,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -11215,28 +11136,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -11317,7 +11238,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -11350,7 +11271,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -11359,31 +11280,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -11392,7 +11313,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -11404,13 +11325,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -11420,7 +11341,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -11507,7 +11428,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -11516,16 +11437,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -11540,13 +11461,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -11555,10 +11476,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -11597,10 +11518,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -11609,13 +11530,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -11627,28 +11548,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -11699,7 +11620,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -11732,7 +11653,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -11741,31 +11662,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -11774,7 +11695,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -11786,13 +11707,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -11802,7 +11723,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -11889,7 +11810,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -11898,16 +11819,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -11922,13 +11843,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -11937,10 +11858,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -11979,10 +11900,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -11991,13 +11912,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -12009,28 +11930,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -12081,7 +12002,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -12114,7 +12035,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -12123,31 +12044,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -12156,7 +12077,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -12168,13 +12089,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -12184,7 +12105,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -12271,7 +12192,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -12280,16 +12201,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -12304,13 +12225,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -12319,10 +12240,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -12361,10 +12282,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -12373,13 +12294,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -12391,28 +12312,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -12469,7 +12390,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -12502,7 +12423,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -12511,31 +12432,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -12544,7 +12465,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -12556,13 +12477,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -12572,7 +12493,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -12659,7 +12580,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -12668,16 +12589,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -12692,13 +12613,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -12707,10 +12628,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -12749,10 +12670,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -12761,13 +12682,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -12779,28 +12700,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -12848,7 +12769,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -12881,7 +12802,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -12890,31 +12811,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -12923,7 +12844,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -12935,13 +12856,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -12951,7 +12872,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -13038,7 +12959,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -13047,16 +12968,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -13071,13 +12992,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -13086,10 +13007,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -13128,10 +13049,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -13140,13 +13061,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -13158,28 +13079,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -13242,7 +13163,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -13275,7 +13196,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -13284,31 +13205,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -13317,7 +13238,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -13329,13 +13250,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -13345,7 +13266,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -13432,7 +13353,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -13441,16 +13362,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -13465,13 +13386,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -13480,10 +13401,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -13522,10 +13443,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -13534,13 +13455,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -13552,28 +13473,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -13654,7 +13575,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -13687,7 +13608,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -13696,31 +13617,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -13729,7 +13650,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -13741,13 +13662,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -13757,7 +13678,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -13844,7 +13765,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -13853,16 +13774,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -13877,13 +13798,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -13892,10 +13813,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -13934,10 +13855,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -13946,13 +13867,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -13964,28 +13885,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -14033,7 +13954,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -14066,7 +13987,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -14075,31 +13996,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -14108,7 +14029,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -14120,13 +14041,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -14136,7 +14057,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -14223,7 +14144,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -14232,16 +14153,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -14256,13 +14177,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -14271,10 +14192,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -14313,10 +14234,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -14325,13 +14246,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -14343,28 +14264,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -14412,7 +14333,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -14445,7 +14366,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -14454,31 +14375,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -14487,7 +14408,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -14499,13 +14420,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -14515,7 +14436,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -14602,7 +14523,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -14611,16 +14532,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -14635,13 +14556,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -14650,10 +14571,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -14692,10 +14613,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -14704,13 +14625,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -14722,28 +14643,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -14806,7 +14727,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -14839,7 +14760,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -14848,31 +14769,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -14881,7 +14802,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -14893,13 +14814,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -14909,7 +14830,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -14996,7 +14917,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -15005,16 +14926,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -15029,13 +14950,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -15044,10 +14965,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -15086,10 +15007,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -15098,13 +15019,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -15116,28 +15037,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -15188,7 +15109,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -15221,7 +15142,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -15230,31 +15151,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -15263,7 +15184,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -15275,13 +15196,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -15291,7 +15212,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -15378,7 +15299,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -15387,16 +15308,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -15411,13 +15332,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -15426,10 +15347,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -15468,10 +15389,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -15480,13 +15401,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -15498,28 +15419,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -15567,7 +15488,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -15600,7 +15521,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -15609,31 +15530,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -15642,7 +15563,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -15654,13 +15575,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -15670,7 +15591,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -15757,7 +15678,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -15766,16 +15687,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -15790,13 +15711,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -15805,10 +15726,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -15847,10 +15768,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -15859,13 +15780,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -15877,28 +15798,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -15952,7 +15873,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -15985,7 +15906,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -15994,31 +15915,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -16027,7 +15948,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -16039,13 +15960,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -16055,7 +15976,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -16142,7 +16063,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -16151,16 +16072,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -16175,13 +16096,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -16190,10 +16111,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -16232,104 +16153,410 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.template-core.v1: + features/admin.tenants.v1: dependencies: - '@wso2is/admin.application-templates.v1': - specifier: ^1.0.0 - version: link:../admin.application-templates.v1 - '@wso2is/admin.applications.v1': - specifier: ^2.21.11 - version: link:../admin.applications.v1 + '@asgardeo/auth-react': + specifier: ^4.0.4 + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + '@emotion/react': + specifier: ^11.11.0 + version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': + specifier: ^11.11.0 + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + '@microsoft/applicationinsights-core-js': + specifier: ^3.0.0 + version: 3.2.1(tslib@2.6.3) + '@microsoft/applicationinsights-react-js': + specifier: ^3.4.2 + version: 3.4.3(history@4.10.1)(react@18.3.1)(tslib@2.6.3) + '@microsoft/applicationinsights-web': + specifier: ^3.0.0 + version: 3.2.1(tslib@2.6.3) + '@monaco-editor/react': + specifier: ^4.5.1 + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + '@mui/icons-material': + specifier: ^5.11.16 + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + '@mui/lab': + specifier: 5.0.0-alpha.129 + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/material': + specifier: 5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/system': + specifier: ^5.12.3 + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + '@mui/utils': + specifier: ^5.12.3 + version: 5.15.20(@types/react@18.0.18)(react@18.3.1) + '@oxygen-ui/react': + specifier: ^1.11.0 + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + '@oxygen-ui/react-icons': + specifier: ^1.11.0 + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + '@wso2is/access-control': + specifier: ^3.0.11 + version: link:../../modules/access-control '@wso2is/admin.core.v1': - specifier: ^2.21.11 + specifier: ^2.22.2 version: link:../admin.core.v1 + '@wso2is/admin.extensions.v1': + specifier: ^2.21.30 + version: link:../admin.extensions.v1 + '@wso2is/admin.organizations.v1': + specifier: ^2.20.60 + version: link:../admin.organizations.v1 '@wso2is/core': - specifier: ^2.0.50 + specifier: ^2.0.51 version: link:../../modules/core + '@wso2is/dynamic-forms': + specifier: ^2.0.72 + version: link:../../modules/dynamic-forms + '@wso2is/form': + specifier: ^2.0.73 + version: link:../../modules/form + '@wso2is/forms': + specifier: ^2.0.41 + version: link:../../modules/forms + '@wso2is/i18n': + specifier: ^2.5.1 + version: link:../../modules/i18n + '@wso2is/react-components': + specifier: ^2.2.14 + version: link:../../modules/react-components + '@wso2is/theme': + specifier: ^2.0.89 + version: link:../../modules/theme + '@wso2is/validation': + specifier: ^2.0.6 + version: link:../../modules/validation + axios: + specifier: ^0.19.2 + version: 0.19.2 + codemirror: + specifier: ^5.52.0 + version: 5.65.16 + country-language: + specifier: ^0.1.7 + version: 0.1.7 + deep-equal: + specifier: ^2.2.2 + version: 2.2.3 + file-saver: + specifier: ^2.0.5 + version: 2.0.5 + framer-motion: + specifier: ^11.1.9 + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + history: + specifier: ^4.9.0 + version: 4.10.1 + html-react-parser: + specifier: ^2.0.0 + version: 2.0.0(react@18.3.1) i18next: specifier: ^21.9.1 version: 21.10.0 + i18next-browser-languagedetector: + specifier: ^6.1.5 + version: 6.1.8 + i18next-xhr-backend: + specifier: ^3.2.2 + version: 3.2.2 + js-beautify: + specifier: ^1.13.0 + version: 1.15.1 + lodash-es: + specifier: ^4.17.21 + version: 4.17.21 + moment: + specifier: ^2.24.0 + version: 2.30.1 + mustache: + specifier: ^4.2.0 + version: 4.2.0 + node-forge: + specifier: ^0.10.0 + version: 0.10.0 + rc-tree: + specifier: ^4.0.0-beta.2 + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 react-dom: specifier: ^18.2.0 version: 18.3.1(react@18.3.1) + react-draggable: + specifier: ^4.2.0 + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + react-helmet: + specifier: ^5.2.1 + version: 5.2.1(react@18.3.1) + react-i18next: + specifier: ^11.18.5 + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + react-joyride: + specifier: ^2.3.0 + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + react-notification-system: + specifier: ^0.4.0 + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) + reactflow: + specifier: ^11.7.2 + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + recharts: + specifier: ^2.6.2 + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + reduce-reducers: + specifier: ^1.0.4 + version: 1.0.4 redux: specifier: ^4.0.4 version: 4.2.1 + redux-form: + specifier: ^8.3.7 + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + redux-mock-store: + specifier: ^1.5.4 + version: 1.5.4 + redux-thunk: + specifier: ^2.3.0 + version: 2.4.2(redux@4.2.1) + regenerator-runtime: + specifier: ^0.13.9 + version: 0.13.11 + semantic-ui-react: + specifier: ^2.1.3 + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + slashes: + specifier: ^2.0.2 + version: 2.0.2 + styled-components: + specifier: ^4.4.1 + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + swr: + specifier: ^2.0.0 + version: 2.2.5(react@18.3.1) + uuid: + specifier: ^8.3.0 + version: 8.3.2 devDependencies: + '@pmmmwh/react-refresh-webpack-plugin': + specifier: ^0.4.3 + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 - version: 25.0.8(rollup@4.18.0) + version: 25.0.8(rollup@4.18.1) '@rollup/plugin-dynamic-import-vars': specifier: ^2.1.2 - version: 2.1.2(rollup@4.18.0) + version: 2.1.2(rollup@4.18.1) '@rollup/plugin-image': specifier: ^3.0.3 - version: 3.0.3(rollup@4.18.0) + version: 3.0.3(rollup@4.18.1) '@rollup/plugin-json': specifier: ^6.1.0 - version: 6.1.0(rollup@4.18.0) + version: 6.1.0(rollup@4.18.1) '@rollup/plugin-node-resolve': specifier: ^15.2.3 - version: 15.2.3(rollup@4.18.0) + version: 15.2.3(rollup@4.18.1) '@rollup/plugin-typescript': specifier: ^11.1.6 - version: 11.1.6(rollup@4.18.0)(tslib@2.6.3)(typescript@4.9.5) + version: 11.1.6(rollup@4.18.1)(tslib@2.6.3)(typescript@4.9.5) '@svgr/rollup': specifier: ^6.2.1 version: 6.5.1 + '@svgr/webpack': + specifier: 4.3.2 + version: 4.3.2 + '@testing-library/dom': + specifier: ^7.24.3 + version: 7.31.2 + '@testing-library/jest-dom': + specifier: ^5.11.9 + version: 5.17.0 + '@testing-library/user-event': + specifier: ^12.7.3 + version: 12.8.3(@testing-library/dom@7.31.2) + '@types/file-saver': + specifier: ^2.0.1 + version: 2.0.7 + '@types/history': + specifier: ^4.7.3 + version: 4.7.11 + '@types/jest': + specifier: ^26.0.14 + version: 26.0.24 + '@types/lodash-es': + specifier: ^4.17.4 + version: 4.17.12 + '@types/node': + specifier: ^13.9.2 + version: 13.13.52 + '@types/node-forge': + specifier: ^0.9.3 + version: 0.9.10 + '@types/react': + specifier: 18.0.18 + version: 18.0.18 + '@types/react-dom': + specifier: ^18.0.6 + version: 18.3.0 + '@types/react-notification-system': + specifier: 0.2.39 + version: 0.2.39 + '@types/react-redux': + specifier: ^7.1.25 + version: 7.1.33 + '@types/react-router': + specifier: ^5.1.18 + version: 5.1.20 + '@types/react-router-dom': + specifier: ^5.1.3 + version: 5.3.3 + '@types/reactour': + specifier: ^1.18.1 + version: 1.18.5 + '@types/redux-mock-store': + specifier: ^1.0.2 + version: 1.0.6 + '@types/testing-library__jest-dom': + specifier: ^5.14.3 + version: 5.14.9 + '@types/uuid': + specifier: ^9.0.1 + version: 9.0.8 + '@types/webpack-env': + specifier: ^1.16.0 + version: 1.18.5 + '@typescript-eslint/eslint-plugin': + specifier: ^4.32.0 + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + '@typescript-eslint/parser': + specifier: ^4.32.0 + version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) + connect-history-api-fallback: + specifier: ^2.0.0 + version: 2.0.0 + copy-webpack-plugin: + specifier: ^12.0.2 + version: 12.0.2(webpack@5.84.1) + css-loader: + specifier: ^1.0.0 + version: 1.0.1(webpack@5.84.1) + eslint: + specifier: ^7.20.0 + version: 7.32.0 + eslint-plugin-import: + specifier: ^2.20.2 + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + eslint-plugin-jest-dom: + specifier: ^4.0.1 + version: 4.0.3(eslint@7.32.0) + eslint-plugin-react: + specifier: ^7.18.3 + version: 7.34.3(eslint@7.32.0) + eslint-plugin-react-hooks: + specifier: ^4.0.0 + version: 4.6.2(eslint@7.32.0) + eslint-plugin-testing-library: + specifier: ^5.0.5 + version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) + eslint-webpack-plugin: + specifier: ^2.5.3 + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + fork-ts-checker-webpack-plugin: + specifier: ^6.1.0 + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + jest: + specifier: ^26.4.2 + version: 26.6.3 + jest-environment-jsdom: + specifier: ^26.3.0 + version: 26.6.2 + jest-environment-jsdom-global: + specifier: ^2.0.4 + version: 2.0.4(jest-environment-jsdom@26.6.2) + json-minimizer-webpack-plugin: + specifier: ^4.0.0 + version: 4.0.0(webpack@5.84.1) + msw: + specifier: ^0.36.8 + version: 0.36.8 + process: + specifier: ^0.11.10 + version: 0.11.10 + react-refresh: + specifier: ^0.9.0 + version: 0.9.0 + redux-devtools-extension: + specifier: ^2.13.8 + version: 2.13.9(redux@4.2.1) + rimraf: + specifier: ^3.0.2 + version: 3.0.2 rollup: specifier: ^4.17.2 - version: 4.18.0 + version: 4.18.1 rollup-plugin-dts: specifier: ^6.1.1 - version: 6.1.1(rollup@4.18.0)(typescript@4.9.5) + version: 6.1.1(rollup@4.18.1)(typescript@4.9.5) rollup-plugin-generate-package-json: specifier: ^3.2.0 - version: 3.2.0(rollup@4.18.0) + version: 3.2.0(rollup@4.18.1) rollup-plugin-polyfill-node: specifier: ^0.13.0 - version: 0.13.0(rollup@4.18.0) + version: 0.13.0(rollup@4.18.1) rollup-plugin-scss: specifier: ^4.0.0 version: 4.0.0 rollup-plugin-styles: specifier: ^4.0.0 - version: 4.0.0(rollup@4.18.0) + version: 4.0.0(rollup@4.18.1) rollup-plugin-svg: specifier: ^2.0.0 version: 2.0.0 + style-loader: + specifier: ^0.23.1 + version: 0.23.1 + thread-loader: + specifier: ^2.1.3 + version: 2.1.3(webpack@5.84.1) + ts-jest: + specifier: ^26.4.0 + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.tenants.v1: + features/admin.users.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -16341,40 +16568,70 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control + '@wso2is/admin.authentication.v1': + specifier: ^2.20.60 + version: link:../admin.authentication.v1 + '@wso2is/admin.authorization.v1': + specifier: ^2.20.22 + version: link:../admin.authorization.v1 + '@wso2is/admin.claims.v1': + specifier: ^2.20.60 + version: link:../admin.claims.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': specifier: ^2.21.30 version: link:../admin.extensions.v1 + '@wso2is/admin.groups.v1': + specifier: ^2.20.60 + version: link:../admin.groups.v1 + '@wso2is/admin.identity-providers.v1': + specifier: ^2.20.60 + version: link:../admin.identity-providers.v1 '@wso2is/admin.organizations.v1': specifier: ^2.20.60 version: link:../admin.organizations.v1 + '@wso2is/admin.roles.v2': + specifier: ^2.20.60 + version: link:../admin.roles.v2 + '@wso2is/admin.server-configurations.v1': + specifier: ^2.21.2 + version: link:../admin.server-configurations.v1 + '@wso2is/admin.users.v1': + specifier: ^2.20.60 + version: 'link:' + '@wso2is/admin.userstores.v1': + specifier: ^2.20.60 + version: link:../admin.userstores.v1 + '@wso2is/admin.validation.v1': + specifier: ^2.20.60 + version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -16416,7 +16673,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -16449,7 +16706,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -16458,31 +16715,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -16491,7 +16748,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -16503,13 +16760,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -16519,7 +16776,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -16606,7 +16863,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -16615,16 +16872,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -16639,13 +16896,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -16654,10 +16911,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -16696,25 +16953,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.users.v1: + features/admin.userstores.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -16726,70 +16983,37 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control - '@wso2is/admin.authentication.v1': - specifier: ^2.20.60 - version: link:../admin.authentication.v1 - '@wso2is/admin.authorization.v1': - specifier: ^2.20.22 - version: link:../admin.authorization.v1 - '@wso2is/admin.claims.v1': - specifier: ^2.20.60 - version: link:../admin.claims.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': specifier: ^2.21.30 version: link:../admin.extensions.v1 - '@wso2is/admin.groups.v1': - specifier: ^2.20.60 - version: link:../admin.groups.v1 - '@wso2is/admin.identity-providers.v1': - specifier: ^2.20.60 - version: link:../admin.identity-providers.v1 - '@wso2is/admin.organizations.v1': - specifier: ^2.20.60 - version: link:../admin.organizations.v1 - '@wso2is/admin.roles.v2': - specifier: ^2.20.60 - version: link:../admin.roles.v2 - '@wso2is/admin.server-configurations.v1': - specifier: ^2.21.2 - version: link:../admin.server-configurations.v1 - '@wso2is/admin.users.v1': - specifier: ^2.20.60 - version: 'link:' - '@wso2is/admin.userstores.v1': - specifier: ^2.20.60 - version: link:../admin.userstores.v1 - '@wso2is/admin.validation.v1': - specifier: ^2.20.60 - version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -16831,7 +17055,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -16864,7 +17088,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -16873,31 +17097,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -16906,7 +17130,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -16918,13 +17142,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -16934,7 +17158,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -17021,7 +17245,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -17030,16 +17254,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -17054,13 +17278,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -17069,10 +17293,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -17111,25 +17335,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.userstores.v1: + features/admin.validation.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -17141,28 +17365,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -17172,6 +17396,15 @@ importers: '@wso2is/admin.extensions.v1': specifier: ^2.21.30 version: link:../admin.extensions.v1 + '@wso2is/admin.organizations.v1': + specifier: ^2.20.60 + version: link:../admin.organizations.v1 + '@wso2is/admin.server-configurations.v1': + specifier: ^2.21.2 + version: link:../admin.server-configurations.v1 + '@wso2is/admin.users.v1': + specifier: ^2.20.60 + version: link:../admin.users.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -17213,7 +17446,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -17246,7 +17479,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -17255,31 +17488,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -17288,7 +17521,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -17300,13 +17533,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -17316,7 +17549,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -17403,7 +17636,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -17412,16 +17645,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -17436,13 +17669,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -17451,10 +17684,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -17493,25 +17726,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.validation.v1: + features/admin.workflow-approvals.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -17523,46 +17756,34 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/admin.extensions.v1': - specifier: ^2.21.30 - version: link:../admin.extensions.v1 - '@wso2is/admin.organizations.v1': - specifier: ^2.20.60 - version: link:../admin.organizations.v1 - '@wso2is/admin.server-configurations.v1': - specifier: ^2.21.2 - version: link:../admin.server-configurations.v1 - '@wso2is/admin.users.v1': - specifier: ^2.20.60 - version: link:../admin.users.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -17604,7 +17825,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -17637,7 +17858,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -17646,31 +17867,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -17679,7 +17900,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -17691,13 +17912,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -17707,7 +17928,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -17794,7 +18015,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -17803,16 +18024,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -17827,13 +18048,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -17842,10 +18063,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -17884,25 +18105,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.workflow-approvals.v1: + features/admin.wsfed-configuration.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -17914,28 +18135,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -17983,7 +18204,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -18016,7 +18237,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -18025,31 +18246,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -18058,7 +18279,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -18070,13 +18291,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -18086,7 +18307,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -18173,7 +18394,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -18182,16 +18403,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -18206,13 +18427,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -18221,10 +18442,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -18263,25 +18484,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.wsfed-configuration.v1: + features/common.ai.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -18293,28 +18514,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -18362,7 +18583,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -18395,7 +18616,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -18404,31 +18625,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -18437,7 +18658,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -18449,13 +18670,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -18465,7 +18686,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -18552,7 +18773,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -18561,16 +18782,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -18585,13 +18806,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -18600,10 +18821,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -18642,425 +18863,46 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/common.ai.v1: + features/common.branding.v1: dependencies: - '@asgardeo/auth-react': - specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) - '@microsoft/applicationinsights-core-js': - specifier: ^3.0.0 - version: 3.2.1(tslib@2.6.3) - '@microsoft/applicationinsights-react-js': - specifier: ^3.4.2 - version: 3.4.3(history@4.10.1)(react@18.3.1)(tslib@2.6.3) - '@microsoft/applicationinsights-web': - specifier: ^3.0.0 - version: 3.2.1(tslib@2.6.3) - '@monaco-editor/react': - specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) - '@oxygen-ui/react-icons': - specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) - '@wso2is/access-control': - specifier: ^3.0.11 - version: link:../../modules/access-control + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/core': - specifier: ^2.0.51 - version: link:../../modules/core - '@wso2is/dynamic-forms': - specifier: ^2.0.72 - version: link:../../modules/dynamic-forms - '@wso2is/form': - specifier: ^2.0.73 - version: link:../../modules/form - '@wso2is/forms': - specifier: ^2.0.41 - version: link:../../modules/forms - '@wso2is/i18n': - specifier: ^2.5.1 - version: link:../../modules/i18n - '@wso2is/react-components': - specifier: ^2.2.14 - version: link:../../modules/react-components - '@wso2is/theme': - specifier: ^2.0.89 - version: link:../../modules/theme - '@wso2is/validation': - specifier: ^2.0.6 - version: link:../../modules/validation - axios: - specifier: ^0.19.2 - version: 0.19.2 - codemirror: - specifier: ^5.52.0 - version: 5.65.16 - country-language: - specifier: ^0.1.7 - version: 0.1.7 - deep-equal: - specifier: ^2.2.2 - version: 2.2.3 - file-saver: - specifier: ^2.0.5 - version: 2.0.5 - framer-motion: - specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 - html-react-parser: - specifier: ^2.0.0 - version: 2.0.0(react@18.3.1) - i18next: - specifier: ^21.9.1 - version: 21.10.0 - i18next-browser-languagedetector: - specifier: ^6.1.5 - version: 6.1.8 - i18next-xhr-backend: - specifier: ^3.2.2 - version: 3.2.2 - js-beautify: - specifier: ^1.13.0 - version: 1.15.1 - lodash-es: - specifier: ^4.17.21 - version: 4.17.21 - moment: - specifier: ^2.24.0 - version: 2.30.1 - mustache: - specifier: ^4.2.0 - version: 4.2.0 - node-forge: - specifier: ^0.10.0 - version: 0.10.0 - rc-tree: - specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: - specifier: ^18.2.0 - version: 18.3.1 - react-dom: - specifier: ^18.2.0 - version: 18.3.1(react@18.3.1) - react-draggable: - specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-helmet: - specifier: ^5.2.1 - version: 5.2.1(react@18.3.1) - react-i18next: - specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-joyride: - specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-notification-system: - specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-redux: - specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) - reactflow: - specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - recharts: - specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - reduce-reducers: - specifier: ^1.0.4 - version: 1.0.4 - redux: - specifier: ^4.0.4 - version: 4.2.1 - redux-form: - specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) - redux-mock-store: - specifier: ^1.5.4 - version: 1.5.4 - redux-thunk: - specifier: ^2.3.0 - version: 2.4.2(redux@4.2.1) - regenerator-runtime: - specifier: ^0.13.9 - version: 0.13.11 - semantic-ui-react: - specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - slashes: - specifier: ^2.0.2 - version: 2.0.2 - styled-components: - specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - swr: - specifier: ^2.0.0 - version: 2.2.5(react@18.3.1) - uuid: - specifier: ^8.3.0 - version: 8.3.2 - devDependencies: - '@pmmmwh/react-refresh-webpack-plugin': - specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - '@rollup/plugin-commonjs': - specifier: ^25.0.7 - version: 25.0.8(rollup@4.18.1) - '@rollup/plugin-dynamic-import-vars': - specifier: ^2.1.2 - version: 2.1.2(rollup@4.18.1) - '@rollup/plugin-image': - specifier: ^3.0.3 - version: 3.0.3(rollup@4.18.1) - '@rollup/plugin-json': - specifier: ^6.1.0 - version: 6.1.0(rollup@4.18.1) - '@rollup/plugin-node-resolve': - specifier: ^15.2.3 - version: 15.2.3(rollup@4.18.1) - '@rollup/plugin-typescript': - specifier: ^11.1.6 - version: 11.1.6(rollup@4.18.1)(tslib@2.6.3)(typescript@4.9.5) - '@svgr/rollup': - specifier: ^6.2.1 - version: 6.5.1 - '@svgr/webpack': - specifier: 4.3.2 - version: 4.3.2 - '@testing-library/dom': - specifier: ^7.24.3 - version: 7.31.2 - '@testing-library/jest-dom': - specifier: ^5.11.9 - version: 5.17.0 - '@testing-library/user-event': - specifier: ^12.7.3 - version: 12.8.3(@testing-library/dom@7.31.2) - '@types/file-saver': - specifier: ^2.0.1 - version: 2.0.7 - '@types/history': - specifier: ^4.7.3 - version: 4.7.11 - '@types/jest': - specifier: ^26.0.14 - version: 26.0.24 - '@types/lodash-es': - specifier: ^4.17.4 - version: 4.17.12 - '@types/node': - specifier: ^13.9.2 - version: 13.13.52 - '@types/node-forge': - specifier: ^0.9.3 - version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 - '@types/react-notification-system': - specifier: 0.2.39 - version: 0.2.39 - '@types/react-redux': - specifier: ^7.1.25 - version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 - '@types/reactour': - specifier: ^1.18.1 - version: 1.18.5 - '@types/redux-mock-store': - specifier: ^1.0.2 - version: 1.0.6 - '@types/testing-library__jest-dom': - specifier: ^5.14.3 - version: 5.14.9 - '@types/uuid': - specifier: ^9.0.1 - version: 9.0.8 - '@types/webpack-env': - specifier: ^1.16.0 - version: 1.18.5 - '@typescript-eslint/eslint-plugin': - specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) - '@typescript-eslint/parser': - specifier: ^4.32.0 - version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) - connect-history-api-fallback: - specifier: ^2.0.0 - version: 2.0.0 - copy-webpack-plugin: - specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - css-loader: - specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - eslint: - specifier: ^7.20.0 - version: 7.32.0 - eslint-plugin-import: - specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) - eslint-plugin-jest-dom: - specifier: ^4.0.1 - version: 4.0.3(eslint@7.32.0) - eslint-plugin-react: - specifier: ^7.18.3 - version: 7.34.3(eslint@7.32.0) - eslint-plugin-react-hooks: - specifier: ^4.0.0 - version: 4.6.2(eslint@7.32.0) - eslint-plugin-testing-library: - specifier: ^5.0.5 - version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) - eslint-webpack-plugin: - specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - fork-ts-checker-webpack-plugin: - specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - jest: - specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) - jest-environment-jsdom: - specifier: ^26.3.0 - version: 26.6.2 - jest-environment-jsdom-global: - specifier: ^2.0.4 - version: 2.0.4(jest-environment-jsdom@26.6.2) - json-minimizer-webpack-plugin: - specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - msw: - specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) - process: - specifier: ^0.11.10 - version: 0.11.10 - react-refresh: - specifier: ^0.9.0 - version: 0.9.0 - redux-devtools-extension: - specifier: ^2.13.8 - version: 2.13.9(redux@4.2.1) - rimraf: - specifier: ^3.0.2 - version: 3.0.2 - rollup: - specifier: ^4.17.2 - version: 4.18.1 - rollup-plugin-dts: - specifier: ^6.1.1 - version: 6.1.1(rollup@4.18.1)(typescript@4.9.5) - rollup-plugin-generate-package-json: - specifier: ^3.2.0 - version: 3.2.0(rollup@4.18.1) - rollup-plugin-polyfill-node: - specifier: ^0.13.0 - version: 0.13.0(rollup@4.18.1) - rollup-plugin-scss: - specifier: ^4.0.0 - version: 4.0.0 - rollup-plugin-styles: - specifier: ^4.0.0 - version: 4.0.0(rollup@4.18.1) - rollup-plugin-svg: - specifier: ^2.0.0 - version: 2.0.0 - style-loader: - specifier: ^0.23.1 - version: 0.23.1 - thread-loader: - specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - ts-jest: - specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) - typescript: - specifier: ^4.6.4 - version: 4.9.5 - - features/common.branding.v1: - dependencies: - '@emotion/react': - specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': - specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) - '@mui/icons-material': - specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) - '@mui/lab': - specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/system': - specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) - '@mui/utils': - specifier: ^5.12.3 - version: 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@oxygen-ui/react': - specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) - '@wso2is/admin.core.v1': - specifier: ^2.22.2 - version: link:../admin.core.v1 - '@wso2is/admin.organizations.v1': - specifier: ^2.20.60 - version: link:../admin.organizations.v1 + '@wso2is/admin.organizations.v1': + specifier: ^2.20.60 + version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -19164,7 +19006,7 @@ importers: version: 18.0.18 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19173,7 +19015,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19215,7 +19057,7 @@ importers: version: 2.0.5 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) js-yaml: specifier: 3.13.1 version: 3.13.1 @@ -19230,7 +19072,7 @@ importers: version: 0.10.0 react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@16.14.0)(react@16.14.0) ts-jest: specifier: ^29.1.2 version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) @@ -19264,7 +19106,7 @@ importers: version: 0.7.36 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19273,7 +19115,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19291,10 +19133,10 @@ importers: dependencies: '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/core': specifier: ^2.0.51 version: link:../core @@ -19321,14 +19163,14 @@ importers: version: 6.5.9(final-form@4.20.10)(react@18.3.1) semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) + version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.3.1(react-dom@18.3.1)(react@18.3.1) '@types/jest': specifier: ^29.5.12 version: 29.5.12 @@ -19343,7 +19185,7 @@ importers: version: 5.14.9 '@typescript-eslint/eslint-plugin': specifier: ^4.17.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.17.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19355,7 +19197,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19379,7 +19221,7 @@ importers: dependencies: '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/core': specifier: ^2.0.51 version: link:../core @@ -19403,14 +19245,14 @@ importers: version: 6.5.9(final-form@4.20.10)(react@18.3.1) semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) + version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.3.1(react-dom@18.3.1)(react@18.3.1) '@types/jest': specifier: ^29.5.12 version: 29.5.12 @@ -19422,7 +19264,7 @@ importers: version: 18.0.18 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19431,7 +19273,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19464,14 +19306,14 @@ importers: version: 4.17.21 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) + version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.3.1(react-dom@18.3.1)(react@18.3.1) '@types/jest': specifier: ^29.5.12 version: 29.5.12 @@ -19486,7 +19328,7 @@ importers: version: 5.14.9 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19498,7 +19340,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19543,7 +19385,7 @@ importers: version: 4.17.21 react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) devDependencies: '@types/i18next': specifier: 8.4.3 @@ -19559,7 +19401,7 @@ importers: version: 13.13.52 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19568,7 +19410,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19577,7 +19419,7 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) rimraf: specifier: ^3.0.2 version: 3.0.2 @@ -19595,13 +19437,13 @@ importers: version: 6.2.1(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@storybook/addons': specifier: ^6.5.9 - version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/builder-webpack5': specifier: ^6.5.9 version: 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) @@ -19616,7 +19458,7 @@ importers: version: 6.5.16(@babel/core@7.24.7)(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(require-from-string@2.0.2)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3) '@storybook/theming': specifier: ^6.5.9 - version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.5.16(react-dom@18.3.1)(react@18.3.1) '@wso2is/core': specifier: ^2.0.51 version: link:../core @@ -19629,9 +19471,6 @@ importers: codemirror: specifier: ^5.52.0 version: 5.65.16 - file-saver: - specifier: ^2.0.5 - version: 2.0.5 i18next: specifier: ^21.9.1 version: 21.10.0 @@ -19661,28 +19500,25 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-markdown: - specifier: ^9.0.1 - version: 9.0.1(@types/react@18.0.18)(react@18.3.1) + specifier: ^4.3.1 + version: 4.3.1(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) react-top-loading-bar: specifier: ^1.2.0 - version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1) react-transition-group: specifier: ^4.4.1 - version: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - rehype-attr: - specifier: ^3.0.3 - version: 3.0.3 + version: 4.4.5(react-dom@18.3.1)(react@18.3.1) semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) storybook: specifier: ^6.5.9 version: 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) @@ -19698,13 +19534,13 @@ importers: version: 7.24.7 '@rollup/plugin-url': specifier: ^7.0.0 - version: 7.0.0(rollup@4.18.0) + version: 7.0.0(rollup@2.79.1) '@storybook/addon-actions': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/addon-backgrounds': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/addon-controls': specifier: ^6.5.12 version: 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) @@ -19713,19 +19549,19 @@ importers: version: 6.5.16(@babel/core@7.24.7)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1) '@storybook/addon-links': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/addon-measure': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/addon-outline': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/addon-toolbars': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/addon-viewport': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.5.16(react-dom@18.3.1)(react@18.3.1) '@svgr/rollup': specifier: ^6.2.1 version: 6.5.1 @@ -19764,25 +19600,25 @@ importers: version: 5.3.3 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) babel-loader: specifier: ^8.1.0 - version: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) babel-plugin-rename-jsx-attribute: specifier: ^0.2.4 - version: 0.2.4(babel-core@7.0.0-bridge.0(@babel/core@7.24.7)) + version: 0.2.4(babel-core@6.26.3) copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19791,7 +19627,7 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) postcss-import: specifier: ^14.1.0 version: 14.1.0(postcss@8.4.39) @@ -19800,7 +19636,7 @@ importers: version: 2.1.1(postcss@8.4.39) react-docgen-typescript-loader: specifier: ^3.6.0 - version: 3.7.2(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 3.7.2(typescript@4.9.5)(webpack@5.84.1) react-dom: specifier: ^18.2.0 version: 18.3.1(react@18.3.1) @@ -19833,7 +19669,7 @@ importers: version: 29.5.12 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19848,7 +19684,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19875,7 +19711,7 @@ importers: version: 0.1.2 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) replace: specifier: ^1.1.5 version: 1.2.2 @@ -19939,7 +19775,7 @@ importers: version: 29.5.12 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19948,7 +19784,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19970,14162 +19806,861 @@ importers: packages: - '@adobe/css-tools@4.4.0': + /@adobe/css-tools@4.4.0: resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==} + dev: true - '@ampproject/remapping@2.3.0': + /@ampproject/remapping@2.3.0: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 - '@artsy/fresnel@6.2.1': + /@artsy/fresnel@6.2.1(react@18.3.1): resolution: {integrity: sha512-UAyHZU64Vie3sLDdL3qD+7pODGzKNu9pSpxGKpDOCaiBvCDZnFXIfJEEfV9v9i+QiJJwzO+lqsFwvw6YiJeXFQ==} engines: {node: '>=12.20.2', yarn: 1.x.x} peerDependencies: react: '>=16.3.0' + dependencies: + react: 18.3.1 + dev: false - '@asgardeo/auth-js@5.0.1': + /@asgardeo/auth-js@5.0.1: resolution: {integrity: sha512-XTb/+jPPBAnNGlZYeHVz2Ut5hI8DeJiMmX5YcAijiAvtW4Ove82lT4aLXm+FL8XmCYc+61hFNG1QLf8q2nMfSQ==} - '@asgardeo/auth-react@4.0.4': + /@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@16.14.0)(react-router-dom@6.24.1)(react@16.14.0): + resolution: {integrity: sha512-PltiGPAUVyekEOun9BMte3H2AmFsihiLisobjax5NxdkpDurvrgUR9xCUh7qKkoQQHq4N1Y5crc8UpCg+hkLmQ==} + peerDependencies: + '@babel/runtime-corejs3': ^7.11.2 + react: '>=16.8' + react-dom: '>=16.8' + react-router-dom: ^6.3.0 + dependencies: + '@asgardeo/auth-spa': 3.0.3 + '@babel/runtime-corejs3': 7.24.7 + react: 16.14.0 + react-dom: 16.14.0(react@16.14.0) + react-router-dom: 6.24.1(react-dom@16.14.0)(react@16.14.0) + transitivePeerDependencies: + - debug + dev: false + + /@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1): + resolution: {integrity: sha512-PltiGPAUVyekEOun9BMte3H2AmFsihiLisobjax5NxdkpDurvrgUR9xCUh7qKkoQQHq4N1Y5crc8UpCg+hkLmQ==} + peerDependencies: + '@babel/runtime-corejs3': ^7.11.2 + react: '>=16.8' + react-dom: '>=16.8' + react-router-dom: ^6.3.0 + dependencies: + '@asgardeo/auth-spa': 3.0.3 + '@babel/runtime-corejs3': 7.24.7 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router-dom: 4.3.1(react@18.3.1) + transitivePeerDependencies: + - debug + dev: false + + /@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@6.24.1)(react@18.3.1): resolution: {integrity: sha512-PltiGPAUVyekEOun9BMte3H2AmFsihiLisobjax5NxdkpDurvrgUR9xCUh7qKkoQQHq4N1Y5crc8UpCg+hkLmQ==} peerDependencies: '@babel/runtime-corejs3': ^7.11.2 react: '>=16.8' react-dom: '>=16.8' react-router-dom: ^6.3.0 + dependencies: + '@asgardeo/auth-spa': 3.0.3 + '@babel/runtime-corejs3': 7.24.7 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router-dom: 6.24.1(react-dom@18.3.1)(react@18.3.1) + transitivePeerDependencies: + - debug + dev: true - '@asgardeo/auth-spa@3.0.3': + /@asgardeo/auth-spa@3.0.3: resolution: {integrity: sha512-2iRy6Si/xl68EsUV92IuMz0s9/8nFq/a+63Ui0Xr2Ysjc3YsWIO0zVmdpqevZ1J9yzGb9Fyy7uqlKE0QY7m8pA==} + dependencies: + '@asgardeo/auth-js': 5.0.1 + await-semaphore: 0.1.3 + axios: 0.26.1 + base64url: 3.0.1 + buffer: 6.0.3 + fast-sha256: 1.3.0 + jose: 4.15.7 + randombytes: 2.1.0 + transitivePeerDependencies: + - debug + + /@aw-web-design/x-default-browser@1.4.126: + resolution: {integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==} + hasBin: true + dependencies: + default-browser-id: 3.0.0 + dev: true - '@babel/cli@7.24.7': + /@babel/cli@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-8dfPprJgV4O14WTx+AQyEA+opgUKPrsIXX/MdL50J1n06EQJ6m1T+CdsJe0qEC0B/Xl85i+Un5KVAxd/PACX9A==} engines: {node: '>=6.9.0'} hasBin: true peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@jridgewell/trace-mapping': 0.3.25 + commander: 6.2.1 + convert-source-map: 2.0.0 + fs-readdir-recursive: 1.1.0 + glob: 7.2.3 + make-dir: 2.1.0 + slash: 2.0.0 + optionalDependencies: + '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3 + chokidar: 3.6.0 + dev: true - '@babel/code-frame@7.12.11': + /@babel/code-frame@7.12.11: resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} + dependencies: + '@babel/highlight': 7.24.7 - '@babel/code-frame@7.24.7': + /@babel/code-frame@7.24.7: resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.24.7 + picocolors: 1.0.1 - '@babel/compat-data@7.24.7': + /@babel/compat-data@7.24.7: resolution: {integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==} engines: {node: '>=6.9.0'} - '@babel/core@7.12.9': + /@babel/core@7.12.9: resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.24.7 + '@babel/generator': 7.24.7 + '@babel/helper-module-transforms': 7.24.7(@babel/core@7.12.9) + '@babel/helpers': 7.24.7 + '@babel/parser': 7.24.7 + '@babel/template': 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + convert-source-map: 1.9.0 + debug: 4.3.5(supports-color@6.1.0) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + lodash: 4.17.21 + resolve: 1.22.8 + semver: 5.7.2 + source-map: 0.5.7 + transitivePeerDependencies: + - supports-color - '@babel/core@7.24.7': + /@babel/core@7.24.7: resolution: {integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==} engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.24.7 + '@babel/generator': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) + '@babel/helpers': 7.24.7 + '@babel/parser': 7.24.7 + '@babel/template': 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + convert-source-map: 2.0.0 + debug: 4.3.5(supports-color@6.1.0) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - '@babel/generator@7.24.7': + /@babel/generator@7.24.7: resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.24.7 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 2.5.2 - '@babel/helper-annotate-as-pure@7.24.7': + /@babel/helper-annotate-as-pure@7.24.7: resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.24.7 - '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7': + /@babel/helper-builder-binary-assignment-operator-visitor@7.24.7: resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/helper-compilation-targets@7.24.7': + /@babel/helper-compilation-targets@7.24.7: resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/compat-data': 7.24.7 + '@babel/helper-validator-option': 7.24.7 + browserslist: 4.23.1 + lru-cache: 5.1.1 + semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.24.7': + /@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-function-name': 7.24.7 + '@babel/helper-member-expression-to-functions': 7.24.7 + '@babel/helper-optimise-call-expression': 7.24.7 + '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7) + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/helper-split-export-declaration': 7.24.7 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - '@babel/helper-create-regexp-features-plugin@7.24.7': + /@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + regexpu-core: 5.3.2 + semver: 6.3.1 - '@babel/helper-define-polyfill-provider@0.1.5': + /@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.24.7): resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: '@babel/core': ^7.4.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/traverse': 7.24.7 + debug: 4.3.5(supports-color@6.1.0) + lodash.debounce: 4.0.8 + resolve: 1.22.8 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - '@babel/helper-define-polyfill-provider@0.6.2': + /@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.7): resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + debug: 4.3.5(supports-color@6.1.0) + lodash.debounce: 4.0.8 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color - '@babel/helper-environment-visitor@7.24.7': + /@babel/helper-environment-visitor@7.24.7: resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.24.7 - '@babel/helper-function-name@7.24.7': + /@babel/helper-function-name@7.24.7: resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.24.7 + '@babel/types': 7.24.7 - '@babel/helper-hoist-variables@7.24.7': + /@babel/helper-hoist-variables@7.24.7: resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.24.7 - '@babel/helper-member-expression-to-functions@7.24.7': + /@babel/helper-member-expression-to-functions@7.24.7: resolution: {integrity: sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color + + /@babel/helper-module-imports@7.24.7: + resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/helper-module-imports@7.24.7': + /@babel/helper-module-imports@7.24.7(supports-color@5.5.0): resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.24.7(supports-color@5.5.0) + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/helper-module-transforms@7.24.7(@babel/core@7.12.9): + resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-simple-access': 7.24.7 + '@babel/helper-split-export-declaration': 7.24.7 + '@babel/helper-validator-identifier': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/helper-module-transforms@7.24.7': + /@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-simple-access': 7.24.7 + '@babel/helper-split-export-declaration': 7.24.7 + '@babel/helper-validator-identifier': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/helper-optimise-call-expression@7.24.7': + /@babel/helper-optimise-call-expression@7.24.7: resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.24.7 - '@babel/helper-plugin-utils@7.10.4': + /@babel/helper-plugin-utils@7.10.4: resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} - '@babel/helper-plugin-utils@7.24.7': + /@babel/helper-plugin-utils@7.24.7: resolution: {integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==} engines: {node: '>=6.9.0'} - '@babel/helper-remap-async-to-generator@7.24.7': + /@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-wrap-function': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/helper-replace-supers@7.24.7': + /@babel/helper-replace-supers@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-member-expression-to-functions': 7.24.7 + '@babel/helper-optimise-call-expression': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/helper-simple-access@7.24.7': + /@babel/helper-simple-access@7.24.7: resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/helper-skip-transparent-expression-wrappers@7.24.7': + /@babel/helper-skip-transparent-expression-wrappers@7.24.7: resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/helper-split-export-declaration@7.24.7': + /@babel/helper-split-export-declaration@7.24.7: resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.24.7 - '@babel/helper-string-parser@7.24.7': + /@babel/helper-string-parser@7.24.7: resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.24.7': + /@babel/helper-validator-identifier@7.24.7: resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-option@7.24.7': + /@babel/helper-validator-option@7.24.7: resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==} engines: {node: '>=6.9.0'} - '@babel/helper-wrap-function@7.24.7': + /@babel/helper-wrap-function@7.24.7: resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-function-name': 7.24.7 + '@babel/template': 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/helpers@7.24.7': + /@babel/helpers@7.24.7: resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.24.7 + '@babel/types': 7.24.7 - '@babel/highlight@7.24.7': + /@babel/highlight@7.24.7: resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.24.7 + chalk: 2.4.2 + js-tokens: 4.0.0 + picocolors: 1.0.1 - '@babel/parser@7.24.7': + /@babel/parser@7.24.7: resolution: {integrity: sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==} engines: {node: '>=6.0.0'} hasBin: true + dependencies: + '@babel/types': 7.24.7 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7': + /@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7': + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7': + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7': + /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-proposal-class-properties@7.18.6': + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.7): 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: + '@babel/core': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/plugin-proposal-decorators@7.24.7': + /@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color - '@babel/plugin-proposal-export-default-from@7.24.7': + /@babel/plugin-proposal-export-default-from@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-CcmFwUJ3tKhLjPdt4NP+SHMshebytF8ZTYOv5ZDpkzq2sin80Wb5vJrGt8fhPrORQCfoSa0LAxC/DW+GAC5+Hw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6': + /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.7): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} 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-nullish-coalescing-operator instead. peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-proposal-object-rest-spread@7.12.1': + /@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9): resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.10.4 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) + '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.12.9) - '@babel/plugin-proposal-object-rest-spread@7.20.7': + /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.7): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} 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-object-rest-spread instead. peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7) + '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-proposal-optional-chaining@7.21.0': + /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.7): resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} 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-optional-chaining instead. peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color - '@babel/plugin-proposal-private-methods@7.18.6': + /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.24.7): resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} 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-private-methods instead. peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7): resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 - '@babel/plugin-proposal-private-property-in-object@7.21.11': + /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.24.7): resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} 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-private-property-in-object instead. peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-async-generators@7.8.4': + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-bigint@7.8.3': + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.7): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-class-properties@7.12.13': + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.7): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-class-static-block@7.14.5': + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.7): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-decorators@7.24.7': + /@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-dynamic-import@7.8.3': + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.7): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-export-default-from@7.24.7': + /@babel/plugin-syntax-export-default-from@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-bTPz4/635WQ9WhwsyPdxUJDVpsi/X9BMmy/8Rf/UAlOO4jSql4CxUCjWI5PiM+jG+c4LVPTScoTw80geFj9+Bw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-export-namespace-from@7.8.3': + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.7): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-flow@7.24.7': + /@babel/plugin-syntax-flow@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-import-assertions@7.24.7': + /@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-import-attributes@7.24.7': + /@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-import-meta@7.10.4': + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-json-strings@7.8.3': + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-jsx@7.12.1': + /@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9): resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-jsx@7.24.7': + /@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4': + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.7): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-numeric-separator@7.10.4': - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-object-rest-spread@7.8.3': - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-optional-catch-binding@7.8.3': - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-optional-chaining@7.8.3': - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-private-property-in-object@7.14.5': - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-top-level-await@7.14.5': - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-typescript@7.24.7': - resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-unicode-sets-regex@7.18.6': - resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-transform-arrow-functions@7.24.7': - resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-async-generator-functions@7.24.7': - resolution: {integrity: sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-async-to-generator@7.24.7': - resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-block-scoped-functions@7.24.7': - resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-block-scoping@7.24.7': - resolution: {integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-class-properties@7.24.7': - resolution: {integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-class-static-block@7.24.7': - resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - - '@babel/plugin-transform-classes@7.24.7': - resolution: {integrity: sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-computed-properties@7.24.7': - resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-destructuring@7.24.7': - resolution: {integrity: sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-dotall-regex@7.24.7': - resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-duplicate-keys@7.24.7': - resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-dynamic-import@7.24.7': - resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-exponentiation-operator@7.24.7': - resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-export-namespace-from@7.24.7': - resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-flow-strip-types@7.24.7': - resolution: {integrity: sha512-cjRKJ7FobOH2eakx7Ja+KpJRj8+y+/SiB3ooYm/n2UJfxu0oEaOoxOinitkJcPqv9KxS0kxTGPUaR7L2XcXDXA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-for-of@7.24.7': - resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-function-name@7.24.7': - resolution: {integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-json-strings@7.24.7': - resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-literals@7.24.7': - resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-logical-assignment-operators@7.24.7': - resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-member-expression-literals@7.24.7': - resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-amd@7.24.7': - resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-commonjs@7.24.7': - resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-systemjs@7.24.7': - resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-umd@7.24.7': - resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-named-capturing-groups-regex@7.24.7': - resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-transform-new-target@7.24.7': - resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-nullish-coalescing-operator@7.24.7': - resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-numeric-separator@7.24.7': - resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-object-rest-spread@7.24.7': - resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-object-super@7.24.7': - resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-optional-catch-binding@7.24.7': - resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-optional-chaining@7.24.7': - resolution: {integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-parameters@7.24.7': - resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-private-methods@7.24.7': - resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-private-property-in-object@7.24.7': - resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-property-literals@7.24.7': - resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-constant-elements@7.24.7': - resolution: {integrity: sha512-7LidzZfUXyfZ8/buRW6qIIHBY8wAZ1OrY9c/wTr8YhZ6vMPo+Uc/CVFLYY1spZrEQlD4w5u8wjqk5NQ3OVqQKA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-display-name@7.24.7': - resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-jsx-development@7.24.7': - resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-jsx@7.24.7': - resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-pure-annotations@7.24.7': - resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-regenerator@7.24.7': - resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-reserved-words@7.24.7': - resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-runtime@7.24.7': - resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-shorthand-properties@7.24.7': - resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-spread@7.24.7': - resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-sticky-regex@7.24.7': - resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-template-literals@7.24.7': - resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-typeof-symbol@7.24.7': - resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-typescript@7.24.7': - resolution: {integrity: sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-escapes@7.24.7': - resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-property-regex@7.24.7': - resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-regex@7.24.7': - resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-sets-regex@7.24.7': - resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/polyfill@7.12.1': - resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==} - deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information. - - '@babel/preset-env@7.24.7': - resolution: {integrity: sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/preset-flow@7.24.7': - resolution: {integrity: sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/preset-modules@0.1.6-no-external-plugins': - resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} - peerDependencies: - '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 - - '@babel/preset-react@7.24.7': - resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/preset-typescript@7.24.7': - resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/register@7.24.6': - resolution: {integrity: sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/regjsgen@0.8.0': - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} - - '@babel/runtime-corejs3@7.24.7': - resolution: {integrity: sha512-eytSX6JLBY6PVAeQa2bFlDx/7Mmln/gaEpsit5a3WEvjGfiIytEsgAwuIXCPM0xvw0v0cJn3ilq0/TvXrW0kgA==} - engines: {node: '>=6.9.0'} - - '@babel/runtime@7.24.7': - resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==} - engines: {node: '>=6.9.0'} - - '@babel/template@7.24.7': - resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==} - engines: {node: '>=6.9.0'} - - '@babel/traverse@7.24.7': - resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==} - engines: {node: '>=6.9.0'} - - '@babel/types@7.24.7': - resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==} - engines: {node: '>=6.9.0'} - - '@base2/pretty-print-object@1.0.1': - resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} - - '@bcoe/v8-coverage@0.2.3': - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} - - '@braintree/sanitize-url@5.0.2': - resolution: {integrity: sha512-NBEJlHWrhQucLhZGHtSxM2loSaNUMajC7KOYJLyfcdW/6goVoff2HoYI3bz8YCDN0wKGbxtUL0gx2dvHpvnWlw==} - deprecated: Potential XSS vulnerability patched in v6.0.0. - - '@changesets/apply-release-plan@7.0.3': - resolution: {integrity: sha512-klL6LCdmfbEe9oyfLxnidIf/stFXmrbFO/3gT5LU5pcyoZytzJe4gWpTBx3BPmyNPl16dZ1xrkcW7b98e3tYkA==} - - '@changesets/assemble-release-plan@6.0.2': - resolution: {integrity: sha512-n9/Tdq+ze+iUtjmq0mZO3pEhJTKkku9hUxtUadW30jlN7kONqJG3O6ALeXrmc6gsi/nvoCuKjqEJ68Hk8RbMTQ==} - - '@changesets/changelog-git@0.2.0': - resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} - - '@changesets/changelog-github@0.4.8': - resolution: {integrity: sha512-jR1DHibkMAb5v/8ym77E4AMNWZKB5NPzw5a5Wtqm1JepAuIF+hrKp2u04NKM14oBZhHglkCfrla9uq8ORnK/dw==} - - '@changesets/cli@2.27.5': - resolution: {integrity: sha512-UVppOvzCjjylBenFcwcZNG5IaZ8jsIaEVraV/pbXgukYNb0Oqa0d8UWb0LkYzA1Bf1HmUrOfccFcRLheRuA7pA==} - hasBin: true - - '@changesets/config@3.0.1': - resolution: {integrity: sha512-nCr8pOemUjvGJ8aUu8TYVjqnUL+++bFOQHBVmtNbLvKzIDkN/uiP/Z4RKmr7NNaiujIURHySDEGFPftR4GbTUA==} - - '@changesets/errors@0.2.0': - resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} - - '@changesets/get-dependents-graph@2.1.0': - resolution: {integrity: sha512-QOt6pQq9RVXKGHPVvyKimJDYJumx7p4DO5MO9AhRJYgAPgv0emhNqAqqysSVKHBm4sxKlGN4S1zXOIb5yCFuhQ==} - - '@changesets/get-github-info@0.5.2': - resolution: {integrity: sha512-JppheLu7S114aEs157fOZDjFqUDpm7eHdq5E8SSR0gUBTEK0cNSHsrSR5a66xs0z3RWuo46QvA3vawp8BxDHvg==} - - '@changesets/get-release-plan@4.0.2': - resolution: {integrity: sha512-rOalz7nMuMV2vyeP7KBeAhqEB7FM2GFPO5RQSoOoUKKH9L6wW3QyPA2K+/rG9kBrWl2HckPVES73/AuwPvbH3w==} - - '@changesets/get-version-range-type@0.4.0': - resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} - - '@changesets/git@3.0.0': - resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} - - '@changesets/logger@0.1.0': - resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} - - '@changesets/parse@0.4.0': - resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} - - '@changesets/pre@2.0.0': - resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} - - '@changesets/read@0.6.0': - resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} - - '@changesets/should-skip-package@0.1.0': - resolution: {integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==} - - '@changesets/types@4.1.0': - resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} - - '@changesets/types@5.2.1': - resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==} - - '@changesets/types@6.0.0': - resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} - - '@changesets/write@0.3.1': - resolution: {integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==} - - '@cnakazawa/watch@1.0.4': - resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==} - engines: {node: '>=0.1.95'} - hasBin: true - - '@colors/colors@1.5.0': - resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} - engines: {node: '>=0.1.90'} - - '@cspotcode/source-map-support@0.8.1': - resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} - engines: {node: '>=12'} - - '@cypress/request@2.88.12': - resolution: {integrity: sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==} - engines: {node: '>= 6'} - - '@cypress/webpack-preprocessor@5.17.1': - resolution: {integrity: sha512-FE/e8ikPc8z4EVopJCaior3RGy0jd2q9Xcp5NtiwNG4XnLfEnUFTZlAGwXe75sEh4fNMPrBJW1KIz77PX5vGAw==} - peerDependencies: - '@babel/core': ^7.0.1 - '@babel/preset-env': ^7.0.0 - babel-loader: ^8.0.2 || ^9 - webpack: 5.84.1 - - '@cypress/xvfb@1.2.4': - resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} - - '@discoveryjs/json-ext@0.5.7': - resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} - engines: {node: '>=10.0.0'} - - '@emotion/babel-plugin@11.11.0': - resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} - - '@emotion/cache@10.0.29': - resolution: {integrity: sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==} - - '@emotion/cache@11.11.0': - resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==} - - '@emotion/core@10.3.1': - resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==} - peerDependencies: - react: '>=16.3.0' - - '@emotion/css@10.0.27': - resolution: {integrity: sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==} - - '@emotion/hash@0.8.0': - resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} - - '@emotion/hash@0.9.1': - resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==} - - '@emotion/is-prop-valid@0.8.8': - resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} - - '@emotion/is-prop-valid@1.2.2': - resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==} - - '@emotion/memoize@0.7.4': - resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} - - '@emotion/memoize@0.8.1': - resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} - - '@emotion/react@11.11.4': - resolution: {integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==} - peerDependencies: - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@types/react': - optional: true - - '@emotion/serialize@0.11.16': - resolution: {integrity: sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==} - - '@emotion/serialize@1.1.4': - resolution: {integrity: sha512-RIN04MBT8g+FnDwgvIUi8czvr1LU1alUMI05LekWB5DGyTm8cCBMCRpq3GqaiyEDRptEXOyXnvZ58GZYu4kBxQ==} - - '@emotion/sheet@0.9.4': - resolution: {integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==} - - '@emotion/sheet@1.2.2': - resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} - - '@emotion/styled-base@10.3.0': - resolution: {integrity: sha512-PBRqsVKR7QRNkmfH78hTSSwHWcwDpecH9W6heujWAcyp2wdz/64PP73s7fWS1dIPm8/Exc8JAzYS8dEWXjv60w==} - peerDependencies: - '@emotion/core': ^10.0.28 - react: '>=16.3.0' - - '@emotion/styled@10.3.0': - resolution: {integrity: sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ==} - peerDependencies: - '@emotion/core': ^10.0.27 - react: '>=16.3.0' - - '@emotion/styled@11.11.5': - resolution: {integrity: sha512-/ZjjnaNKvuMPxcIiUkf/9SHoG4Q196DRl1w82hQ3WCsjo1IUR8uaGWrC6a87CrYAW0Kb/pK7hk8BnLgLRi9KoQ==} - peerDependencies: - '@emotion/react': ^11.0.0-rc.0 - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@types/react': - optional: true - - '@emotion/stylis@0.8.5': - resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==} - - '@emotion/unitless@0.7.5': - resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==} - - '@emotion/unitless@0.8.1': - resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} - - '@emotion/use-insertion-effect-with-fallbacks@1.0.1': - resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} - peerDependencies: - react: '>=16.8.0' - - '@emotion/utils@0.11.3': - resolution: {integrity: sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==} - - '@emotion/utils@1.2.1': - resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} - - '@emotion/weak-memoize@0.2.5': - resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==} - - '@emotion/weak-memoize@0.3.1': - resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==} - - '@eslint-community/eslint-utils@4.4.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 - - '@eslint/eslintrc@0.4.3': - resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} - engines: {node: ^10.12.0 || >=12.0.0} - - '@fluentui/react-component-event-listener@0.63.1': - resolution: {integrity: sha512-gSMdOh6tI3IJKZFqxfQwbTpskpME0CvxdxGM2tdglmf6ZPVDi0L4+KKIm+2dN8nzb8Ya1A8ZT+Ddq0KmZtwVQg==} - peerDependencies: - react: ^16.8.0 || ^17 || ^18 - react-dom: ^16.8.0 || ^17 || ^18 - - '@fluentui/react-component-ref@0.63.1': - resolution: {integrity: sha512-8MkXX4+R3i80msdbD4rFpEB4WWq2UDvGwG386g3ckIWbekdvN9z2kWAd9OXhRGqB7QeOsoAGWocp6gAMCivRlw==} - peerDependencies: - react: ^16.8.0 || ^17 || ^18 - react-dom: ^16.8.0 || ^17 || ^18 - - '@gar/promisify@1.1.3': - resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} - - '@gilbarbara/deep-equal@0.1.2': - resolution: {integrity: sha512-jk+qzItoEb0D0xSSmrKDDzf9sheQj/BAPxlgNxgmOaA3mxpUa6ndJLYGZKsJnIVEQSD8zcTbyILz7I0HcnBCRA==} - - '@gilbarbara/deep-equal@0.3.1': - resolution: {integrity: sha512-I7xWjLs2YSVMc5gGx1Z3ZG1lgFpITPndpi8Ku55GeEIKpACCPQNS/OTqQbxgTCfq0Ncvcc+CrFov96itVh6Qvw==} - - '@hapi/hoek@9.3.0': - resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} - - '@hapi/topo@5.1.0': - resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} - - '@humanwhocodes/config-array@0.5.0': - resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} - engines: {node: '>=10.10.0'} - deprecated: Use @eslint/config-array instead - - '@humanwhocodes/object-schema@1.2.1': - resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} - deprecated: Use @eslint/object-schema instead - - '@hutson/parse-repository-url@3.0.2': - resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} - engines: {node: '>=6.9.0'} - - '@icons/material@0.2.4': - resolution: {integrity: sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==} - peerDependencies: - react: '*' - - '@isaacs/cliui@8.0.2': - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: '>=12'} - - '@isaacs/string-locale-compare@1.1.0': - resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==} - - '@istanbuljs/load-nyc-config@1.1.0': - resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} - engines: {node: '>=8'} - - '@istanbuljs/schema@0.1.3': - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} - engines: {node: '>=8'} - - '@jest/console@26.6.2': - resolution: {integrity: sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==} - engines: {node: '>= 10.14.2'} - - '@jest/console@28.1.3': - resolution: {integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/console@29.7.0': - resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/core@26.6.3': - resolution: {integrity: sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==} - engines: {node: '>= 10.14.2'} - - '@jest/core@29.7.0': - resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - - '@jest/environment@26.6.2': - resolution: {integrity: sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==} - engines: {node: '>= 10.14.2'} - - '@jest/environment@28.1.3': - resolution: {integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/environment@29.7.0': - resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/expect-utils@28.1.3': - resolution: {integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/expect-utils@29.7.0': - resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/expect@28.1.3': - resolution: {integrity: sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/expect@29.7.0': - resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/fake-timers@26.6.2': - resolution: {integrity: sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==} - engines: {node: '>= 10.14.2'} - - '@jest/fake-timers@28.1.3': - resolution: {integrity: sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/fake-timers@29.7.0': - resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/globals@26.6.2': - resolution: {integrity: sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==} - engines: {node: '>= 10.14.2'} - - '@jest/globals@28.1.3': - resolution: {integrity: sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/globals@29.7.0': - resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/reporters@26.6.2': - resolution: {integrity: sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==} - engines: {node: '>= 10.14.2'} - - '@jest/reporters@28.1.1': - resolution: {integrity: sha512-597Zj4D4d88sZrzM4atEGLuO7SdA/YrOv9SRXHXRNC+/FwPCWxZhBAEzhXoiJzfRwn8zes/EjS8Lo6DouGN5Gg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - - '@jest/reporters@29.7.0': - resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - - '@jest/schemas@28.1.3': - resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/schemas@29.6.3': - resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/source-map@26.6.2': - resolution: {integrity: sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==} - engines: {node: '>= 10.14.2'} - - '@jest/source-map@28.1.2': - resolution: {integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/source-map@29.6.3': - resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/test-result@26.6.2': - resolution: {integrity: sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==} - engines: {node: '>= 10.14.2'} - - '@jest/test-result@28.1.1': - resolution: {integrity: sha512-hPmkugBktqL6rRzwWAtp1JtYT4VHwv8OQ+9lE5Gymj6dHzubI/oJHMUpPOt8NrdVWSrz9S7bHjJUmv2ggFoUNQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/test-result@28.1.3': - resolution: {integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/test-result@29.7.0': - resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/test-sequencer@26.6.3': - resolution: {integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==} - engines: {node: '>= 10.14.2'} - - '@jest/test-sequencer@28.1.3': - resolution: {integrity: sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/test-sequencer@29.7.0': - resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/transform@26.6.2': - resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} - engines: {node: '>= 10.14.2'} - - '@jest/transform@28.1.3': - resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/transform@29.7.0': - resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/types@26.6.2': - resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} - engines: {node: '>= 10.14.2'} - - '@jest/types@28.1.3': - resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/types@29.6.3': - resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jridgewell/gen-mapping@0.3.5': - resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} - engines: {node: '>=6.0.0'} - - '@jridgewell/resolve-uri@3.1.2': - resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} - engines: {node: '>=6.0.0'} - - '@jridgewell/set-array@1.2.1': - resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} - engines: {node: '>=6.0.0'} - - '@jridgewell/source-map@0.3.6': - resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} - - '@jridgewell/sourcemap-codec@1.4.15': - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} - - '@jridgewell/trace-mapping@0.3.25': - resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} - - '@jridgewell/trace-mapping@0.3.9': - resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} - - '@leichtgewicht/ip-codec@2.0.5': - resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} - - '@lerna/add@5.6.2': - resolution: {integrity: sha512-NHrm7kYiqP+EviguY7/NltJ3G9vGmJW6v2BASUOhP9FZDhYbq3O+rCDlFdoVRNtcyrSg90rZFMOWHph4KOoCQQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/bootstrap@5.6.2': - resolution: {integrity: sha512-S2fMOEXbef7nrybQhzBywIGSLhuiQ5huPp1sU+v9Y6XEBsy/2IA+lb0gsZosvPqlRfMtiaFstL+QunaBhlWECA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/changed@5.6.2': - resolution: {integrity: sha512-uUgrkdj1eYJHQGsXXlpH5oEAfu3x0qzeTjgvpdNrxHEdQWi7zWiW59hRadmiImc14uJJYIwVK5q/QLugrsdGFQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/check-working-tree@5.6.2': - resolution: {integrity: sha512-6Vf3IB6p+iNIubwVgr8A/KOmGh5xb4SyRmhFtAVqe33yWl2p3yc+mU5nGoz4ET3JLF1T9MhsePj0hNt6qyOTLQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/child-process@5.6.2': - resolution: {integrity: sha512-QIOQ3jIbWdduHd5892fbo3u7/dQgbhzEBB7cvf+Ys/iCPP8UQrBECi1lfRgA4kcTKC2MyMz0SoyXZz/lFcXc3A==} - engines: {node: ^14.15.0 || >=16.0.0} - - '@lerna/clean@5.6.2': - resolution: {integrity: sha512-A7j8r0Hk2pGyLUyaCmx4keNHen1L/KdcOjb4nR6X8GtTJR5AeA47a8rRKOCz9wwdyMPlo2Dau7d3RV9viv7a5g==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/cli@5.6.2': - resolution: {integrity: sha512-w0NRIEqDOmYKlA5t0iyqx0hbY7zcozvApmfvwF0lhkuhf3k6LRAFSamtimGQWicC779a7J2NXw4ASuBV47Fs1Q==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/collect-uncommitted@5.6.2': - resolution: {integrity: sha512-i0jhxpypyOsW2PpPwIw4xg6EPh7/N3YuiI6P2yL7PynZ8nOv8DkIdoyMkhUP4gALjBfckH8Bj94eIaKMviqW4w==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/collect-updates@5.6.2': - resolution: {integrity: sha512-DdTK13X6PIsh9HINiMniFeiivAizR/1FBB+hDVe6tOhsXFBfjHMw1xZhXlE+mYIoFmDm1UFK7zvQSexoaxRqFA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/command@5.6.2': - resolution: {integrity: sha512-eLVGI9TmxcaGt1M7TXGhhBZoeWOtOedMiH7NuCGHtL6TMJ9k+SCExyx+KpNmE6ImyNOzws6EvYLPLjftiqmoaA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/conventional-commits@5.6.2': - resolution: {integrity: sha512-fPrJpYJhxCgY2uyOCTcAAC6+T6lUAtpEGxLbjWHWTb13oKKEygp9THoFpe6SbAD0fYMb3jeZCZCqNofM62rmuA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/create-symlink@5.6.2': - resolution: {integrity: sha512-0WIs3P6ohPVh2+t5axrLZDE5Dt7fe3Kv0Auj0sBiBd6MmKZ2oS76apIl0Bspdbv8jX8+TRKGv6ib0280D0dtEw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/create@5.6.2': - resolution: {integrity: sha512-+Y5cMUxMNXjTTU9IHpgRYIwKo39w+blui1P+s+qYlZUSCUAew0xNpOBG8iN0Nc5X9op4U094oIdHxv7Dyz6tWQ==} - engines: {node: ^14.15.0 || >=16.0.0} - - '@lerna/describe-ref@5.6.2': - resolution: {integrity: sha512-UqU0N77aT1W8duYGir7R+Sk3jsY/c4lhcCEcnayMpFScMbAp0ETGsW04cYsHK29sgg+ZCc5zEwebBqabWhMhnA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/diff@5.6.2': - resolution: {integrity: sha512-aHKzKvUvUI8vOcshC2Za/bdz+plM3r/ycqUrPqaERzp+kc1pYHyPeXezydVdEmgmmwmyKI5hx4+2QNnzOnun2A==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/exec@5.6.2': - resolution: {integrity: sha512-meZozok5stK7S0oAVn+kdbTmU+kHj9GTXjW7V8kgwG9ld+JJMTH3nKK1L3mEKyk9TFu9vFWyEOF7HNK6yEOoVg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/filter-options@5.6.2': - resolution: {integrity: sha512-4Z0HIhPak2TabTsUqEBQaQeOqgqEt0qyskvsY0oviYvqP/nrJfJBZh4H93jIiNQF59LJCn5Ce3KJJrLExxjlzw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/filter-packages@5.6.2': - resolution: {integrity: sha512-el9V2lTEG0Bbz+Omo45hATkRVnChCTJhcTpth19cMJ6mQ4M5H4IgbWCJdFMBi/RpTnOhz9BhJxDbj95kuIvvzw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/get-npm-exec-opts@5.6.2': - resolution: {integrity: sha512-0RbSDJ+QC9D5UWZJh3DN7mBIU1NhBmdHOE289oHSkjDY+uEjdzMPkEUy+wZ8fCzMLFnnNQkAEqNaOAzZ7dmFLA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/get-packed@5.6.2': - resolution: {integrity: sha512-pp5nNDmtrtd21aKHjwwOY5CS7XNIHxINzGa+Jholn1jMDYUtdskpN++ZqYbATGpW831++NJuiuBVyqAWi9xbXg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/github-client@5.6.2': - resolution: {integrity: sha512-pjALazZoRZtKqfwLBwmW3HPptVhQm54PvA8s3qhCQ+3JkqrZiIFwkkxNZxs3jwzr+aaSOzfhSzCndg0urb0GXA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/gitlab-client@5.6.2': - resolution: {integrity: sha512-TInJmbrsmYIwUyrRxytjO82KjJbRwm67F7LoZs1shAq6rMvNqi4NxSY9j+hT/939alFmEq1zssoy/caeLXHRfQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/global-options@5.6.2': - resolution: {integrity: sha512-kaKELURXTlczthNJskdOvh6GGMyt24qat0xMoJZ8plYMdofJfhz24h1OFcvB/EwCUwP/XV1+ohE5P+vdktbrEg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/has-npm-version@5.6.2': - resolution: {integrity: sha512-kXCnSzffmTWsaK0ol30coyCfO8WH26HFbmJjRBzKv7VGkuAIcB6gX2gqRRgNLLlvI+Yrp+JSlpVNVnu15SEH2g==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/import@5.6.2': - resolution: {integrity: sha512-xQUE49mtcP0z3KUdXBsyvp8rGDz6phuYUoQbhcFRJ7WPcQKzMvtm0XYrER6c2YWEX7QOuDac6tU82P8zTrTBaA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/info@5.6.2': - resolution: {integrity: sha512-MPjY5Olj+fiZHgfEdwXUFRKamdEuLr9Ob/qut8JsB/oQSQ4ALdQfnrOcMT8lJIcC2R67EA5yav2lHPBIkezm8A==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/init@5.6.2': - resolution: {integrity: sha512-ahU3/lgF+J8kdJAQysihFJROHthkIDXfHmvhw7AYnzf94HjxGNXj7nz6i3At1/dM/1nQhR+4/uNR1/OU4tTYYQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/link@5.6.2': - resolution: {integrity: sha512-hXxQ4R3z6rUF1v2x62oIzLyeHL96u7ZBhxqYMJrm763D1VMSDcHKF9CjJfc6J9vH5Z2ZbL6CQg50Hw5mUpJbjg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/list@5.6.2': - resolution: {integrity: sha512-WjE5O2tQ3TcS+8LqXUaxi0YdldhxUhNihT5+Gg4vzGdIlrPDioO50Zjo9d8jOU7i3LMIk6EzCma0sZr2CVfEGg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/listable@5.6.2': - resolution: {integrity: sha512-8Yp49BwkY/5XqVru38Zko+6Wj/sgbwzJfIGEPy3Qu575r1NA/b9eI1gX22aMsEeXUeGOybR7nWT5ewnPQHjqvA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/log-packed@5.6.2': - resolution: {integrity: sha512-O9GODG7tMtWk+2fufn2MOkIDBYMRoKBhYMHshO5Aw/VIsH76DIxpX1koMzWfUngM/C70R4uNAKcVWineX4qzIw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/npm-conf@5.6.2': - resolution: {integrity: sha512-gWDPhw1wjXYXphk/PAghTLexO5T6abVFhXb+KOMCeem366mY0F5bM88PiorL73aErTNUoR8n+V4X29NTZzDZpQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/npm-dist-tag@5.6.2': - resolution: {integrity: sha512-t2RmxV6Eog4acXkUI+EzWuYVbeVVY139pANIWS9qtdajfgp4GVXZi1S8mAIb70yeHdNpCp1mhK0xpCrFH9LvGQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/npm-install@5.6.2': - resolution: {integrity: sha512-AT226zdEo+uGENd37jwYgdALKJAIJK4pNOfmXWZWzVb9oMOr8I2YSjPYvSYUNG7gOo2YJQU8x5Zd7OShv2924Q==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/npm-publish@5.6.2': - resolution: {integrity: sha512-ldSyewCfv9fAeC5xNjL0HKGSUxcC048EJoe/B+KRUmd+IPidvZxMEzRu08lSC/q3V9YeUv9ZvRnxATXOM8CffA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/npm-run-script@5.6.2': - resolution: {integrity: sha512-MOQoWNcAyJivM8SYp0zELM7vg/Dj07j4YMdxZkey+S1UO0T4/vKBxb575o16hH4WeNzC3Pd7WBlb7C8dLOfNwQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/otplease@5.6.2': - resolution: {integrity: sha512-dGS4lzkEQVTMAgji82jp8RK6UK32wlzrBAO4P4iiVHCUTuwNLsY9oeBXvVXSMrosJnl6Hbe0NOvi43mqSucGoA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/output@5.6.2': - resolution: {integrity: sha512-++d+bfOQwY66yo7q1XuAvRcqtRHCG45e/awP5xQomTZ6R1rhWiZ3whWdc9Z6lF7+UtBB9toSYYffKU/xc3L0yQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/pack-directory@5.6.2': - resolution: {integrity: sha512-w5Jk5fo+HkN4Le7WMOudTcmAymcf0xPd302TqAQncjXpk0cb8tZbj+5bbNHsGb58GRjOIm5icQbHXooQUxbHhA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/package-graph@5.6.2': - resolution: {integrity: sha512-TmL61qBBvA3Tc4qICDirZzdFFwWOA6qicIXUruLiE2PblRowRmCO1bKrrP6XbDOspzwrkPef6N2F2/5gHQAnkQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/package@5.6.2': - resolution: {integrity: sha512-LaOC8moyM5J9WnRiWZkedjOninSclBOJyPqhif6mHb2kCFX6jAroNYzE8KM4cphu8CunHuhI6Ixzswtv+Dultw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/prerelease-id-from-version@5.6.2': - resolution: {integrity: sha512-7gIm9fecWFVNy2kpj/KbH11bRcpyANAwpsft3X5m6J7y7A6FTUscCbEvl3ZNdpQKHNuvnHgCtkm3A5PMSCEgkA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/profiler@5.6.2': - resolution: {integrity: sha512-okwkagP5zyRIOYTceu/9/esW7UZFt7lyL6q6ZgpSG3TYC5Ay+FXLtS6Xiha/FQdVdumFqKULDWTGovzUlxcwaw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/project@5.6.2': - resolution: {integrity: sha512-kPIMcIy/0DVWM91FPMMFmXyAnCuuLm3NdhnA8NusE//VuY9wC6QC/3OwuCY39b2dbko/fPZheqKeAZkkMH6sGg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/prompt@5.6.2': - resolution: {integrity: sha512-4hTNmVYADEr0GJTMegWV+GW6n+dzKx1vN9v2ISqyle283Myv930WxuyO0PeYGqTrkneJsyPreCMovuEGCvZ0iQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/publish@5.6.2': - resolution: {integrity: sha512-QaW0GjMJMuWlRNjeDCjmY/vjriGSWgkLS23yu8VKNtV5U3dt5yIKA3DNGV3HgZACuu45kQxzMDsfLzgzbGNtYA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/pulse-till-done@5.6.2': - resolution: {integrity: sha512-eA/X1RCxU5YGMNZmbgPi+Kyfx1Q3bn4P9jo/LZy+/NRRr1po3ASXP2GJZ1auBh/9A2ELDvvKTOXCVHqczKC6rA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/query-graph@5.6.2': - resolution: {integrity: sha512-KRngr96yBP8XYDi9/U62fnGO+ZXqm04Qk6a2HtoTr/ha8QvO1s7Tgm0xs/G7qWXDQHZgunWIbmK/LhxM7eFQrw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/resolve-symlink@5.6.2': - resolution: {integrity: sha512-PDQy+7M8JEFtwIVHJgWvSxHkxJf9zXCENkvIWDB+SsoDPhw9+caewt46bTeP5iGm9pOMu3oZukaWo/TvF7sNjg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/rimraf-dir@5.6.2': - resolution: {integrity: sha512-jgEfzz7uBUiQKteq3G8MtJiA2D2VoKmZSSY3VSiW/tPOSXYxxSHxEsClQdCeNa6+sYrDNDT8fP6MJ3lPLjDeLA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/run-lifecycle@5.6.2': - resolution: {integrity: sha512-u9gGgq/50Fm8dvfcc/TSHOCAQvzLD7poVanDMhHYWOAqRDnellJEEmA1K/Yka4vZmySrzluahkry9G6jcREt+g==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/run-topologically@5.6.2': - resolution: {integrity: sha512-QQ/jGOIsVvUg3izShWsd67RlWYh9UOH2yw97Ol1zySX9+JspCMVQrn9eKq1Pk8twQOFhT87LpT/aaxbTBgREPw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/run@5.6.2': - resolution: {integrity: sha512-c2kJxdFrNg5KOkrhmgwKKUOsfSrGNlFCe26EttufOJ3xfY0VnXlEw9rHOkTgwtu7969rfCdyaVP1qckMrF1Dgw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/symlink-binary@5.6.2': - resolution: {integrity: sha512-Cth+miwYyO81WAmrQbPBrLHuF+F0UUc0el5kRXLH6j5zzaRS3kMM68r40M7MmfH8m3GPi7691UARoWFEotW5jw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/symlink-dependencies@5.6.2': - resolution: {integrity: sha512-dUVNQLEcjVOIQiT9OlSAKt0ykjyJPy8l9i4NJDe2/0XYaUjo8PWsxJ0vrutz27jzi2aZUy07ASmowQZEmnLHAw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/temp-write@5.6.2': - resolution: {integrity: sha512-S5ZNVTurSwWBmc9kh5alfSjmO3+BnRT6shYtOlmVIUYqWeYVYA5C1Htj322bbU4CSNCMFK6NQl4qGKL17HMuig==} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/timer@5.6.2': - resolution: {integrity: sha512-AjMOiLc2B+5Nzdd9hNORetAdZ/WK8YNGX/+2ypzM68TMAPfIT5C40hMlSva9Yg4RsBz22REopXgM5s2zQd5ZQA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/validation-error@5.6.2': - resolution: {integrity: sha512-4WlDUHaa+RSJNyJRtX3gVIAPVzjZD2tle8AJ0ZYBfdZnZmG0VlB2pD1FIbOQPK8sY2h5m0cHLRvfLoLncqHvdQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/version@5.6.2': - resolution: {integrity: sha512-odNSR2rTbHW++xMZSQKu/F6Syrd/sUvwDLPaMKktoOSPKmycHt/eWcuQQyACdtc43Iqeu4uQd7PCLsniqOVFrw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/write-log-file@5.6.2': - resolution: {integrity: sha512-J09l18QnWQ3sXIRwuJkjXY3+KwPR2uO5NgbZGE3GXJK1V/LzOBRMvjGAIbuQHXw25uqe7vpLUpB8drtnFrubCQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@manypkg/find-root@1.1.0': - resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} - - '@manypkg/get-packages@1.1.3': - resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} - - '@mdx-js/mdx@1.6.22': - resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==} - - '@mdx-js/react@1.6.22': - resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} - peerDependencies: - react: ^16.13.1 || ^17.0.0 - - '@mdx-js/util@1.6.22': - resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==} - - '@microsoft/applicationinsights-analytics-js@3.2.2': - resolution: {integrity: sha512-i6/7hYO7lFPE1rMARG6c4bGTuUJUiPb9GRfwMhzArpG39fqduCWpH6y2PdlwZzjyDQAxIOgBiSfLddgsAVoYOA==} - peerDependencies: - tslib: '*' - - '@microsoft/applicationinsights-cfgsync-js@3.2.2': - resolution: {integrity: sha512-W4sQmQC9ZXN8ETYHcXQZl7kMACDkiC/a26OYx9IW8CzgZUI0U3hfDRonaj/1AMkM6zZbC2Zuto4vqpex7abJEg==} - peerDependencies: - tslib: '*' - - '@microsoft/applicationinsights-channel-js@3.2.2': - resolution: {integrity: sha512-4ruoKxgZYYa+K8JJu8RMY0egKazS8xClbx70NQHa/rJ7JYFgN3OIEIBZtFoMcHR8Vg7MEsNE5/wV6o7WWJkVIA==} - peerDependencies: - tslib: '*' - - '@microsoft/applicationinsights-common@2.8.18': - resolution: {integrity: sha512-/PBRmRL6rFCoO3vWpIEHuFnu+TinEYRKWOj+I+XVUH5myZpv+nYvaRdwryVTkmCYxLyL9kxtNn7hQx8DBlhdSw==} - peerDependencies: - tslib: '*' - - '@microsoft/applicationinsights-common@3.2.2': - resolution: {integrity: sha512-e1C35gdkFSzWyUUR1S8FvisXW3nT3p6wWsLNs+vUKLOTQzsvW3XpNMVtNCq4MfHWiYDuz1lPSzo2eENaij1fVA==} - peerDependencies: - tslib: '*' - - '@microsoft/applicationinsights-core-js@2.8.18': - resolution: {integrity: sha512-yPHRZFLpnEO0uSgFPM1BLMRRwjoten9YBbn4pJRbCT4PigLnj748knmWsMwXIdcehtkRTYz78kPYa/LWP7nvmA==} - peerDependencies: - tslib: '*' - - '@microsoft/applicationinsights-core-js@3.2.2': - resolution: {integrity: sha512-dF6LZ4ahdhoHufw+N7OXRDzWT8QN193Dvpd8GLqEZdR/KtCTofPSI63yumu+ZkzKYadf1S3w2xg0OmbdyXexoQ==} - peerDependencies: - tslib: '*' - - '@microsoft/applicationinsights-dependencies-js@3.2.2': - resolution: {integrity: sha512-15EUVU6Kh0B400i/2YNy+V9xMhOwnpzAMTAiyFo90Q1SC5rJIsmzqjAWQnFmxAeq5YQoZ2FuQQpD2qsUajVEQQ==} - peerDependencies: - tslib: '*' - - '@microsoft/applicationinsights-properties-js@3.2.2': - resolution: {integrity: sha512-ovT123foF4WquHdk6f51YpRacx7ZgST7iwqRA/jshy/7NVqlu05JbrVB8IlrxNausdaRwX5CvSCca+SQbOW0ZA==} - peerDependencies: - tslib: '*' - - '@microsoft/applicationinsights-react-js@3.4.3': - resolution: {integrity: sha512-+IIPDYU7DKBwByN7lK/mkMGrnWMGdyIsEZfDzBh/fKDZgGGGgH9B3WHej+vIpdwBcVaPbYx++lonTshn56C9/A==} - peerDependencies: - history: '>= 4.10.1' - react: '>= 17.0.1' - tslib: '*' - - '@microsoft/applicationinsights-shims@2.0.2': - resolution: {integrity: sha512-PoHEgsnmcqruLNHZ/amACqdJ6YYQpED0KSRe6J7gIJTtpZC1FfFU9b1fmDKDKtFoUSrPzEh1qzO3kmRZP0betg==} - - '@microsoft/applicationinsights-shims@3.0.1': - resolution: {integrity: sha512-DKwboF47H1nb33rSUfjqI6ryX29v+2QWcTrRvcQDA32AZr5Ilkr7whOOSsD1aBzwqX0RJEIP1Z81jfE3NBm/Lg==} - - '@microsoft/applicationinsights-web@3.2.2': - resolution: {integrity: sha512-DBJ83Fe7nHzH7QgMKFQrBN/Gbhoo5JgMQkBzJeTb5hMfNZUFOBEHWjytBdU9MEZVpa+Vk+RPQ72IOc0txbnJYw==} - peerDependencies: - tslib: '*' - - '@microsoft/dynamicproto-js@1.1.11': - resolution: {integrity: sha512-gNw9z9LbqLV+WadZ6/MMrWwO3e0LuoUH1wve/1iPsBNbgqeVCiB0EZFNNj2lysxS2gkqoF9hmyVaG3MoM1BkxA==} - - '@microsoft/dynamicproto-js@2.0.3': - resolution: {integrity: sha512-JTWTU80rMy3mdxOjjpaiDQsTLZ6YSGGqsjURsY6AUQtIj0udlF/jYmhdLZu8693ZIC0T1IwYnFa0+QeiMnziBA==} - - '@microsoft/tsdoc-config@0.16.2': - resolution: {integrity: sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==} - - '@microsoft/tsdoc@0.14.2': - resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==} - - '@mole-inc/bin-wrapper@8.0.1': - resolution: {integrity: sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - '@monaco-editor/loader@1.4.0': - resolution: {integrity: sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==} - peerDependencies: - monaco-editor: '>= 0.21.0 < 1' - - '@monaco-editor/react@4.6.0': - resolution: {integrity: sha512-RFkU9/i7cN2bsq/iTkurMWOEErmYcY6JiQI3Jn+WeR/FGISH8JbHERjpS9oRuSOPvDMJI0Z8nJeKkbOs9sBYQw==} - peerDependencies: - monaco-editor: '>= 0.25.0 < 1' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@mrmlnc/readdir-enhanced@2.2.1': - resolution: {integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==} - engines: {node: '>=4'} - - '@mswjs/cookies@0.1.7': - resolution: {integrity: sha512-bDg1ReMBx+PYDB4Pk7y1Q07Zz1iKIEUWQpkEXiA2lEWg9gvOZ8UBmGXilCEUvyYoRFlmr/9iXTRR69TrgSwX/Q==} - - '@mswjs/interceptors@0.12.7': - resolution: {integrity: sha512-eGjZ3JRAt0Fzi5FgXiV/P3bJGj0NqsN7vBS0J0FO2AQRQ0jCKQS4lEFm4wvlSgKQNfeuc/Vz6d81VtU3Gkx/zg==} - - '@mui/base@5.0.0-alpha.128': - resolution: {integrity: sha512-wub3wxNN+hUp8hzilMlXX3sZrPo75vsy1cXEQpqdTfIFlE9HprP1jlulFiPg5tfPst2OKmygXr2hhmgvAKRrzQ==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@mui/base@5.0.0-beta.0': - resolution: {integrity: sha512-ap+juKvt8R8n3cBqd/pGtZydQ4v2I/hgJKnvJRGjpSh3RvsvnDHO4rXov8MHQlH6VqpOekwgilFLGxMZjNTucA==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@mui/core-downloads-tracker@5.15.20': - resolution: {integrity: sha512-DoL2ppgldL16utL8nNyj/P12f8mCNdx/Hb/AJnX9rLY4b52hCMIx1kH83pbXQ6uMy6n54M3StmEbvSGoj2OFuA==} - - '@mui/icons-material@5.15.20': - resolution: {integrity: sha512-oGcKmCuHaYbAAoLN67WKSXtHmEgyWcJToT1uRtmPyxMj9N5uqwc/mRtEnst4Wj/eGr+zYH2FiZQ79v9k7kSk1Q==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@mui/material': 5.13.0 - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@mui/lab@5.0.0-alpha.129': - resolution: {integrity: sha512-niv2mFgSTgdrRJXbWoX9pIivhe80BaFXfdWajXe1bS8VYH3Y5WyJpk8KiU3rbHyJswbFEGd8N6EBBrq11X8yMA==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@mui/material': 5.13.0 - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true - - '@mui/material@5.13.0': - resolution: {integrity: sha512-ckS+9tCpAzpdJdaTF+btF0b6mF9wbXg/EVKtnoAWYi0UKXoXBAVvEUMNpLGA5xdpCdf+A6fPbVUEHs9TsfU+Yw==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true - - '@mui/private-theming@5.15.20': - resolution: {integrity: sha512-BK8F94AIqSrnaPYXf2KAOjGZJgWfvqAVQ2gVR3EryvQFtuBnG6RwodxrCvd3B48VuMy6Wsk897+lQMUxJyk+6g==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@mui/styled-engine@5.15.14': - resolution: {integrity: sha512-RILkuVD8gY6PvjZjqnWhz8fu68dVkqhM5+jYWfB5yhlSQKg+2rHkmEwm75XIeAqI3qwOndK6zELK5H6Zxn4NHw==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.4.1 - '@emotion/styled': ^11.3.0 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - - '@mui/system@5.15.20': - resolution: {integrity: sha512-LoMq4IlAAhxzL2VNUDBTQxAb4chnBe8JvRINVNDiMtHE2PiPOoHlhOPutSxEbaL5mkECPVWSv6p8JEV+uykwIA==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true - - '@mui/types@7.2.14': - resolution: {integrity: sha512-MZsBZ4q4HfzBsywtXgM1Ksj6HDThtiwmOKUXH1pKYISI9gAVXCNHNpo7TlGoGrBaYWZTdNoirIN7JsQcQUjmQQ==} - peerDependencies: - '@types/react': 18.0.18 - peerDependenciesMeta: - '@types/react': - optional: true - - '@mui/utils@5.15.20': - resolution: {integrity: sha512-mAbYx0sovrnpAu1zHc3MDIhPqL8RPVC5W5xcO1b7PiSCJPtckIZmBkp8hefamAvUiAV8gpfMOM6Zb+eSisbI2A==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@mui/x-data-grid@6.20.1': - resolution: {integrity: sha512-x1muWWIG9otkk4FuvoTxH3I4foyA1caFu8ZC9TvMQ+7NSBKcfy/JeLQfKkZk8ACUUosvENdrRIkhqU2xdIqIVg==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@mui/material': 5.13.0 - '@mui/system': ^5.4.1 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - - '@nevware21/ts-async@0.5.1': - resolution: {integrity: sha512-O2kN8n2HpDWJ7Oji+oTMnhITrCndmrNvrHbGDwAIBydx+FWvLE/vrw4QwnRRMvSCa2AJrcP59Ryklxv30KfkWQ==} - - '@nevware21/ts-utils@0.11.2': - resolution: {integrity: sha512-80W8BkS09kkGuUHJX50Fqq+QqAslxUaOQytH+3JhRacXs1EpEt2JOOkYKytqFZAYir3SeH9fahniEaDzIBxlUw==} - - '@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3': - resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==} - - '@nodelib/fs.scandir@2.1.5': - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} - - '@nodelib/fs.stat@1.1.3': - resolution: {integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==} - engines: {node: '>= 6'} - - '@nodelib/fs.stat@2.0.5': - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} - - '@nodelib/fs.walk@1.2.8': - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} - - '@npmcli/arborist@5.3.0': - resolution: {integrity: sha512-+rZ9zgL1lnbl8Xbb1NQdMjveOMwj4lIYfcDtyJHHi5x4X8jtR6m8SXooJMZy5vmFVZ8w7A2Bnd/oX9eTuU8w5A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true - - '@npmcli/fs@1.1.1': - resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} - - '@npmcli/fs@2.1.2': - resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - '@npmcli/git@3.0.2': - resolution: {integrity: sha512-CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - '@npmcli/installed-package-contents@1.0.7': - resolution: {integrity: sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==} - engines: {node: '>= 10'} - hasBin: true - - '@npmcli/map-workspaces@2.0.4': - resolution: {integrity: sha512-bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - '@npmcli/metavuln-calculator@3.1.1': - resolution: {integrity: sha512-n69ygIaqAedecLeVH3KnO39M6ZHiJ2dEv5A7DGvcqCB8q17BGUgW8QaanIkbWUo2aYGZqJaOORTLAlIvKjNDKA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - '@npmcli/move-file@1.1.2': - resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} - engines: {node: '>=10'} - deprecated: This functionality has been moved to @npmcli/fs - - '@npmcli/move-file@2.0.1': - resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This functionality has been moved to @npmcli/fs - - '@npmcli/name-from-folder@1.0.1': - resolution: {integrity: sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA==} - - '@npmcli/node-gyp@2.0.0': - resolution: {integrity: sha512-doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - '@npmcli/package-json@2.0.0': - resolution: {integrity: sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - '@npmcli/promise-spawn@3.0.0': - resolution: {integrity: sha512-s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - '@npmcli/run-script@4.2.1': - resolution: {integrity: sha512-7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - '@nrwl/cli@14.8.8': - resolution: {integrity: sha512-xV1Mu93w5e1Vsd3Pgy9eFC1MHjuLxAAHta5cNgQGxjev+XpnNrGb0x978zpenX7dJ0Pww3Vvi/vdcsaDNg6z4Q==} - - '@nrwl/cypress@14.8.8': - resolution: {integrity: sha512-CSrs4YPZnDFcwyt2zKtyxVNdJH+UMRyg0L3h5lCpSJIOYYr2fUuVKUmq3Z4BzCt1/+q8sA2x4HjRMLhtn6ZbGg==} - peerDependencies: - cypress: '>= 3 < 11' - peerDependenciesMeta: - cypress: - optional: true - - '@nrwl/devkit@14.8.8': - resolution: {integrity: sha512-NLgLRfGyv9aMHxGi+rrVRPLYbuqYoGcRVVr0bo3PP1cVSry1THBoLivvPzqf/tniM1S4EzJdrOSau7dfPVGNFA==} - peerDependencies: - nx: '>= 13.10 <= 15' - - '@nrwl/eslint-plugin-nx@14.8.8': - resolution: {integrity: sha512-adML8IqZTRroEJXQiol65Zwe531ryu1Ayhk0N28ZhBGq2T4IFLNaZwHkZtOWSfOpAFFkYIL6N+LfIHlRKHLUYg==} - peerDependencies: - '@typescript-eslint/parser': ^5.29.0 - eslint-config-prettier: ^8.1.0 - peerDependenciesMeta: - eslint-config-prettier: - optional: true - - '@nrwl/jest@14.8.8': - resolution: {integrity: sha512-zyUKxKmd6joaSPOniKzvHNp2U4kilrFXAeLDsuKbxcXQSQjO7hy7/rFZbU5jfB82Es41HrrL86W8gLAgLN421w==} - - '@nrwl/js@14.8.8': - resolution: {integrity: sha512-U9gAREO0ZOu/pMDrO05f2Z88gxhIyulqlhlbe05PgFYkPXFR712bSKZX2dIH9P1Buk7QYzQWz5vpnGrX0kV8VQ==} - - '@nrwl/linter@14.8.8': - resolution: {integrity: sha512-Siu4KogGRJpESVgWqv1mXM28aqs7e/Uerb4miaSflCfXAhJo7kbsALfDOomhqubvGyE5r4dyorLMtVPbZA5iFg==} - peerDependencies: - eslint: ^8.0.0 - peerDependenciesMeta: - eslint: - optional: true - - '@nrwl/nx-plugin@14.8.8': - resolution: {integrity: sha512-A+clJVUMXC1W0JS3W4hTQ5HI1khQrljVuQRIkjWBNNMnRh7CGcgZIfRt2lx9OrbtoU4uX89oT5DaAtcOVsab0Q==} - - '@nrwl/react@14.8.8': - resolution: {integrity: sha512-VzUJGty9lIBi6VbGB8vSA0jnHlE1dPQj4+W6Vhgpdd2bLQCIBXQZQgX895dFQk6KZ3r1MtuikNPsi4YjJbNJ0w==} - - '@nrwl/rollup@14.8.8': - resolution: {integrity: sha512-l9RSwMjBVi1Qz6Uf5g6za7vtRD5VYPcKV+fUn6sUvglCGUcxH0bP+RARbgNK0NpibfoCp+vo2qmMMhVmqbuHpQ==} - - '@nrwl/storybook@14.8.8': - resolution: {integrity: sha512-N/ZEfmxqujgxJvF0jXu7UBlZmJpeNITqbXlghx3vuzr2XOh8PmQXFQWa3UYtzSgFbb+T2KwX6Wii83zBnSWJMA==} - - '@nrwl/tao@14.8.8': - resolution: {integrity: sha512-cfTNM2cgI1miKLkGemU09v72EEYiRxyRw1jdHJ/zShcvcvt8CZI9mUtcV578Cx1K2yNFLseFkUS0rGh+fbcmrA==} - hasBin: true - - '@nrwl/web@14.8.8': - resolution: {integrity: sha512-wsnE9nACCbkSPKHsIhNFI1vVytNAwG8mo0ig6MDbo7y55Lg9zkRhdHxAchCViL12An8l+Qt/hjoQbOdsOuUBaA==} - - '@nrwl/webpack@14.8.8': - resolution: {integrity: sha512-1uKRuP4aMJAFlHnY16J6CpAjkGFzmt+q4hAGDLxtqPDDdk9cDm5Kiiw0yT+xehgE/HCAa9/iRk3VwlTbjs6GzA==} - - '@nrwl/workspace@14.8.8': - resolution: {integrity: sha512-wxrc8k9XF2Dlq/TujgLWh1bYm4gX5yCooZIQ1EIPvSnnpTl080KKEJ+6YJExQtqE6tOF0W9zVvpkmtVGdS63Ig==} - peerDependencies: - prettier: ^2.6.2 - peerDependenciesMeta: - prettier: - optional: true - - '@octokit/auth-token@3.0.4': - resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==} - engines: {node: '>= 14'} - - '@octokit/core@4.2.4': - resolution: {integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==} - engines: {node: '>= 14'} - - '@octokit/endpoint@7.0.6': - resolution: {integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==} - engines: {node: '>= 14'} - - '@octokit/graphql@5.0.6': - resolution: {integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==} - engines: {node: '>= 14'} - - '@octokit/openapi-types@18.1.1': - resolution: {integrity: sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==} - - '@octokit/plugin-enterprise-rest@6.0.1': - resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==} - - '@octokit/plugin-paginate-rest@6.1.2': - resolution: {integrity: sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==} - engines: {node: '>= 14'} - peerDependencies: - '@octokit/core': '>=4' - - '@octokit/plugin-request-log@1.0.4': - resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} - peerDependencies: - '@octokit/core': '>=3' - - '@octokit/plugin-rest-endpoint-methods@7.2.3': - resolution: {integrity: sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==} - engines: {node: '>= 14'} - peerDependencies: - '@octokit/core': '>=3' - - '@octokit/request-error@3.0.3': - resolution: {integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==} - engines: {node: '>= 14'} - - '@octokit/request@6.2.8': - resolution: {integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==} - engines: {node: '>= 14'} - - '@octokit/rest@19.0.13': - resolution: {integrity: sha512-/EzVox5V9gYGdbAI+ovYj3nXQT1TtTHRT+0eZPcuC05UFSWO3mdO9UY1C0i2eLF9Un1ONJkAk+IEtYGAC+TahA==} - engines: {node: '>= 14'} - - '@octokit/tsconfig@1.0.2': - resolution: {integrity: sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==} - - '@octokit/types@10.0.0': - resolution: {integrity: sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==} - - '@octokit/types@9.3.2': - resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==} - - '@one-ini/wasm@0.1.1': - resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} - - '@open-draft/until@1.0.3': - resolution: {integrity: sha512-Aq58f5HiWdyDlFffbbSjAlv596h/cOnt2DO1w3DOC7OJ5EHs0hd/nycJfiu9RJbT6Yk6F1knnRRXNSpxoIVZ9Q==} - - '@oxygen-ui/primitives@1.11.0': - resolution: {integrity: sha512-z1d75MVfkYYrLiBRFPJJNvcMc1/j5qd9eZZGMXH04Ipg1VbVHj3DGl6BvqRGIHeBdNtm3NgjBwx8VfqHQ/i6HA==} - - '@oxygen-ui/react-icons@1.11.0': - resolution: {integrity: sha512-qb1bCzC6c0xecRHneQy6T0LlGNLMvqomw1kuExubstn1kcebF7Y+TH8hjlrr4F3tp+upTBRXNEsVAUeq24Xnpw==} - peerDependencies: - react: '>=18.0.0' - react-dom: '>=18.0.0' - typescript: '>=4.0.0' - peerDependenciesMeta: - typescript: - optional: true - - '@oxygen-ui/react@1.11.0': - resolution: {integrity: sha512-Ij9E3CvX/fNGQkWbH6ic9LNsldFHeuy/2adksNsJLQgVsbvPct/coXyPYF8duH17dPEu6nksEHJwIfxoz9ekww==} - peerDependencies: - '@emotion/react': ^11.10.5 - '@emotion/styled': ^11.10.5 - '@mui/icons-material': ^5.10.16 - '@mui/lab': 5.0.0-alpha.110 - '@mui/material': 5.13.0 - '@mui/system': ^5.10.16 - '@mui/utils': ^5.10.16 - react: '>=18.0.0' - react-dom: '>=18.0.0' - typescript: '>=4.0.0' - peerDependenciesMeta: - typescript: - optional: true - - '@parcel/watcher@2.0.4': - resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==} - engines: {node: '>= 10.0.0'} - - '@phenomnomnominal/tsquery@4.1.1': - resolution: {integrity: sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==} - peerDependencies: - typescript: ^3 || ^4 - - '@pkgjs/parseargs@0.11.0': - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: '>=14'} - - '@pmmmwh/react-refresh-webpack-plugin@0.4.3': - resolution: {integrity: sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==} - engines: {node: '>= 10.x'} - peerDependencies: - '@types/webpack': 4.x - react-refresh: '>=0.8.3 <0.10.0' - sockjs-client: ^1.4.0 - type-fest: ^0.13.1 - webpack: 5.84.1 - webpack-dev-server: 3.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - '@types/webpack': - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true - - '@pmmmwh/react-refresh-webpack-plugin@0.5.15': - resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==} - engines: {node: '>= 10.13'} - peerDependencies: - '@types/webpack': 4.x || 5.x - react-refresh: '>=0.10.0 <1.0.0' - sockjs-client: ^1.4.0 - type-fest: '>=0.17.0 <5.0.0' - webpack: 5.84.1 - webpack-dev-server: 3.x || 4.x || 5.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - '@types/webpack': - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true - - '@polka/url@1.0.0-next.25': - resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} - - '@popperjs/core@2.11.8': - resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} - - '@reactflow/background@11.2.2': - resolution: {integrity: sha512-gOtae79Zx1zOs9tD4tmKfuiQQOyG0O81BWBCHqlAQgemKlYExElFKOC67lgTDZ4GGFK+4sXrgrWQ5h14hzaFgg==} - peerDependencies: - react: '>=17' - react-dom: '>=17' - - '@reactflow/controls@11.1.13': - resolution: {integrity: sha512-rA74+mbt2bnz9Fba6JL1JsKHNNEK6Nl70+ssfOLKMpRFIg512IroayBWufgPJB82X9dgMIzZfx/UcEFFUFJQ8Q==} - peerDependencies: - react: '>=17' - react-dom: '>=17' - - '@reactflow/core@11.7.2': - resolution: {integrity: sha512-AhszxILp1RNk3SwrnC/eYh1XsOil5yzthYG5k+oTpvLH5H3BtIWIVkeLEJwmL611lPKL3JuScfjliUxBm9128w==} - peerDependencies: - react: '>=17' - react-dom: '>=17' - - '@reactflow/minimap@11.5.2': - resolution: {integrity: sha512-564gP/GMZKaJjVRGIrVLv2gIjgc89+qvNwuZzHnQLXjBw5+nS/QkW57Qx/M33MxVAaM+Z5rJ8gKknMSnxekwvQ==} - peerDependencies: - react: '>=17' - react-dom: '>=17' - - '@reactflow/node-resizer@2.1.0': - resolution: {integrity: sha512-DVL8nnWsltP8/iANadAcTaDB4wsEkx2mOLlBEPNE3yc5loSm3u9l5m4enXRcBym61MiMuTtDPzZMyYYQUjuYIg==} - peerDependencies: - react: '>=17' - react-dom: '>=17' - - '@reactflow/node-toolbar@1.2.1': - resolution: {integrity: sha512-EcMUMzJGAACYQTiUaBm3zxeiiKCPwU2MaoDeZdnEMbvq+2SfohKOur6JklANjv30kL+Pf3xj8QopEtyKTS4XrA==} - peerDependencies: - react: '>=17' - react-dom: '>=17' - - '@remix-run/router@1.16.1': - resolution: {integrity: sha512-es2g3dq6Nb07iFxGk5GuHN20RwBZOsuDQN7izWIisUcv9r+d2C5jQxqmgkdebXgReWfiyUabcki6Fg77mSNrig==} - engines: {node: '>=14.0.0'} - - '@rollup/plugin-babel@5.3.1': - resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} - engines: {node: '>= 10.0.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@types/babel__core': ^7.1.9 - rollup: ^1.20.0||^2.0.0 - peerDependenciesMeta: - '@types/babel__core': - optional: true - - '@rollup/plugin-commonjs@20.0.0': - resolution: {integrity: sha512-5K0g5W2Ol8hAcTHqcTBHiA7M58tfmYi1o9KxeJuuRNpGaTa5iLjcyemBitCBcKXaHamOBBEH2dGom6v6Unmqjg==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^2.38.3 - - '@rollup/plugin-commonjs@25.0.8': - resolution: {integrity: sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.68.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/plugin-dynamic-import-vars@2.1.2': - resolution: {integrity: sha512-4lr2oXxs9hcxtGGaK8s0i9evfjzDrAs7ngw28TqruWKTEm0+U4Eljb+F6HXGYdFv8xRojQlrQwV7M/yxeh3yzQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/plugin-image@2.1.1': - resolution: {integrity: sha512-AgP4U85zuQJdUopLUCM+hTf45RepgXeTb8EJsleExVy99dIoYpt3ZlDYJdKmAc2KLkNntCDg6BPJvgJU3uGF+g==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 - - '@rollup/plugin-image@3.0.3': - resolution: {integrity: sha512-qXWQwsXpvD4trSb8PeFPFajp8JLpRtqqOeNYRUKnEQNHm7e5UP7fuSRcbjQAJ7wDZBbnJvSdY5ujNBQd9B1iFg==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/plugin-inject@5.0.5': - resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/plugin-json@4.1.0': - resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 - - '@rollup/plugin-json@6.1.0': - resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/plugin-node-resolve@13.3.0': - resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} - engines: {node: '>= 10.0.0'} - peerDependencies: - rollup: ^2.42.0 - - '@rollup/plugin-node-resolve@15.2.3': - resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.78.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/plugin-typescript@11.1.6': - resolution: {integrity: sha512-R92yOmIACgYdJ7dJ97p4K69I8gg6IEHt8M7dUBxN3W6nrO8uUxX5ixl0yU/N3aZTi8WhPuICvOHXQvF6FaykAA==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.14.0||^3.0.0||^4.0.0 - tslib: '*' - typescript: '>=3.7.0' - peerDependenciesMeta: - rollup: - optional: true - tslib: - optional: true - - '@rollup/plugin-url@7.0.0': - resolution: {integrity: sha512-cIWcEObrmEPAU8q8NluGWlCPlQDuoSKvkyI3eOFO4fx6W02mLNj4ZEiUT0X2mKMIvQzoWL1feEK9d1yr1ICgrw==} - engines: {node: '>=10.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 - - '@rollup/pluginutils@3.1.0': - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 - - '@rollup/pluginutils@4.2.1': - resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} - engines: {node: '>= 8.0.0'} - - '@rollup/pluginutils@5.1.0': - resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/rollup-android-arm-eabi@4.18.0': - resolution: {integrity: sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==} - cpu: [arm] - os: [android] - - '@rollup/rollup-android-arm64@4.18.0': - resolution: {integrity: sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==} - cpu: [arm64] - os: [android] - - '@rollup/rollup-darwin-arm64@4.18.0': - resolution: {integrity: sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==} - cpu: [arm64] - os: [darwin] - - '@rollup/rollup-darwin-x64@4.18.0': - resolution: {integrity: sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==} - cpu: [x64] - os: [darwin] - - '@rollup/rollup-linux-arm-gnueabihf@4.18.0': - resolution: {integrity: sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==} - cpu: [arm] - os: [linux] - - '@rollup/rollup-linux-arm-musleabihf@4.18.0': - resolution: {integrity: sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==} - cpu: [arm] - os: [linux] - - '@rollup/rollup-linux-arm64-gnu@4.18.0': - resolution: {integrity: sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==} - cpu: [arm64] - os: [linux] - - '@rollup/rollup-linux-arm64-musl@4.18.0': - resolution: {integrity: sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==} - cpu: [arm64] - os: [linux] - - '@rollup/rollup-linux-powerpc64le-gnu@4.18.0': - resolution: {integrity: sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==} - cpu: [ppc64] - os: [linux] - - '@rollup/rollup-linux-riscv64-gnu@4.18.0': - resolution: {integrity: sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==} - cpu: [riscv64] - os: [linux] - - '@rollup/rollup-linux-s390x-gnu@4.18.0': - resolution: {integrity: sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==} - cpu: [s390x] - os: [linux] - - '@rollup/rollup-linux-x64-gnu@4.18.0': - resolution: {integrity: sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-linux-x64-musl@4.18.0': - resolution: {integrity: sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-win32-arm64-msvc@4.18.0': - resolution: {integrity: sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==} - cpu: [arm64] - os: [win32] - - '@rollup/rollup-win32-ia32-msvc@4.18.0': - resolution: {integrity: sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==} - cpu: [ia32] - os: [win32] - - '@rollup/rollup-win32-x64-msvc@4.18.0': - resolution: {integrity: sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==} - cpu: [x64] - os: [win32] - - '@semantic-ui-react/event-stack@3.1.3': - resolution: {integrity: sha512-FdTmJyWvJaYinHrKRsMLDrz4tTMGdFfds299Qory53hBugiDvGC0tEJf+cHsi5igDwWb/CLOgOiChInHwq8URQ==} - peerDependencies: - react: ^16.0.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 - - '@sideway/address@4.1.5': - resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} - - '@sideway/formula@3.0.1': - resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} - - '@sideway/pinpoint@2.0.0': - resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} - - '@sinclair/typebox@0.24.51': - resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==} - - '@sinclair/typebox@0.27.8': - resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} - - '@sindresorhus/is@0.14.0': - resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} - engines: {node: '>=6'} - - '@sindresorhus/is@4.6.0': - resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} - engines: {node: '>=10'} - - '@sindresorhus/merge-streams@2.3.0': - resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} - engines: {node: '>=18'} - - '@sinonjs/commons@1.8.6': - resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} - - '@sinonjs/commons@3.0.1': - resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} - - '@sinonjs/fake-timers@10.3.0': - resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} - - '@sinonjs/fake-timers@6.0.1': - resolution: {integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==} - - '@sinonjs/fake-timers@9.1.2': - resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==} - - '@storybook/addon-actions@6.5.16': - resolution: {integrity: sha512-aADjilFmuD6TNGz2CRPSupnyiA/IGkPJHDBTqMpsDXTUr8xnuD122xkIhg6UxmCM2y1c+ncwYXy3WPK2xXK57g==} - 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 - - '@storybook/addon-backgrounds@6.5.16': - resolution: {integrity: sha512-t7qooZ892BruhilFmzYPbysFwpULt/q4zYXNSmKVbAYta8UVvitjcU4F18p8FpWd9WvhiTr0SDlyhNZuzvDfug==} - 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 - - '@storybook/addon-controls@6.5.16': - resolution: {integrity: sha512-kShSGjq1MjmmyL3l8i+uPz6yddtf82mzys0l82VKtcuyjrr5944wYFJ5NTXMfZxrO/U6FeFsfuFZE/k6ex3EMg==} - 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 - - '@storybook/addon-docs@6.5.16': - resolution: {integrity: sha512-QM9WDZG9P02UvbzLu947a8ZngOrQeAKAT8jCibQFM/+RJ39xBlfm8rm+cQy3dm94wgtjmVkA3mKGOV/yrrsddg==} - peerDependencies: - '@storybook/mdx2-csf': ^0.0.3 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@storybook/mdx2-csf': - optional: true - react: - optional: true - react-dom: - optional: true - - '@storybook/addon-links@6.5.16': - resolution: {integrity: sha512-P/mmqK57NGXnR0i3d/T5B0rIt0Lg8Yq+qionRr3LK3AwG/4yGnYt4GNomLEknn/eEwABYq1Q/Z1aOpgIhNdq5A==} - 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 - - '@storybook/addon-measure@6.5.16': - resolution: {integrity: sha512-DMwnXkmM2L6POTh4KaOWvOAtQ2p9Tr1UUNxz6VXiN5cKFohpCs6x0txdLU5WN8eWIq0VFsO7u5ZX34CGCc6gCg==} - 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 - - '@storybook/addon-outline@6.5.16': - resolution: {integrity: sha512-0du96nha4qltexO0Xq1xB7LeRSbqjC9XqtZLflXG7/X3ABoPD2cXgOV97eeaXUodIyb2qYBbHUfftBeA75x0+w==} - 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 - - '@storybook/addon-toolbars@6.5.16': - resolution: {integrity: sha512-y3PuUKiwOWrAvqx1YdUvArg0UaAwmboXFeR2bkrowk1xcT+xnRO3rML4npFeUl26OQ1FzwxX/cw6nknREBBLEA==} - 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 - - '@storybook/addon-viewport@6.5.16': - resolution: {integrity: sha512-1Vyqf1U6Qng6TXlf4SdqUKyizlw1Wn6+qW8YeA2q1lbkJqn3UlnHXIp8Q0t/5q1dK5BFtREox3+jkGwbJrzkmA==} - 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 - - '@storybook/addons@6.4.22': - resolution: {integrity: sha512-P/R+Jsxh7pawKLYo8MtE3QU/ilRFKbtCewV/T1o5U/gm8v7hKQdFz3YdRMAra4QuCY8bQIp7MKd2HrB5aH5a1A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - - '@storybook/addons@6.5.16': - resolution: {integrity: sha512-p3DqQi+8QRL5k7jXhXmJZLsE/GqHqyY6PcoA1oNTJr0try48uhTGUOYkgzmqtDaa/qPFO5LP+xCPzZXckGtquQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/api@6.4.22': - resolution: {integrity: sha512-lAVI3o2hKupYHXFTt+1nqFct942up5dHH6YD7SZZJGyW21dwKC3HK1IzCsTawq3fZAKkgWFgmOO649hKk60yKg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - - '@storybook/api@6.5.16': - resolution: {integrity: sha512-HOsuT8iomqeTMQJrRx5U8nsC7lJTwRr1DhdD0SzlqL4c80S/7uuCy4IZvOt4sYQjOzW5fOo/kamcoBXyLproTA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/builder-webpack4@6.4.22': - resolution: {integrity: sha512-A+GgGtKGnBneRFSFkDarUIgUTI8pYFdLmUVKEAGdh2hL+vLXAz9A46sEY7C8LQ85XWa8TKy3OTDxqR4+4iWj3A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/builder-webpack4@6.5.16': - resolution: {integrity: sha512-YqDIrVNsUo8r9xc6AxsYDLxVYtMgl5Bxk+8/h1adsOko+jAFhdg6hOcAVxEmoSI0TMASOOVMFlT2hr23ppN2rQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/builder-webpack5@6.4.22': - resolution: {integrity: sha512-vvQ0HgkIIVz+cmaCXIRor0UFZbGZqh4aV0ISSof60BjdW5ld+R+XCr/bdTU6Zg8b2fL9CXh7/LE6fImnIMpRIA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/builder-webpack5@6.5.16': - resolution: {integrity: sha512-kh8Sofm1sbijaHDWtm0sXabqACHVFjikU/fIkkW786kpjoPIPIec1a+hrLgDsZxMU3I7XapSOaCFzWt6FjVXjg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/channel-postmessage@6.4.22': - resolution: {integrity: sha512-gt+0VZLszt2XZyQMh8E94TqjHZ8ZFXZ+Lv/Mmzl0Yogsc2H+6VzTTQO4sv0IIx6xLbpgG72g5cr8VHsxW5kuDQ==} - - '@storybook/channel-postmessage@6.5.16': - resolution: {integrity: sha512-fZZSN29dsUArWOx7e7lTdMA9+7zijVwCwbvi2Fo4fqhRLh1DsTb/VXfz1FKMCWAjNlcX7QQvV25tnxbqsD6lyw==} - - '@storybook/channel-websocket@6.4.22': - resolution: {integrity: sha512-Bm/FcZ4Su4SAK5DmhyKKfHkr7HiHBui6PNutmFkASJInrL9wBduBfN8YQYaV7ztr8ezoHqnYRx8sj28jpwa6NA==} - - '@storybook/channel-websocket@6.5.16': - resolution: {integrity: sha512-wJg2lpBjmRC2GJFzmhB9kxlh109VE58r/0WhFtLbwKvPqsvGf82xkBEl6BtBCvIQ4stzYnj/XijjA8qSi2zpOg==} - - '@storybook/channels@6.4.22': - resolution: {integrity: sha512-cfR74tu7MLah1A8Rru5sak71I+kH2e/sY6gkpVmlvBj4hEmdZp4Puj9PTeaKcMXh9DgIDPNA5mb8yvQH6VcyxQ==} - - '@storybook/channels@6.5.16': - resolution: {integrity: sha512-VylzaWQZaMozEwZPJdyJoz+0jpDa8GRyaqu9TGG6QGv+KU5POoZaGLDkRE7TzWkyyP0KQLo80K99MssZCpgSeg==} - - '@storybook/cli@6.5.16': - resolution: {integrity: sha512-6hcIUvoQxmK9OZ/dmt2eXMbdeCJseRjLwIk4y2SdWd3chpjMDUVhIMJHU4qc2+6rbK+iwL7JAsOUEu/ywkgEow==} - hasBin: true - - '@storybook/client-api@6.4.22': - resolution: {integrity: sha512-sO6HJNtrrdit7dNXQcZMdlmmZG1k6TswH3gAyP/DoYajycrTwSJ6ovkarzkO+0QcJ+etgra4TEdTIXiGHBMe/A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - - '@storybook/client-api@6.5.16': - resolution: {integrity: sha512-i3UwkzzUFw8I+E6fOcgB5sc4oU2fhvaKnqC1mpd9IYGJ9JN9MnGIaVl3Ko28DtFItu/QabC9JsLIJVripFLktQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/client-logger@6.4.22': - resolution: {integrity: sha512-LXhxh/lcDsdGnK8kimqfhu3C0+D2ylCSPPQNbU0IsLRmTfbpQYMdyl0XBjPdHiRVwlL7Gkw5OMjYemQgJ02zlw==} - - '@storybook/client-logger@6.5.16': - resolution: {integrity: sha512-pxcNaCj3ItDdicPTXTtmYJE3YC1SjxFrBmHcyrN+nffeNyiMuViJdOOZzzzucTUG0wcOOX8jaSyak+nnHg5H1Q==} - - '@storybook/codemod@6.5.16': - resolution: {integrity: sha512-bYu0QzkWpgILFdQnbIsnICfL08Z4xmLSmL0Rq9WWGRnSnNnGzX5P57gz+fW7+NHFGxdCTCuHJPvwAXGuJQApPQ==} - - '@storybook/components@6.4.22': - resolution: {integrity: sha512-dCbXIJF9orMvH72VtAfCQsYbe57OP7fAADtR6YTwfCw9Sm1jFuZr8JbblQ1HcrXEoJG21nOyad3Hm5EYVb/sBw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - - '@storybook/components@6.5.16': - resolution: {integrity: sha512-LzBOFJKITLtDcbW9jXl0/PaG+4xAz25PK8JxPZpIALbmOpYWOAPcO6V9C2heX6e6NgWFMUxjplkULEk9RCQMNA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/core-client@6.4.22': - resolution: {integrity: sha512-uHg4yfCBeM6eASSVxStWRVTZrAnb4FT6X6v/xDqr4uXCpCttZLlBzrSDwPBLNNLtCa7ntRicHM8eGKIOD5lMYQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - webpack: 5.84.1 - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/core-client@6.5.16': - resolution: {integrity: sha512-14IRaDrVtKrQ+gNWC0wPwkCNfkZOKghYV/swCUnQX3rP99defsZK8Hc7xHIYoAiOP5+sc3sweRAxgmFiJeQ1Ig==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - webpack: 5.84.1 - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/core-common@6.4.22': - resolution: {integrity: sha512-PD3N/FJXPNRHeQS2zdgzYFtqPLdi3MLwAicbnw+U3SokcsspfsAuyYHZOYZgwO8IAEKy6iCc7TpBdiSJZ/vAKQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/core-common@6.5.16': - resolution: {integrity: sha512-2qtnKP3TTOzt2cp6LXKRTh7XrI9z5VanMnMTgeoFcA5ebnndD4V6BExQUdYPClE/QooLx6blUWNgS9dFEpjSqQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/core-events@6.4.22': - resolution: {integrity: sha512-5GYY5+1gd58Gxjqex27RVaX6qbfIQmJxcbzbNpXGNSqwqAuIIepcV1rdCVm6I4C3Yb7/AQ3cN5dVbf33QxRIwA==} - - '@storybook/core-events@6.5.16': - resolution: {integrity: sha512-qMZQwmvzpH5F2uwNUllTPg6eZXr2OaYZQRRN8VZJiuorZzDNdAFmiVWMWdkThwmyLEJuQKXxqCL8lMj/7PPM+g==} - - '@storybook/core-server@6.4.22': - resolution: {integrity: sha512-wFh3e2fa0un1d4+BJP+nd3FVWUO7uHTqv3OGBfOmzQMKp4NU1zaBNdSQG7Hz6mw0fYPBPZgBjPfsJRwIYLLZyw==} - peerDependencies: - '@storybook/builder-webpack5': 6.4.22 - '@storybook/manager-webpack5': 6.4.22 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - '@storybook/builder-webpack5': - optional: true - '@storybook/manager-webpack5': - optional: true - typescript: - optional: true - - '@storybook/core-server@6.5.16': - resolution: {integrity: sha512-/3NPfmNyply395Dm0zaVZ8P9aruwO+tPx4D6/jpw8aqrRSwvAMndPMpoMCm0NXcpSm5rdX+Je4S3JW6JcggFkA==} - peerDependencies: - '@storybook/builder-webpack5': '*' - '@storybook/manager-webpack5': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - '@storybook/builder-webpack5': - optional: true - '@storybook/manager-webpack5': - optional: true - typescript: - optional: true - - '@storybook/core@6.4.22': - resolution: {integrity: sha512-KZYJt7GM5NgKFXbPRZZZPEONZ5u/tE/cRbMdkn/zWN3He8+VP+65/tz8hbriI/6m91AWVWkBKrODSkeq59NgRA==} - peerDependencies: - '@storybook/builder-webpack5': 6.4.22 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - webpack: 5.84.1 - peerDependenciesMeta: - '@storybook/builder-webpack5': - optional: true - typescript: - optional: true - - '@storybook/core@6.5.16': - resolution: {integrity: sha512-CEF3QFTsm/VMnMKtRNr4rRdLeIkIG0g1t26WcmxTdSThNPBd8CsWzQJ7Jqu7CKiut+MU4A1LMOwbwCE5F2gmyA==} - peerDependencies: - '@storybook/builder-webpack5': '*' - '@storybook/manager-webpack5': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - webpack: 5.84.1 - peerDependenciesMeta: - '@storybook/builder-webpack5': - optional: true - '@storybook/manager-webpack5': - optional: true - typescript: - optional: true - - '@storybook/csf-tools@6.4.22': - resolution: {integrity: sha512-LMu8MZAiQspJAtMBLU2zitsIkqQv7jOwX7ih5JrXlyaDticH7l2j6Q+1mCZNWUOiMTizj0ivulmUsSaYbpToSw==} - - '@storybook/csf-tools@6.5.16': - resolution: {integrity: sha512-+WD4sH/OwAfXZX3IN6/LOZ9D9iGEFcN+Vvgv9wOsLRgsAZ10DG/NK6c1unXKDM/ogJtJYccNI8Hd+qNE/GFV6A==} - peerDependencies: - '@storybook/mdx2-csf': ^0.0.3 - peerDependenciesMeta: - '@storybook/mdx2-csf': - optional: true - - '@storybook/csf@0.0.2--canary.4566f4d.1': - resolution: {integrity: sha512-9OVvMVh3t9znYZwb0Svf/YQoxX2gVOeQTGe2bses2yj+a3+OJnCrUF3/hGv6Em7KujtOdL2LL+JnG49oMVGFgQ==} - - '@storybook/csf@0.0.2--canary.87bc651.0': - resolution: {integrity: sha512-ajk1Uxa+rBpFQHKrCcTmJyQBXZ5slfwHVEaKlkuFaW77it8RgbPJp/ccna3sgoi8oZ7FkkOyvv1Ve4SmwFqRqw==} - - '@storybook/docs-tools@6.5.16': - resolution: {integrity: sha512-o+rAWPRGifjBF5xZzTKOqnHN3XQWkl0QFJYVDIiJYJrVll7ExCkpEq/PahOGzIBBV+tpMstJgmKM3lr/lu/jmg==} - - '@storybook/manager-webpack4@6.4.22': - resolution: {integrity: sha512-nzhDMJYg0vXdcG0ctwE6YFZBX71+5NYaTGkxg3xT7gbgnP1YFXn9gVODvgq3tPb3gcRapjyOIxUa20rV+r8edA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/manager-webpack4@6.5.16': - resolution: {integrity: sha512-5VJZwmQU6AgdsBPsYdu886UKBHQ9SJEnFMaeUxKEclXk+iRsmbzlL4GHKyVd6oGX/ZaecZtcHPR6xrzmA4Ziew==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/manager-webpack5@6.4.22': - resolution: {integrity: sha512-BMkOMselT4jOn7EQGt748FurM5ewtDfZtOQPCVK8MZX+HYE2AgjNOzm562TYODIxk12Fkhgj3EIz7GGMe1U3RA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/manager-webpack5@6.5.16': - resolution: {integrity: sha512-OtxXv8JCe0r/0rE5HxaFicsNsXA+fqZxzokxquFFgrYf/1Jg4d7QX6/pG5wINF+5qInJfVkRG6xhPzv1s5bk9Q==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/mdx1-csf@0.0.1': - resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} - - '@storybook/node-logger@6.4.22': - resolution: {integrity: sha512-sUXYFqPxiqM7gGH7gBXvO89YEO42nA4gBicJKZjj9e+W4QQLrftjF9l+mAw2K0mVE10Bn7r4pfs5oEZ0aruyyA==} - - '@storybook/node-logger@6.5.16': - resolution: {integrity: sha512-YjhBKrclQtjhqFNSO+BZK+RXOx6EQypAELJKoLFaawg331e8VUfvUuRCNB3fcEWp8G9oH13PQQte0OTjLyyOYg==} - - '@storybook/postinstall@6.5.16': - resolution: {integrity: sha512-08K2q+qN6pqyPW7PHLCZ5G5Xa6Wosd6t0F16PQ4abX2ItlJLabVoJN5mZ0gm/aeLTjD8QYr8IDvacu4eXh0SVA==} - - '@storybook/preview-web@6.4.22': - resolution: {integrity: sha512-sWS+sgvwSvcNY83hDtWUUL75O2l2LY/GTAS0Zp2dh3WkObhtuJ/UehftzPZlZmmv7PCwhb4Q3+tZDKzMlFxnKQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - - '@storybook/preview-web@6.5.16': - resolution: {integrity: sha512-IJnvfe2sKCfk7apN9Fu9U8qibbarrPX5JB55ZzK1amSHVmSDuYk5MIMc/U3NnSQNnvd1DO5v/zMcGgj563hrtg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/react-docgen-typescript-plugin@1.0.2-canary.253f8c1.0': - resolution: {integrity: sha512-mmoRG/rNzAiTbh+vGP8d57dfcR2aP+5/Ll03KKFyfy5FqWFm/Gh7u27ikx1I3LmVMI8n6jh5SdWMkMKon7/tDw==} - peerDependencies: - typescript: '>= 3.x' - webpack: 5.84.1 - - '@storybook/react-docgen-typescript-plugin@1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0': - resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==} - peerDependencies: - typescript: '>= 3.x' - webpack: 5.84.1 - - '@storybook/react@6.4.22': - resolution: {integrity: sha512-5BFxtiguOcePS5Ty/UoH7C6odmvBYIZutfiy4R3Ua6FYmtxac5vP9r5KjCz1IzZKT8mCf4X+PuK1YvDrPPROgQ==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - '@babel/core': ^7.11.5 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - '@babel/core': - optional: true - typescript: - optional: true - - '@storybook/react@6.5.16': - resolution: {integrity: sha512-cBtNlOzf/MySpNLBK22lJ8wFU22HnfTB2xJyBk7W7Zi71Lm7Uxkhv1Pz8HdiQndJ0SlsAAQOWjQYsSZsGkZIaA==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - '@babel/core': ^7.11.5 - '@storybook/builder-webpack4': '*' - '@storybook/builder-webpack5': '*' - '@storybook/manager-webpack4': '*' - '@storybook/manager-webpack5': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - require-from-string: ^2.0.2 - typescript: '*' - peerDependenciesMeta: - '@babel/core': - optional: true - '@storybook/builder-webpack4': - optional: true - '@storybook/builder-webpack5': - optional: true - '@storybook/manager-webpack4': - optional: true - '@storybook/manager-webpack5': - optional: true - typescript: - optional: true - - '@storybook/router@6.4.22': - resolution: {integrity: sha512-zeuE8ZgFhNerQX8sICQYNYL65QEi3okyzw7ynF58Ud6nRw4fMxSOHcj2T+nZCIU5ufozRL4QWD/Rg9P2s/HtLw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - - '@storybook/router@6.5.16': - resolution: {integrity: sha512-ZgeP8a5YV/iuKbv31V8DjPxlV4AzorRiR8OuSt/KqaiYXNXlOoQDz/qMmiNcrshrfLpmkzoq7fSo4T8lWo2UwQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/semver@7.3.2': - resolution: {integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==} - engines: {node: '>=10'} - hasBin: true - - '@storybook/source-loader@6.5.16': - resolution: {integrity: sha512-fyVl4jrM/5JLrb48aqXPu7sTsmySQaVGFp1zfeqvPPlJRFMastDrePm5XGPN7Qjv1wsKmpuBvuweFKOT1pru3g==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/store@6.4.22': - resolution: {integrity: sha512-lrmcZtYJLc2emO+1l6AG4Txm9445K6Pyv9cGAuhOJ9Kks0aYe0YtvMkZVVry0RNNAIv6Ypz72zyKc/QK+tZLAQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - - '@storybook/store@6.5.16': - resolution: {integrity: sha512-g+bVL5hmMq/9cM51K04e37OviUPHT0rHHrRm5wj/hrf18Kd9120b3sxdQ5Dc+HZ292yuME0n+cyrQPTYx9Epmw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/telemetry@6.5.16': - resolution: {integrity: sha512-CWr5Uko1l9jJW88yTXsZTj/3GTabPvw0o7pDPOXPp8JRZiJTxv1JFaFCafhK9UzYbgcRuGfCC8kEWPZims7iKA==} - - '@storybook/theming@6.4.22': - resolution: {integrity: sha512-NVMKH/jxSPtnMTO4VCN1k47uztq+u9fWv4GSnzq/eezxdGg9ceGL4/lCrNGoNajht9xbrsZ4QvsJ/V2sVGM8wA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - - '@storybook/theming@6.5.16': - resolution: {integrity: sha512-hNLctkjaYLRdk1+xYTkC1mg4dYz2wSv6SqbLpcKMbkPHTE0ElhddGPHQqB362md/w9emYXNkt1LSMD8Xk9JzVQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/ui@6.4.22': - resolution: {integrity: sha512-UVjMoyVsqPr+mkS1L7m30O/xrdIEgZ5SCWsvqhmyMUok3F3tRB+6M+OA5Yy+cIVfvObpA7MhxirUT1elCGXsWQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - - '@storybook/ui@6.5.16': - resolution: {integrity: sha512-rHn/n12WM8BaXtZ3IApNZCiS+C4Oc5+Lkl4MoctX8V7QSml0SxZBB5hsJ/AiWkgbRxjQpa/L/Nt7/Qw0FjTH/A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@svgr/babel-plugin-add-jsx-attribute@4.2.0': - resolution: {integrity: sha512-j7KnilGyZzYr/jhcrSYS3FGWMZVaqyCG0vzMCwzvei0coIkczuYMcniK07nI0aHJINciujjH11T72ICW5eL5Ig==} - engines: {node: '>=8'} - - '@svgr/babel-plugin-add-jsx-attribute@5.4.0': - resolution: {integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-add-jsx-attribute@6.5.1': - resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-remove-jsx-attribute@4.2.0': - resolution: {integrity: sha512-3XHLtJ+HbRCH4n28S7y/yZoEQnRpl0tvTZQsHqvaeNXPra+6vE5tbRliH3ox1yZYPCxrlqaJT/Mg+75GpDKlvQ==} - engines: {node: '>=8'} - - '@svgr/babel-plugin-remove-jsx-attribute@5.4.0': - resolution: {integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-remove-jsx-attribute@8.0.0': - resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-remove-jsx-empty-expression@4.2.0': - resolution: {integrity: sha512-yTr2iLdf6oEuUE9MsRdvt0NmdpMBAkgK8Bjhl6epb+eQWk6abBaX3d65UZ3E3FWaOwePyUgNyNCMVG61gGCQ7w==} - engines: {node: '>=8'} - - '@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1': - resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0': - resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-replace-jsx-attribute-value@4.2.0': - resolution: {integrity: sha512-U9m870Kqm0ko8beHawRXLGLvSi/ZMrl89gJ5BNcT452fAjtF2p4uRzXkdzvGJJJYBgx7BmqlDjBN/eCp5AAX2w==} - engines: {node: '>=8'} - - '@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1': - resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1': - resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-svg-dynamic-title@4.3.3': - resolution: {integrity: sha512-w3Be6xUNdwgParsvxkkeZb545VhXEwjGMwExMVBIdPQJeyMQHqm9Msnb2a1teHBqUYL66qtwfhNkbj1iarCG7w==} - engines: {node: '>=8'} - - '@svgr/babel-plugin-svg-dynamic-title@5.4.0': - resolution: {integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-svg-dynamic-title@6.5.1': - resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-svg-em-dimensions@4.2.0': - resolution: {integrity: sha512-C0Uy+BHolCHGOZ8Dnr1zXy/KgpBOkEUYY9kI/HseHVPeMbluaX3CijJr7D4C5uR8zrc1T64nnq/k63ydQuGt4w==} - engines: {node: '>=8'} - - '@svgr/babel-plugin-svg-em-dimensions@5.4.0': - resolution: {integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-svg-em-dimensions@6.5.1': - resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-transform-react-native-svg@4.2.0': - resolution: {integrity: sha512-7YvynOpZDpCOUoIVlaaOUU87J4Z6RdD6spYN4eUb5tfPoKGSF9OG2NuhgYnq4jSkAxcpMaXWPf1cePkzmqTPNw==} - engines: {node: '>=8'} - - '@svgr/babel-plugin-transform-react-native-svg@5.4.0': - resolution: {integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-transform-react-native-svg@6.5.1': - resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-transform-svg-component@4.2.0': - resolution: {integrity: sha512-hYfYuZhQPCBVotABsXKSCfel2slf/yvJY8heTVX1PCTaq/IgASq1IyxPPKJ0chWREEKewIU/JMSsIGBtK1KKxw==} - engines: {node: '>=8'} - - '@svgr/babel-plugin-transform-svg-component@5.5.0': - resolution: {integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-transform-svg-component@6.5.1': - resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} - engines: {node: '>=12'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-preset@4.3.3': - resolution: {integrity: sha512-6PG80tdz4eAlYUN3g5GZiUjg2FMcp+Wn6rtnz5WJG9ITGEF1pmFdzq02597Hn0OmnQuCVaBYQE1OVFAnwOl+0A==} - engines: {node: '>=8'} - - '@svgr/babel-preset@5.5.0': - resolution: {integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==} - engines: {node: '>=10'} - - '@svgr/babel-preset@6.5.1': - resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/core@4.3.3': - resolution: {integrity: sha512-qNuGF1QON1626UCaZamWt5yedpgOytvLj5BQZe2j1k1B8DUG4OyugZyfEwBeXozCUwhLEpsrgPrE+eCu4fY17w==} - engines: {node: '>=8'} - - '@svgr/core@5.5.0': - resolution: {integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==} - engines: {node: '>=10'} - - '@svgr/core@6.5.1': - resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} - engines: {node: '>=10'} - - '@svgr/hast-util-to-babel-ast@4.3.2': - resolution: {integrity: sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg==} - engines: {node: '>=8'} - - '@svgr/hast-util-to-babel-ast@5.5.0': - resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} - engines: {node: '>=10'} - - '@svgr/hast-util-to-babel-ast@6.5.1': - resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} - engines: {node: '>=10'} - - '@svgr/plugin-jsx@4.3.3': - resolution: {integrity: sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w==} - engines: {node: '>=8'} - - '@svgr/plugin-jsx@5.5.0': - resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} - engines: {node: '>=10'} - - '@svgr/plugin-jsx@6.5.1': - resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==} - engines: {node: '>=10'} - peerDependencies: - '@svgr/core': ^6.0.0 - - '@svgr/plugin-svgo@4.3.1': - resolution: {integrity: sha512-PrMtEDUWjX3Ea65JsVCwTIXuSqa3CG9px+DluF1/eo9mlDrgrtFE7NE/DjdhjJgSM9wenlVBzkzneSIUgfUI/w==} - engines: {node: '>=8'} - - '@svgr/plugin-svgo@5.5.0': - resolution: {integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==} - engines: {node: '>=10'} - - '@svgr/plugin-svgo@6.5.1': - resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==} - engines: {node: '>=10'} - peerDependencies: - '@svgr/core': '*' - - '@svgr/rollup@6.5.1': - resolution: {integrity: sha512-GeUfq0grJfpcn2jRWRaZ4npn27nnWK21vUj6MqDqknuJnEqGADcZZjO9wrUAaPLr3InAnQi0Z7nwiNUdzkaj6A==} - engines: {node: '>=10'} - - '@svgr/webpack@4.3.2': - resolution: {integrity: sha512-F3VE5OvyOWBEd2bF7BdtFRyI6E9it3mN7teDw0JQTlVtc4HZEYiiLSl+Uf9Uub6IYHVGc+qIrxxDyeedkQru2w==} - engines: {node: '>=8'} - - '@svgr/webpack@5.5.0': - resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==} - engines: {node: '>=10'} - - '@svgr/webpack@6.5.1': - resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==} - engines: {node: '>=10'} - - '@swc-node/core@1.13.1': - resolution: {integrity: sha512-emB5l2nZsXjUEAuusqjYvWnQMLWZp6K039Mv8aq5SX1rsNM/N7DNhw1i4/DX7AyzNZ0tT+ASWyTvqEURldp5HA==} - engines: {node: '>= 10'} - peerDependencies: - '@swc/core': '>= 1.4.13' - '@swc/types': '>= 0.1' - - '@swc-node/register@1.9.2': - resolution: {integrity: sha512-BBjg0QNuEEmJSoU/++JOXhrjWdu3PTyYeJWsvchsI0Aqtj8ICkz/DqlwtXbmZVZ5vuDPpTfFlwDBZe81zgShMA==} - peerDependencies: - '@swc/core': '>= 1.4.13' - typescript: '>= 4.3' - - '@swc-node/sourcemap-support@0.5.0': - resolution: {integrity: sha512-fbhjL5G0YvFoWwNhWleuBUfotiX+USiA9oJqu9STFw+Hb0Cgnddn+HVS/K5fI45mn92e8V+cHD2jgFjk4w2T9Q==} - - '@swc/cli@0.1.65': - resolution: {integrity: sha512-4NcgsvJVHhA7trDnMmkGLLvWMHu2kSy+qHx6QwRhhJhdiYdNUrhdp+ERxen73sYtaeEOYeLJcWrQ60nzKi6rpg==} - engines: {node: '>= 12.13'} - hasBin: true - peerDependencies: - '@swc/core': ^1.2.66 - chokidar: ^3.5.1 - peerDependenciesMeta: - chokidar: - optional: true - - '@swc/core-darwin-arm64@1.6.5': - resolution: {integrity: sha512-RGQhMdni2v1/ANQ/2K+F+QYdzaucekYBewZcX1ogqJ8G5sbPaBdYdDN1qQ4kHLCIkPtGP6qC7c71qPEqL2RidQ==} - engines: {node: '>=10'} - cpu: [arm64] - os: [darwin] - - '@swc/core-darwin-x64@1.6.5': - resolution: {integrity: sha512-/pSN0/Jtcbbb9+ovS9rKxR3qertpFAM3OEJr/+Dh/8yy7jK5G5EFPIrfsw/7Q5987ERPIJIH6BspK2CBB2tgcg==} - engines: {node: '>=10'} - cpu: [x64] - os: [darwin] - - '@swc/core-linux-arm-gnueabihf@1.6.5': - resolution: {integrity: sha512-B0g/dROCE747RRegs/jPHuKJgwXLracDhnqQa80kFdgWEMjlcb7OMCgs5OX86yJGRS4qcYbiMGD0Pp7Kbqn3yw==} - engines: {node: '>=10'} - cpu: [arm] - os: [linux] - - '@swc/core-linux-arm64-gnu@1.6.5': - resolution: {integrity: sha512-W8meapgXTq8AOtSvDG4yKR8ant2WWD++yOjgzAleB5VAC+oC+aa8YJROGxj8HepurU8kurqzcialwoMeq5SZZQ==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - - '@swc/core-linux-arm64-musl@1.6.5': - resolution: {integrity: sha512-jyCKqoX50Fg8rJUQqh4u5PqnE7nqYKXHjVH2WcYr114/MU21zlsI+YL6aOQU1XP8bJQ2gPQ1rnlnGJdEHiKS/w==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - - '@swc/core-linux-x64-gnu@1.6.5': - resolution: {integrity: sha512-G6HmUn/RRIlXC0YYFfBz2qh6OZkHS/KUPkhoG4X9ADcgWXXjOFh6JrefwsYj8VBAJEnr5iewzjNfj+nztwHaeA==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - - '@swc/core-linux-x64-musl@1.6.5': - resolution: {integrity: sha512-AQpBjBnelQDSbeTJA50AXdS6+CP66LsXIMNTwhPSgUfE7Bx1ggZV11Fsi4Q5SGcs6a8Qw1cuYKN57ZfZC5QOuA==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - - '@swc/core-win32-arm64-msvc@1.6.5': - resolution: {integrity: sha512-MZTWM8kUwS30pVrtbzSGEXtek46aXNb/mT9D6rsS7NvOuv2w+qZhjR1rzf4LNbbn5f8VnR4Nac1WIOYZmfC5ng==} - engines: {node: '>=10'} - cpu: [arm64] - os: [win32] - - '@swc/core-win32-ia32-msvc@1.6.5': - resolution: {integrity: sha512-WZdu4gISAr3yOm1fVwKhhk6+MrP7kVX0KMP7+ZQFTN5zXQEiDSDunEJKVgjMVj3vlR+6mnAqa/L0V9Qa8+zKlQ==} - engines: {node: '>=10'} - cpu: [ia32] - os: [win32] - - '@swc/core-win32-x64-msvc@1.6.5': - resolution: {integrity: sha512-ezXgucnMTzlFIxQZw7ls/5r2hseFaRoDL04cuXUOs97E8r+nJSmFsRQm/ygH5jBeXNo59nyZCalrjJAjwfgACA==} - engines: {node: '>=10'} - cpu: [x64] - os: [win32] - - '@swc/core@1.6.5': - resolution: {integrity: sha512-tyVvUK/HDOUUsK6/GmWvnqUtD9oDpPUA4f7f7JCOV8hXxtfjMtAZeBKf93yrB1XZet69TDR7EN0hFC6i4MF0Ig==} - engines: {node: '>=10'} - peerDependencies: - '@swc/helpers': '*' - peerDependenciesMeta: - '@swc/helpers': - optional: true - - '@swc/counter@0.1.3': - resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} - - '@swc/helpers@0.3.17': - resolution: {integrity: sha512-tb7Iu+oZ+zWJZ3HJqwx8oNwSDIU440hmVMDPhpACWQWnrZHK99Bxs70gT1L2dnr5Hg50ZRWEFkQCAnOVVV0z1Q==} - - '@swc/types@0.1.9': - resolution: {integrity: sha512-qKnCno++jzcJ4lM4NTfYifm1EFSCeIfKiAHAfkENZAV5Kl9PjJIyd2yeeVv6c/2CckuLyv2NmRC5pv6pm2WQBg==} - - '@szmarczak/http-timer@1.1.2': - resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} - engines: {node: '>=6'} - - '@szmarczak/http-timer@4.0.6': - resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} - engines: {node: '>=10'} - - '@testing-library/dom@7.31.2': - resolution: {integrity: sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==} - engines: {node: '>=10'} - - '@testing-library/dom@8.20.1': - resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==} - engines: {node: '>=12'} - - '@testing-library/dom@9.3.4': - resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} - engines: {node: '>=14'} - - '@testing-library/jest-dom@5.17.0': - resolution: {integrity: sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==} - engines: {node: '>=8', npm: '>=6', yarn: '>=1'} - - '@testing-library/jest-dom@6.4.6': - resolution: {integrity: sha512-8qpnGVincVDLEcQXWaHOf6zmlbwTKc6Us6PPu4CRnPXCzo2OGBS5cwgMMOWdxDpEz1mkbvXHpEy99M5Yvt682w==} - engines: {node: '>=14', npm: '>=6', yarn: '>=1'} - peerDependencies: - '@jest/globals': '>= 28' - '@types/bun': latest - '@types/jest': '>= 28' - jest: '>= 28' - vitest: '>= 0.32' - peerDependenciesMeta: - '@jest/globals': - optional: true - '@types/bun': - optional: true - '@types/jest': - optional: true - jest: - optional: true - vitest: - optional: true - - '@testing-library/react@14.3.1': - resolution: {integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==} - engines: {node: '>=14'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 - - '@testing-library/user-event@12.8.3': - resolution: {integrity: sha512-IR0iWbFkgd56Bu5ZI/ej8yQwrkCv8Qydx6RzwbKz9faXazR/+5tvYKsZQgyXJiwgpcva127YO6JcWy7YlCfofQ==} - engines: {node: '>=10', npm: '>=6'} - peerDependencies: - '@testing-library/dom': '>=7.21.4' - - '@testing-library/user-event@14.5.2': - resolution: {integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==} - engines: {node: '>=12', npm: '>=6'} - peerDependencies: - '@testing-library/dom': '>=7.21.4' - - '@tokenizer/token@0.3.0': - resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} - - '@tootallnate/once@1.1.2': - resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} - engines: {node: '>= 6'} - - '@tootallnate/once@2.0.0': - resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} - engines: {node: '>= 10'} - - '@trysound/sax@0.2.0': - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} - engines: {node: '>=10.13.0'} - - '@tsconfig/node10@1.0.11': - resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} - - '@tsconfig/node12@1.0.11': - resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} - - '@tsconfig/node14@1.0.3': - resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} - - '@tsconfig/node16@1.0.4': - resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} - - '@types/aria-query@4.2.2': - resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} - - '@types/aria-query@5.0.4': - resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} - - '@types/babel__core@7.20.5': - resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} - - '@types/babel__generator@7.6.8': - resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} - - '@types/babel__template@7.4.4': - resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} - - '@types/babel__traverse@7.20.6': - resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} - - '@types/body-parser@1.19.5': - resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} - - '@types/bonjour@3.5.13': - resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} - - '@types/cacheable-request@6.0.3': - resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} - - '@types/color-convert@2.0.3': - resolution: {integrity: sha512-2Q6wzrNiuEvYxVQqhh7sXM2mhIhvZR/Paq4FdsQkOMgWsCIkKvSGj8Le1/XalulrmgOzPMqNa0ix+ePY4hTrfg==} - - '@types/color-name@1.1.4': - resolution: {integrity: sha512-hulKeREDdLFesGQjl96+4aoJSHY5b2GRjagzzcqCfIrWhe5vkCqIvrLbqzBaI1q94Vg8DNJZZqTR5ocdWmWclg==} - - '@types/connect-history-api-fallback@1.5.4': - resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} - - '@types/connect@3.4.38': - resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} - - '@types/cookie@0.4.1': - resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==} - - '@types/crypto-js@3.1.47': - resolution: {integrity: sha512-eI6gvpcGHLk3dAuHYnRCAjX+41gMv1nz/VP55wAe5HtmAKDOoPSfr3f6vkMc08ov1S0NsjvUBxDtHHxqQY1LGA==} - - '@types/cssnano@5.1.0': - resolution: {integrity: sha512-ikR+18UpFGgvaWSur4og6SJYF/6QEYHXvrIt36dp81p1MG3cAPTYDMBJGeyWa3LCnqEbgNMHKRb+FP0NrXtoWQ==} - deprecated: This is a stub types definition. cssnano provides its own type definitions, so you do not need this installed. - - '@types/d3-array@3.2.1': - resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==} - - '@types/d3-axis@3.0.6': - resolution: {integrity: sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==} - - '@types/d3-brush@3.0.6': - resolution: {integrity: sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==} - - '@types/d3-chord@3.0.6': - resolution: {integrity: sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==} - - '@types/d3-color@3.1.3': - resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==} - - '@types/d3-contour@3.0.6': - resolution: {integrity: sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==} - - '@types/d3-delaunay@6.0.4': - resolution: {integrity: sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==} - - '@types/d3-dispatch@3.0.6': - resolution: {integrity: sha512-4fvZhzMeeuBJYZXRXrRIQnvUYfyXwYmLsdiN7XXmVNQKKw1cM8a5WdID0g1hVFZDqT9ZqZEY5pD44p24VS7iZQ==} - - '@types/d3-drag@3.0.7': - resolution: {integrity: sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==} - - '@types/d3-dsv@3.0.7': - resolution: {integrity: sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==} - - '@types/d3-ease@3.0.2': - resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==} - - '@types/d3-fetch@3.0.7': - resolution: {integrity: sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==} - - '@types/d3-force@3.0.10': - resolution: {integrity: sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==} - - '@types/d3-format@3.0.4': - resolution: {integrity: sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==} - - '@types/d3-geo@3.1.0': - resolution: {integrity: sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==} - - '@types/d3-hierarchy@3.1.7': - resolution: {integrity: sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==} - - '@types/d3-interpolate@3.0.4': - resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==} - - '@types/d3-path@3.1.0': - resolution: {integrity: sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==} - - '@types/d3-polygon@3.0.2': - resolution: {integrity: sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==} - - '@types/d3-quadtree@3.0.6': - resolution: {integrity: sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==} - - '@types/d3-random@3.0.3': - resolution: {integrity: sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==} - - '@types/d3-scale-chromatic@3.0.3': - resolution: {integrity: sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==} - - '@types/d3-scale@4.0.8': - resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==} - - '@types/d3-selection@3.0.10': - resolution: {integrity: sha512-cuHoUgS/V3hLdjJOLTT691+G2QoqAjCVLmr4kJXR4ha56w1Zdu8UUQ5TxLRqudgNjwXeQxKMq4j+lyf9sWuslg==} - - '@types/d3-shape@3.1.6': - resolution: {integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==} - - '@types/d3-time-format@4.0.3': - resolution: {integrity: sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==} - - '@types/d3-time@3.0.3': - resolution: {integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==} - - '@types/d3-timer@3.0.2': - resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==} - - '@types/d3-transition@3.0.8': - resolution: {integrity: sha512-ew63aJfQ/ms7QQ4X7pk5NxQ9fZH/z+i24ZfJ6tJSfqxJMrYLiK01EAs2/Rtw/JreGUsS3pLPNV644qXFGnoZNQ==} - - '@types/d3-zoom@3.0.8': - resolution: {integrity: sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==} - - '@types/d3@7.4.3': - resolution: {integrity: sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==} - - '@types/debug@4.1.12': - resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} - - '@types/eslint-scope@3.7.7': - resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} - - '@types/eslint@7.29.0': - resolution: {integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==} - - '@types/eslint@8.56.10': - resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==} - - '@types/estree-jsx@1.0.5': - resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} - - '@types/estree@0.0.39': - resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} - - '@types/estree@0.0.51': - resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} - - '@types/estree@1.0.5': - resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} - - '@types/express-serve-static-core@4.19.5': - resolution: {integrity: sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==} - - '@types/express@4.17.21': - resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} - - '@types/file-saver@2.0.7': - resolution: {integrity: sha512-dNKVfHd/jk0SkR/exKGj2ggkB45MAkzvWCaqLUUgkyjITkGNzH8H+yUwr+BLJUBjZOe9w8X3wgmXhZDRg1ED6A==} - - '@types/fs-extra@8.1.5': - resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==} - - '@types/geojson@7946.0.14': - resolution: {integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==} - - '@types/glob@7.2.0': - resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} - - '@types/glob@8.1.0': - resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==} - - '@types/graceful-fs@4.1.9': - resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} - - '@types/hast@2.3.10': - resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} - - '@types/hast@3.0.4': - resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} - - '@types/history@4.7.11': - resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==} - - '@types/hoist-non-react-statics@3.3.5': - resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==} - - '@types/html-minifier-terser@5.1.2': - resolution: {integrity: sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==} - - '@types/html-minifier-terser@6.1.0': - resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} - - '@types/http-cache-semantics@4.0.4': - resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} - - '@types/http-errors@2.0.4': - resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} - - '@types/http-proxy@1.17.14': - resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} - - '@types/i18next-xhr-backend@1.4.2': - resolution: {integrity: sha512-uykS5BvdSoN+G7j7D19xzR12pEVkWmUrIEIxMsj2brVVzjc3gIthWCQKYqbe/b1q87SLbWb/ZHN9bR4qxi1H6A==} - deprecated: This is a stub types definition. i18next-xhr-backend provides its own type definitions, so you do not need this installed. - - '@types/i18next@8.4.3': - resolution: {integrity: sha512-ayqHEU+i9H7/Fkefnhyvml1ChKEZXcDwmVqo3jmrxy7PoAtTSY1t4/hr58Xz8hkXLPoCGS1hTc6bLJOUaOAjfQ==} - - '@types/inquirer@8.2.10': - resolution: {integrity: sha512-IdD5NmHyVjWM8SHWo/kPBgtzXatwPkfwzyP3fN1jF2g9BWt5WO+8hL2F4o2GKIYsU40PpqeevuUWvkS/roXJkA==} - - '@types/is-function@1.0.3': - resolution: {integrity: sha512-/CLhCW79JUeLKznI6mbVieGbl4QU5Hfn+6udw1YHZoofASjbQ5zaP5LzAUZYDpRYEjS4/P+DhEgyJ/PQmGGTWw==} - - '@types/istanbul-lib-coverage@2.0.6': - resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} - - '@types/istanbul-lib-report@3.0.3': - resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} - - '@types/istanbul-reports@3.0.4': - resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} - - '@types/jest@26.0.24': - resolution: {integrity: sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==} - - '@types/jest@29.5.12': - resolution: {integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==} - - '@types/js-beautify@1.14.3': - resolution: {integrity: sha512-FMbQHz+qd9DoGvgLHxeqqVPaNRffpIu5ZjozwV8hf9JAGpIOzuAf4wGbRSo8LNITHqGjmmVjaMggTT5P4v4IHg==} - - '@types/js-levenshtein@1.1.3': - resolution: {integrity: sha512-jd+Q+sD20Qfu9e2aEXogiO3vpOC1PYJOUdyN9gvs4Qrvkg4wF43L5OhqrPeokdv8TL0/mXoYfpkcoGZMNN2pkQ==} - - '@types/js-yaml@3.12.3': - resolution: {integrity: sha512-otRe77JNNWzoVGLKw8TCspKswRoQToys4tuL6XYVBFxjgeM0RUrx7m3jkaTdxILxeGry3zM8mGYkGXMeQ02guA==} - - '@types/jsdom@20.0.1': - resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} - - '@types/json-schema@7.0.15': - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} - - '@types/json5@0.0.29': - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} - - '@types/keyv@3.1.4': - resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} - - '@types/lodash-es@4.17.12': - resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==} - - '@types/lodash@4.17.5': - resolution: {integrity: sha512-MBIOHVZqVqgfro1euRDWX7OO0fBVUUMrN6Pwm8LQsz8cWhEpihlvR70ENj3f40j58TNxZaWv2ndSkInykNBBJw==} - - '@types/mdast@3.0.15': - resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} - - '@types/mdast@4.0.4': - resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} - - '@types/mime-types@2.1.4': - resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==} - - '@types/mime@1.3.5': - resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} - - '@types/minimatch@3.0.5': - resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} - - '@types/minimatch@5.1.2': - resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} - - '@types/minimist@1.2.5': - resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} - - '@types/ms@0.7.34': - resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} - - '@types/node-fetch@2.6.11': - resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==} - - '@types/node-forge@0.9.10': - resolution: {integrity: sha512-+BbPlhZeYs/WETWftQi2LeRx9VviWSwawNo+Pid5qNrSZHb60loYjpph3OrbwXMMseadu9rE9NeK34r4BHT+QQ==} - - '@types/node-forge@1.3.11': - resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} - - '@types/node@12.20.55': - resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - - '@types/node@13.13.52': - resolution: {integrity: sha512-s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ==} - - '@types/node@14.18.63': - resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==} - - '@types/node@16.18.101': - resolution: {integrity: sha512-AAsx9Rgz2IzG8KJ6tXd6ndNkVcu+GYB6U/SnFAaokSPNx2N7dcIIfnighYUNumvj6YS2q39Dejz5tT0NCV7CWA==} - - '@types/normalize-package-data@2.4.4': - resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} - - '@types/npmlog@4.1.6': - resolution: {integrity: sha512-0l3z16vnlJGl2Mi/rgJFrdwfLZ4jfNYgE6ZShEpjqhHuGTqdEzNles03NpYHwUMVYZa+Tj46UxKIEpE78lQ3DQ==} - - '@types/overlayscrollbars@1.12.5': - resolution: {integrity: sha512-1yMmgFrq1DQ3sCHyb3DNfXnE0dB463MjG47ugX3cyade3sOt3U8Fjxk/Com0JJguTLPtw766TSDaO4NC65Wgkw==} - - '@types/parse-json@4.0.2': - resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} - - '@types/parse5@5.0.3': - resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==} - - '@types/prettier@2.7.3': - resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} - - '@types/pretty-hrtime@1.0.3': - resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==} - - '@types/prop-types@15.7.12': - resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} - - '@types/q@1.5.8': - resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==} - - '@types/qs@6.9.15': - resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==} - - '@types/range-parser@1.2.7': - resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - - '@types/react-color@3.0.12': - resolution: {integrity: sha512-pr3uKE3lSvf7GFo1Rn2K3QktiZQFFrSgSGJ/3iMvSOYWt2pPAJ97rVdVfhWxYJZ8prAEXzoP2XX//3qGSQgu7Q==} - - '@types/react-dom@18.3.0': - resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} - - '@types/react-notification-system@0.2.39': - resolution: {integrity: sha512-yfptO86dbfW4qaw34CIedfakdKWV3sPM0xb4T5EQZOza80WLvOUUKjdmZTeGyEKk/7n2za8RJa6aZpz/A+2Qbw==} - - '@types/react-redux@7.1.33': - resolution: {integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==} - - '@types/react-router-dom@5.3.3': - resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==} - - '@types/react-router@5.1.20': - resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==} - - '@types/react-syntax-highlighter@11.0.5': - resolution: {integrity: sha512-VIOi9i2Oj5XsmWWoB72p3KlZoEbdRAcechJa8Ztebw7bDl2YmR+odxIqhtJGp1q2EozHs02US+gzxJ9nuf56qg==} - - '@types/react-transition-group@4.4.10': - resolution: {integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==} - - '@types/react@18.0.18': - resolution: {integrity: sha512-6hI08umYs6NaiHFEEGioXnxJ+oEhY3eRz8VCUaudZmGdtvPviCJB8mgaMxaDWAdPSYd4eFavrPk2QIolwbLYrg==} - - '@types/reactcss@1.2.12': - resolution: {integrity: sha512-BrXUQ86/wbbFiZv8h/Q1/Q1XOsaHneYmCb/tHe9+M8XBAAUc2EHfdY0DY22ZZjVSaXr5ix7j+zsqO2eGZub8lQ==} - - '@types/reactour@1.18.5': - resolution: {integrity: sha512-Pl5yh9bXeXaFcioDk6XVmUzdJGZDAKesVmwoh2KvN/1FXSd9saN8pIprLvfspnXANMcgl3AtSlD4zs0cJIhGIw==} - - '@types/redux-mock-store@1.0.6': - resolution: {integrity: sha512-eg5RDfhJTXuoJjOMyXiJbaDb1B8tfTaJixscmu+jOusj6adGC0Krntz09Tf4gJgXeCqCrM5bBMd+B7ez0izcAQ==} - - '@types/resolve@1.17.1': - resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} - - '@types/resolve@1.20.2': - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} - - '@types/responselike@1.0.3': - resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} - - '@types/retry@0.12.0': - resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} - - '@types/scheduler@0.23.0': - resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==} - - '@types/semver@7.5.8': - resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} - - '@types/send@0.17.4': - resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} - - '@types/serve-index@1.9.4': - resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} - - '@types/serve-static@1.15.7': - resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} - - '@types/set-cookie-parser@2.4.9': - resolution: {integrity: sha512-bCorlULvl0xTdjj4BPUHX4cqs9I+go2TfW/7Do1nnFYWS0CPP429Qr1AY42kiFhCwLpvAkWFr1XIBHd8j6/MCQ==} - - '@types/sinonjs__fake-timers@8.1.1': - resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} - - '@types/sizzle@2.3.8': - resolution: {integrity: sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==} - - '@types/sockjs@0.3.36': - resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} - - '@types/source-list-map@0.1.6': - resolution: {integrity: sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==} - - '@types/stack-utils@2.0.3': - resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} - - '@types/tapable@1.0.12': - resolution: {integrity: sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==} - - '@types/testing-library__jest-dom@5.14.9': - resolution: {integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==} - - '@types/through@0.0.33': - resolution: {integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==} - - '@types/tough-cookie@4.0.5': - resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} - - '@types/ua-parser-js@0.7.36': - resolution: {integrity: sha512-N1rW+njavs70y2cApeIw1vLMYXRwfBy+7trgavGuuTfOd7j1Yh7QTRc/yqsPl6ncokt72ZXuxEU0PiCp9bSwNQ==} - - '@types/uglify-js@3.17.5': - resolution: {integrity: sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==} - - '@types/unist@2.0.10': - resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} - - '@types/unist@3.0.2': - resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} - - '@types/uuid@9.0.8': - resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==} - - '@types/webappsec-credential-management@0.6.8': - resolution: {integrity: sha512-DES/SkK54U7AG8hmMkGCJkOSlywM3R+TzaWT+rBnX3lQTJ3K57jWr+UccWY8ImkuKekC9BjB+AH4zLJB4JKpvQ==} - - '@types/webpack-env@1.18.5': - resolution: {integrity: sha512-wz7kjjRRj8/Lty4B+Kr0LN6Ypc/3SymeCCGSbaXp2leH0ZVg/PriNiOwNj4bD4uphI7A8NXS4b6Gl373sfO5mA==} - - '@types/webpack-sources@3.2.3': - resolution: {integrity: sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==} - - '@types/webpack@4.41.38': - resolution: {integrity: sha512-oOW7E931XJU1mVfCnxCVgv8GLFL768pDO5u2Gzk82i8yTIgX6i7cntyZOkZYb/JtYM8252SN9bQp9tgkVDSsRw==} - - '@types/ws@8.5.10': - resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} - - '@types/yargs-parser@21.0.3': - resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} - - '@types/yargs@15.0.19': - resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} - - '@types/yargs@17.0.32': - resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} - - '@types/yauzl@2.10.3': - resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} - - '@typescript-eslint/eslint-plugin@4.33.0': - resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - '@typescript-eslint/parser': ^4.0.0 - eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/experimental-utils@4.33.0': - resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - eslint: '*' - - '@typescript-eslint/parser@4.33.0': - resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/scope-manager@4.33.0': - resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - - '@typescript-eslint/scope-manager@5.62.0': - resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@typescript-eslint/types@4.33.0': - resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - - '@typescript-eslint/types@5.62.0': - resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@typescript-eslint/typescript-estree@4.33.0': - resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/typescript-estree@5.62.0': - 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 - - '@typescript-eslint/utils@5.62.0': - resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - - '@typescript-eslint/visitor-keys@4.33.0': - resolution: {integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - - '@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} - - '@ungap/structured-clone@1.2.0': - resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} - - '@webassemblyjs/ast@1.12.1': - resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} - - '@webassemblyjs/floating-point-hex-parser@1.11.6': - resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} - - '@webassemblyjs/helper-api-error@1.11.6': - resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} - - '@webassemblyjs/helper-buffer@1.12.1': - resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==} - - '@webassemblyjs/helper-numbers@1.11.6': - resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} - - '@webassemblyjs/helper-wasm-bytecode@1.11.6': - resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} - - '@webassemblyjs/helper-wasm-section@1.12.1': - resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==} - - '@webassemblyjs/ieee754@1.11.6': - resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} - - '@webassemblyjs/leb128@1.11.6': - resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} - - '@webassemblyjs/utf8@1.11.6': - resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} - - '@webassemblyjs/wasm-edit@1.12.1': - resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==} - - '@webassemblyjs/wasm-gen@1.12.1': - resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==} - - '@webassemblyjs/wasm-opt@1.12.1': - resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==} - - '@webassemblyjs/wasm-parser@1.12.1': - resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==} - - '@webassemblyjs/wast-printer@1.12.1': - resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==} - - '@webpack-cli/configtest@1.2.0': - resolution: {integrity: sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==} - peerDependencies: - webpack: 5.84.1 - webpack-cli: 4.x.x - - '@webpack-cli/info@1.5.0': - resolution: {integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==} - peerDependencies: - webpack-cli: 4.x.x - - '@webpack-cli/serve@1.7.0': - resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==} - peerDependencies: - webpack-cli: 4.x.x - webpack-dev-server: '*' - peerDependenciesMeta: - webpack-dev-server: - optional: true - - '@webpack-contrib/schema-utils@1.0.0-beta.0': - resolution: {integrity: sha512-LonryJP+FxQQHsjGBi6W786TQB1Oym+agTpY0c+Kj8alnIw+DLUJb6SI8Y1GHGhLCH1yPRrucjObUmxNICQ1pg==} - engines: {node: '>= 6.9.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 - - '@xmldom/xmldom@0.7.13': - resolution: {integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==} - engines: {node: '>=10.0.0'} - - '@xtuc/ieee754@1.2.0': - resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} - - '@xtuc/long@4.2.2': - resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} - - '@yarn-tool/resolve-package@1.0.47': - resolution: {integrity: sha512-Zaw58gQxjQceJqhqybJi1oUDaORT8i2GTgwICPs8v/X/Pkx35FXQba69ldHVg5pQZ6YLKpROXgyHvBaCJOFXiA==} - - '@yarnpkg/lockfile@1.1.0': - resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} - - '@yarnpkg/parsers@3.0.2': - resolution: {integrity: sha512-/HcYgtUSiJiot/XWGLOlGxPYUG65+/31V8oqk17vZLW1xlCoR4PampyePljOxY2n8/3jz9+tIFzICsyGujJZoA==} - engines: {node: '>=18.12.0'} - - '@zkochan/js-yaml@0.0.6': - resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} - hasBin: true - - JSONStream@1.3.5: - resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} - hasBin: true - - abab@2.0.6: - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} - deprecated: Use your platform's native atob() and btoa() methods instead - - abbrev@1.1.1: - resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} - - abbrev@2.0.0: - resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - - accepts@1.3.8: - resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} - engines: {node: '>= 0.6'} - - acorn-globals@6.0.0: - resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} - - acorn-globals@7.0.1: - resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} - - acorn-import-assertions@1.9.0: - resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} - peerDependencies: - acorn: ^8 - - acorn-jsx@5.3.2: - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - - acorn-walk@7.2.0: - resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} - engines: {node: '>=0.4.0'} - - acorn-walk@8.3.3: - resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==} - engines: {node: '>=0.4.0'} - - acorn@7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: '>=0.4.0'} - hasBin: true - - acorn@8.12.0: - resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==} - engines: {node: '>=0.4.0'} - hasBin: true - - add-stream@1.0.0: - resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} - - address@1.2.2: - resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} - engines: {node: '>= 10.0.0'} - - agent-base@5.1.1: - resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==} - engines: {node: '>= 6.0.0'} - - agent-base@6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} - engines: {node: '>= 6.0.0'} - - agentkeepalive@4.5.0: - resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} - engines: {node: '>= 8.0.0'} - - aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} - - airbnb-js-shims@2.2.1: - resolution: {integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==} - - ajv-errors@1.0.1: - resolution: {integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==} - peerDependencies: - ajv: '>=5.0.0' - - ajv-formats@2.1.1: - resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} - peerDependencies: - ajv: ^8.0.0 - peerDependenciesMeta: - ajv: - optional: true - - ajv-keywords@3.5.2: - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} - peerDependencies: - ajv: ^6.9.1 - - ajv-keywords@5.1.0: - resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} - peerDependencies: - ajv: ^8.8.2 - - ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} - - ajv@8.16.0: - resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==} - - ansi-align@3.0.1: - resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} - - ansi-colors@3.2.4: - resolution: {integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==} - engines: {node: '>=6'} - - ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} - - ansi-escapes@4.3.2: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} - engines: {node: '>=8'} - - ansi-html-community@0.0.8: - resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} - engines: {'0': node >= 0.8.0} - hasBin: true - - ansi-html@0.0.7: - resolution: {integrity: sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA==} - engines: {'0': node >= 0.8.0} - hasBin: true - - ansi-html@0.0.9: - resolution: {integrity: sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==} - engines: {'0': node >= 0.8.0} - hasBin: true - - ansi-regex@2.1.1: - resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} - engines: {node: '>=0.10.0'} - - ansi-regex@3.0.1: - resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} - engines: {node: '>=4'} - - ansi-regex@4.1.1: - resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} - engines: {node: '>=6'} - - ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} - - ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} - engines: {node: '>=12'} - - ansi-styles@2.2.1: - resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} - engines: {node: '>=0.10.0'} - - ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} - - ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} - - ansi-styles@5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} - engines: {node: '>=10'} - - ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} - - ansi-to-html@0.6.15: - resolution: {integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==} - engines: {node: '>=8.0.0'} - hasBin: true - - anymatch@2.0.0: - resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==} - - anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} - - app-root-dir@1.0.2: - resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==} - - append-transform@2.0.0: - resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==} - engines: {node: '>=8'} - - aproba@2.0.0: - resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} - - arch@2.2.0: - resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} - - archy@1.0.0: - resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} - - are-we-there-yet@2.0.0: - resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} - engines: {node: '>=10'} - deprecated: This package is no longer supported. - - are-we-there-yet@3.0.1: - resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. - - arg@4.1.3: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} - - argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} - - argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - - aria-query@4.2.2: - resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} - engines: {node: '>=6.0'} - - aria-query@5.1.3: - resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} - - aria-query@5.3.0: - resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} - - arr-diff@4.0.0: - resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} - engines: {node: '>=0.10.0'} - - arr-flatten@1.1.0: - resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} - engines: {node: '>=0.10.0'} - - arr-union@3.1.0: - resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} - engines: {node: '>=0.10.0'} - - array-buffer-byte-length@1.0.1: - resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} - engines: {node: '>= 0.4'} - - array-differ@3.0.0: - resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} - engines: {node: '>=8'} - - array-find-index@1.0.2: - resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} - engines: {node: '>=0.10.0'} - - array-flatten@1.1.1: - resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} - - array-flatten@2.1.2: - resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} - - array-ify@1.0.0: - resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} - - array-includes@3.1.8: - resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} - engines: {node: '>= 0.4'} - - array-union@1.0.2: - resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==} - engines: {node: '>=0.10.0'} - - array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} - - array-union@3.0.1: - resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==} - engines: {node: '>=12'} - - array-uniq@1.0.3: - resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} - engines: {node: '>=0.10.0'} - - array-unique@0.3.2: - resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} - engines: {node: '>=0.10.0'} - - array.prototype.findlast@1.2.5: - resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} - engines: {node: '>= 0.4'} - - array.prototype.findlastindex@1.2.5: - resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} - engines: {node: '>= 0.4'} - - array.prototype.flat@1.3.2: - resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} - engines: {node: '>= 0.4'} - - array.prototype.flatmap@1.3.2: - resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} - engines: {node: '>= 0.4'} - - array.prototype.map@1.0.7: - resolution: {integrity: sha512-XpcFfLoBEAhezrrNw1V+yLXkE7M6uR7xJEsxbG6c/V9v043qurwVJB9r9UTnoSioFDoz1i1VOydpWGmJpfVZbg==} - engines: {node: '>= 0.4'} - - array.prototype.reduce@1.0.7: - resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==} - engines: {node: '>= 0.4'} - - array.prototype.toreversed@1.1.2: - resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==} - - array.prototype.tosorted@1.1.4: - resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} - engines: {node: '>= 0.4'} - - arraybuffer.prototype.slice@1.0.3: - resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} - engines: {node: '>= 0.4'} - - arrify@1.0.1: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: '>=0.10.0'} - - arrify@2.0.1: - resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} - engines: {node: '>=8'} - - asap@2.0.6: - resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} - - asn1@0.2.6: - resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} - - assert-plus@1.0.0: - resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} - engines: {node: '>=0.8'} - - assign-symbols@1.0.0: - resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} - engines: {node: '>=0.10.0'} - - ast-types-flow@0.0.7: - resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} - - ast-types@0.13.3: - resolution: {integrity: sha512-XTZ7xGML849LkQP86sWdQzfhwbt3YwIO6MqbX9mUNYY98VKaaVZP7YNNm70IpwecbkkxmfC5IYAzOQ/2p29zRA==} - engines: {node: '>=4'} - - ast-types@0.14.2: - resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==} - engines: {node: '>=4'} - - astral-regex@2.0.0: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} - engines: {node: '>=8'} - - astring@1.8.6: - resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==} - hasBin: true - - async-each@1.0.6: - resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==} - - async-limiter@1.0.1: - resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} - - async@2.6.4: - resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} - - async@3.2.5: - resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} - - asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} - - at-least-node@1.0.0: - resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} - engines: {node: '>= 4.0.0'} - - atob@2.1.2: - resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} - engines: {node: '>= 4.5.0'} - hasBin: true - - autoprefixer@10.4.19: - resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==} - engines: {node: ^10 || ^12 || >=14} - hasBin: true - peerDependencies: - postcss: ^8.1.0 - - autoprefixer@9.8.8: - resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} - hasBin: true - - available-typed-arrays@1.0.7: - resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} - engines: {node: '>= 0.4'} - - await-semaphore@0.1.3: - resolution: {integrity: sha512-d1W2aNSYcz/sxYO4pMGX9vq65qOTu0P800epMud+6cYYX0QcT7zyqcxec3VWzpgvdXo57UWmVbZpLMjX2m1I7Q==} - - aws-sign2@0.7.0: - resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} - - aws4@1.13.0: - resolution: {integrity: sha512-3AungXC4I8kKsS9PuS4JH2nc+0bVY/mjgrephHTIi8fpEeGsTHBUJeosp0Wc1myYMElmD0B3Oc4XL/HVJ4PV2g==} - - axe-core@4.9.1: - resolution: {integrity: sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==} - engines: {node: '>=4'} - - axios@0.19.2: - resolution: {integrity: sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==} - deprecated: Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410 - - axios@0.21.4: - resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} - - axios@0.26.1: - resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==} - - axios@1.7.2: - resolution: {integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==} - - axobject-query@2.2.0: - resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} - - babel-code-frame@6.26.0: - resolution: {integrity: sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==} - - babel-core@7.0.0-bridge.0: - resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - babel-jest@26.6.3: - resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} - engines: {node: '>= 10.14.2'} - peerDependencies: - '@babel/core': ^7.0.0 - - babel-jest@28.1.3: - resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - '@babel/core': ^7.8.0 - - babel-jest@29.7.0: - resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': ^7.8.0 - - babel-loader@8.3.0: - resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} - engines: {node: '>= 8.9'} - peerDependencies: - '@babel/core': ^7.0.0 - webpack: 5.84.1 - - babel-messages@6.23.0: - resolution: {integrity: sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==} - - babel-plugin-add-react-displayname@0.0.5: - resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} - - babel-plugin-apply-mdx-type-prop@1.6.22: - resolution: {integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==} - peerDependencies: - '@babel/core': ^7.11.6 - - babel-plugin-const-enum@1.2.0: - resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - babel-plugin-emotion@10.2.2: - resolution: {integrity: sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==} - - babel-plugin-extract-import-names@1.6.22: - resolution: {integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==} - - babel-plugin-istanbul@6.1.1: - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} - engines: {node: '>=8'} - - babel-plugin-jest-hoist@26.6.2: - resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==} - engines: {node: '>= 10.14.2'} - - babel-plugin-jest-hoist@28.1.3: - resolution: {integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - babel-plugin-jest-hoist@29.6.3: - resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - babel-plugin-macros@2.8.0: - resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} - - babel-plugin-macros@3.1.0: - resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} - engines: {node: '>=10', npm: '>=6'} - - babel-plugin-named-asset-import@0.3.8: - resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==} - peerDependencies: - '@babel/core': ^7.1.0 - - babel-plugin-named-exports-order@0.0.2: - resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==} - - babel-plugin-polyfill-corejs2@0.4.11: - resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - babel-plugin-polyfill-corejs3@0.1.7: - resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - babel-plugin-polyfill-corejs3@0.10.4: - resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - babel-plugin-polyfill-regenerator@0.6.2: - resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - babel-plugin-react-docgen@4.2.1: - resolution: {integrity: sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==} - - babel-plugin-rename-jsx-attribute@0.2.4: - resolution: {integrity: sha512-R3kRggMmkXAd465a2q2Y2IceIUJHoyw9q/c0I7i3JdQDHGbUj59OTOR6QjRuB/bII1yH2Xuy/KM5+NNs9NzCGw==} - peerDependencies: - babel-core: ^6.26.3 - - babel-plugin-styled-components@2.1.4: - resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==} - peerDependencies: - styled-components: '>= 2' - - babel-plugin-syntax-jsx@6.18.0: - resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==} - - babel-plugin-transform-async-to-promises@0.8.18: - resolution: {integrity: sha512-WpOrF76nUHijnNn10eBGOHZmXQC8JYRME9rOLxStOga7Av2VO53ehVFvVNImMksVtQuL2/7ZNxEgxnx7oo/3Hw==} - - babel-plugin-transform-es2015-modules-commonjs@6.26.2: - resolution: {integrity: sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==} - - babel-plugin-transform-strict-mode@6.24.1: - resolution: {integrity: sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw==} - - babel-plugin-transform-typescript-metadata@0.3.2: - resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} - peerDependencies: - '@babel/core': ^7 - '@babel/traverse': ^7 - peerDependenciesMeta: - '@babel/traverse': - optional: true - - babel-polyfill@6.26.0: - resolution: {integrity: sha512-F2rZGQnAdaHWQ8YAoeRbukc7HS9QgdgeyJ0rQDd485v9opwuPvjpPFcOOT/WmkKTdgy9ESgSPXDcTNpzrGr6iQ==} - - babel-preset-current-node-syntax@1.0.1: - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} - peerDependencies: - '@babel/core': ^7.0.0 - - babel-preset-jest@26.6.2: - resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} - engines: {node: '>= 10.14.2'} - peerDependencies: - '@babel/core': ^7.0.0 - - babel-preset-jest@28.1.3: - resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - '@babel/core': ^7.0.0 - - babel-preset-jest@29.6.3: - resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': ^7.0.0 - - babel-runtime@6.26.0: - resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==} - - babel-template@6.26.0: - resolution: {integrity: sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg==} - - babel-traverse@6.26.0: - resolution: {integrity: sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA==} - - babel-types@6.26.0: - resolution: {integrity: sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==} - - babylon@6.18.0: - resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==} - hasBin: true - - bail@1.0.5: - resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} - - bail@2.0.2: - resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} - - balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - - base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - - base64url@3.0.1: - resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==} - engines: {node: '>=6.0.0'} - - base@0.11.2: - resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} - engines: {node: '>=0.10.0'} - - basic-auth@2.0.1: - resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} - engines: {node: '>= 0.8'} - - batch-processor@1.0.0: - resolution: {integrity: sha512-xoLQD8gmmR32MeuBHgH0Tzd5PuSZx71ZsbhVxOCRbgktZEPe4SQy7s9Z50uPp0F/f7iw2XmkHN2xkgbMfckMDA==} - - batch@0.6.1: - resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} - - bcrypt-pbkdf@1.0.2: - resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} - - before-after-hook@2.2.3: - resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} - - better-opn@2.1.1: - resolution: {integrity: sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==} - engines: {node: '>8.0.0'} - - better-path-resolve@1.0.0: - resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} - engines: {node: '>=4'} - - big-integer@1.6.52: - resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} - engines: {node: '>=0.6'} - - big.js@5.2.2: - resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} - - bin-check@4.1.0: - resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==} - engines: {node: '>=4'} - - bin-links@3.0.3: - resolution: {integrity: sha512-zKdnMPWEdh4F5INR07/eBrodC7QrF5JKvqskjz/ZZRXg5YSAZIbn8zGhbhUrElzHBZ2fvEQdOU59RHcTG3GiwA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - bin-version-check@5.1.0: - resolution: {integrity: sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==} - engines: {node: '>=12'} - - bin-version@6.0.0: - resolution: {integrity: sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==} - engines: {node: '>=12'} - - binary-extensions@1.13.1: - resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==} - engines: {node: '>=0.10.0'} - - binary-extensions@2.3.0: - resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} - engines: {node: '>=8'} - - bindings@1.5.0: - resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} - - bl@4.1.0: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} - - blob-util@2.0.2: - resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} - - bluebird@3.7.1: - resolution: {integrity: sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg==} - - bluebird@3.7.2: - resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} - - body-parser@1.20.2: - resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - - bonjour-service@1.2.1: - resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==} - - bonjour@3.5.0: - resolution: {integrity: sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==} - - boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - - boxen@5.1.2: - resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} - engines: {node: '>=10'} - - bplist-parser@0.1.1: - resolution: {integrity: sha512-2AEM0FXy8ZxVLBuqX0hqt1gDwcnz2zygEkQ6zaD5Wko/sB9paUNwlpawrFtKeHUAQUOzjVy9AO4oeonqIHKA9Q==} - - brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} - - brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} - - braces@2.3.2: - resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} - engines: {node: '>=0.10.0'} - - braces@3.0.3: - resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} - engines: {node: '>=8'} - - breakword@1.0.6: - resolution: {integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==} - - browser-assert@1.2.1: - resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==} - - browser-process-hrtime@1.0.0: - resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} - - browserslist@4.23.1: - resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - - bs-logger@0.2.6: - resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} - engines: {node: '>= 6'} - - bser@2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} - - buffer-crc32@0.2.13: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} - - buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - - buffer-indexof@1.1.1: - resolution: {integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==} - - buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} - - buffer@6.0.3: - resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} - - builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: '>=6'} - - builtins@1.0.3: - resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==} - - builtins@5.1.0: - resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==} - - byte-size@7.0.1: - resolution: {integrity: sha512-crQdqyCwhokxwV1UyDzLZanhkugAgft7vt0qbbdt60C6Zf3CAiGmtUCylbtYwrU6loOUw3euGrNtW1J651ot1A==} - engines: {node: '>=10'} - - bytes@3.0.0: - resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} - engines: {node: '>= 0.8'} - - bytes@3.1.2: - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} - engines: {node: '>= 0.8'} - - c8@7.14.0: - resolution: {integrity: sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw==} - engines: {node: '>=10.12.0'} - hasBin: true - - cacache@15.3.0: - resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==} - engines: {node: '>= 10'} - - cacache@16.1.3: - resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - cache-base@1.0.1: - resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} - engines: {node: '>=0.10.0'} - - cacheable-lookup@5.0.4: - resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} - engines: {node: '>=10.6.0'} - - cacheable-request@6.1.0: - resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} - engines: {node: '>=8'} - - cacheable-request@7.0.4: - resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} - engines: {node: '>=8'} - - cachedir@2.4.0: - resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==} - engines: {node: '>=6'} - - caching-transform@4.0.0: - resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==} - engines: {node: '>=8'} - - call-bind@1.0.7: - resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} - engines: {node: '>= 0.4'} - - call-me-maybe@1.0.2: - resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} - - caller-callsite@2.0.0: - resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} - engines: {node: '>=4'} - - caller-path@2.0.0: - resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} - engines: {node: '>=4'} - - callsites@2.0.0: - resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} - engines: {node: '>=4'} - - callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} - - camel-case@4.1.2: - resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} - - camelcase-css@2.0.1: - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: '>= 6'} - - camelcase-keys@2.1.0: - resolution: {integrity: sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==} - engines: {node: '>=0.10.0'} - - camelcase-keys@6.2.2: - resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} - engines: {node: '>=8'} - - camelcase@2.1.1: - resolution: {integrity: sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==} - engines: {node: '>=0.10.0'} - - camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} - - camelcase@6.3.0: - resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} - engines: {node: '>=10'} - - camelize@1.0.1: - resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} - - caniuse-api@3.0.0: - resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} - - caniuse-lite@1.0.30001636: - resolution: {integrity: sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==} - - capture-exit@2.0.0: - resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} - engines: {node: 6.* || 8.* || >= 10.*} - - case-sensitive-paths-webpack-plugin@2.4.0: - resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} - engines: {node: '>=4'} - - caseless@0.12.0: - resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} - - ccount@1.1.0: - resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==} - - ccount@2.0.1: - resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} - - chalk@1.1.3: - resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} - engines: {node: '>=0.10.0'} - - chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} - - chalk@3.0.0: - resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} - engines: {node: '>=8'} - - chalk@4.1.0: - resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==} - engines: {node: '>=10'} - - chalk@4.1.1: - resolution: {integrity: sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==} - engines: {node: '>=10'} - - chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} - - char-regex@1.0.2: - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} - engines: {node: '>=10'} - - character-entities-html4@2.1.0: - resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} - - character-entities-legacy@1.1.4: - resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} - - character-entities-legacy@3.0.0: - resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} - - character-entities@1.2.4: - resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} - - character-entities@2.0.2: - resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} - - character-reference-invalid@1.1.4: - resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} - - character-reference-invalid@2.0.1: - resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} - - chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} - - check-more-types@2.24.0: - resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} - engines: {node: '>= 0.8.0'} - - child_process@1.0.2: - resolution: {integrity: sha512-Wmza/JzL0SiWz7kl6MhIKT5ceIlnFPJX+lwUGj7Clhy5MMldsSoJR0+uvRzOS5Kv45Mq7t1PoE8TsOA9bzvb6g==} - - chokidar@2.1.8: - resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==} - deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies - - chokidar@3.6.0: - resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} - engines: {node: '>= 8.10.0'} - - chownr@2.0.0: - resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} - engines: {node: '>=10'} - - chrome-trace-event@1.0.4: - resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} - engines: {node: '>=6.0'} - - ci-info@2.0.0: - resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} - - ci-info@3.9.0: - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} - engines: {node: '>=8'} - - cjs-module-lexer@0.6.0: - resolution: {integrity: sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==} - - cjs-module-lexer@1.3.1: - resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==} - - class-utils@0.3.6: - resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} - engines: {node: '>=0.10.0'} - - classcat@5.0.5: - resolution: {integrity: sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==} - - classnames@2.5.1: - resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==} - - clean-css@4.2.4: - resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==} - engines: {node: '>= 4.0'} - - clean-css@5.3.3: - resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} - engines: {node: '>= 10.0'} - - clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} - - cli-boxes@2.2.1: - resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} - engines: {node: '>=6'} - - cli-cursor@3.1.0: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} - engines: {node: '>=8'} - - cli-spinners@2.6.1: - resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} - engines: {node: '>=6'} - - cli-spinners@2.9.2: - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} - engines: {node: '>=6'} - - cli-table3@0.6.5: - resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} - engines: {node: 10.* || >= 12.*} - - cli-truncate@2.1.0: - resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} - engines: {node: '>=8'} - - cli-width@3.0.0: - resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} - engines: {node: '>= 10'} - - cli@1.0.1: - resolution: {integrity: sha512-41U72MB56TfUMGndAKK8vJ78eooOD4Z5NOL4xEfjc0c23s+6EYKXlXsmACBVclLP1yOfWCgEganVzddVrSNoTg==} - engines: {node: '>=0.2.5'} - - client-only@0.0.1: - resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} - - cliui@5.0.0: - resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==} - - cliui@6.0.0: - resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} - - cliui@7.0.4: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} - - cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} - - clone-deep@0.2.4: - resolution: {integrity: sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==} - engines: {node: '>=0.10.0'} - - clone-deep@4.0.1: - resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} - engines: {node: '>=6'} - - clone-response@1.0.3: - resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} - - clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} - - clone@2.1.2: - resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} - engines: {node: '>=0.8'} - - clsx@1.2.1: - resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} - engines: {node: '>=6'} - - clsx@2.1.1: - resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} - engines: {node: '>=6'} - - cmd-shim@5.0.0: - resolution: {integrity: sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - co@4.6.0: - resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} - - coa@2.0.2: - resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} - engines: {node: '>= 4.0'} - - codemirror@5.65.16: - resolution: {integrity: sha512-br21LjYmSlVL0vFCPWPfhzUCT34FM/pAdK7rRIZwa0rrtrIdotvP4Oh4GUHsu2E3IrQMCfRkL/fN3ytMNxVQvg==} - - collapse-white-space@1.0.6: - resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==} - - collect-v8-coverage@1.0.2: - resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} - - collection-visit@1.0.0: - resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} - engines: {node: '>=0.10.0'} - - color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} - - color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} - - color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - - color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - - color-support@1.1.3: - resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} - hasBin: true - - colord@2.9.3: - resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} - - colorette@1.4.0: - resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} - - colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} - - columnify@1.6.0: - resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==} - engines: {node: '>=8.0.0'} - - combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} - - comma-separated-tokens@1.0.8: - resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} - - comma-separated-tokens@2.0.3: - resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} - - commander@10.0.1: - resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} - engines: {node: '>=14'} - - commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} - - commander@4.1.1: - resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} - engines: {node: '>= 6'} - - commander@5.1.0: - resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} - engines: {node: '>= 6'} - - commander@6.2.1: - resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} - engines: {node: '>= 6'} - - commander@7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} - engines: {node: '>= 10'} - - commander@8.3.0: - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} - engines: {node: '>= 12'} - - common-ancestor-path@1.0.1: - resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} - - common-tags@1.8.2: - resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} - engines: {node: '>=4.0.0'} - - commondir@1.0.1: - resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} - - compare-func@2.0.0: - resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} - - component-emitter@1.3.1: - resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==} - - compressible@2.0.18: - resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} - engines: {node: '>= 0.6'} - - compression-webpack-plugin@7.1.2: - resolution: {integrity: sha512-9DKNW6ILLjx+bNBoviHDgLx6swBhWWH9ApClC9sTH2NoFfQM47BapQfovCm9zjD9v1uZwInF5a925FB9ErGQeQ==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 - - compression@1.7.4: - resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} - engines: {node: '>= 0.8.0'} - - compute-scroll-into-view@1.0.20: - resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==} - - concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - - concat-stream@1.6.2: - resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} - engines: {'0': node >= 0.8} - - concat-stream@2.0.0: - resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} - engines: {'0': node >= 6.0} - - concat-with-sourcemaps@1.1.0: - resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==} - - config-chain@1.1.13: - resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} - - configstore@5.0.1: - resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} - engines: {node: '>=8'} - - confusing-browser-globals@1.0.11: - resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} - - connect-history-api-fallback@1.6.0: - resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==} - engines: {node: '>=0.8'} - - connect-history-api-fallback@2.0.0: - resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} - engines: {node: '>=0.8'} - - console-browserify@1.1.0: - resolution: {integrity: sha512-duS7VP5pvfsNLDvL1O4VOEbw37AI3A4ZUQYemvDlnpGrNu9tprR7BYWpDYwC0Xia0Zxz5ZupdiIrUp0GH1aXfg==} - - console-control-strings@1.1.0: - resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} - - content-disposition@0.5.4: - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} - engines: {node: '>= 0.6'} - - content-type@1.0.5: - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} - engines: {node: '>= 0.6'} - - conventional-changelog-angular@5.0.13: - resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} - engines: {node: '>=10'} - - conventional-changelog-core@4.2.4: - resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==} - engines: {node: '>=10'} - - conventional-changelog-preset-loader@2.3.4: - resolution: {integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==} - engines: {node: '>=10'} - - conventional-changelog-writer@5.0.1: - resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==} - engines: {node: '>=10'} - hasBin: true - - conventional-commits-filter@2.0.7: - resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==} - engines: {node: '>=10'} - - conventional-commits-parser@3.2.4: - resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} - engines: {node: '>=10'} - hasBin: true - - conventional-recommended-bump@6.1.0: - resolution: {integrity: sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==} - engines: {node: '>=10'} - hasBin: true - - convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} - - convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - - cookie-signature@1.0.6: - resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} - - cookie@0.4.2: - resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} - engines: {node: '>= 0.6'} - - cookie@0.6.0: - resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} - engines: {node: '>= 0.6'} - - copy-anything@2.0.6: - resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} - - copy-descriptor@0.1.1: - resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} - engines: {node: '>=0.10.0'} - - copy-to-clipboard@3.3.3: - resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==} - - copy-webpack-plugin@10.2.4: - resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==} - engines: {node: '>= 12.20.0'} - peerDependencies: - webpack: 5.84.1 - - copy-webpack-plugin@12.0.2: - resolution: {integrity: sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==} - engines: {node: '>= 18.12.0'} - peerDependencies: - webpack: 5.84.1 - - core-js-compat@3.37.1: - resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==} - - core-js-pure@3.37.1: - resolution: {integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==} - - core-js@2.6.12: - resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} - deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. - - core-js@3.37.1: - resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==} - - core-util-is@1.0.2: - resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} - - core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - - corser@2.0.1: - resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==} - engines: {node: '>= 0.4.0'} - - cosmiconfig@5.2.1: - resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} - engines: {node: '>=4'} - - cosmiconfig@6.0.0: - resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} - engines: {node: '>=8'} - - cosmiconfig@7.1.0: - resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} - engines: {node: '>=10'} - - country-language@0.1.7: - resolution: {integrity: sha512-QH8GvZehR0IsFSR8ZPzteaCq/JjsLKk+tHWSQciXVpredI/2Xaf1VAdCuo/XPFWSrRCkSLaZNqnOcot4zceAIw==} - - cp-file@7.0.0: - resolution: {integrity: sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==} - engines: {node: '>=8'} - - cpy@8.1.2: - resolution: {integrity: sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==} - engines: {node: '>=8'} - - create-jest@29.7.0: - resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - - create-require@1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - - cross-spawn@5.1.0: - resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} - - cross-spawn@6.0.5: - resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} - engines: {node: '>=4.8'} - - cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} - - crypto-js@3.3.0: - resolution: {integrity: sha512-DIT51nX0dCfKltpRiXV+/TVZq+Qq2NgF4644+K7Ttnla7zEzqc+kjJyiB96BHNyUTBxyjzRcZYpUdZa+QAqi6Q==} - - crypto-random-string@2.0.0: - resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} - engines: {node: '>=8'} - - css-color-keywords@1.0.0: - resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} - engines: {node: '>=4'} - - css-declaration-sorter@6.4.1: - resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} - engines: {node: ^10 || ^12 || >=14} - peerDependencies: - postcss: ^8.0.9 - - css-loader@1.0.1: - resolution: {integrity: sha512-+ZHAZm/yqvJ2kDtPne3uX0C+Vr3Zn5jFn2N4HywtS5ujwvsVkyg0VArEXpl3BgczDA8anieki1FIzhchX4yrDw==} - engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 - - css-loader@3.6.0: - resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==} - engines: {node: '>= 8.9.0'} - peerDependencies: - webpack: 5.84.1 - - css-loader@5.2.7: - resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 - - css-loader@6.11.0: - resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==} - engines: {node: '>= 12.13.0'} - peerDependencies: - '@rspack/core': 0.x || 1.x - webpack: 5.84.1 - peerDependenciesMeta: - '@rspack/core': - optional: true - webpack: - optional: true - - css-minimizer-webpack-plugin@3.4.1: - resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} - engines: {node: '>= 12.13.0'} - peerDependencies: - '@parcel/css': '*' - clean-css: '*' - csso: '*' - esbuild: '*' - webpack: 5.84.1 - peerDependenciesMeta: - '@parcel/css': - optional: true - clean-css: - optional: true - csso: - optional: true - esbuild: - optional: true - - css-select-base-adapter@0.1.1: - resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} - - css-select@2.1.0: - resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==} - - css-select@4.3.0: - resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} - - css-select@5.1.0: - resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} - - css-selector-tokenizer@0.7.3: - resolution: {integrity: sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==} - - css-to-react-native@2.3.2: - resolution: {integrity: sha512-VOFaeZA053BqvvvqIA8c9n0+9vFppVBAHCp6JgFTtTMU3Mzi+XnelJ9XC9ul3BqFzZyQ5N+H0SnwsWT2Ebchxw==} - - css-tree@1.0.0-alpha.37: - resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} - engines: {node: '>=8.0.0'} - - css-tree@1.1.3: - resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} - engines: {node: '>=8.0.0'} - - css-tree@2.2.1: - resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} - - css-tree@2.3.1: - resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} - - css-what@3.4.2: - resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} - engines: {node: '>= 6'} - - css-what@6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: '>= 6'} - - css.escape@1.5.1: - resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} - - css@3.0.0: - resolution: {integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==} - - cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} - hasBin: true - - cssnano-preset-default@5.2.14: - resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - cssnano-utils@3.1.0: - resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - cssnano@5.1.15: - resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - csso@4.2.0: - resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} - engines: {node: '>=8.0.0'} - - csso@5.0.5: - resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} - - cssom@0.3.8: - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} - - cssom@0.4.4: - resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} - - cssom@0.5.0: - resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} - - cssstyle@2.3.0: - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} - engines: {node: '>=8'} - - csstype@2.6.21: - resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==} - - csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} - - csv-generate@3.4.3: - resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} - - csv-parse@4.16.3: - resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} - - csv-stringify@5.6.5: - resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} - - csv@5.5.3: - resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} - engines: {node: '>= 0.1.90'} - - currently-unhandled@0.4.1: - resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} - engines: {node: '>=0.10.0'} - - cypress@9.7.0: - resolution: {integrity: sha512-+1EE1nuuuwIt/N1KXRR2iWHU+OiIt7H28jJDyyI4tiUftId/DrXYEwoDa5+kH2pki1zxnA0r6HrUGHV5eLbF5Q==} - engines: {node: '>=12.0.0'} - hasBin: true - - d3-array@3.2.4: - resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} - engines: {node: '>=12'} - - d3-color@3.1.0: - resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} - engines: {node: '>=12'} - - d3-dispatch@3.0.1: - resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} - engines: {node: '>=12'} - - d3-drag@3.0.0: - resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} - engines: {node: '>=12'} - - d3-ease@3.0.1: - resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} - engines: {node: '>=12'} - - d3-format@3.1.0: - resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} - engines: {node: '>=12'} - - d3-interpolate@3.0.1: - resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} - engines: {node: '>=12'} - - d3-path@3.1.0: - resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==} - engines: {node: '>=12'} - - d3-scale@4.0.2: - resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} - engines: {node: '>=12'} - - d3-selection@3.0.0: - resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} - engines: {node: '>=12'} - - d3-shape@3.2.0: - resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==} - engines: {node: '>=12'} - - d3-time-format@4.1.0: - resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} - engines: {node: '>=12'} - - d3-time@3.1.0: - resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} - engines: {node: '>=12'} - - d3-timer@3.0.1: - resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} - engines: {node: '>=12'} - - d3-transition@3.0.1: - resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} - engines: {node: '>=12'} - peerDependencies: - d3-selection: 2 - 3 - - d3-zoom@3.0.0: - resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} - engines: {node: '>=12'} - - d@1.0.2: - resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==} - engines: {node: '>=0.12'} - - damerau-levenshtein@1.0.8: - resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} - - dargs@7.0.0: - resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} - engines: {node: '>=8'} - - dashdash@1.14.1: - resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} - engines: {node: '>=0.10'} - - data-urls@2.0.0: - resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} - engines: {node: '>=10'} - - data-urls@3.0.2: - resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} - engines: {node: '>=12'} - - data-view-buffer@1.0.1: - resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} - engines: {node: '>= 0.4'} - - data-view-byte-length@1.0.1: - resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} - engines: {node: '>= 0.4'} - - data-view-byte-offset@1.0.0: - resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} - engines: {node: '>= 0.4'} - - dataloader@1.4.0: - resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} - - date-format@2.1.0: - resolution: {integrity: sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==} - engines: {node: '>=4.0'} - deprecated: 2.x is no longer supported. Please upgrade to 4.x or higher. - - date-now@0.1.4: - resolution: {integrity: sha512-AsElvov3LoNB7tf5k37H2jYSB+ZZPMT5sG2QjJCcdlV5chIv6htBUBUui2IKRjgtKAKtCBN7Zbwa+MtwLjSeNw==} - - dateformat@3.0.3: - resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} - - dayjs@1.11.11: - resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==} - - debounce@1.2.1: - resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} - - debug@2.6.9: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - debug@3.1.0: - resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - debug@3.2.7: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - debug@4.3.5: - resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - debuglog@1.0.1: - resolution: {integrity: sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - decamelize-keys@1.1.1: - resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} - engines: {node: '>=0.10.0'} - - decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} - - decimal.js-light@2.5.1: - resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==} - - decimal.js@10.4.3: - resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} - - decode-named-character-reference@1.0.2: - resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} - - decode-uri-component@0.2.2: - resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} - engines: {node: '>=0.10'} - - decompress-response@3.3.0: - resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} - engines: {node: '>=4'} - - decompress-response@6.0.0: - resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} - engines: {node: '>=10'} - - dedent@0.7.0: - resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} - - dedent@1.5.3: - resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} - peerDependencies: - babel-plugin-macros: ^3.1.0 - peerDependenciesMeta: - babel-plugin-macros: - optional: true - - deep-diff@1.0.2: - resolution: {integrity: sha512-aWS3UIVH+NPGCD1kki+DCU9Dua032iSsO43LqQpcs4R3+dVv7tX0qBGjiVHJHjplsoUM2XRO/KB92glqc68awg==} - - deep-equal@1.1.2: - resolution: {integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==} - engines: {node: '>= 0.4'} - - deep-equal@2.2.3: - resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} - engines: {node: '>= 0.4'} - - deep-extend@0.6.0: - resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} - engines: {node: '>=4.0.0'} - - deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} - - deep-object-diff@1.1.9: - resolution: {integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==} - - deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: '>=0.10.0'} - - default-browser-id@1.0.4: - resolution: {integrity: sha512-qPy925qewwul9Hifs+3sx1ZYn14obHxpkX+mPD369w4Rzg+YkJBgi3SOvwUq81nWSjqGUegIgEPwD8u+HUnxlw==} - engines: {node: '>=0.10.0'} - hasBin: true - - default-gateway@4.2.0: - resolution: {integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==} - engines: {node: '>=6'} - - default-gateway@6.0.3: - resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} - engines: {node: '>= 10'} - - default-require-extensions@3.0.1: - resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==} - engines: {node: '>=8'} - - defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} - - defer-to-connect@1.1.3: - resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} - - defer-to-connect@2.0.1: - resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} - engines: {node: '>=10'} - - define-data-property@1.1.4: - resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} - engines: {node: '>= 0.4'} - - define-lazy-prop@2.0.0: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} - engines: {node: '>=8'} - - define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: '>= 0.4'} - - define-property@0.2.5: - resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} - engines: {node: '>=0.10.0'} - - define-property@1.0.0: - resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} - engines: {node: '>=0.10.0'} - - define-property@2.0.2: - resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} - engines: {node: '>=0.10.0'} - - del@4.1.1: - resolution: {integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==} - engines: {node: '>=6'} - - delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} - - delegates@1.0.0: - resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} - - depd@1.1.2: - resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} - engines: {node: '>= 0.6'} - - depd@2.0.0: - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} - engines: {node: '>= 0.8'} - - deprecation@2.3.1: - resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} - - dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} - - destroy@1.2.0: - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - - detab@2.0.4: - resolution: {integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==} - - detect-indent@5.0.0: - resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==} - engines: {node: '>=4'} - - detect-indent@6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: '>=8'} - - detect-newline@3.1.0: - resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} - engines: {node: '>=8'} - - detect-node@2.1.0: - resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} - - detect-package-manager@2.0.1: - resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==} - engines: {node: '>=12'} - - detect-port@1.6.1: - resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==} - engines: {node: '>= 4.0.0'} - hasBin: true - - devlop@1.1.0: - resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} - - dezalgo@1.0.4: - resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==} - - diff-sequences@26.6.2: - resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==} - engines: {node: '>= 10.14.2'} - - diff-sequences@28.1.1: - resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - diff-sequences@29.6.3: - resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - diff@4.0.2: - resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} - engines: {node: '>=0.3.1'} - - dir-glob@2.2.2: - resolution: {integrity: sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==} - engines: {node: '>=4'} - - dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} - - dns-equal@1.0.0: - resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} - - dns-packet@1.3.4: - resolution: {integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==} - - dns-packet@5.6.1: - resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} - engines: {node: '>=6'} - - dns-txt@2.0.2: - resolution: {integrity: sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==} - - doctrine@2.1.0: - resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} - engines: {node: '>=0.10.0'} - - doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} - - dom-accessibility-api@0.5.16: - resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} - - dom-accessibility-api@0.6.3: - resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} - - dom-converter@0.2.0: - resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} - - dom-helpers@5.2.1: - resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} - - dom-serializer@0.2.2: - resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} - - dom-serializer@1.4.1: - resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} - - dom-serializer@2.0.0: - resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} - - dom-walk@0.1.2: - resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==} - - domelementtype@1.3.1: - resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} - - domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} - - domexception@2.0.1: - resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} - engines: {node: '>=8'} - deprecated: Use your platform's native DOMException instead - - domexception@4.0.0: - resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} - engines: {node: '>=12'} - deprecated: Use your platform's native DOMException instead - - domhandler@2.3.0: - resolution: {integrity: sha512-q9bUwjfp7Eif8jWxxxPSykdRZAb6GkguBGSgvvCrhI9wB71W2K/Kvv4E61CF/mcCfnVJDeDWx/Vb/uAqbDj6UQ==} - - domhandler@4.3.1: - resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} - engines: {node: '>= 4'} - - domhandler@5.0.3: - resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} - engines: {node: '>= 4'} - - dompurify@3.1.5: - resolution: {integrity: sha512-lwG+n5h8QNpxtyrJW/gJWckL+1/DQiYMX8f7t8Z2AZTPw1esVrqjI63i7Zc2Gz0aKzLVMYC1V1PL/ky+aY/NgA==} - - domutils@1.5.1: - resolution: {integrity: sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==} - - domutils@1.7.0: - resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} - - domutils@2.8.0: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} - - domutils@3.1.0: - resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} - - dot-case@3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} - - dot-prop@5.3.0: - resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} - engines: {node: '>=8'} - - dot-prop@6.0.1: - resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} - engines: {node: '>=10'} - - dotenv-expand@5.1.0: - resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} - - dotenv@10.0.0: - resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} - engines: {node: '>=10'} - - dotenv@16.4.5: - resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} - engines: {node: '>=12'} - - dotenv@8.6.0: - resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} - engines: {node: '>=10'} - - downshift@6.1.12: - resolution: {integrity: sha512-7XB/iaSJVS4T8wGFT3WRXmSF1UlBHAA40DshZtkrIscIN+VC+Lh363skLxFTvJwtNgHxAMDGEHT4xsyQFWL+UA==} - peerDependencies: - react: '>=16.12.0' - - duplexer3@0.1.5: - resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} - - duplexer@0.1.2: - resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} - - eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - - ecc-jsbn@0.1.2: - resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} - - editorconfig@1.0.4: - resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==} - engines: {node: '>=14'} - hasBin: true - - ee-first@1.1.1: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - - ejs@3.1.10: - resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} - engines: {node: '>=0.10.0'} - hasBin: true - - electron-to-chromium@1.4.810: - resolution: {integrity: sha512-Kaxhu4T7SJGpRQx99tq216gCq2nMxJo+uuT6uzz9l8TVN2stL7M06MIIXAtr9jsrLs2Glflgf2vMQRepxawOdQ==} - - element-resize-detector@1.2.4: - resolution: {integrity: sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==} - - emittery@0.10.2: - resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} - engines: {node: '>=12'} - - emittery@0.13.1: - resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} - engines: {node: '>=12'} - - emittery@0.7.2: - resolution: {integrity: sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==} - engines: {node: '>=10'} - - emoji-regex@7.0.3: - resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==} - - emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - - emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - - emojis-list@2.1.0: - resolution: {integrity: sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng==} - engines: {node: '>= 0.10'} - - emojis-list@3.0.0: - resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} - engines: {node: '>= 4'} - - emotion-theming@10.3.0: - resolution: {integrity: sha512-mXiD2Oj7N9b6+h/dC6oLf9hwxbtKHQjoIqtodEyL8CpkN4F3V4IK/BT4D0C7zSs4BBFOu4UlPJbvvBLa88SGEA==} - peerDependencies: - '@emotion/core': ^10.0.27 - react: '>=16.3.0' - - encodeurl@1.0.2: - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} - engines: {node: '>= 0.8'} - - encoding@0.1.13: - resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} - - end-of-stream@1.4.4: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} - - endent@2.1.0: - resolution: {integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==} - - enhanced-resolve@4.5.0: - resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==} - engines: {node: '>=6.9.0'} - - enhanced-resolve@5.17.0: - resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==} - engines: {node: '>=10.13.0'} - - enquirer@2.3.6: - resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} - engines: {node: '>=8.6'} - - enquirer@2.4.1: - resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} - engines: {node: '>=8.6'} - - entities@1.0.0: - resolution: {integrity: sha512-LbLqfXgJMmy81t+7c14mnulFHJ170cM6E+0vMXR9k/ZiZwgX8i5pNgjTCX3SO4VeUsFLV+8InixoretwU+MjBQ==} - - entities@2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} - - entities@3.0.1: - resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} - engines: {node: '>=0.12'} - - entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} - - env-paths@2.2.1: - resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} - engines: {node: '>=6'} - - envinfo@7.13.0: - resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==} - engines: {node: '>=4'} - hasBin: true - - err-code@2.0.3: - resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} - - errno@0.1.8: - resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} - hasBin: true - - error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} - - error-stack-parser@2.1.4: - resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} - - es-abstract@1.23.3: - resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} - engines: {node: '>= 0.4'} - - es-array-method-boxes-properly@1.0.0: - resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} - - es-define-property@1.0.0: - resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} - engines: {node: '>= 0.4'} - - es-errors@1.3.0: - resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} - engines: {node: '>= 0.4'} - - es-get-iterator@1.1.3: - resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} - - es-iterator-helpers@1.0.19: - resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==} - engines: {node: '>= 0.4'} - - es-module-lexer@1.5.4: - resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} - - es-object-atoms@1.0.0: - resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} - engines: {node: '>= 0.4'} - - es-set-tostringtag@2.0.3: - resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} - engines: {node: '>= 0.4'} - - es-shim-unscopables@1.0.2: - resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} - - es-to-primitive@1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} - - es5-ext@0.10.64: - resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==} - engines: {node: '>=0.10'} - - es5-shim@4.6.7: - resolution: {integrity: sha512-jg21/dmlrNQI7JyyA2w7n+yifSxBng0ZralnSfVZjoCawgNTCnS+yBCyVM9DL5itm7SUnDGgv7hcq2XCZX4iRQ==} - engines: {node: '>=0.4.0'} - - es6-error@4.1.1: - resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} - - es6-iterator@2.0.3: - resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} - - es6-shim@0.35.8: - resolution: {integrity: sha512-Twf7I2v4/1tLoIXMT8HlqaBSS5H2wQTs2wx3MNYCI8K1R1/clXyCazrcVCPm/FuO9cyV8+leEaZOWD5C253NDg==} - - es6-symbol@3.1.4: - resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==} - engines: {node: '>=0.12'} - - escalade@3.1.2: - resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} - engines: {node: '>=6'} - - escape-goat@2.1.1: - resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==} - engines: {node: '>=8'} - - escape-html@1.0.3: - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} - - escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} - - escape-string-regexp@2.0.0: - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} - engines: {node: '>=8'} - - escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} - - escape-string-regexp@5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} - engines: {node: '>=12'} - - escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: '>=6.0'} - hasBin: true - - eslint-compat-utils@0.5.1: - resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} - engines: {node: '>=12'} - peerDependencies: - eslint: '>=6.0.0' - - eslint-config-prettier@8.1.0: - resolution: {integrity: sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==} - hasBin: true - peerDependencies: - eslint: '>=7.0.0' - - eslint-import-resolver-node@0.3.9: - resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} - - eslint-module-utils@2.8.1: - resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} - 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 - - eslint-plugin-cypress@2.15.2: - resolution: {integrity: sha512-CtcFEQTDKyftpI22FVGpx8bkpKyYXBlNge6zSo0pl5/qJvBAnzaD76Vu2AsP16d6mTj478Ldn2mhgrWV+Xr0vQ==} - peerDependencies: - eslint: '>= 3.2.1' - - eslint-plugin-header@https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3: - resolution: {tarball: https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3} - version: 3.2.0 - peerDependencies: - eslint: '>=7.7.0' - - eslint-plugin-import@2.29.1: - resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - - eslint-plugin-jest-dom@4.0.3: - resolution: {integrity: sha512-9j+n8uj0+V0tmsoS7bYC7fLhQmIvjRqRYEcbDSi+TKPsTThLLXCyj5swMSSf/hTleeMktACnn+HFqXBr5gbcbA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6', yarn: '>=1'} - peerDependencies: - eslint: ^6.8.0 || ^7.0.0 || ^8.0.0 - - eslint-plugin-jsonc@2.16.0: - resolution: {integrity: sha512-Af/ZL5mgfb8FFNleH6KlO4/VdmDuTqmM+SPnWcdoWywTetv7kq+vQe99UyQb9XO3b0OWLVuTH7H0d/PXYCMdSg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '>=6.0.0' - - eslint-plugin-jsx-a11y@6.5.1: - resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==} - engines: {node: '>=4.0'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - - eslint-plugin-react-hooks@4.6.2: - resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} - engines: {node: '>=10'} - peerDependencies: - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 - - eslint-plugin-react@7.34.3: - resolution: {integrity: sha512-aoW4MV891jkUulwDApQbPYTVZmeuSyFrudpbTAQuj5Fv8VL+o6df2xIGpw8B0hPjAaih1/Fb0om9grCdyFYemA==} - engines: {node: '>=4'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - - eslint-plugin-testing-library@5.11.1: - resolution: {integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} - peerDependencies: - eslint: ^7.5.0 || ^8.0.0 - - eslint-plugin-tsdoc@0.2.17: - resolution: {integrity: sha512-xRmVi7Zx44lOBuYqG8vzTXuL6IdGOeF9nHX17bjJ8+VE6fsxpdGem0/SBTmAwgYMKYB1WBkqRJVQ+n8GK041pA==} - - eslint-scope@5.1.1: - resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} - engines: {node: '>=8.0.0'} - - eslint-utils@2.1.0: - resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} - engines: {node: '>=6'} - - eslint-utils@3.0.0: - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: '>=5' - - eslint-visitor-keys@1.3.0: - resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} - engines: {node: '>=4'} - - eslint-visitor-keys@2.1.0: - resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} - engines: {node: '>=10'} - - eslint-visitor-keys@3.4.3: - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - eslint-webpack-plugin@2.7.0: - resolution: {integrity: sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - webpack: 5.84.1 - - eslint-webpack-plugin@3.2.0: - resolution: {integrity: sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==} - engines: {node: '>= 12.13.0'} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - webpack: 5.84.1 - - eslint@7.32.0: - resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} - engines: {node: ^10.12.0 || >=12.0.0} - hasBin: true - - esniff@2.0.1: - resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==} - engines: {node: '>=0.10'} - - espree@7.3.1: - resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} - engines: {node: ^10.12.0 || >=12.0.0} - - espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} - hasBin: true - - esquery@1.5.0: - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} - engines: {node: '>=0.10'} - - esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} - - estraverse@4.3.0: - resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} - engines: {node: '>=4.0'} - - estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} - - estree-to-babel@3.2.1: - resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} - engines: {node: '>=8.3.0'} - - estree-util-is-identifier-name@3.0.0: - resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} - - estree-walker@0.2.1: - resolution: {integrity: sha512-6/I1dwNKk0N9iGOU3ydzAAurz4NPo/ttxZNCqgIVbWFvWyzWBSNonRrJ5CpjDuyBfmM7ENN7WCzUi9aT/UPXXQ==} - - estree-walker@0.6.1: - resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} - - estree-walker@1.0.1: - resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} - - estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} - - esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} - - etag@1.8.1: - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} - engines: {node: '>= 0.6'} - - event-emitter@0.3.5: - resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} - - eventemitter2@6.4.9: - resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==} - - eventemitter3@4.0.7: - resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} - - events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: '>=0.8.x'} - - eventsource@2.0.2: - resolution: {integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==} - engines: {node: '>=12.0.0'} - - exec-sh@0.2.2: - resolution: {integrity: sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==} - - exec-sh@0.3.6: - resolution: {integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==} - - execa@0.7.0: - resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==} - engines: {node: '>=4'} - - execa@1.0.0: - resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} - engines: {node: '>=6'} - - execa@4.1.0: - resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} - engines: {node: '>=10'} - - execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} - - executable@4.1.1: - resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==} - engines: {node: '>=4'} - - exenv@1.2.2: - resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==} - - exit@0.1.2: - resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} - engines: {node: '>= 0.8.0'} - - expand-brackets@2.1.4: - resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} - engines: {node: '>=0.10.0'} - - expect@26.6.2: - resolution: {integrity: sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==} - engines: {node: '>= 10.14.2'} - - expect@28.1.3: - resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - expect@29.7.0: - resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - exponential-backoff@3.1.1: - resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} - - express@4.19.2: - resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==} - engines: {node: '>= 0.10.0'} - - ext-list@2.2.2: - resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} - engines: {node: '>=0.10.0'} - - ext-name@5.0.0: - resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==} - engines: {node: '>=4'} - - ext@1.7.0: - resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} - - extend-shallow@2.0.1: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} - engines: {node: '>=0.10.0'} - - extend-shallow@3.0.2: - resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} - engines: {node: '>=0.10.0'} - - extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} - - extendable-error@0.1.7: - resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} - - external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} - - extglob@2.0.4: - resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} - engines: {node: '>=0.10.0'} - - extract-text-webpack-plugin@4.0.0-beta.0: - resolution: {integrity: sha512-Hypkn9jUTnFr0DpekNam53X47tXn3ucY08BQumv7kdGgeVUBLq3DJHJTi6HNxv4jl9W+Skxjz9+RnK0sJyqqjA==} - engines: {node: '>= 6.9.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 - - extract-zip@1.7.0: - resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==} - hasBin: true - - extract-zip@2.0.1: - resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} - engines: {node: '>= 10.17.0'} - hasBin: true - - extsprintf@1.3.0: - resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} - engines: {'0': node >=0.6.0} - - fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - - fast-equals@5.0.1: - resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==} - engines: {node: '>=6.0.0'} - - fast-glob@2.2.7: - resolution: {integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==} - engines: {node: '>=4.0.0'} - - fast-glob@3.2.7: - resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} - engines: {node: '>=8'} - - fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} - engines: {node: '>=8.6.0'} - - fast-json-parse@1.0.3: - resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==} - - fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} - - fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - - fast-sha256@1.3.0: - resolution: {integrity: sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==} - - fast-sort@3.4.0: - resolution: {integrity: sha512-c/cMBGA5mH3OYjaXedtLIM3hQjv+KuZuiD2QEH5GofNOZeQVDIYIN7Okc2AW1KPhk44g5PTZnXp8t2lOMl8qhQ==} - - fast-xml-parser@3.21.1: - resolution: {integrity: sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==} - hasBin: true - - fastest-levenshtein@1.0.16: - resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} - engines: {node: '>= 4.9.1'} - - fastestsmallesttextencoderdecoder@1.0.22: - resolution: {integrity: sha512-Pb8d48e+oIuY4MaM64Cd7OW1gt4nxCHs7/ddPPZ/Ic3sg8yVGM7O9wDvZ7us6ScaUupzM+pfBolwtYhN1IxBIw==} - - fastparse@1.1.2: - resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==} - - fastq@1.17.1: - resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} - - fault@1.0.4: - resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==} - - faye-websocket@0.11.4: - resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} - engines: {node: '>=0.8.0'} - - fb-watchman@2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} - - fd-slicer@1.1.0: - resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} - - fetch-retry@5.0.6: - resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==} - - figures@3.2.0: - resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} - engines: {node: '>=8'} - - file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} - - file-loader@2.0.0: - resolution: {integrity: sha512-YCsBfd1ZGCyonOKLxPiKPdu+8ld9HAaMEvJewzz+b2eTF7uL5Zm/HdBF6FjCrpCMRq25Mi0U1gl4pwn2TlH7hQ==} - engines: {node: '>= 6.9.0 < 7.0.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 - - file-loader@6.2.0: - resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 - - file-saver@2.0.5: - resolution: {integrity: sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==} - - file-system-cache@1.1.0: - resolution: {integrity: sha512-IzF5MBq+5CR0jXx5RxPe4BICl/oEhBSXKaL9fLhAXrIfIUS77Hr4vzrYyqYMHN6uTt+BOqi3fDCTjjEBCjERKw==} - - file-type@17.1.6: - resolution: {integrity: sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - file-uri-to-path@1.0.0: - resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} - - filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} - - filename-reserved-regex@3.0.0: - resolution: {integrity: sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - filenamify@5.1.1: - resolution: {integrity: sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==} - engines: {node: '>=12.20'} - - filesize@3.6.1: - resolution: {integrity: sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==} - engines: {node: '>= 0.4.0'} - - fill-range@4.0.0: - resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} - engines: {node: '>=0.10.0'} - - fill-range@7.1.1: - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} - engines: {node: '>=8'} - - filter-obj@1.1.0: - resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} - engines: {node: '>=0.10.0'} - - final-form@4.20.10: - resolution: {integrity: sha512-TL48Pi1oNHeMOHrKv1bCJUrWZDcD3DIG6AGYVNOnyZPr7Bd/pStN0pL+lfzF5BNoj/FclaoiaLenk4XUIFVYng==} - engines: {node: '>=8'} - - finalhandler@1.2.0: - resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} - engines: {node: '>= 0.8'} - - find-cache-dir@2.1.0: - resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} - engines: {node: '>=6'} - - find-cache-dir@3.3.2: - resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} - engines: {node: '>=8'} - - find-root@1.1.0: - resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} - - find-up@1.1.2: - resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==} - engines: {node: '>=0.10.0'} - - find-up@2.1.0: - resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} - engines: {node: '>=4'} - - find-up@3.0.0: - resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} - engines: {node: '>=6'} - - find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} - - find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} - - find-versions@5.1.0: - resolution: {integrity: sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==} - engines: {node: '>=12'} - - find-yarn-workspace-root2@1.2.16: - resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} - - flat-cache@3.2.0: - resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} - engines: {node: ^10.12.0 || >=12.0.0} - - flat@5.0.2: - resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} - hasBin: true - - flatted@2.0.2: - resolution: {integrity: sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==} - - flatted@3.3.1: - resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} - - flow-parser@0.238.0: - resolution: {integrity: sha512-VE7XSv1epljsIN2YeBnxCmGJihpNIAnLLu/pPOdA+Gkso7qDltJwUi6vfHjgxdBbjSdAuPGnhuOHJUQG+yYwIg==} - engines: {node: '>=0.4.0'} - - follow-redirects@1.15.6: - resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} - engines: {node: '>=4.0'} - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true - - follow-redirects@1.5.10: - resolution: {integrity: sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==} - engines: {node: '>=4.0'} - - for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} - - for-in@0.1.8: - resolution: {integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==} - engines: {node: '>=0.10.0'} - - for-in@1.0.2: - resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} - engines: {node: '>=0.10.0'} - - for-own@0.1.5: - resolution: {integrity: sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==} - engines: {node: '>=0.10.0'} - - foreground-child@2.0.0: - resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} - engines: {node: '>=8.0.0'} - - foreground-child@3.2.1: - resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==} - engines: {node: '>=14'} - - forever-agent@0.6.1: - resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} - - fork-ts-checker-webpack-plugin@4.1.6: - resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} - engines: {node: '>=6.11.5', yarn: '>=1.0.0'} - peerDependencies: - eslint: '>= 6' - typescript: '>= 2.7' - vue-template-compiler: '*' - webpack: 5.84.1 - peerDependenciesMeta: - eslint: - optional: true - vue-template-compiler: - optional: true - - fork-ts-checker-webpack-plugin@6.5.3: - resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} - engines: {node: '>=10', yarn: '>=1.0.0'} - peerDependencies: - eslint: '>= 6' - typescript: '>= 2.7' - vue-template-compiler: '*' - webpack: 5.84.1 - peerDependenciesMeta: - eslint: - optional: true - vue-template-compiler: - optional: true - - fork-ts-checker-webpack-plugin@7.2.13: - resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==} - engines: {node: '>=12.13.0', yarn: '>=1.0.0'} - peerDependencies: - typescript: '>3.6.0' - vue-template-compiler: '*' - webpack: 5.84.1 - peerDependenciesMeta: - vue-template-compiler: - optional: true - - form-data@2.3.3: - resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} - engines: {node: '>= 0.12'} - - form-data@3.0.1: - resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} - engines: {node: '>= 6'} - - form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} - engines: {node: '>= 6'} - - format@0.2.2: - resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} - engines: {node: '>=0.4.x'} - - forwarded@0.2.0: - resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} - engines: {node: '>= 0.6'} - - fraction.js@4.3.7: - resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} - - fragment-cache@0.2.1: - resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} - engines: {node: '>=0.10.0'} - - framer-motion@11.2.11: - resolution: {integrity: sha512-n+ozoEzgJu/2h9NoQMokF+CwNqIRVyuRC4RwMPwklfrrTjbVV32k9uBIgqYAwn7Jfpt5LuDVCtT57MWz1FbaLw==} - peerDependencies: - '@emotion/is-prop-valid': '*' - react: ^18.0.0 - react-dom: ^18.0.0 - peerDependenciesMeta: - '@emotion/is-prop-valid': - optional: true - react: - optional: true - react-dom: - optional: true - - fresh@0.5.2: - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} - engines: {node: '>= 0.6'} - - fromentries@1.3.2: - resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==} - - fs-constants@1.0.0: - resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} - - fs-extra@10.1.0: - resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} - engines: {node: '>=12'} - - fs-extra@7.0.1: - resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} - engines: {node: '>=6 <7 || >=8'} - - fs-extra@8.1.0: - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} - engines: {node: '>=6 <7 || >=8'} - - fs-extra@9.1.0: - resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} - engines: {node: '>=10'} - - fs-minipass@2.1.0: - resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} - engines: {node: '>= 8'} - - fs-monkey@1.0.6: - resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==} - - fs-readdir-recursive@1.1.0: - resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==} - - fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - - fsevents@1.2.13: - resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==} - engines: {node: '>= 4.0'} - os: [darwin] - deprecated: The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2 - - fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - - function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - - function.prototype.name@1.1.6: - resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} - engines: {node: '>= 0.4'} - - functional-red-black-tree@1.0.1: - resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} - - functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - - fuse.js@3.6.1: - resolution: {integrity: sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw==} - engines: {node: '>=6'} - - gauge@3.0.2: - resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} - engines: {node: '>=10'} - deprecated: This package is no longer supported. - - gauge@4.0.4: - resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. - - generic-names@4.0.0: - resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} - - gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} - - get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} - - get-intrinsic@1.2.4: - resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} - engines: {node: '>= 0.4'} - - get-package-type@0.1.0: - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} - engines: {node: '>=8.0.0'} - - get-pkg-repo@4.2.1: - resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} - engines: {node: '>=6.9.0'} - hasBin: true - - get-port@5.1.1: - resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} - engines: {node: '>=8'} - - get-stdin@4.0.1: - resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==} - engines: {node: '>=0.10.0'} - - get-stream@3.0.0: - resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==} - engines: {node: '>=4'} - - get-stream@4.1.0: - resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} - engines: {node: '>=6'} - - get-stream@5.2.0: - resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} - engines: {node: '>=8'} - - get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} - - get-symbol-description@1.0.2: - resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} - engines: {node: '>= 0.4'} - - get-value@2.0.6: - resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} - engines: {node: '>=0.10.0'} - - getos@3.2.1: - resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} - - getpass@0.1.7: - resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} - - git-raw-commits@2.0.11: - resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} - engines: {node: '>=10'} - hasBin: true - - git-remote-origin-url@2.0.0: - resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} - engines: {node: '>=4'} - - git-semver-tags@4.1.1: - resolution: {integrity: sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==} - engines: {node: '>=10'} - hasBin: true - - git-up@7.0.0: - resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} - - git-url-parse@13.1.1: - resolution: {integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==} - - gitconfiglocal@1.0.0: - resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==} - - github-slugger@1.5.0: - resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} - - glob-parent@3.1.0: - resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==} - - glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} - - glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} - - glob-promise@3.4.0: - resolution: {integrity: sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==} - engines: {node: '>=4'} - peerDependencies: - glob: '*' - - glob-to-regexp@0.3.0: - resolution: {integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==} - - glob-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - - glob@10.4.2: - resolution: {integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==} - engines: {node: '>=16 || 14 >=14.18'} - hasBin: true - - glob@7.1.4: - resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} - deprecated: Glob versions prior to v9 are no longer supported - - glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - deprecated: Glob versions prior to v9 are no longer supported - - glob@8.1.0: - resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} - engines: {node: '>=12'} - deprecated: Glob versions prior to v9 are no longer supported - - global-dirs@3.0.1: - resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} - engines: {node: '>=10'} - - global@4.4.0: - resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==} - - globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} - - globals@13.24.0: - resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} - engines: {node: '>=8'} - - globals@9.18.0: - resolution: {integrity: sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==} - engines: {node: '>=0.10.0'} - - globalthis@1.0.4: - resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} - engines: {node: '>= 0.4'} - - globby@10.0.1: - resolution: {integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==} - engines: {node: '>=8'} - - globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} - - globby@12.2.0: - resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - globby@14.0.1: - resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==} - engines: {node: '>=18'} - - globby@6.1.0: - resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==} - engines: {node: '>=0.10.0'} - - globby@9.2.0: - resolution: {integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==} - engines: {node: '>=6'} - - gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} - - got@11.8.6: - resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} - engines: {node: '>=10.19.0'} - - got@9.6.0: - resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} - engines: {node: '>=8.6'} - - graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - - grapheme-splitter@1.0.4: - resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} - - graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} - - graphql@15.9.0: - resolution: {integrity: sha512-GCOQdvm7XxV1S4U4CGrsdlEN37245eC8P9zaYCMr6K1BG0IPGy5lUwmJsEOGyl1GD6HXjOtl2keCP9asRBwNvA==} - engines: {node: '>= 10.x'} - - growly@1.3.0: - resolution: {integrity: sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==} - - gzip-size@6.0.0: - resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} - engines: {node: '>=10'} - - handle-thing@2.0.1: - resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} - - handlebars@4.7.8: - resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} - engines: {node: '>=0.4.7'} - hasBin: true - - hard-rejection@2.1.0: - resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} - engines: {node: '>=6'} - - harmony-reflect@1.6.2: - resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} - - has-ansi@2.0.0: - resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} - engines: {node: '>=0.10.0'} - - has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} - - has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} - - has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} - - has-glob@1.0.0: - resolution: {integrity: sha512-D+8A457fBShSEI3tFCj65PAbT++5sKiFtdCdOam0gnfBgw9D277OERk+HM9qYJXmdVLZ/znez10SqHN0BBQ50g==} - engines: {node: '>=0.10.0'} - - has-property-descriptors@1.0.2: - resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} - - has-proto@1.0.3: - resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} - engines: {node: '>= 0.4'} - - has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} - - has-tostringtag@1.0.2: - resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} - engines: {node: '>= 0.4'} - - has-unicode@2.0.1: - resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} - - has-value@0.3.1: - resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} - engines: {node: '>=0.10.0'} - - has-value@1.0.0: - resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} - engines: {node: '>=0.10.0'} - - has-values@0.1.4: - resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} - engines: {node: '>=0.10.0'} - - has-values@1.0.0: - resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} - engines: {node: '>=0.10.0'} - - has-yarn@2.1.0: - resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==} - engines: {node: '>=8'} - - has@1.0.4: - resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} - engines: {node: '>= 0.4.0'} - - hasha@5.2.2: - resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} - engines: {node: '>=8'} - - hasown@2.0.2: - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} - engines: {node: '>= 0.4'} - - hast-to-hyperscript@9.0.1: - resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==} - - hast-util-from-parse5@6.0.1: - resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==} - - hast-util-parse-selector@2.2.5: - resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==} - - hast-util-raw@6.0.1: - resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==} - - hast-util-to-jsx-runtime@2.3.0: - resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==} - - hast-util-to-parse5@6.0.0: - resolution: {integrity: sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==} - - hast-util-whitespace@3.0.0: - resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} - - hastscript@6.0.0: - resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} - - he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} - hasBin: true - - headers-utils@3.0.2: - resolution: {integrity: sha512-xAxZkM1dRyGV2Ou5bzMxBPNLoRCjcX+ya7KSWybQD2KwLphxsapUVK6x/02o7f4VU6GPSXch9vNY2+gkU8tYWQ==} - - highlight.js@10.7.3: - resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} - - history@4.10.1: - resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==} - - history@5.0.0: - resolution: {integrity: sha512-3NyRMKIiFSJmIPdq7FxkNMJkQ7ZEtVblOQ38VtKaA0zZMW1Eo6Q6W8oDKEflr1kNNTItSnk4JMCO1deeSgbLLg==} - - hoist-non-react-statics@2.5.5: - resolution: {integrity: sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==} - - hoist-non-react-statics@3.3.2: - resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} - - hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} - - hosted-git-info@3.0.8: - resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==} - engines: {node: '>=10'} - - hosted-git-info@4.1.0: - resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} - engines: {node: '>=10'} - - hosted-git-info@5.2.1: - resolution: {integrity: sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - hpack.js@2.1.6: - resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} - - html-dom-parser@2.0.0: - resolution: {integrity: sha512-PwVjg12yfWunpH2WjwjaYNKcZyKKm20kclTfMQohiRzfgYiXX0dR7nXIIKnHneghMDvB0rKFZLEAe11ykOfpcg==} - - html-encoding-sniffer@2.0.1: - resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} - engines: {node: '>=10'} - - html-encoding-sniffer@3.0.0: - resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} - engines: {node: '>=12'} - - html-entities@1.4.0: - resolution: {integrity: sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==} - - html-entities@2.5.2: - resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} - - html-escaper@2.0.2: - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} - - html-minifier-terser@5.1.1: - resolution: {integrity: sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==} - engines: {node: '>=6'} - hasBin: true - - html-minifier-terser@6.1.0: - resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} - engines: {node: '>=12'} - hasBin: true - - html-parse-stringify@3.0.1: - resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==} - - html-react-parser@2.0.0: - resolution: {integrity: sha512-AI1lhybWGi8w4QkGtEIS3iSGAjeFGaonxl/+CzqzCeNT3g3z/yx2NKsA93trnv2BLjhe+juGLmLeTSUkyYWk9Q==} - peerDependencies: - react: 0.14 || 15 || 16 || 17 || 18 - - html-tags@3.3.1: - resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} - engines: {node: '>=8'} - - html-url-attributes@3.0.0: - resolution: {integrity: sha512-/sXbVCWayk6GDVg3ctOX6nxaVj7So40FcFAnWlWGNAB1LpYKcV5Cd10APjPjW80O7zYW2MsjBV4zZ7IZO5fVow==} - - html-void-elements@1.0.5: - resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==} - - html-webpack-plugin@4.5.2: - resolution: {integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==} - engines: {node: '>=6.9'} - peerDependencies: - webpack: 5.84.1 - - html-webpack-plugin@5.6.0: - resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==} - engines: {node: '>=10.13.0'} - peerDependencies: - '@rspack/core': 0.x || 1.x - webpack: 5.84.1 - peerDependenciesMeta: - '@rspack/core': - optional: true - webpack: - optional: true - - htmlparser2@3.8.3: - resolution: {integrity: sha512-hBxEg3CYXe+rPIua8ETe7tmG3XDn9B0edOE/e9wH2nLczxzgdu0m0aNHY+5wFZiviLWLdANPJTssa92dMcXQ5Q==} - - htmlparser2@6.1.0: - resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} - - htmlparser2@7.2.0: - resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} - - http-cache-semantics@4.1.1: - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} - - http-deceiver@1.2.7: - resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} - - http-errors@1.6.3: - resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} - engines: {node: '>= 0.6'} - - http-errors@2.0.0: - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: '>= 0.8'} - - http-parser-js@0.5.8: - resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} - - http-proxy-agent@4.0.1: - resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} - engines: {node: '>= 6'} - - http-proxy-agent@5.0.0: - resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} - engines: {node: '>= 6'} - - http-proxy-middleware@0.19.1: - resolution: {integrity: sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==} - engines: {node: '>=4.0.0'} - - http-proxy-middleware@2.0.6: - resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/express': ^4.17.13 - peerDependenciesMeta: - '@types/express': - optional: true - - http-proxy@1.18.1: - resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} - engines: {node: '>=8.0.0'} - - http-server@14.1.1: - resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==} - engines: {node: '>=12'} - hasBin: true - - http-signature@1.3.6: - resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} - engines: {node: '>=0.10'} - - http2-wrapper@1.0.3: - resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} - engines: {node: '>=10.19.0'} - - https-proxy-agent@4.0.0: - resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==} - engines: {node: '>= 6.0.0'} - - https-proxy-agent@5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} - engines: {node: '>= 6'} - - human-id@1.0.2: - resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} - - human-signals@1.1.1: - resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} - engines: {node: '>=8.12.0'} - - human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} - - humanize-ms@1.2.1: - resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} - - i18next-browser-languagedetector@6.1.8: - resolution: {integrity: sha512-Svm+MduCElO0Meqpj1kJAriTC6OhI41VhlT/A0UPjGoPZBhAHIaGE5EfsHlTpgdH09UVX7rcc72pSDDBeKSQQA==} - - i18next-xhr-backend@3.2.2: - resolution: {integrity: sha512-OtRf2Vo3IqAxsttQbpjYnmMML12IMB5e0fc5B7qKJFLScitYaXa1OhMX0n0X/3vrfFlpHL9Ro/H+ps4Ej2j7QQ==} - deprecated: replaced by i18next-http-backend - - i18next@21.10.0: - resolution: {integrity: sha512-YeuIBmFsGjUfO3qBmMOc0rQaun4mIpGKET5WDwvu8lU7gvwpcariZLNtL0Fzj+zazcHUrlXHiptcFhBMFaxzfg==} - - iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} - - iconv-lite@0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: '>=0.10.0'} - - icss-replace-symbols@1.1.0: - resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} - - icss-utils@2.1.0: - resolution: {integrity: sha512-bsVoyn/1V4R1kYYjLcWLedozAM4FClZUdjE9nIr8uWY7xs78y9DATgwz2wGU7M+7z55KenmmTkN2DVJ7bqzjAA==} - - icss-utils@4.1.1: - resolution: {integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==} - engines: {node: '>= 6'} - - icss-utils@5.1.0: - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - identity-obj-proxy@3.0.0: - resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} - engines: {node: '>=4'} - - ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - - ignore-walk@5.0.1: - resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - ignore@4.0.6: - resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} - engines: {node: '>= 4'} - - ignore@5.3.1: - resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} - engines: {node: '>= 4'} - - image-size@0.5.5: - resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} - engines: {node: '>=0.10.0'} - hasBin: true - - immutable@4.3.6: - resolution: {integrity: sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==} - - import-cwd@2.1.0: - resolution: {integrity: sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==} - engines: {node: '>=4'} - - import-cwd@3.0.0: - resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} - engines: {node: '>=8'} - - import-fresh@2.0.0: - resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} - engines: {node: '>=4'} - - import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} - - import-from@2.1.0: - resolution: {integrity: sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==} - engines: {node: '>=4'} - - import-from@3.0.0: - resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==} - engines: {node: '>=8'} - - import-lazy@2.1.0: - resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==} - engines: {node: '>=4'} - - import-local@2.0.0: - resolution: {integrity: sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==} - engines: {node: '>=6'} - hasBin: true - - import-local@3.1.0: - resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} - engines: {node: '>=8'} - hasBin: true - - imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} - - indent-string@2.1.0: - resolution: {integrity: sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==} - engines: {node: '>=0.10.0'} - - indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} - - infer-owner@1.0.4: - resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} - - inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} - deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. - - inherits@2.0.3: - resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} - - inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - - ini@1.3.8: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - - ini@2.0.0: - resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} - engines: {node: '>=10'} - - init-package-json@3.0.2: - resolution: {integrity: sha512-YhlQPEjNFqlGdzrBfDNRLhvoSgX7iQRgSxgsNknRQ9ITXFT7UMfVMWhBTOh2Y+25lRnGrv5Xz8yZwQ3ACR6T3A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - inline-style-parser@0.1.1: - resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} - - inline-style-parser@0.2.3: - resolution: {integrity: sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==} - - inquirer@8.2.6: - resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} - engines: {node: '>=12.0.0'} - - internal-ip@4.3.0: - resolution: {integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==} - engines: {node: '>=6'} - - internal-slot@1.0.7: - resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} - engines: {node: '>= 0.4'} - - internmap@2.0.3: - resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} - engines: {node: '>=12'} - - interpret@1.4.0: - resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} - engines: {node: '>= 0.10'} - - interpret@2.2.0: - resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==} - engines: {node: '>= 0.10'} - - invariant@2.2.4: - resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} - - ip-address@9.0.5: - resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} - engines: {node: '>= 12'} - - ip-regex@2.1.0: - resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==} - engines: {node: '>=4'} - - ip@1.1.9: - resolution: {integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==} - - ip@2.0.1: - resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==} - - ipaddr.js@1.9.1: - resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} - engines: {node: '>= 0.10'} - - ipaddr.js@2.2.0: - resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==} - engines: {node: '>= 10'} - - is-absolute-url@3.0.3: - resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==} - engines: {node: '>=8'} - - is-accessor-descriptor@1.0.1: - resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==} - engines: {node: '>= 0.10'} - - is-alphabetical@1.0.4: - resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} - - is-alphabetical@2.0.1: - resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} - - is-alphanumerical@1.0.4: - resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} - - is-alphanumerical@2.0.1: - resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} - - is-arguments@1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: '>= 0.4'} - - is-array-buffer@3.0.4: - resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} - engines: {node: '>= 0.4'} - - is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - - is-async-function@2.0.0: - resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} - engines: {node: '>= 0.4'} - - is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} - - is-binary-path@1.0.1: - resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==} - engines: {node: '>=0.10.0'} - - is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} - - is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} - - is-buffer@1.1.6: - resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} - - is-buffer@2.0.5: - resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} - engines: {node: '>=4'} - - is-builtin-module@3.2.1: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} - engines: {node: '>=6'} - - is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} - - is-ci@2.0.0: - resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} - hasBin: true - - is-ci@3.0.1: - resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} - hasBin: true - - is-core-module@2.14.0: - resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==} - engines: {node: '>= 0.4'} - - is-data-descriptor@1.0.1: - resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==} - engines: {node: '>= 0.4'} - - is-data-view@1.0.1: - resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} - engines: {node: '>= 0.4'} - - is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} - - is-decimal@1.0.4: - resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} - - is-decimal@2.0.1: - resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} - - is-descriptor@0.1.7: - resolution: {integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==} - engines: {node: '>= 0.4'} - - is-descriptor@1.0.3: - resolution: {integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==} - engines: {node: '>= 0.4'} - - is-directory@0.3.1: - resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} - engines: {node: '>=0.10.0'} - - is-docker@2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: '>=8'} - hasBin: true - - is-dom@1.1.0: - resolution: {integrity: sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==} - - is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} - engines: {node: '>=0.10.0'} - - is-extendable@1.0.1: - resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} - engines: {node: '>=0.10.0'} - - is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} - - is-finalizationregistry@1.0.2: - resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} - - is-finite@1.1.0: - resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==} - engines: {node: '>=0.10.0'} - - is-fullwidth-code-point@2.0.0: - resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} - engines: {node: '>=4'} - - is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} - - is-function@1.0.2: - resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==} - - is-generator-fn@2.1.0: - resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} - engines: {node: '>=6'} - - is-generator-function@1.0.10: - resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} - engines: {node: '>= 0.4'} - - is-glob@3.1.0: - resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==} - engines: {node: '>=0.10.0'} - - is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} - - is-hexadecimal@1.0.4: - resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} - - is-hexadecimal@2.0.1: - resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} - - is-installed-globally@0.4.0: - resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} - engines: {node: '>=10'} - - is-interactive@1.0.0: - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} - engines: {node: '>=8'} - - is-lambda@1.0.1: - resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} - - is-lite@0.8.2: - resolution: {integrity: sha512-JZfH47qTsslwaAsqbMI3Q6HNNjUuq6Cmzzww50TdP5Esb6e1y2sK2UAaZZuzfAzpoI2AkxoPQapZdlDuP6Vlsw==} - - is-lite@1.2.1: - resolution: {integrity: sha512-pgF+L5bxC+10hLBgf6R2P4ZZUBOQIIacbdo8YvuCP8/JvsWxG7aZ9p10DYuLtifFci4l3VITphhMlMV4Y+urPw==} - - is-map@2.0.3: - resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} - engines: {node: '>= 0.4'} - - is-module@1.0.0: - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} - - is-negative-zero@2.0.3: - resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} - engines: {node: '>= 0.4'} - - is-node-process@1.2.0: - resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==} - - is-npm@5.0.0: - resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==} - engines: {node: '>=10'} - - is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} - - is-number@3.0.0: - resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} - engines: {node: '>=0.10.0'} - - is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} - - is-obj@2.0.0: - resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} - engines: {node: '>=8'} - - is-object@1.0.2: - resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==} - - is-path-cwd@2.2.0: - resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} - engines: {node: '>=6'} - - is-path-in-cwd@2.1.0: - resolution: {integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==} - engines: {node: '>=6'} - - is-path-inside@2.1.0: - resolution: {integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==} - engines: {node: '>=6'} - - is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} - - is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} - - is-plain-obj@2.1.0: - resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} - engines: {node: '>=8'} - - is-plain-obj@3.0.0: - resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} - engines: {node: '>=10'} - - is-plain-obj@4.1.0: - resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} - engines: {node: '>=12'} - - is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: '>=0.10.0'} - - is-plain-object@3.0.1: - resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==} - engines: {node: '>=0.10.0'} - - is-plain-object@5.0.0: - resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} - engines: {node: '>=0.10.0'} - - is-potential-custom-element-name@1.0.1: - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} - - is-promise@2.2.2: - resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} - - is-reference@1.2.1: - resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} - - is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} - - is-set@2.0.3: - resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} - engines: {node: '>= 0.4'} - - is-shared-array-buffer@1.0.3: - resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} - engines: {node: '>= 0.4'} - - is-ssh@1.4.0: - resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} - - is-stream@1.1.0: - resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} - engines: {node: '>=0.10.0'} - - is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} - - is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} - - is-subdir@1.2.0: - resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} - engines: {node: '>=4'} - - is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} - - is-text-path@1.0.1: - resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} - engines: {node: '>=0.10.0'} - - is-typed-array@1.1.13: - resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} - engines: {node: '>= 0.4'} - - is-typedarray@1.0.0: - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} - - is-unicode-supported@0.1.0: - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} - engines: {node: '>=10'} - - is-utf8@0.2.1: - resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} - - is-weakmap@2.0.2: - resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} - engines: {node: '>= 0.4'} - - is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} - - is-weakset@2.0.3: - resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} - engines: {node: '>= 0.4'} - - is-what@3.14.1: - resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} - - is-whitespace-character@1.0.4: - resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==} - - is-window@1.0.2: - resolution: {integrity: sha512-uj00kdXyZb9t9RcAUAwMZAnkBUwdYGhYlt7djMXhfyhUCzwNba50tIiBKR7q0l7tdoBtFVw/3JmLY6fI3rmZmg==} - - is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} - - is-word-character@1.0.4: - resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==} - - is-wsl@1.1.0: - resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} - engines: {node: '>=4'} - - is-wsl@2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: '>=8'} - - is-yarn-global@0.3.0: - resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==} - - isarray@0.0.1: - resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} - - isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} - - isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} - - isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - - isobject@2.1.0: - resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} - engines: {node: '>=0.10.0'} - - isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: '>=0.10.0'} - - isobject@4.0.0: - resolution: {integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==} - engines: {node: '>=0.10.0'} - - isomorphic-unfetch@3.1.0: - resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==} - - isstream@0.1.2: - resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} - - istanbul-lib-coverage@3.2.2: - resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} - engines: {node: '>=8'} - - istanbul-lib-hook@3.0.0: - resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==} - engines: {node: '>=8'} - - istanbul-lib-instrument@4.0.3: - resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} - engines: {node: '>=8'} - - istanbul-lib-instrument@5.2.1: - resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} - engines: {node: '>=8'} - - istanbul-lib-instrument@6.0.2: - resolution: {integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==} - engines: {node: '>=10'} - - istanbul-lib-processinfo@2.0.3: - resolution: {integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==} - engines: {node: '>=8'} - - istanbul-lib-report@3.0.1: - resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} - engines: {node: '>=10'} - - istanbul-lib-source-maps@4.0.1: - resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} - engines: {node: '>=10'} - - istanbul-reports@3.1.7: - resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} - engines: {node: '>=8'} - - iterate-iterator@1.0.2: - resolution: {integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==} - - iterate-value@1.0.2: - resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==} - - iterator.prototype@1.1.2: - resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} - - jackspeak@3.4.0: - resolution: {integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==} - engines: {node: '>=14'} - - jake@10.9.1: - resolution: {integrity: sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==} - engines: {node: '>=10'} - hasBin: true - - jest-changed-files@26.6.2: - resolution: {integrity: sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==} - engines: {node: '>= 10.14.2'} - - jest-changed-files@29.7.0: - resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-circus@28.1.3: - resolution: {integrity: sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-circus@29.7.0: - resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-cli@26.6.3: - resolution: {integrity: sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==} - engines: {node: '>= 10.14.2'} - hasBin: true - - jest-cli@29.7.0: - resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - - jest-config@26.6.3: - resolution: {integrity: sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==} - engines: {node: '>= 10.14.2'} - peerDependencies: - ts-node: '>=9.0.0' - peerDependenciesMeta: - ts-node: - optional: true - - jest-config@28.1.1: - resolution: {integrity: sha512-tASynMhS+jVV85zKvjfbJ8nUyJS/jUSYZ5KQxLUN2ZCvcQc/OmhQl2j6VEL3ezQkNofxn5pQ3SPYWPHb0unTZA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true - - jest-config@29.7.0: - resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true - - jest-diff@26.6.2: - resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==} - engines: {node: '>= 10.14.2'} - - jest-diff@28.1.3: - resolution: {integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-diff@29.7.0: - resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-docblock@26.0.0: - resolution: {integrity: sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==} - engines: {node: '>= 10.14.2'} - - jest-docblock@28.1.1: - resolution: {integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-docblock@29.7.0: - resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-each@26.6.2: - resolution: {integrity: sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==} - engines: {node: '>= 10.14.2'} - - jest-each@28.1.3: - resolution: {integrity: sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-each@29.7.0: - resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-environment-jsdom-global@2.0.4: - resolution: {integrity: sha512-1vB8q+PrszXW4Pf7Zgp3eQ4oNVbA7GY6+jmrg1qi6RtYRWDJ60/xdkhjqAbQpX8BRyvqQJYQi66LXER5YNeHXg==} - peerDependencies: - jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x - - jest-environment-jsdom-global@4.0.0: - resolution: {integrity: sha512-qEV8j61oV5XhOBUQbrld2nMYKnp/AGINUaoYTtkwJ9rjvMNRN7ZaZ/dgoPpW83oFtrSiVM1gie6ajdsKFBUlLA==} - engines: {node: '>= 14'} - peerDependencies: - jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x || 27.x || 28.x || 29.x - - jest-environment-jsdom@26.6.2: - resolution: {integrity: sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==} - engines: {node: '>= 10.14.2'} - - jest-environment-jsdom@29.7.0: - resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true - - jest-environment-node@26.6.2: - resolution: {integrity: sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==} - engines: {node: '>= 10.14.2'} - - jest-environment-node@28.1.3: - resolution: {integrity: sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-environment-node@29.7.0: - resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-get-type@26.3.0: - resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==} - engines: {node: '>= 10.14.2'} - - jest-get-type@28.0.2: - resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-get-type@29.6.3: - resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-haste-map@26.6.2: - resolution: {integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==} - engines: {node: '>= 10.14.2'} - - jest-haste-map@28.1.3: - resolution: {integrity: sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-haste-map@29.7.0: - resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-jasmine2@26.6.3: - resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==} - engines: {node: '>= 10.14.2'} - - jest-leak-detector@26.6.2: - resolution: {integrity: sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==} - engines: {node: '>= 10.14.2'} - - jest-leak-detector@28.1.3: - resolution: {integrity: sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-leak-detector@29.7.0: - resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-matcher-utils@26.6.2: - resolution: {integrity: sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==} - engines: {node: '>= 10.14.2'} - - jest-matcher-utils@28.1.3: - resolution: {integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-matcher-utils@29.7.0: - resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-message-util@26.6.2: - resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==} - engines: {node: '>= 10.14.2'} - - jest-message-util@28.1.3: - resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-message-util@29.7.0: - resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-mock@26.6.2: - resolution: {integrity: sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==} - engines: {node: '>= 10.14.2'} - - jest-mock@28.1.3: - resolution: {integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-mock@29.7.0: - resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-pnp-resolver@1.2.3: - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} - engines: {node: '>=6'} - peerDependencies: - jest-resolve: '*' - peerDependenciesMeta: - jest-resolve: - optional: true - - jest-regex-util@26.0.0: - resolution: {integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==} - engines: {node: '>= 10.14.2'} - - jest-regex-util@28.0.2: - resolution: {integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-regex-util@29.6.3: - resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-resolve-dependencies@26.6.3: - resolution: {integrity: sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==} - engines: {node: '>= 10.14.2'} - - jest-resolve-dependencies@29.7.0: - resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-resolve@26.6.2: - resolution: {integrity: sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==} - engines: {node: '>= 10.14.2'} - - jest-resolve@28.1.1: - resolution: {integrity: sha512-/d1UbyUkf9nvsgdBildLe6LAD4DalgkgZcKd0nZ8XUGPyA/7fsnaQIlKVnDiuUXv/IeZhPEDrRJubVSulxrShA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-resolve@28.1.3: - resolution: {integrity: sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-resolve@29.7.0: - resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-runner@26.6.3: - resolution: {integrity: sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==} - engines: {node: '>= 10.14.2'} - - jest-runner@28.1.3: - resolution: {integrity: sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-runner@29.7.0: - resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-runtime@26.6.3: - resolution: {integrity: sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==} - engines: {node: '>= 10.14.2'} - hasBin: true - - jest-runtime@28.1.3: - resolution: {integrity: sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-runtime@29.7.0: - resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-serializer@26.6.2: - resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} - engines: {node: '>= 10.14.2'} - - jest-snapshot@26.6.2: - resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==} - engines: {node: '>= 10.14.2'} - - jest-snapshot@28.1.3: - resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-snapshot@29.7.0: - resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-util@26.6.2: - resolution: {integrity: sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==} - engines: {node: '>= 10.14.2'} - - jest-util@28.1.1: - resolution: {integrity: sha512-FktOu7ca1DZSyhPAxgxB6hfh2+9zMoJ7aEQA759Z6p45NuO8mWcqujH+UdHlCm/V6JTWwDztM2ITCzU1ijJAfw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-util@28.1.3: - resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-util@29.7.0: - resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-validate@26.6.2: - resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==} - engines: {node: '>= 10.14.2'} - - jest-validate@28.1.3: - resolution: {integrity: sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-validate@29.7.0: - resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-watcher@26.6.2: - resolution: {integrity: sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==} - engines: {node: '>= 10.14.2'} - - jest-watcher@28.1.3: - resolution: {integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-watcher@29.7.0: - resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-worker@26.6.2: - resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} - engines: {node: '>= 10.13.0'} - - jest-worker@27.5.1: - resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} - engines: {node: '>= 10.13.0'} - - jest-worker@28.1.3: - resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-worker@29.7.0: - resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest@26.6.3: - resolution: {integrity: sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==} - engines: {node: '>= 10.14.2'} - hasBin: true - - jest@29.7.0: - resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - - jju@1.4.0: - resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} - - joi@17.13.3: - resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} - - jose@4.15.7: - resolution: {integrity: sha512-L7ioP+JAuZe8v+T5+zVI9Tx8LtU8BL7NxkyDFVMv+Qr3JW0jSoYDedLtodaXwfqMpeCyx4WXFNyu9tJt4WvC1A==} - - jquery@3.7.1: - resolution: {integrity: sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==} - - js-beautify@1.15.1: - resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==} - engines: {node: '>=14'} - hasBin: true - - js-cookie@3.0.5: - resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} - engines: {node: '>=14'} - - js-levenshtein@1.1.6: - resolution: {integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==} - engines: {node: '>=0.10.0'} - - js-string-escape@1.0.1: - resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} - engines: {node: '>= 0.8'} - - js-tokens@3.0.2: - resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==} - - js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - - js-yaml@3.13.1: - resolution: {integrity: sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==} - hasBin: true - - js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true - - jsbn@0.1.1: - resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} - - jsbn@1.1.0: - resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} - - jscodeshift@0.13.1: - resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==} - hasBin: true - peerDependencies: - '@babel/preset-env': ^7.1.6 - - jsdom@16.7.0: - resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} - engines: {node: '>=10'} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true - - jsdom@20.0.3: - resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} - engines: {node: '>=14'} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true - - jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} - hasBin: true - - jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} - hasBin: true - - jshint@2.13.6: - resolution: {integrity: sha512-IVdB4G0NTTeQZrBoM8C5JFVLjV2KtZ9APgybDA1MK73xb09qFs0jCXyQLnCOp1cSZZZbvhq/6mfXHUTaDkffuQ==} - hasBin: true - - json-buffer@3.0.0: - resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} - - json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - - json-minimizer-webpack-plugin@4.0.0: - resolution: {integrity: sha512-PJaNiSeZlZStdyLtJo/QOOC7uHRW9qvc//7F8M0ZH1huPSvmX5kR2qrq2Tn1ODYLi128bTkKepqtgYmtEOkPzQ==} - engines: {node: '>= 14.15.0'} - peerDependencies: - webpack: 5.84.1 - - json-minimizer-webpack-plugin@5.0.0: - resolution: {integrity: sha512-GT/SZolN2p405EMGjMTBvAVi2+y035p1tSOuLpWbp5QTMl080OHx4DEGXfUH6vbnGw5Z/QKfBe+KpP9Dj0qLmA==} - engines: {node: '>= 18.12.0'} - peerDependencies: - webpack: 5.84.1 - - json-parse-better-errors@1.0.2: - resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} - - json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - - json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} - - json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} - - json-schema@0.4.0: - resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} - - json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - - json-stringify-nice@1.1.4: - resolution: {integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==} - - json-stringify-safe@5.0.1: - resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} - - json5@1.0.2: - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} - hasBin: true - - json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} - hasBin: true - - jsonc-eslint-parser@2.4.0: - resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - jsonc-parser@3.2.0: - resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} - - jsonfile@4.0.0: - resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} - - jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} - - jsonparse@1.3.1: - resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} - engines: {'0': node >= 0.2.0} - - jsprim@2.0.2: - resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==} - engines: {'0': node >=0.6.0} - - jsrsasign@10.9.0: - resolution: {integrity: sha512-QWLUikj1SBJGuyGK8tjKSx3K7Y69KYJnrs/pQ1KZ6wvZIkHkWjZ1PJDpuvc1/28c1uP0KW9qn1eI1LzHQqDOwQ==} - - jsx-ast-utils@3.3.5: - resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} - engines: {node: '>=4.0'} - - junk@3.1.0: - resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==} - engines: {node: '>=8'} - - just-diff-apply@5.5.0: - resolution: {integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==} - - just-diff@5.2.0: - resolution: {integrity: sha512-6ufhP9SHjb7jibNFrNxyFZ6od3g+An6Ai9mhGRvcYe8UJlH0prseN64M+6ZBBUoKYHZsitDP42gAJ8+eVWr3lw==} - - keyboard-key@1.1.0: - resolution: {integrity: sha512-qkBzPTi3rlAKvX7k0/ub44sqOfXeLc/jcnGGmj5c7BJpU8eDrEVPyhCvNYAaoubbsLm9uGWwQJO1ytQK1a9/dQ==} - - keyv@3.1.0: - resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} - - keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} - - killable@1.0.1: - resolution: {integrity: sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==} - - kind-of@2.0.1: - resolution: {integrity: sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==} - engines: {node: '>=0.10.0'} - - kind-of@3.2.2: - resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} - engines: {node: '>=0.10.0'} - - kind-of@4.0.0: - resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} - engines: {node: '>=0.10.0'} - - kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} - - kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: '>=6'} - - kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} - - klona@2.0.6: - resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} - engines: {node: '>= 8'} - - language-subtag-registry@0.3.23: - resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} - - language-tags@1.0.9: - resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} - engines: {node: '>=0.10'} - - latest-version@5.1.0: - resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==} - engines: {node: '>=8'} - - launch-editor@2.8.0: - resolution: {integrity: sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==} - - lazy-ass@1.6.0: - resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==} - engines: {node: '> 0.8'} - - lazy-cache@0.2.7: - resolution: {integrity: sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==} - engines: {node: '>=0.10.0'} - - lazy-cache@1.0.4: - resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==} - engines: {node: '>=0.10.0'} - - lazy-universal-dotenv@3.0.1: - resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==} - engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'} - - lerna@5.6.2: - resolution: {integrity: sha512-Y0yMPslvnBnTZi7Nrs/gDyYZYauNf61xWNCehISHIORxZmmpoluNkcWTfcyb47is5uJQCv5QJX5xKKubbs+a6w==} - engines: {node: ^14.15.0 || >=16.0.0} - hasBin: true - - less-loader@10.2.0: - resolution: {integrity: sha512-AV5KHWvCezW27GT90WATaDnfXBv99llDbtaj4bshq6DvAihMdNjaPDcUMa6EXKLRF+P2opFenJp89BXg91XLYg==} - engines: {node: '>= 12.13.0'} - peerDependencies: - less: ^3.5.0 || ^4.0.0 - webpack: 5.84.1 - - less-loader@5.0.0: - resolution: {integrity: sha512-bquCU89mO/yWLaUq0Clk7qCsKhsF/TZpJUzETRvJa9KSVEL9SO3ovCvdEHISBhrC81OwC8QSVX7E0bzElZj9cg==} - engines: {node: '>= 4.8.0'} - peerDependencies: - less: ^2.3.1 || ^3.0.0 - webpack: 5.84.1 - - less-plugin-inline-urls@1.2.0: - resolution: {integrity: sha512-QS9MLcg8Lo6ZHVS+9kncmHeLypIdnFgG/neqV3RPkXfiiSCJHn/jTQHKnXfDEL/F/JM+z6MQ6ukWr/xsOChHTA==} - engines: {node: '>=0.4.2'} - - less-plugin-npm-import@2.1.0: - resolution: {integrity: sha512-f7pVkEooRq2/jge/M/Y+spoPXj5rRIY30q1as+3kZsDG8Rs+loNJUCVQjzXB9Ao/9FeIJULiq2zrXymv+OMTbw==} - engines: {node: '>=0.4.2'} - - less-plugin-rewrite-import@0.1.1: - resolution: {integrity: sha512-8FnuGhF0rS6P9DkaEH2+6pphx7pJ9hV4mHF2MhsXKSXNvwTVX9YCt5HnX99mhTOyQzc+2hu5JPPoRl/b9DAwuQ==} - - less-plugin-rewrite-variable@0.1.0: - resolution: {integrity: sha512-cpIa1+wHssZRt2aUnoWODfDB0z0QM8ir9ZS/18802bX9S4+6s+/HXaK92C3VznniPjviKhA3u8o4/0K9HK0nEw==} - engines: {node: '>=0.4.2'} - - less-to-json@1.2.0: - resolution: {integrity: sha512-1ItmxVFw76yiQgr2MUTGy7bTHT2tT6CcZ28grgw/gWNy2Q3WwFfSHL88sWUBpTXGFonlKd2yCDhtJFJdGjzqHA==} - hasBin: true - - less-vars-to-js@1.3.0: - resolution: {integrity: sha512-xeiLLn/IMCGtdyCkYQnW8UuzoW2oYMCKg9boZRaGI58fLz5r90bNJDlqGzmVt/1Uqk75/DxIVtQSNCMkE5fRZQ==} - engines: {node: '>=8'} - - less@3.12.2: - resolution: {integrity: sha512-+1V2PCMFkL+OIj2/HrtrvZw0BC0sYLMICJfbQjuj/K8CEnlrFX6R5cKKgzzttsZDHyxQNL1jqMREjKN3ja/E3Q==} - engines: {node: '>=6'} - hasBin: true - - less@3.13.1: - resolution: {integrity: sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==} - engines: {node: '>=6'} - hasBin: true - - leven@3.1.0: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} - engines: {node: '>=6'} - - levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} - - libnpmaccess@6.0.4: - resolution: {integrity: sha512-qZ3wcfIyUoW0+qSFkMBovcTrSGJ3ZeyvpR7d5N9pEYv/kXs8sHP2wiqEIXBKLFrZlmM0kR0RJD7mtfLngtlLag==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - libnpmpublish@6.0.5: - resolution: {integrity: sha512-LUR08JKSviZiqrYTDfywvtnsnxr+tOvBU0BF8H+9frt7HMvc6Qn6F8Ubm72g5hDTHbq8qupKfDvDAln2TVPvFg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - license-webpack-plugin@4.0.2: - resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==} - peerDependencies: - webpack: '*' - peerDependenciesMeta: - webpack: - optional: true - - lilconfig@2.1.0: - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} - engines: {node: '>=10'} - - lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - - listr2@3.14.0: - resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==} - engines: {node: '>=10.0.0'} - peerDependencies: - enquirer: '>= 2.3.0 < 3' - peerDependenciesMeta: - enquirer: - optional: true - - load-json-file@1.1.0: - resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==} - engines: {node: '>=0.10.0'} - - load-json-file@4.0.0: - resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} - engines: {node: '>=4'} - - load-json-file@6.2.0: - resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==} - engines: {node: '>=8'} - - load-yaml-file@0.2.0: - resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} - engines: {node: '>=6'} - - loader-runner@2.4.0: - resolution: {integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==} - engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} - - loader-runner@4.3.0: - resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} - engines: {node: '>=6.11.5'} - - loader-utils@1.2.3: - resolution: {integrity: sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==} - engines: {node: '>=4.0.0'} - - loader-utils@1.4.2: - resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} - engines: {node: '>=4.0.0'} - - loader-utils@2.0.4: - resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} - engines: {node: '>=8.9.0'} - - loader-utils@3.3.1: - resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} - engines: {node: '>= 12.13.0'} - - locate-path@2.0.0: - resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} - engines: {node: '>=4'} - - locate-path@3.0.0: - resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} - engines: {node: '>=6'} - - locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} - - locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} - - lodash-es@4.17.21: - resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} - - lodash.camelcase@4.3.0: - resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} - - lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - - lodash.flattendeep@4.4.0: - resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} - - lodash.ismatch@4.4.0: - resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} - - lodash.isplainobject@4.0.6: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} - - lodash.memoize@4.1.2: - resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} - - lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - - lodash.once@4.1.1: - resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} - - lodash.startcase@4.4.0: - resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} - - lodash.truncate@4.4.2: - resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} - - lodash.uniq@4.5.0: - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} - - lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - - log-symbols@2.2.0: - resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==} - engines: {node: '>=4'} - - log-symbols@4.1.0: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} - engines: {node: '>=10'} - - log-update@4.0.0: - resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} - engines: {node: '>=10'} - - log4js@4.5.1: - resolution: {integrity: sha512-EEEgFcE9bLgaYUKuozyFfytQM2wDHtXn4tAN41pkaxpNjAykv11GVdeI4tHtmPWW4Xrgh9R/2d7XYghDVjbKKw==} - engines: {node: '>=6.0'} - deprecated: 4.x is no longer supported. Please upgrade to 6.x or higher. - - loglevel@1.9.1: - resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==} - engines: {node: '>= 0.6.0'} - - loglevelnext@1.0.5: - resolution: {integrity: sha512-V/73qkPuJmx4BcBF19xPBr+0ZRVBhc4POxvZTZdMeXpJ4NItXSJ/MSwuFT0kQJlCbXvdlZoQQ/418bS1y9Jh6A==} - engines: {node: '>= 6'} - - longest-streak@3.1.0: - resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} - - loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} - hasBin: true - - loud-rejection@1.6.0: - resolution: {integrity: sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==} - engines: {node: '>=0.10.0'} - - lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} - - lowercase-keys@1.0.1: - resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} - engines: {node: '>=0.10.0'} - - lowercase-keys@2.0.0: - resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} - engines: {node: '>=8'} - - lowlight@1.20.0: - resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==} - - lru-cache@10.2.2: - resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==} - engines: {node: 14 || >=16.14} - - lru-cache@4.1.5: - resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} - - lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} - - lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} - - lru-cache@7.18.3: - resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} - engines: {node: '>=12'} - - lz-string@1.5.0: - resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} - hasBin: true - - magic-string@0.25.9: - resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} - - magic-string@0.30.10: - resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} - - make-dir@2.1.0: - resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} - engines: {node: '>=6'} - - make-dir@3.1.0: - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} - engines: {node: '>=8'} - - make-dir@4.0.0: - resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} - engines: {node: '>=10'} - - make-error@1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - - make-fetch-happen@10.2.1: - resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - makeerror@1.0.12: - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} - - map-age-cleaner@0.1.3: - resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==} - engines: {node: '>=6'} - - map-cache@0.2.2: - resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} - engines: {node: '>=0.10.0'} - - map-obj@1.0.1: - resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} - engines: {node: '>=0.10.0'} - - map-obj@4.3.0: - resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} - engines: {node: '>=8'} - - map-or-similar@1.5.0: - resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} - - map-visit@1.0.0: - resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} - engines: {node: '>=0.10.0'} - - markdown-escapes@1.0.4: - resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==} - - markdown-to-jsx@7.4.7: - resolution: {integrity: sha512-0+ls1IQZdU6cwM1yu0ZjjiVWYtkbExSyUIFU2ZeDIFuZM1W42Mh4OlJ4nb4apX4H8smxDHRdFaoIVJGwfv5hkg==} - engines: {node: '>= 10'} - peerDependencies: - react: '>= 0.14.0' - - material-colors@1.2.6: - resolution: {integrity: sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==} - - mdast-squeeze-paragraphs@4.0.0: - resolution: {integrity: sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==} - - mdast-util-definitions@4.0.0: - resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==} - - mdast-util-from-markdown@2.0.1: - resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==} - - mdast-util-mdx-expression@2.0.0: - resolution: {integrity: sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==} - - mdast-util-mdx-jsx@3.1.2: - resolution: {integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==} - - mdast-util-mdxjs-esm@2.0.1: - resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==} - - mdast-util-phrasing@4.1.0: - resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} - - mdast-util-to-hast@10.0.1: - resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==} - - mdast-util-to-hast@13.2.0: - resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} - - mdast-util-to-markdown@2.1.0: - resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==} - - mdast-util-to-string@1.1.0: - resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==} - - mdast-util-to-string@4.0.0: - resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} - - mdn-data@2.0.14: - resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} - - mdn-data@2.0.28: - resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} - - mdn-data@2.0.30: - resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} - - mdn-data@2.0.4: - resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} - - mdurl@1.0.1: - resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} - - media-typer@0.3.0: - resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} - engines: {node: '>= 0.6'} - - mem@8.1.1: - resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==} - engines: {node: '>=10'} - - memfs@3.5.3: - resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} - engines: {node: '>= 4.0.0'} - - memoize-one@5.2.1: - resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} - - memoizerific@1.11.3: - resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==} - - memory-fs@0.4.1: - resolution: {integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==} - - memory-fs@0.5.0: - resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==} - engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} - - meow@3.7.0: - resolution: {integrity: sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==} - engines: {node: '>=0.10.0'} - - meow@6.1.1: - resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} - engines: {node: '>=8'} - - meow@8.1.2: - resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} - engines: {node: '>=10'} - - merge-anything@2.4.4: - resolution: {integrity: sha512-l5XlriUDJKQT12bH+rVhAHjwIuXWdAIecGwsYjv2LJo+dA1AeRTmeQS+3QBpO6lEthBMDi2IUMpLC1yyRvGlwQ==} - - merge-deep@3.0.3: - resolution: {integrity: sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==} - engines: {node: '>=0.10.0'} - - merge-descriptors@1.0.1: - resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} - - merge-files@0.1.2: - resolution: {integrity: sha512-WTvtH6ZwVy1/scvp1M+Re6PVni87QTjpSLAwxh0L+PlYIxc4VGFFpLjvP7jdJ43gaJ5n+RUIriJ6wKqmqvVVmg==} - - merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} - - merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} - - merge@1.2.1: - resolution: {integrity: sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==} - - methods@1.1.2: - resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} - engines: {node: '>= 0.6'} - - microevent.ts@0.1.1: - resolution: {integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==} - - micromark-core-commonmark@2.0.1: - resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==} - - micromark-factory-destination@2.0.0: - resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==} - - micromark-factory-label@2.0.0: - resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==} - - micromark-factory-space@2.0.0: - resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==} - - micromark-factory-title@2.0.0: - resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==} - - micromark-factory-whitespace@2.0.0: - resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==} - - micromark-util-character@2.1.0: - resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} - - micromark-util-chunked@2.0.0: - resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==} - - micromark-util-classify-character@2.0.0: - resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==} - - micromark-util-combine-extensions@2.0.0: - resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==} - - micromark-util-decode-numeric-character-reference@2.0.1: - resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==} - - micromark-util-decode-string@2.0.0: - resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==} - - micromark-util-encode@2.0.0: - resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==} - - micromark-util-html-tag-name@2.0.0: - resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==} - - micromark-util-normalize-identifier@2.0.0: - resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==} - - micromark-util-resolve-all@2.0.0: - resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==} - - micromark-util-sanitize-uri@2.0.0: - resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} - - micromark-util-subtokenize@2.0.1: - resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==} - - micromark-util-symbol@2.0.0: - resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==} - - micromark-util-types@2.0.0: - resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==} - - micromark@4.0.0: - resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} - - micromatch@3.1.10: - resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} - engines: {node: '>=0.10.0'} - - micromatch@4.0.7: - resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} - engines: {node: '>=8.6'} - - mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} - - mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} - - mime@1.6.0: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} - engines: {node: '>=4'} - hasBin: true - - mime@2.6.0: - resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} - engines: {node: '>=4.0.0'} - hasBin: true - - mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} - - mimic-fn@3.1.0: - resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} - engines: {node: '>=8'} - - mimic-response@1.0.1: - resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} - engines: {node: '>=4'} - - mimic-response@3.1.0: - resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} - engines: {node: '>=10'} - - min-document@2.19.0: - resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==} - - min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} - - mini-css-extract-plugin@0.4.5: - resolution: {integrity: sha512-dqBanNfktnp2hwL2YguV9Jh91PFX7gu7nRLs4TGsbAfAG6WOtlynFRYzwDwmmeSb5uIwHo9nx1ta0f7vAZVp2w==} - engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 - - mini-css-extract-plugin@2.4.7: - resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: 5.84.1 - - mini-svg-data-uri@1.4.4: - resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} - hasBin: true - - minimalistic-assert@1.0.1: - resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} - - minimatch@3.0.5: - resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} - - minimatch@3.0.8: - resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==} - - minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} - - minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} - - minimatch@9.0.1: - resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} - engines: {node: '>=16 || 14 >=14.17'} - - minimatch@9.0.4: - resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==} - engines: {node: '>=16 || 14 >=14.17'} - - minimist-options@4.1.0: - resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} - engines: {node: '>= 6'} - - minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - - minipass-collect@1.0.2: - resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} - engines: {node: '>= 8'} - - minipass-fetch@2.1.2: - resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - minipass-flush@1.0.5: - resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} - engines: {node: '>= 8'} - - minipass-json-stream@1.0.1: - resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==} - - minipass-pipeline@1.2.4: - resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} - engines: {node: '>=8'} - - minipass-sized@1.0.3: - resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} - engines: {node: '>=8'} - - minipass@3.3.6: - resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} - engines: {node: '>=8'} - - minipass@5.0.0: - resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} - engines: {node: '>=8'} - - minipass@7.1.2: - resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} - engines: {node: '>=16 || 14 >=14.17'} - - minizlib@2.1.2: - resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} - engines: {node: '>= 8'} - - mixin-deep@1.3.2: - resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} - engines: {node: '>=0.10.0'} - - mixin-object@2.0.1: - resolution: {integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==} - engines: {node: '>=0.10.0'} - - mixme@0.5.10: - resolution: {integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==} - engines: {node: '>= 8.0.0'} - - mkdirp-infer-owner@2.0.0: - resolution: {integrity: sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==} - engines: {node: '>=10'} - - mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} - hasBin: true - - mkdirp@1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: '>=10'} - hasBin: true - - modify-values@1.0.1: - resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} - engines: {node: '>=0.10.0'} - - moment@2.30.1: - resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==} - - monaco-editor@0.50.0: - resolution: {integrity: sha512-8CclLCmrRRh+sul7C08BmPBP3P8wVWfBHomsTcndxg5NRCEPfu/mc2AGU8k37ajjDVXcXFc12ORAMUkmk+lkFA==} - - mrmime@2.0.0: - resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} - engines: {node: '>=10'} - - ms@2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} - - ms@2.1.1: - resolution: {integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==} - - ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} - - ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - - msw@0.36.8: - resolution: {integrity: sha512-K7lOQoYqhGhTSChsmHMQbf/SDCsxh/m0uhN6Ipt206lGoe81fpTmaGD0KLh4jUxCONMOUnwCSj0jtX2CM4pEdw==} - hasBin: true - - multicast-dns-service-types@1.1.0: - resolution: {integrity: sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==} - - multicast-dns@6.2.3: - resolution: {integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==} - hasBin: true - - multicast-dns@7.2.5: - resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} - hasBin: true - - multimatch@5.0.0: - resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} - engines: {node: '>=10'} - - multistream@2.1.1: - resolution: {integrity: sha512-xasv76hl6nr1dEy3lPvy7Ej7K/Lx3O/FCvwge8PeVJpciPPoNCbaANcNiBug3IpdvTveZUcAV0DJzdnUDMesNQ==} - - mustache@4.2.0: - resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} - hasBin: true - - mute-stream@0.0.8: - resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} - - nan@2.20.0: - resolution: {integrity: sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==} - - nanoid@3.3.7: - resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - - nanomatch@1.2.13: - resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} - engines: {node: '>=0.10.0'} - - native-request@1.1.0: - resolution: {integrity: sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==} - - native-url@0.2.6: - resolution: {integrity: sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==} - - natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - - negotiator@0.6.3: - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} - engines: {node: '>= 0.6'} - - neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - - nested-error-stacks@2.1.1: - resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==} - - next-tick@1.1.0: - resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} - - nice-try@1.0.5: - resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} - - no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} - - node-abort-controller@3.1.1: - resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} - - node-addon-api@3.2.1: - resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} - - node-dir@0.1.17: - resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} - engines: {node: '>= 0.10.5'} - - node-fetch@2.7.0: - resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true - - node-forge@0.10.0: - resolution: {integrity: sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==} - engines: {node: '>= 6.0.0'} - - node-forge@1.3.1: - resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} - engines: {node: '>= 6.13.0'} - - node-gyp-build@4.8.1: - resolution: {integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==} - hasBin: true - - node-gyp@9.4.1: - resolution: {integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==} - engines: {node: ^12.13 || ^14.13 || >=16} - hasBin: true - - node-int64@0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - - node-notifier@8.0.2: - resolution: {integrity: sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==} - - node-preload@0.2.1: - resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} - engines: {node: '>=8'} - - node-releases@2.0.14: - resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} - - nopt@5.0.0: - resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} - engines: {node: '>=6'} - hasBin: true - - nopt@6.0.0: - resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true - - nopt@7.2.1: - resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true - - normalize-package-data@2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} - - normalize-package-data@3.0.3: - resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} - engines: {node: '>=10'} - - normalize-package-data@4.0.1: - resolution: {integrity: sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - normalize-path@2.1.1: - resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} - engines: {node: '>=0.10.0'} - - normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} - - normalize-range@0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} - - normalize-url@4.5.1: - resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} - engines: {node: '>=8'} - - normalize-url@6.1.0: - resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} - engines: {node: '>=10'} - - npm-bundled@1.1.2: - resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==} - - npm-bundled@2.0.1: - resolution: {integrity: sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - npm-install-checks@5.0.0: - resolution: {integrity: sha512-65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - npm-normalize-package-bin@1.0.1: - resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} - - npm-normalize-package-bin@2.0.0: - resolution: {integrity: sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - npm-package-arg@8.1.1: - resolution: {integrity: sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==} - engines: {node: '>=10'} - - npm-package-arg@9.1.2: - resolution: {integrity: sha512-pzd9rLEx4TfNJkovvlBSLGhq31gGu2QDexFPWT19yCDh0JgnRhlBLNo5759N0AJmBk+kQ9Y/hXoLnlgFD+ukmg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - npm-packlist@5.1.3: - resolution: {integrity: sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true - - npm-pick-manifest@7.0.2: - resolution: {integrity: sha512-gk37SyRmlIjvTfcYl6RzDbSmS9Y4TOBXfsPnoYqTHARNgWbyDiCSMLUpmALDj4jjcTZpURiEfsSHJj9k7EV4Rw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - npm-registry-fetch@13.3.1: - resolution: {integrity: sha512-eukJPi++DKRTjSBRcDZSDDsGqRK3ehbxfFUcgaRd0Yp6kRwOwh2WVn0r+8rMB4nnuzvAk6rQVzl6K5CkYOmnvw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - npm-run-path@2.0.2: - resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} - engines: {node: '>=4'} - - npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} - - npmlog@5.0.1: - resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} - deprecated: This package is no longer supported. - - npmlog@6.0.2: - resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. - - nth-check@1.0.2: - resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} - - nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} - - num2fraction@1.2.2: - resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==} - - nwsapi@2.2.10: - resolution: {integrity: sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==} - - nx@14.8.8: - resolution: {integrity: sha512-hXoTcBjY+3+OituiSE9G44CjwfbFVEtw6W9Hl0DxcFW+Vb9V+sa/LHAQbIq1GXvr819sBduP0bncowUoOq6iBg==} - hasBin: true - peerDependencies: - '@swc-node/register': ^1.4.2 - '@swc/core': ^1.2.173 - peerDependenciesMeta: - '@swc-node/register': - optional: true - '@swc/core': - optional: true - - nyc@15.1.0: - resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} - engines: {node: '>=8.9'} - hasBin: true - - object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} - - object-copy@0.1.0: - resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} - engines: {node: '>=0.10.0'} - - object-inspect@1.13.2: - resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} - engines: {node: '>= 0.4'} - - object-is@1.1.6: - resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} - engines: {node: '>= 0.4'} - - object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} - - object-visit@1.0.1: - resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} - engines: {node: '>=0.10.0'} - - object.assign@4.1.5: - resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} - engines: {node: '>= 0.4'} - - object.entries@1.1.8: - resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} - engines: {node: '>= 0.4'} - - object.fromentries@2.0.8: - resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} - engines: {node: '>= 0.4'} - - object.getownpropertydescriptors@2.1.8: - resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==} - engines: {node: '>= 0.8'} - - object.groupby@1.0.3: - resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} - engines: {node: '>= 0.4'} - - object.hasown@1.1.4: - resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} - engines: {node: '>= 0.4'} - - object.pick@1.3.0: - resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} - engines: {node: '>=0.10.0'} - - object.values@1.2.0: - resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} - engines: {node: '>= 0.4'} - - objectorarray@1.0.5: - resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==} - - obuf@1.1.2: - resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} - - on-finished@2.4.1: - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} - engines: {node: '>= 0.8'} - - on-headers@1.0.2: - resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} - engines: {node: '>= 0.8'} - - once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} - - onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} - - open@7.4.2: - resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} - engines: {node: '>=8'} - - open@8.4.2: - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} - engines: {node: '>=12'} - - opener@1.5.2: - resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} - hasBin: true - - opn@5.5.0: - resolution: {integrity: sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==} - engines: {node: '>=4'} - - optionator@0.9.4: - resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} - engines: {node: '>= 0.8.0'} - - ora@5.4.1: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} - engines: {node: '>=10'} - - os-filter-obj@2.0.0: - resolution: {integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==} - engines: {node: '>=4'} - - os-homedir@1.0.2: - resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} - engines: {node: '>=0.10.0'} - - os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} - - ospath@1.2.2: - resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==} - - outdent@0.5.0: - resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} - - outvariant@1.4.2: - resolution: {integrity: sha512-Ou3dJ6bA/UJ5GVHxah4LnqDwZRwAmWxrG3wtrHrbGnP4RnLCtA64A4F+ae7Y8ww660JaddSoArUR5HjipWSHAQ==} - - overlayscrollbars@1.13.3: - resolution: {integrity: sha512-1nB/B5kaakJuHXaLXLRK0bUIilWhUGT6q5g+l2s5vqYdLle/sd0kscBHkQC1kuuDg9p9WR4MTdySDOPbeL/86g==} - - p-all@2.1.0: - resolution: {integrity: sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==} - engines: {node: '>=6'} - - p-cancelable@1.1.0: - resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} - engines: {node: '>=6'} - - p-cancelable@2.1.1: - resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} - engines: {node: '>=8'} - - p-defer@1.0.0: - resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} - engines: {node: '>=4'} - - p-each-series@2.2.0: - resolution: {integrity: sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==} - engines: {node: '>=8'} - - p-event@4.2.0: - resolution: {integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==} - engines: {node: '>=8'} - - p-filter@2.1.0: - resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} - engines: {node: '>=8'} - - p-finally@1.0.0: - resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} - engines: {node: '>=4'} - - p-limit@1.3.0: - resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} - engines: {node: '>=4'} - - p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} - - p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} - - p-locate@2.0.0: - resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} - engines: {node: '>=4'} - - p-locate@3.0.0: - resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} - engines: {node: '>=6'} - - p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} - - p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} - - p-map-series@2.1.0: - resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==} - engines: {node: '>=8'} - - p-map@2.1.0: - resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} - engines: {node: '>=6'} - - p-map@3.0.0: - resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} - engines: {node: '>=8'} - - p-map@4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} - - p-pipe@3.1.0: - resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==} - engines: {node: '>=8'} - - p-queue@6.6.2: - resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} - engines: {node: '>=8'} - - p-reduce@2.1.0: - resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} - engines: {node: '>=8'} - - p-retry@3.0.1: - resolution: {integrity: sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==} - engines: {node: '>=6'} - - p-retry@4.6.2: - resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} - engines: {node: '>=8'} - - p-timeout@3.2.0: - resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} - engines: {node: '>=8'} - - p-try@1.0.0: - resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} - engines: {node: '>=4'} - - p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} - - p-waterfall@2.1.1: - resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==} - engines: {node: '>=8'} - - package-hash@4.0.0: - resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} - engines: {node: '>=8'} - - package-json-from-dist@1.0.0: - resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} - - package-json@6.5.0: - resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} - engines: {node: '>=8'} - - pacote@13.6.2: - resolution: {integrity: sha512-Gu8fU3GsvOPkak2CkbojR7vjs3k3P9cA6uazKTHdsdV0gpCEQq2opelnEv30KRQWgVzP5Vd/5umjcedma3MKtg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true - - param-case@3.0.4: - resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} - - parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} - - parse-conflict-json@2.0.2: - resolution: {integrity: sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - parse-entities@2.0.0: - resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} - - parse-entities@4.0.1: - resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} - - parse-json@2.2.0: - resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==} - engines: {node: '>=0.10.0'} - - parse-json@4.0.0: - resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} - engines: {node: '>=4'} - - parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} - - parse-path@7.0.0: - resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} - - parse-url@8.1.0: - resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} - - parse5-html-rewriting-stream@6.0.1: - resolution: {integrity: sha512-vwLQzynJVEfUlURxgnf51yAJDQTtVpNyGD8tKi2Za7m+akukNHxCcUQMAa/mUGLhCeicFdpy7Tlvj8ZNKadprg==} - - parse5-sax-parser@6.0.1: - resolution: {integrity: sha512-kXX+5S81lgESA0LsDuGjAlBybImAChYRMT+/uKCEXFBFOeEhS52qUCydGhU3qLRD8D9DVjaUo821WK7DM4iCeg==} - - parse5@4.0.0: - resolution: {integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==} - - parse5@6.0.1: - resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} - - parse5@7.1.2: - resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} - - parseurl@1.3.3: - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} - engines: {node: '>= 0.8'} - - pascal-case@3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} - - pascalcase@0.1.1: - resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} - engines: {node: '>=0.10.0'} - - path-browserify@1.0.1: - resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} - - path-dirname@1.0.2: - resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==} - - path-exists@2.1.0: - resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==} - engines: {node: '>=0.10.0'} - - path-exists@3.0.0: - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} - engines: {node: '>=4'} - - path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} - - path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} - - path-is-inside@1.0.2: - resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==} - - path-is-network-drive@1.0.20: - resolution: {integrity: sha512-p5wCWlRB4+ggzxWshqHH9aF3kAuVu295NaENXmVhThbZPJQBeJdxZTP6CIoUR+kWHDUW56S9YcaO1gXnc/BOxw==} - - path-key@2.0.1: - resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} - engines: {node: '>=4'} - - path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} - - path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - - path-scurry@1.11.1: - resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} - engines: {node: '>=16 || 14 >=14.18'} - - path-strip-sep@1.0.17: - resolution: {integrity: sha512-+2zIC2fNgdilgV7pTrktY6oOxxZUo9x5zJYfTzxsGze5kSGDDwhA5/0WlBn+sUyv/WuuyYn3OfM+Ue5nhdQUgA==} - - path-to-regexp@0.1.7: - resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} - - path-to-regexp@1.8.0: - resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==} - - path-to-regexp@6.2.2: - resolution: {integrity: sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==} - - path-type@1.1.0: - resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==} - engines: {node: '>=0.10.0'} - - path-type@3.0.0: - resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} - engines: {node: '>=4'} - - path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} - - path-type@5.0.0: - resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} - engines: {node: '>=12'} - - path@0.12.7: - resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} - - peek-readable@5.0.0: - resolution: {integrity: sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==} - engines: {node: '>=14.16'} - - pend@1.2.0: - resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} - - performance-now@2.1.0: - resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} - - picocolors@0.2.1: - resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==} - - picocolors@1.0.1: - resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} - - picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} - - pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} - - pify@3.0.0: - resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} - engines: {node: '>=4'} - - pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} - - pify@5.0.0: - resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} - engines: {node: '>=10'} - - pinkie-promise@2.0.1: - resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==} - engines: {node: '>=0.10.0'} - - pinkie@2.0.4: - resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==} - engines: {node: '>=0.10.0'} - - pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} - engines: {node: '>= 6'} - - pkg-dir@3.0.0: - resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} - engines: {node: '>=6'} - - pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: '>=8'} - - pkg-dir@5.0.0: - resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} - engines: {node: '>=10'} - - pnp-webpack-plugin@1.6.4: - resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} - engines: {node: '>=6'} - - polished@4.3.1: - resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==} - engines: {node: '>=10'} - - popper.js@1.16.1: - resolution: {integrity: sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==} - deprecated: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1 - - portfinder@1.0.32: - resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} - engines: {node: '>= 0.12.0'} - - posix-character-classes@0.1.1: - resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} - engines: {node: '>=0.10.0'} - - possible-typed-array-names@1.0.0: - resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} - engines: {node: '>= 0.4'} - - postcss-calc@8.2.4: - resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} - peerDependencies: - postcss: ^8.2.2 - - postcss-colormin@5.3.1: - resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-convert-values@5.1.3: - resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-discard-comments@5.1.2: - resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-discard-duplicates@5.1.0: - resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-discard-empty@5.1.1: - resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-discard-overridden@5.1.0: - resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-flexbugs-fixes@4.2.1: - resolution: {integrity: sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==} - - postcss-import-ext-glob@2.1.1: - resolution: {integrity: sha512-qd4ELOx2G0hyjgtmLnf/fSVJXXPhkcxcxhLT1y1mAnk53JYbMLoGg+AFtnJowOSvnv4CvjPAzpLpAcfWeofP5g==} - peerDependencies: - postcss: ^8.2.0 - - postcss-import@14.1.0: - resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} - engines: {node: '>=10.0.0'} - peerDependencies: - postcss: ^8.0.0 - - postcss-load-config@2.1.2: - resolution: {integrity: sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==} - engines: {node: '>= 4'} - - postcss-load-config@3.1.4: - resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} - engines: {node: '>= 10'} - peerDependencies: - postcss: '>=8.0.9' - ts-node: '>=9.0.0' - peerDependenciesMeta: - postcss: - optional: true - ts-node: - optional: true - - postcss-loader@3.0.0: - resolution: {integrity: sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==} - engines: {node: '>= 6'} - - postcss-loader@4.3.0: - resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} - engines: {node: '>= 10.13.0'} - peerDependencies: - postcss: ^7.0.0 || ^8.0.1 - webpack: 5.84.1 - - postcss-loader@6.2.1: - resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} - engines: {node: '>= 12.13.0'} - peerDependencies: - postcss: ^7.0.0 || ^8.0.1 - webpack: 5.84.1 - - postcss-merge-longhand@5.1.7: - resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-merge-rules@5.1.4: - resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-minify-font-values@5.1.0: - resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-minify-gradients@5.1.1: - resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-minify-params@5.1.4: - resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-minify-selectors@5.2.1: - resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-modules-extract-imports@1.2.1: - resolution: {integrity: sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==} - - postcss-modules-extract-imports@2.0.0: - resolution: {integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==} - engines: {node: '>= 6'} - - postcss-modules-extract-imports@3.1.0: - resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-modules-local-by-default@1.2.0: - resolution: {integrity: sha512-X4cquUPIaAd86raVrBwO8fwRfkIdbwFu7CTfEOjiZQHVQwlHRSkTgH5NLDmMm5+1hQO8u6dZ+TOOJDbay1hYpA==} - - postcss-modules-local-by-default@3.0.3: - resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==} - engines: {node: '>= 6'} - - postcss-modules-local-by-default@4.0.5: - resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-modules-scope@1.1.0: - resolution: {integrity: sha512-LTYwnA4C1He1BKZXIx1CYiHixdSe9LWYVKadq9lK5aCCMkoOkFyZ7aigt+srfjlRplJY3gIol6KUNefdMQJdlw==} - - postcss-modules-scope@2.2.0: - resolution: {integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==} - engines: {node: '>= 6'} - - postcss-modules-scope@3.2.0: - resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-modules-values@1.3.0: - resolution: {integrity: sha512-i7IFaR9hlQ6/0UgFuqM6YWaCfA1Ej8WMg8A5DggnH1UGKJvTV/ugqq/KaULixzzOi3T/tF6ClBXcHGCzdd5unA==} - - postcss-modules-values@3.0.0: - resolution: {integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==} - - postcss-modules-values@4.0.0: - resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-modules@4.3.1: - resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==} - peerDependencies: - postcss: ^8.0.0 - - postcss-normalize-charset@5.1.0: - resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-normalize-display-values@5.1.0: - resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-normalize-positions@5.1.1: - resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-normalize-repeat-style@5.1.1: - resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-normalize-string@5.1.0: - resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-normalize-timing-functions@5.1.0: - resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-normalize-unicode@5.1.1: - resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-normalize-url@5.1.0: - resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-normalize-whitespace@5.1.1: - resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-ordered-values@5.1.3: - resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-reduce-initial@5.1.2: - resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-reduce-transforms@5.1.0: - resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-selector-parser@6.1.0: - resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==} - engines: {node: '>=4'} - - postcss-svgo@5.1.0: - resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-unique-selectors@5.1.1: - resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-value-parser@3.3.1: - resolution: {integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==} - - postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - - postcss@6.0.23: - resolution: {integrity: sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==} - engines: {node: '>=4.0.0'} - - postcss@7.0.39: - resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==} - engines: {node: '>=6.0.0'} - - postcss@8.4.38: - resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} - engines: {node: ^10 || ^12 || >=14} - - preferred-pm@3.1.3: - resolution: {integrity: sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w==} - engines: {node: '>=10'} - - prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} - - prepend-http@2.0.0: - resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} - engines: {node: '>=4'} - - prettier@1.19.1: - resolution: {integrity: sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==} - engines: {node: '>=4'} - hasBin: true - - prettier@2.3.0: - resolution: {integrity: sha512-kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w==} - engines: {node: '>=10.13.0'} - hasBin: true - - prettier@2.8.8: - resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} - engines: {node: '>=10.13.0'} - hasBin: true - - pretty-bytes@5.6.0: - resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} - engines: {node: '>=6'} - - pretty-error@2.1.2: - resolution: {integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==} - - pretty-error@4.0.0: - resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} - - pretty-format@26.6.2: - resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} - engines: {node: '>= 10'} - - pretty-format@27.5.1: - resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - pretty-format@28.1.3: - resolution: {integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - pretty-format@29.7.0: - resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - pretty-hrtime@1.0.3: - resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} - engines: {node: '>= 0.8'} - - prismjs@1.27.0: - resolution: {integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==} - engines: {node: '>=6'} - - prismjs@1.29.0: - resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} - engines: {node: '>=6'} - - private@0.1.8: - resolution: {integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==} - engines: {node: '>= 0.6'} - - proc-log@2.0.1: - resolution: {integrity: sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - process-nextick-args@2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - - process-on-spawn@1.0.0: - resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==} - engines: {node: '>=8'} - - process@0.11.10: - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} - engines: {node: '>= 0.6.0'} - - progress@2.0.3: - resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} - engines: {node: '>=0.4.0'} - - promise-all-reject-late@1.0.1: - resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==} - - promise-call-limit@1.0.2: - resolution: {integrity: sha512-1vTUnfI2hzui8AEIixbdAJlFY4LFDXqQswy/2eOlThAscXCY4It8FdVuI0fMJGAB2aWGbdQf/gv0skKYXmdrHA==} - - promise-inflight@1.0.1: - resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} - peerDependencies: - bluebird: '*' - peerDependenciesMeta: - bluebird: - optional: true - - promise-retry@2.0.1: - resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} - engines: {node: '>=10'} - - promise.allsettled@1.0.7: - resolution: {integrity: sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==} - engines: {node: '>= 0.4'} - - promise.prototype.finally@3.1.8: - resolution: {integrity: sha512-aVDtsXOml9iuMJzUco9J1je/UrIT3oMYfWkCTiUhkt+AvZw72q4dUZnR/R/eB3h5GeAagQVXvM1ApoYniJiwoA==} - engines: {node: '>= 0.4'} - - promise.series@0.2.0: - resolution: {integrity: sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==} - engines: {node: '>=0.12'} - - promise@7.0.4: - resolution: {integrity: sha512-8z1gTSL9cMgqCx8zvMYhzT0eQURAQNSQqR8B2hGfCYkAzt1vjReVdKBv4YwGw3OXAPaxfm4aR0gLoBUon4VmmA==} - - promise@8.3.0: - resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} - - prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: '>= 6'} - - promzard@0.3.0: - resolution: {integrity: sha512-JZeYqd7UAcHCwI+sTOeUDYkvEU+1bQ7iE0UT1MgB/tERkAPkesW46MrpIySzODi+owTjZtiF8Ay5j9m60KmMBw==} - - prop-types@15.8.1: - resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} - - property-information@5.6.0: - resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} - - property-information@6.5.0: - resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} - - proto-list@1.2.4: - resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} - - protocols@2.0.1: - resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} - - proxy-addr@2.0.7: - resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} - engines: {node: '>= 0.10'} - - proxy-from-env@1.0.0: - resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==} - - proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} - - prr@1.0.1: - resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} - - pseudomap@1.0.2: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} - - psl@1.9.0: - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} - - pump@3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} - - punycode@1.4.1: - resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} - - punycode@2.3.1: - resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} - engines: {node: '>=6'} - - pupa@2.1.1: - resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==} - engines: {node: '>=8'} - - puppeteer-core@2.1.1: - resolution: {integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==} - engines: {node: '>=8.16.0'} - - pure-rand@6.1.0: - resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} - - q@1.5.1: - resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} - engines: {node: '>=0.6.0', teleport: '>=0.2.0'} - deprecated: |- - You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. - - (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) - - qr.js@0.0.0: - resolution: {integrity: sha512-c4iYnWb+k2E+vYpRimHqSu575b1/wKl4XFeJGpFmrJQz5I88v9aY2czh7s0w36srfCM1sXgC/xpoJz5dJfq+OQ==} - - qrcode.react@1.0.1: - resolution: {integrity: sha512-8d3Tackk8IRLXTo67Y+c1rpaiXjoz/Dd2HpcMdW//62/x8J1Nbho14Kh8x974t9prsLHN6XqVgcnRiBGFptQmg==} - peerDependencies: - react: ^15.5.3 || ^16.0.0 || ^17.0.0 - - qs@6.10.4: - resolution: {integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==} - engines: {node: '>=0.6'} - - qs@6.11.0: - resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} - engines: {node: '>=0.6'} - - qs@6.12.1: - resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==} - engines: {node: '>=0.6'} - - query-string@7.1.3: - resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} - engines: {node: '>=6'} - - querystring@0.2.1: - resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} - engines: {node: '>=0.4.x'} - deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. - - querystringify@2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} - - queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - - quick-lru@4.0.1: - resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} - engines: {node: '>=8'} - - quick-lru@5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: '>=10'} - - raf@3.4.1: - resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} - - ramda@0.28.0: - resolution: {integrity: sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA==} - - randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} - - range-parser@1.2.1: - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} - engines: {node: '>= 0.6'} - - raw-body@2.5.2: - resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} - engines: {node: '>= 0.8'} - - raw-loader@4.0.2: - resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 - - rc-motion@2.9.2: - resolution: {integrity: sha512-fUAhHKLDdkAXIDLH0GYwof3raS58dtNUmzLF2MeiR8o6n4thNpSDQhOqQzWE4WfFZDCi9VEN8n7tiB7czREcyw==} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' - - rc-resize-observer@1.4.0: - resolution: {integrity: sha512-PnMVyRid9JLxFavTjeDXEXo65HCRqbmLBw9xX9gfC4BZiSzbLXKzW3jPz+J0P71pLbD5tBMTT+mkstV5gD0c9Q==} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' - - rc-tree@4.2.2: - resolution: {integrity: sha512-V1hkJt092VrOVjNyfj5IYbZKRMHxWihZarvA5hPL/eqm7o2+0SNkeidFYm7LVVBrAKBpOpa0l8xt04uiqOd+6w==} - engines: {node: '>=10.x'} - peerDependencies: - react: '*' - react-dom: '*' - - rc-util@5.43.0: - resolution: {integrity: sha512-AzC7KKOXFqAdIBqdGWepL9Xn7cm3vnAmjlHqUnoQaTMZYhM4VlXGLkkHHxj/BZ7Td0+SOPKB4RGPboBVKT9htw==} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' - - rc-virtual-list@3.14.3: - resolution: {integrity: sha512-6+6wiEhdqakNBnbRJymgMlh+90qpkgqherTRo1l1cX7mK6F9hWsazPczmP0lA+64yhC9/t+M9Dh5pjvDWimn8A==} - engines: {node: '>=8.x'} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' - - rc@1.2.8: - resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} - hasBin: true - - react-app-polyfill@1.0.6: - resolution: {integrity: sha512-OfBnObtnGgLGfweORmdZbyEz+3dgVePQBb3zipiaDsMHV1NpWm0rDFYIVXFV/AK+x4VIIfWHhrdMIeoTLyRr2g==} - engines: {node: '>=6'} - - react-codemirror2@6.0.1: - resolution: {integrity: sha512-rutEKVgvFhWcy/GeVA1hFbqrO89qLqgqdhUr7YhYgIzdyICdlRQv+ztuNvOFQMXrO0fLt0VkaYOdMdYdQgsSUA==} - peerDependencies: - codemirror: 5.x - react: '>=15.5 <=16.x' - - react-color@2.19.3: - resolution: {integrity: sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==} - peerDependencies: - react: '*' - - react-colorful@5.6.1: - resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==} - peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' - - react-docgen-typescript-loader@3.7.2: - resolution: {integrity: sha512-fNzUayyUGzSyoOl7E89VaPKJk9dpvdSgyXg81cUkwy0u+NBvkzQG3FC5WBIlXda0k/iaxS+PWi+OC+tUiGxzPA==} - peerDependencies: - typescript: '*' - - react-docgen-typescript@1.22.0: - resolution: {integrity: sha512-MPLbF8vzRwAG3GcjdL+OHQlhgtWsLTXs+7uJiHfEeT3Ur7IsZaNYqRTLQ9sj2nB6M6jylcPCeCmH7qbszJmecg==} - peerDependencies: - typescript: '>= 3.x' - - react-docgen-typescript@2.2.2: - resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} - peerDependencies: - typescript: '>= 4.3.x' - - react-docgen@5.4.3: - resolution: {integrity: sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA==} - engines: {node: '>=8.10.0'} - hasBin: true - - react-dom@18.3.1: - resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} - peerDependencies: - react: ^18.3.1 - - react-draggable@4.4.6: - resolution: {integrity: sha512-LtY5Xw1zTPqHkVmtM3X8MUOxNDOUhv/khTgBgrUvwaS064bwVvxT+q5El0uUFNx5IEPKXuRejr7UqLwBIg5pdw==} - peerDependencies: - react: '>= 16.3.0' - react-dom: '>= 16.3.0' - - react-element-to-jsx-string@14.3.4: - resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} - peerDependencies: - react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 - react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 - - react-fast-compare@2.0.4: - resolution: {integrity: sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==} - - react-fast-compare@3.2.2: - resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} - - react-final-form@6.5.9: - resolution: {integrity: sha512-x3XYvozolECp3nIjly+4QqxdjSSWfcnpGEL5K8OBT6xmGrq5kBqbA6+/tOqoom9NwqIPPbxPNsOViFlbKgowbA==} - peerDependencies: - final-form: ^4.20.4 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - - react-floater@0.7.9: - resolution: {integrity: sha512-NXqyp9o8FAXOATOEo0ZpyaQ2KPb4cmPMXGWkx377QtJkIXHlHRAGer7ai0r0C1kG5gf+KJ6Gy+gdNIiosvSicg==} - peerDependencies: - react: 15 - 18 - react-dom: 15 - 18 - - react-head@3.4.2: - resolution: {integrity: sha512-mnl6u7E0SSzY9w+mExKGVz8vW/oObUTnj+vpRaZF6jcdjFcCGs0vl8MRwlRws56dye3f1CpzU7C/hz3b3S2BBA==} - peerDependencies: - react: '>=16.3' - react-dom: '>=16.3' - - react-helmet-async@1.3.0: - resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==} - peerDependencies: - react: ^16.6.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 - - react-helmet@5.2.1: - resolution: {integrity: sha512-CnwD822LU8NDBnjCpZ4ySh8L6HYyngViTZLfBBb3NjtrpN8m49clH8hidHouq20I51Y6TpCTISCBbqiY5GamwA==} - peerDependencies: - react: '>=15.0.0' - - react-hot-loader@4.13.1: - resolution: {integrity: sha512-ZlqCfVRqDJmMXTulUGic4lN7Ic1SXgHAFw7y/Jb7t25GBgTR0fYAJ8uY4mrpxjRyWGWmqw77qJQGnYbzCvBU7g==} - engines: {node: '>= 6'} - peerDependencies: - '@types/react': 18.0.18 - react: ^15.0.0 || ^16.0.0 || ^17.0.0 - react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - react-i18next@11.18.6: - resolution: {integrity: sha512-yHb2F9BiT0lqoQDt8loZ5gWP331GwctHz9tYQ8A2EIEUu+CcEdjBLQWli1USG3RdWQt3W+jqQLg/d4rrQR96LA==} - peerDependencies: - i18next: '>= 19.0.0' - react: '>= 16.8.0' - react-dom: '*' - react-native: '*' - peerDependenciesMeta: - react-dom: - optional: true - react-native: - optional: true - - react-innertext@1.1.5: - resolution: {integrity: sha512-PWAqdqhxhHIv80dT9znP2KvS+hfkbRovFp4zFYHFFlOoQLRiawIic81gKb3U1wEyJZgMwgs3JoLtwryASRWP3Q==} - peerDependencies: - '@types/react': 18.0.18 - react: '>=0.0.0 <=99' - - react-inspector@5.1.1: - resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==} - peerDependencies: - react: ^16.8.4 || ^17.0.0 - - react-is@16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} - - react-is@17.0.2: - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} - - react-is@18.3.1: - resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} - - react-joyride@2.8.2: - resolution: {integrity: sha512-2QY8HB1G0I2OT0PKMUz7gg2HAjdkG2Bqi13r0Bb1V16PAwfb9khn4wWBTOJsGsjulbAWiQ3/0YrgNUHGFmuifw==} - peerDependencies: - react: 15 - 18 - react-dom: 15 - 18 - - react-lifecycles-compat@3.0.4: - resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} - - react-markdown@9.0.1: - resolution: {integrity: sha512-186Gw/vF1uRkydbsOIkcGXw7aHq0sZOCRFFjGrr7b9+nVZg4UfA4enXCaxm4fUzecU38sWfrNDitGhshuU7rdg==} - peerDependencies: - '@types/react': 18.0.18 - react: '>=18' - - react-notification-system@0.4.0: - resolution: {integrity: sha512-5WhXnjkYC07zqXruCiUXDU9iHjVxZlL1zgHpNgXk91A5ghV1AHrWVrJYo1XM4SnwlKy5NLdftkaTl+pTuVFAqw==} - peerDependencies: - react: "0.14.x || ^15.0.0 ||\_^16.0.0" - react-dom: 0.14.x || ^15.0.0 || ^16.0.0 - - react-popper-tooltip@3.1.1: - resolution: {integrity: sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==} - peerDependencies: - react: ^16.6.0 || ^17.0.0 - react-dom: ^16.6.0 || ^17.0.0 - - react-popper@2.3.0: - resolution: {integrity: sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==} - peerDependencies: - '@popperjs/core': ^2.0.0 - react: ^16.8.0 || ^17 || ^18 - react-dom: ^16.8.0 || ^17 || ^18 - - react-property@2.0.0: - resolution: {integrity: sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw==} - - react-redux@7.2.9: - resolution: {integrity: sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==} - peerDependencies: - react: ^16.8.3 || ^17 || ^18 - react-dom: '*' - react-native: '*' - peerDependenciesMeta: - react-dom: - optional: true - react-native: - optional: true - - react-refresh@0.10.0: - resolution: {integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==} - engines: {node: '>=0.10.0'} - - react-refresh@0.11.0: - resolution: {integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==} - engines: {node: '>=0.10.0'} - - react-refresh@0.9.0: - resolution: {integrity: sha512-Gvzk7OZpiqKSkxsQvO/mbTN1poglhmAV7gR/DdIrRrSMXraRQQlfikRJOr3Nb9GTMPC5kof948Zy6jJZIFtDvQ==} - engines: {node: '>=0.10.0'} - - react-router-dom@4.3.1: - resolution: {integrity: sha512-c/MlywfxDdCp7EnB7YfPMOfMD3tOtIjrQlj/CKfNMBxdmpJP8xcz5P/UAFn3JbnQCNUxsHyVVqllF9LhgVyFCA==} - peerDependencies: - react: '>=15' - - react-router-dom@6.23.1: - resolution: {integrity: sha512-utP+K+aSTtEdbWpC+4gxhdlPFwuEfDKq8ZrPFU65bbRJY+l706qjR7yaidBpo3MSeA/fzwbXWbKBI6ftOnP3OQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - react: '>=16.8' - react-dom: '>=16.8' - - react-router@4.3.1: - resolution: {integrity: sha512-yrvL8AogDh2X42Dt9iknk4wF4V8bWREPirFfS9gLU1huk6qK41sg7Z/1S81jjTrGHxa3B8R3J6xIkDAA6CVarg==} - peerDependencies: - react: '>=15' - - react-router@6.23.1: - resolution: {integrity: sha512-fzcOaRF69uvqbbM7OhvQyBTFDVrrGlsFdS3AL+1KfIBtGETibHzi3FkoTRyiDJnWNc2VxrfvR+657ROHjaNjqQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - react: '>=16.8' - - react-side-effect@1.2.0: - resolution: {integrity: sha512-v1ht1aHg5k/thv56DRcjw+WtojuuDHFUgGfc+bFHOWsF4ZK6C2V57DO0Or0GPsg6+LSTE0M6Ry/gfzhzSwbc5w==} - peerDependencies: - react: ^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0 - - react-sizeme@3.0.2: - resolution: {integrity: sha512-xOIAOqqSSmKlKFJLO3inBQBdymzDuXx4iuwkNcJmC96jeiOg5ojByvL+g3MW9LPEsojLbC6pf68zOfobK8IPlw==} - - react-smooth@4.0.1: - resolution: {integrity: sha512-OE4hm7XqR0jNOq3Qmk9mFLyd6p2+j6bvbPJ7qlB7+oo0eNcL2l7WQzG6MBnT3EXY6xzkLMUBec3AfewJdA0J8w==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - react-syntax-highlighter@13.5.3: - resolution: {integrity: sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==} - peerDependencies: - react: '>= 0.14.0' - - react-textarea-autosize@8.5.3: - resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==} - engines: {node: '>=10'} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - - react-top-loading-bar@1.2.0: - resolution: {integrity: sha512-5oNdy+DfD5JK06bcc/gsnnXHmml+d8eaBe3C8KQ3eLiH/BD8+FcwsgbAwqgOaRjuSeVQXdYN2JC2G1uVFtCLfA==} - engines: {node: '>=8', npm: '>=5'} - peerDependencies: - prop-types: ^15.5.4 - react: ^15.0.0 || ^16.0.0 - react-dom: ^15.0.0 || ^16.0.0 - - react-transition-group@4.4.5: - resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} - peerDependencies: - react: '>=16.6.0' - react-dom: '>=16.6.0' - - react-world-flags@1.6.0: - resolution: {integrity: sha512-eutSeAy5YKoVh14js/JUCSlA6EBk1n4k+bDaV+NkNB50VhnG+f4QDTpYycnTUTsZ5cqw/saPmk0Z4Fa0VVZ1Iw==} - peerDependencies: - react: '>=0.14' - - react@18.3.1: - resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} - engines: {node: '>=0.10.0'} - - reactcss@1.2.3: - resolution: {integrity: sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==} - peerDependencies: - react: '*' - - reactflow@11.7.2: - resolution: {integrity: sha512-HBudD8BwZacOMqX8fbkiXbeBQs3nRezWVLCDurfc+tTeHsA7988uyaIOhrnKgYCcKtlpJaspsnxDZk+5JmmHxA==} - peerDependencies: - react: '>=17' - react-dom: '>=17' - - read-cache@1.0.0: - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} - - read-cmd-shim@3.0.1: - resolution: {integrity: sha512-kEmDUoYf/CDy8yZbLTmhB1X9kkjf9Q80PCNsDMb7ufrGd6zZSQA1+UyjrO+pZm5K/S4OXCWJeiIt1JA8kAsa6g==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - read-package-json-fast@2.0.3: - resolution: {integrity: sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==} - engines: {node: '>=10'} - - read-package-json@5.0.2: - resolution: {integrity: sha512-BSzugrt4kQ/Z0krro8zhTwV1Kd79ue25IhNN/VtHFy1mG/6Tluyi+msc0UpwaoQzxSHa28mntAjIZY6kEgfR9Q==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. Please use @npmcli/package-json instead. - - read-pkg-up@1.0.1: - resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==} - engines: {node: '>=0.10.0'} - - read-pkg-up@3.0.0: - resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} - engines: {node: '>=4'} - - read-pkg-up@7.0.1: - resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} - engines: {node: '>=8'} - - read-pkg@1.1.0: - resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==} - engines: {node: '>=0.10.0'} - - read-pkg@3.0.0: - resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} - engines: {node: '>=4'} - - read-pkg@5.2.0: - resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} - engines: {node: '>=8'} - - read-yaml-file@1.1.0: - resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} - engines: {node: '>=6'} - - read@1.0.7: - resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} - engines: {node: '>=0.8'} - - readable-stream@1.1.14: - resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==} - - readable-stream@2.3.8: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} - - readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} - - readable-web-to-node-stream@3.0.2: - resolution: {integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==} - engines: {node: '>=8'} - - readdir-scoped-modules@1.1.0: - resolution: {integrity: sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==} - deprecated: This functionality has been moved to @npmcli/fs - - readdirp@2.2.1: - resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==} - engines: {node: '>=0.10'} - - readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} - - recast@0.19.1: - resolution: {integrity: sha512-8FCjrBxjeEU2O6I+2hyHyBFH1siJbMBLwIRvVr1T3FD2cL754sOaJDsJ/8h3xYltasbJ8jqWRIhMuDGBSiSbjw==} - engines: {node: '>= 4'} - - recast@0.20.5: - resolution: {integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==} - engines: {node: '>= 4'} - - recharts-scale@0.4.5: - resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==} - - recharts@2.12.7: - resolution: {integrity: sha512-hlLJMhPQfv4/3NBSAyq3gzGg4h2v69RJh6KU7b3pXYNNAELs9kEoXOjbkxdXpALqKBoVmVptGfLpxdaVYqjmXQ==} - engines: {node: '>=14'} - peerDependencies: - react: ^16.0.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 - - rechoir@0.6.2: - resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} - engines: {node: '>= 0.10'} - - rechoir@0.7.1: - resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==} - engines: {node: '>= 0.10'} - - redent@1.0.0: - resolution: {integrity: sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==} - engines: {node: '>=0.10.0'} - - redent@3.0.0: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: '>=8'} - - reduce-reducers@1.0.4: - resolution: {integrity: sha512-Mb2WZ2bJF597exiqX7owBzrqJ74DHLK3yOQjCyPAaNifRncE8OD0wFIuoMhXxTnHK07+8zZ2SJEKy/qtiyR7vw==} - - redux-devtools-extension@2.13.9: - resolution: {integrity: sha512-cNJ8Q/EtjhQaZ71c8I9+BPySIBVEKssbPpskBfsXqb8HJ002A3KRVHfeRzwRo6mGPqsm7XuHTqNSNeS1Khig0A==} - deprecated: Package moved to @redux-devtools/extension. - peerDependencies: - redux: ^3.1.0 || ^4.0.0 - - redux-form@8.3.10: - resolution: {integrity: sha512-Eeog8dJYUxCSZI/oBoy7VkprvMjj1lpUnHa3LwjVNZvYDNeiRZMoZoaAT+6nlK2YQ4aiBopKUMiLe4ihUOHCGg==} - engines: {node: '>=8.10'} - peerDependencies: - immutable: ^3.8.2 || ^4.0.0 - react: ^16.4.2 || ^17.0.0 || ^18.0.0 - react-redux: ^6.0.1 || ^7.0.0 || ^8.0.0 - redux: ^3.7.2 || ^4.0.0 - peerDependenciesMeta: - immutable: - optional: true - - redux-mock-store@1.5.4: - resolution: {integrity: sha512-xmcA0O/tjCLXhh9Fuiq6pMrJCwFRaouA8436zcikdIpYWWCjU76CRk+i2bHx8EeiSiMGnB85/lZdU3wIJVXHTA==} - - redux-thunk@2.4.2: - resolution: {integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==} - peerDependencies: - redux: ^4 - - redux@4.2.1: - resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} - - reflect.getprototypeof@1.0.6: - resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} - engines: {node: '>= 0.4'} - - refractor@3.6.0: - resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==} - - regenerate-unicode-properties@10.1.1: - resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} - engines: {node: '>=4'} - - regenerate@1.4.2: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} - - regenerator-runtime@0.10.5: - resolution: {integrity: sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==} - - regenerator-runtime@0.11.1: - resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} - - regenerator-runtime@0.13.11: - resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} - - regenerator-runtime@0.14.1: - resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} - - regenerator-transform@0.15.2: - resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} - - regex-not@1.0.2: - resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} - engines: {node: '>=0.10.0'} - - regexp.prototype.flags@1.5.2: - resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} - engines: {node: '>= 0.4'} - - regexpp@3.2.0: - resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} - engines: {node: '>=8'} - - regexpu-core@5.3.2: - resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} - engines: {node: '>=4'} - - registry-auth-token@4.2.2: - resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==} - engines: {node: '>=6.0.0'} - - registry-url@5.1.0: - resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} - engines: {node: '>=8'} - - regjsparser@0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} - hasBin: true - - rehype-attr@3.0.3: - resolution: {integrity: sha512-Up50Xfra8tyxnkJdCzLBIBtxOcB2M1xdeKe1324U06RAvSjYm7ULSeoM+b/nYPQPVd7jsXJ9+39IG1WAJPXONw==} - engines: {node: '>=16'} - - relateurl@0.2.7: - resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} - engines: {node: '>= 0.10'} - - release-zalgo@1.0.0: - resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==} - engines: {node: '>=4'} - - remark-external-links@8.0.0: - resolution: {integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==} - - remark-footnotes@2.0.0: - resolution: {integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==} - - remark-mdx@1.6.22: - resolution: {integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==} - - remark-parse@11.0.0: - resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} - - remark-parse@8.0.3: - resolution: {integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==} - - remark-rehype@11.1.0: - resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==} - - remark-slug@6.1.0: - resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==} - - remark-squeeze-paragraphs@4.0.0: - resolution: {integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==} - - remove-trailing-separator@1.1.0: - resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} - - renderkid@2.0.7: - resolution: {integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==} - - renderkid@3.0.0: - resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} - - repeat-element@1.1.4: - resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} - engines: {node: '>=0.10.0'} - - repeat-string@1.6.1: - resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} - engines: {node: '>=0.10'} - - repeating@2.0.1: - resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==} - engines: {node: '>=0.10.0'} - - replace@1.2.2: - resolution: {integrity: sha512-C4EDifm22XZM2b2JOYe6Mhn+lBsLBAvLbK8drfUQLTfD1KYl/n3VaW/CDju0Ny4w3xTtegBpg8YNSpFJPUDSjA==} - engines: {node: '>= 6'} - hasBin: true - - request-progress@3.0.0: - resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==} - - require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} - - require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} - - require-main-filename@2.0.0: - resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} - - requireindex@1.2.0: - resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==} - engines: {node: '>=0.10.5'} - - requires-port@1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} - - reselect@4.1.8: - resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==} - - resize-observer-polyfill@1.5.1: - resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==} - - resolve-alpn@1.2.1: - resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} - - resolve-cwd@2.0.0: - resolution: {integrity: sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==} - engines: {node: '>=4'} - - resolve-cwd@3.0.0: - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} - engines: {node: '>=8'} - - resolve-from@3.0.0: - resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} - engines: {node: '>=4'} - - resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} - - resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} - - resolve-pathname@3.0.0: - resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==} - - resolve-url@0.2.1: - resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} - deprecated: https://github.com/lydell/resolve-url#deprecated - - resolve.exports@1.1.0: - resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} - engines: {node: '>=10'} - - resolve.exports@2.0.2: - resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} - engines: {node: '>=10'} - - resolve@1.1.7: - resolution: {integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==} - - resolve@1.19.0: - resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==} - - resolve@1.22.8: - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} - hasBin: true - - resolve@2.0.0-next.5: - resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} - hasBin: true - - responselike@1.0.2: - resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} - - responselike@2.0.1: - resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} - - restore-cursor@3.1.0: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} - engines: {node: '>=8'} - - ret@0.1.15: - resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} - engines: {node: '>=0.12'} - - retry@0.12.0: - resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} - engines: {node: '>= 4'} - - retry@0.13.1: - resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} - engines: {node: '>= 4'} - - reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - - rfdc@1.4.1: - resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} - - rimraf@2.6.3: - resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true - - rimraf@2.7.1: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true - - rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true - - rollup-plugin-copy@3.5.0: - resolution: {integrity: sha512-wI8D5dvYovRMx/YYKtUNt3Yxaw4ORC9xo6Gt9t22kveWz1enG9QrhVlagzwrxSC455xD1dHMKhIJkbsQ7d48BA==} - engines: {node: '>=8.3'} - - rollup-plugin-dts@6.1.1: - resolution: {integrity: sha512-aSHRcJ6KG2IHIioYlvAOcEq6U99sVtqDDKVhnwt70rW6tsz3tv5OSjEiWcgzfsHdLyGXZ/3b/7b/+Za3Y6r1XA==} - engines: {node: '>=16'} - peerDependencies: - rollup: ^3.29.4 || ^4 - typescript: ^4.5 || ^5.0 - - rollup-plugin-generate-package-json@3.2.0: - resolution: {integrity: sha512-+Kq1kFVr+maxW/mZB+E+XuaieCXVZqjl2tNU9k3TtAMs3NOaeREa5sRHy67qKDmcnFtZZukIQ3dFCcnV+r0xyw==} - engines: {node: '>=8.3'} - peerDependencies: - rollup: '>=1.0.0' - - rollup-plugin-peer-deps-external@2.2.4: - resolution: {integrity: sha512-AWdukIM1+k5JDdAqV/Cxd+nejvno2FVLVeZ74NKggm3Q5s9cbbcOgUPGdbxPi4BXu7xGaZ8HG12F+thImYu/0g==} - peerDependencies: - rollup: '*' - - rollup-plugin-polyfill-node@0.13.0: - resolution: {integrity: sha512-FYEvpCaD5jGtyBuBFcQImEGmTxDTPbiHjJdrYIp+mFIwgXiXabxvKUK7ZT9P31ozu2Tqm9llYQMRWsfvTMTAOw==} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 - - rollup-plugin-postcss@4.0.2: - resolution: {integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==} - engines: {node: '>=10'} - peerDependencies: - postcss: 8.x - - rollup-plugin-scss@4.0.0: - resolution: {integrity: sha512-wxasNXDYC2m+fDxCMgK00WebVWYmeFvShyNABmjvSJZ6D1/SepwqFeaMFMQromveI79gfvb64yJjiZZxSZxEIA==} - - rollup-plugin-styles@4.0.0: - resolution: {integrity: sha512-A2K2sao84OsTmDxXG83JTCdXWrmgvQkkI38XDat46rdtpGMRm9tSYqeCdlwwGDJF4kKIafhV1mUidqu8MxUGig==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - peerDependencies: - rollup: ^2.63.0 - - rollup-plugin-svg@2.0.0: - resolution: {integrity: sha512-DmE7dSQHo1SC5L2uH2qul3Mjyd5oV6U1aVVkyvTLX/mUsRink7f1b1zaIm+32GEBA6EHu8H/JJi3DdWqM53ySQ==} - - rollup-plugin-typescript2@0.31.2: - resolution: {integrity: sha512-hRwEYR1C8xDGVVMFJQdEVnNAeWRvpaY97g5mp3IeLnzhNXzSVq78Ye/BJ9PAaUfN4DXa/uDnqerifMOaMFY54Q==} - peerDependencies: - rollup: '>=1.26.3' - typescript: '>=2.4.0' - - rollup-pluginutils@1.5.2: - resolution: {integrity: sha512-SjdWWWO/CUoMpDy8RUbZ/pSpG68YHmhk5ROKNIoi2En9bJ8bTt3IhYi254RWiTclQmL7Awmrq+rZFOhZkJAHmQ==} - - rollup-pluginutils@2.8.2: - resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} - - rollup@2.79.1: - resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} - engines: {node: '>=10.0.0'} - hasBin: true - - rollup@4.18.0: - resolution: {integrity: sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true - - rsvp@4.8.5: - resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==} - engines: {node: 6.* || >= 7.*} - - run-async@2.4.1: - resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} - engines: {node: '>=0.12.0'} - - run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} - - rxjs@6.6.7: - resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} - engines: {npm: '>=2.0.0'} - - rxjs@7.8.1: - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} - - safe-array-concat@1.1.2: - resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} - engines: {node: '>=0.4'} - - safe-buffer@5.1.1: - resolution: {integrity: sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==} - - safe-buffer@5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} - - safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - - safe-identifier@0.4.2: - resolution: {integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==} - - safe-regex-test@1.0.3: - resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} - engines: {node: '>= 0.4'} - - safe-regex@1.1.0: - resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} - - safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - - sane@4.1.0: - resolution: {integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==} - engines: {node: 6.* || 8.* || >= 10.*} - deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added - hasBin: true - - sass-loader@12.6.0: - resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} - engines: {node: '>= 12.13.0'} - peerDependencies: - fibers: '>= 3.1.0' - node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 - sass: ^1.3.0 - sass-embedded: '*' - webpack: 5.84.1 - peerDependenciesMeta: - fibers: - optional: true - node-sass: - optional: true - sass: - optional: true - sass-embedded: - optional: true - - sass@1.77.6: - resolution: {integrity: sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==} - engines: {node: '>=14.0.0'} - hasBin: true - - sax@1.2.4: - resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} - - saxes@5.0.1: - resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} - engines: {node: '>=10'} - - saxes@6.0.0: - resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} - engines: {node: '>=v12.22.7'} - - scheduler@0.23.2: - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} - - schema-utils@0.4.7: - resolution: {integrity: sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==} - engines: {node: '>= 4'} - - schema-utils@1.0.0: - resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==} - engines: {node: '>= 4'} - - schema-utils@2.7.0: - resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} - engines: {node: '>= 8.9.0'} - - schema-utils@2.7.1: - resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} - engines: {node: '>= 8.9.0'} - - schema-utils@3.3.0: - resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} - engines: {node: '>= 10.13.0'} - - schema-utils@4.2.0: - resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} - engines: {node: '>= 12.13.0'} - - scroll@3.0.1: - resolution: {integrity: sha512-pz7y517OVls1maEzlirKO5nPYle9AXsFzTMNJrRGmT951mzpIBy7sNHOg5o/0MQd/NqliCiWnAi0kZneMPFLcg==} - - scrollparent@2.1.0: - resolution: {integrity: sha512-bnnvJL28/Rtz/kz2+4wpBjHzWoEzXhVg/TE8BeVGJHUqE8THNIRnDxDWMktwM+qahvlRdvlLdsQfYe+cuqfZeA==} - - secure-compare@3.0.1: - resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==} - - select-hose@2.0.0: - resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} - - selfsigned@1.10.14: - resolution: {integrity: sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==} - - selfsigned@2.4.1: - resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} - engines: {node: '>=10'} - - semantic-ui-css@2.5.0: - resolution: {integrity: sha512-jIWn3WXXE2uSaWCcB+gVJVRG3masIKtTMNEP2X8Aw909H2rHpXGneYOxzO3hT8TpyvB5/dEEo9mBFCitGwoj1A==} - - semantic-ui-less@2.5.0: - resolution: {integrity: sha512-Nlp8iR0otCQB74Yqob2Dxpsm5H9YAp3NvQ3sWDediwFjrd/l3Leu9md2O82UU5n5hOSqu95xnTok55eIAhlTjg==} - - semantic-ui-react@2.1.5: - resolution: {integrity: sha512-nIqmmUNpFHfovEb+RI2w3E2/maZQutd8UIWyRjf1SLse+XF51hI559xbz/sLN3O6RpLjr/echLOOXwKCirPy3Q==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - semver-diff@3.1.1: - resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==} - engines: {node: '>=8'} - - semver-regex@4.0.5: - resolution: {integrity: sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==} - engines: {node: '>=12'} - - semver-truncate@3.0.0: - resolution: {integrity: sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==} - engines: {node: '>=12'} - - semver@5.7.2: - resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} - hasBin: true - - semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true - - semver@7.3.4: - resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} - engines: {node: '>=10'} - hasBin: true - - semver@7.6.2: - resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} - engines: {node: '>=10'} - hasBin: true - - send@0.18.0: - resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} - engines: {node: '>= 0.8.0'} - - serialize-javascript@5.0.1: - resolution: {integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==} - - serialize-javascript@6.0.2: - resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} - - serve-favicon@2.5.0: - resolution: {integrity: sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==} - engines: {node: '>= 0.8.0'} - - serve-index@1.9.1: - resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} - engines: {node: '>= 0.8.0'} - - serve-static@1.15.0: - resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} - engines: {node: '>= 0.8.0'} - - set-blocking@2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} - - set-cookie-parser@2.6.0: - resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==} - - set-function-length@1.2.2: - resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} - engines: {node: '>= 0.4'} - - set-function-name@2.0.2: - resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} - engines: {node: '>= 0.4'} - - set-value@2.0.1: - resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} - engines: {node: '>=0.10.0'} - - setprototypeof@1.1.0: - resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} - - setprototypeof@1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} - - shallow-clone@0.1.2: - resolution: {integrity: sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==} - engines: {node: '>=0.10.0'} - - shallow-clone@3.0.1: - resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} - engines: {node: '>=8'} - - shallowequal@1.1.0: - resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} - - shebang-command@1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} - engines: {node: '>=0.10.0'} - - shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} - - shebang-regex@1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} - engines: {node: '>=0.10.0'} - - shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} - - shell-quote@1.8.1: - resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} - - shelljs@0.8.5: - resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} - engines: {node: '>=4'} - hasBin: true - - shellwords@0.1.1: - resolution: {integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==} - - side-channel@1.0.6: - resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} - engines: {node: '>= 0.4'} - - signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - - signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} - - simple-git@1.132.0: - resolution: {integrity: sha512-xauHm1YqCTom1sC9eOjfq3/9RKiUA9iPnxBbrY2DdL8l4ADMu0jjM5l5lphQP5YWNqAL2aXC/OeuQ76vHtW5fg==} - - sirv@2.0.4: - resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} - engines: {node: '>= 10'} - - sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - - slash@2.0.0: - resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==} - engines: {node: '>=6'} - - slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} - - slash@4.0.0: - resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} - engines: {node: '>=12'} - - slash@5.1.0: - resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} - engines: {node: '>=14.16'} - - slashes@2.0.2: - resolution: {integrity: sha512-68p+QkFAQQRetIUzNXAdktNJr8AYLxJukjBegYQz8F7VATsBJG621UYtY/vS2j9jerxdJ1k6Tc25K4DXEw1d5w==} - - slice-ansi@3.0.0: - resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} - engines: {node: '>=8'} - - slice-ansi@4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: '>=10'} - - smart-buffer@4.2.0: - resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} - engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} - - smartwrap@2.0.2: - resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} - engines: {node: '>=6'} - hasBin: true - - snapdragon-node@2.1.1: - resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} - engines: {node: '>=0.10.0'} - - snapdragon-util@3.0.1: - resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} - engines: {node: '>=0.10.0'} - - snapdragon@0.8.2: - resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} - engines: {node: '>=0.10.0'} - - sockjs-client@1.6.1: - resolution: {integrity: sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==} - engines: {node: '>=12'} - - sockjs@0.3.24: - resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} - - socks-proxy-agent@7.0.0: - resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} - engines: {node: '>= 10'} - - socks@2.8.3: - resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} - engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} - - sort-keys-length@1.0.1: - resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==} - engines: {node: '>=0.10.0'} - - sort-keys@1.1.2: - resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==} - engines: {node: '>=0.10.0'} - - sort-keys@2.0.0: - resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} - engines: {node: '>=4'} - - sort-keys@4.2.0: - resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==} - engines: {node: '>=8'} - - source-list-map@2.0.1: - resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==} - - source-map-js@1.2.0: - resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} - engines: {node: '>=0.10.0'} - - source-map-loader@0.2.4: - resolution: {integrity: sha512-OU6UJUty+i2JDpTItnizPrlpOIBLmQbWMuBg9q5bVtnHACqw1tn9nNwqJLbv0/00JjnJb/Ee5g5WS5vrRv7zIQ==} - engines: {node: '>= 6'} - - source-map-loader@3.0.2: - resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: 5.84.1 - - source-map-resolve@0.5.3: - resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} - deprecated: See https://github.com/lydell/source-map-resolve#deprecated - - source-map-resolve@0.6.0: - resolution: {integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==} - deprecated: See https://github.com/lydell/source-map-resolve#deprecated - - source-map-support@0.5.13: - resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} - - source-map-support@0.5.19: - resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} - - source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} - - source-map-url@0.4.1: - resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} - deprecated: See https://github.com/lydell/source-map-url#deprecated - - source-map@0.5.7: - resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} - engines: {node: '>=0.10.0'} - - source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} - - source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} - - sourcemap-codec@1.4.8: - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} - deprecated: Please use @jridgewell/sourcemap-codec instead - - space-separated-tokens@1.1.5: - resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} - - space-separated-tokens@2.0.2: - resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} - - spawn-wrap@2.0.0: - resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==} - engines: {node: '>=8'} - - spawndamnit@2.0.0: - resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} - - spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} - - spdx-exceptions@2.5.0: - resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} - - spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} - - spdx-license-ids@3.0.18: - resolution: {integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==} - - spdy-transport@3.0.0: - resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} - - spdy@4.0.2: - resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} - engines: {node: '>=6.0.0'} - - split-on-first@1.1.0: - resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} - engines: {node: '>=6'} - - split-string@3.1.0: - resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} - engines: {node: '>=0.10.0'} - - split2@3.2.2: - resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} - - split@1.0.1: - resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} - - sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - - sprintf-js@1.1.3: - resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} - - sshpk@1.18.0: - resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} - engines: {node: '>=0.10.0'} - hasBin: true - - ssri@8.0.1: - resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} - engines: {node: '>= 8'} - - ssri@9.0.1: - resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - stable@0.1.8: - resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} - deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' - - stack-utils@2.0.6: - resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} - engines: {node: '>=10'} - - stackframe@1.3.4: - resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} - - state-local@1.0.7: - resolution: {integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==} - - state-toggle@1.0.3: - resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==} - - static-extend@0.1.2: - resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} - engines: {node: '>=0.10.0'} - - statuses@1.5.0: - resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} - engines: {node: '>= 0.6'} - - statuses@2.0.1: - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: '>= 0.8'} - - stop-iteration-iterator@1.0.0: - resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} - engines: {node: '>= 0.4'} - - store2@2.14.3: - resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==} - - storybook@6.5.16: - resolution: {integrity: sha512-+Ychak5QtcTx8EuQzu7eilw+65sk6q1LdI68vb1VOIYD29PEEC7MsZGKPi6AKYNbdhGp0cGu0j3Bf1TxGOBFEA==} - hasBin: true - - stream-transform@2.1.3: - resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} - - streamroller@1.0.6: - resolution: {integrity: sha512-3QC47Mhv3/aZNFpDDVO44qQb9gwB9QggMEE0sQmkTAwBVYdBRWISdsywlkfm5II1Q5y/pmrHflti/IgmIzdDBg==} - engines: {node: '>=6.0'} - deprecated: 1.x is no longer supported. Please upgrade to 3.x or higher. - - strict-event-emitter@0.2.8: - resolution: {integrity: sha512-KDf/ujU8Zud3YaLtMCcTI4xkZlZVIYxTLr+XIULexP+77EEVWixeXroLUXQXiVtH4XH2W7jr/3PT1v3zBuvc3A==} - - strict-uri-encode@2.0.0: - resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} - engines: {node: '>=4'} - - string-hash@1.1.3: - resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} - - string-length@4.0.2: - resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} - engines: {node: '>=10'} - - string-width@3.1.0: - resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==} - engines: {node: '>=6'} - - string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} - - string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} - - string.prototype.matchall@4.0.11: - resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} - engines: {node: '>= 0.4'} - - string.prototype.padend@3.1.6: - resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==} - engines: {node: '>= 0.4'} - - string.prototype.padstart@3.1.6: - resolution: {integrity: sha512-1y15lz7otgfRTAVK5qbp3eHIga+w8j7+jIH+7HpUrOfnLVl6n0hbspi4EXf4tR+PNOpBjPstltemkx0SvViOCg==} - engines: {node: '>= 0.4'} - - string.prototype.trim@1.2.9: - resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} - engines: {node: '>= 0.4'} - - string.prototype.trimend@1.0.8: - resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} - - string.prototype.trimstart@1.0.8: - resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} - engines: {node: '>= 0.4'} - - string_decoder@0.10.31: - resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} - - string_decoder@1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} - - string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} - - stringify-entities@4.0.4: - resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} - - strip-ansi@3.0.1: - resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} - engines: {node: '>=0.10.0'} - - strip-ansi@4.0.0: - resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==} - engines: {node: '>=4'} - - strip-ansi@5.2.0: - resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} - engines: {node: '>=6'} - - strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} - - strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} - - strip-bom@2.0.0: - resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} - engines: {node: '>=0.10.0'} - - strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} - - strip-bom@4.0.0: - resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} - engines: {node: '>=8'} - - strip-eof@1.0.0: - resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} - engines: {node: '>=0.10.0'} - - strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} - - strip-indent@1.0.1: - resolution: {integrity: sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==} - engines: {node: '>=0.10.0'} - hasBin: true - - strip-indent@3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} - - strip-json-comments@1.0.4: - resolution: {integrity: sha512-AOPG8EBc5wAikaG1/7uFCNFJwnKOuQwFTpYBdTW6OvWHeZBQBrAA/amefHGrEiOnCPcLFZK6FUPtWVKpQVIRgg==} - engines: {node: '>=0.8.0'} - hasBin: true - - strip-json-comments@2.0.1: - resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} - engines: {node: '>=0.10.0'} - - strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} - - strip-outer@2.0.0: - resolution: {integrity: sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - strnum@1.0.5: - resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} - - strong-log-transformer@2.1.0: - resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} - engines: {node: '>=4'} - hasBin: true - - strtok3@7.0.0: - resolution: {integrity: sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==} - engines: {node: '>=14.16'} - - style-inject@0.3.0: - resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==} - - style-loader@0.23.1: - resolution: {integrity: sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==} - engines: {node: '>= 0.12.0'} - - style-loader@1.3.0: - resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==} - engines: {node: '>= 8.9.0'} - peerDependencies: - webpack: 5.84.1 - - style-loader@2.0.0: - resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 - - style-loader@3.3.4: - resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: 5.84.1 - - style-to-js@1.1.1: - resolution: {integrity: sha512-RJ18Z9t2B02sYhZtfWKQq5uplVctgvjTfLWT7+Eb1zjUjIrWzX5SdlkwLGQozrqarTmEzJJ/YmdNJCUNI47elg==} - - style-to-object@0.3.0: - resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==} - - style-to-object@1.0.6: - resolution: {integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==} - - styled-components@4.4.1: - resolution: {integrity: sha512-RNqj14kYzw++6Sr38n7197xG33ipEOktGElty4I70IKzQF1jzaD1U4xQ+Ny/i03UUhHlC5NWEO+d8olRCDji6g==} - peerDependencies: - react: '>= 16.3.0' - react-dom: '>= 16.3.0' - - stylehacks@5.1.1: - resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - stylis-rule-sheet@0.0.10: - resolution: {integrity: sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==} - peerDependencies: - stylis: ^3.5.0 - - stylis@3.5.4: - resolution: {integrity: sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==} - - stylis@4.2.0: - resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} - - stylus-loader@6.2.0: - resolution: {integrity: sha512-5dsDc7qVQGRoc6pvCL20eYgRUxepZ9FpeK28XhdXaIPP6kXr6nI1zAAKFQgP5OBkOfKaURp4WUpJzspg1f01Gg==} - engines: {node: '>= 12.13.0'} - peerDependencies: - stylus: '>=0.52.4' - webpack: 5.84.1 - - stylus@0.55.0: - resolution: {integrity: sha512-MuzIIVRSbc8XxHH7FjkvWqkIcr1BvoMZoR/oFuAJDlh7VSaNJzrB4uJ38GRQa+mWjLXODAMzeDe0xi9GYbGwnw==} - hasBin: true - - supports-color@2.0.0: - resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} - engines: {node: '>=0.8.0'} - - supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} - - supports-color@6.1.0: - resolution: {integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==} - engines: {node: '>=6'} - - supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} - - supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} - - supports-hyperlinks@2.3.0: - resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} - engines: {node: '>=8'} - - supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} - - svg-country-flags@1.2.10: - resolution: {integrity: sha512-xrqwo0TYf/h2cfPvGpjdSuSguUbri4vNNizBnwzoZnX0xGo3O5nGJMlbYEp7NOYcnPGBm6LE2axqDWSB847bLw==} - - svg-parser@2.0.4: - resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} - - svgo@1.3.2: - resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} - engines: {node: '>=4.0.0'} - deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. - hasBin: true - - svgo@2.8.0: - resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} - engines: {node: '>=10.13.0'} - hasBin: true - - svgo@3.3.2: - resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} - engines: {node: '>=14.0.0'} - hasBin: true - - swr@2.2.5: - resolution: {integrity: sha512-QtxqyclFeAsxEUeZIYmsaQ0UjimSq1RZ9Un7I68/0ClKK/U3LoyQunwkQfJZr2fc22DfIXLNDc2wFyTEikCUpg==} - peerDependencies: - react: ^16.11.0 || ^17.0.0 || ^18.0.0 - - symbol-tree@3.2.4: - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} - - symbol.prototype.description@1.0.6: - resolution: {integrity: sha512-VgVgtEabORsQtmuindtO7v8fF+bsKxUkvEMFj+ecBK6bomrwv5JUSWdMoC3ypa9+Jaqp/wOzkWk4f6I+p5GzyA==} - engines: {node: '>= 0.4'} - - synchronous-promise@2.0.17: - resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==} - - synckit@0.6.2: - resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==} - engines: {node: '>=12.20'} - - table@6.8.2: - resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==} - engines: {node: '>=10.0.0'} - - tapable@1.1.3: - resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} - engines: {node: '>=6'} - - tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} - - tar-stream@2.2.0: - resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} - engines: {node: '>=6'} - - tar@6.2.1: - resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} - engines: {node: '>=10'} - - telejson@5.3.3: - resolution: {integrity: sha512-PjqkJZpzEggA9TBpVtJi1LVptP7tYtXB6rEubwlHap76AMjzvOdKX41CxyaW7ahhzDU1aftXnMCx5kAPDZTQBA==} - - telejson@6.0.8: - resolution: {integrity: sha512-nerNXi+j8NK1QEfBHtZUN/aLdDcyupA//9kAboYLrtzZlPLpUfqbVGWb9zz91f/mIjRbAYhbgtnJHY8I1b5MBg==} - - temp-dir@1.0.0: - resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==} - engines: {node: '>=4'} - - temp@0.8.4: - resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} - engines: {node: '>=6.0.0'} - - term-size@2.2.1: - resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} - engines: {node: '>=8'} - - terminal-link@2.1.1: - resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} - engines: {node: '>=8'} - - terser-webpack-plugin@4.2.3: - resolution: {integrity: sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 - - terser-webpack-plugin@5.3.10: - resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: 5.84.1 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - - terser@4.8.1: - resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} - engines: {node: '>=6.0.0'} - hasBin: true - - terser@5.31.1: - resolution: {integrity: sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==} - engines: {node: '>=10'} - hasBin: true - - test-exclude@6.0.0: - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} - engines: {node: '>=8'} - - text-extensions@1.9.0: - resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} - engines: {node: '>=0.10'} - - text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - - thread-loader@2.1.3: - resolution: {integrity: sha512-wNrVKH2Lcf8ZrWxDF/khdlLlsTMczdcwPA9VEK4c2exlEPynYWxi9op3nPTo5lAnDIkE0rQEB3VBP+4Zncc9Hg==} - engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 - - throat@5.0.0: - resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} - - throttle-debounce@3.0.1: - resolution: {integrity: sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==} - engines: {node: '>=10'} - - throttleit@1.0.1: - resolution: {integrity: sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==} - - through2@2.0.5: - resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} - - through2@4.0.2: - resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} - - through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - - thunky@1.1.0: - resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} - - tiny-invariant@1.3.3: - resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} - - tiny-warning@1.0.3: - resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} - - tinycolor2@1.6.0: - resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} - - tinycolor@0.0.1: - resolution: {integrity: sha512-+CorETse1kl98xg0WAzii8DTT4ABF4R3nquhrkIbVGcw1T8JYs5Gfx9xEfGINPUZGDj9C4BmOtuKeaTtuuRolg==} - engines: {node: '>=0.4.0'} - - tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} - - tmp@0.2.3: - resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} - engines: {node: '>=14.14'} - - tmpl@1.0.5: - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} - - to-fast-properties@1.0.3: - resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==} - engines: {node: '>=0.10.0'} - - to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} - - to-object-path@0.3.0: - resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} - engines: {node: '>=0.10.0'} - - to-readable-stream@1.0.0: - resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} - engines: {node: '>=6'} - - to-regex-range@2.1.1: - resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} - engines: {node: '>=0.10.0'} - - to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} - - to-regex@3.0.2: - resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} - engines: {node: '>=0.10.0'} - - toggle-selection@1.0.6: - resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==} - - toidentifier@1.0.1: - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} - engines: {node: '>=0.6'} - - token-types@5.0.1: - resolution: {integrity: sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==} - engines: {node: '>=14.16'} - - totalist@3.0.1: - resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} - engines: {node: '>=6'} - - tough-cookie@4.1.4: - resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} - engines: {node: '>=6'} - - tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - - tr46@2.1.0: - resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} - engines: {node: '>=8'} - - tr46@3.0.0: - resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} - engines: {node: '>=12'} - - tree-changes@0.11.2: - resolution: {integrity: sha512-4gXlUthrl+RabZw6lLvcCDl6KfJOCmrC16BC5CRdut1EAH509Omgg0BfKLY+ViRlzrvYOTWR0FMS2SQTwzumrw==} - - tree-changes@0.9.3: - resolution: {integrity: sha512-vvvS+O6kEeGRzMglTKbc19ltLWNtmNt1cpBoSYLj/iEcPVvpJasemKOlxBrmZaCtDJoF+4bwv3m01UKYi8mukQ==} - - tree-kill@1.2.2: - resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} - hasBin: true - - treeverse@2.0.0: - resolution: {integrity: sha512-N5gJCkLu1aXccpOTtqV6ddSEi6ZmGkh3hjmbu1IjcavJK4qyOVQmi0myQKM7z5jVGmD68SJoliaVrMmVObhj6A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - trim-lines@3.0.1: - resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} - - trim-newlines@1.0.0: - resolution: {integrity: sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==} - engines: {node: '>=0.10.0'} - - trim-newlines@3.0.1: - resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} - engines: {node: '>=8'} - - trim-repeated@2.0.0: - resolution: {integrity: sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==} - engines: {node: '>=12'} - - trim-trailing-lines@1.1.4: - resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==} - - trim@0.0.1: - resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==} - deprecated: Use String.prototype.trim() instead - - trough@1.0.5: - resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} - - trough@2.2.0: - resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} - - ts-dedent@2.2.0: - resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} - engines: {node: '>=6.10'} - - ts-jest@26.5.6: - resolution: {integrity: sha512-rua+rCP8DxpA8b4DQD/6X2HQS8Zy/xzViVYfEs2OQu68tkCuKLV0Md8pmX55+W24uRIyAsf/BajRfxOs+R2MKA==} - engines: {node: '>= 10'} - hasBin: true - peerDependencies: - jest: '>=26 <27' - typescript: '>=3.8 <5.0' - - ts-jest@29.1.5: - resolution: {integrity: sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg==} - engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@jest/transform': ^29.0.0 - '@jest/types': ^29.0.0 - babel-jest: ^29.0.0 - esbuild: '*' - jest: ^29.0.0 - typescript: '>=4.3 <6' - peerDependenciesMeta: - '@babel/core': - optional: true - '@jest/transform': - optional: true - '@jest/types': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - - ts-loader@6.2.2: - resolution: {integrity: sha512-HDo5kXZCBml3EUPcc7RlZOV/JGlLHwppTLEHb3SHnr5V7NXD4klMEkrhJe5wgRbaWsSXi+Y1SIBN/K9B6zWGWQ==} - engines: {node: '>=8.6'} - peerDependencies: - typescript: '*' - - ts-loader@9.5.1: - resolution: {integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==} - engines: {node: '>=12.0.0'} - peerDependencies: - typescript: '*' - webpack: 5.84.1 - - ts-node@10.9.1: - resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true - - ts-node@8.10.2: - resolution: {integrity: sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA==} - engines: {node: '>=6.0.0'} - hasBin: true - peerDependencies: - typescript: '>=2.7' - - ts-pnp@1.2.0: - resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} - engines: {node: '>=6'} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - tsconfig-paths-webpack-plugin@3.5.2: - resolution: {integrity: sha512-EhnfjHbzm5IYI9YPNVIxx1moxMI4bpHD2e0zTXeDNQcwjjRaGepP7IhTHJkyDBG0CAOoxRfe7jCG630Ou+C6Pw==} - - tsconfig-paths@3.15.0: - resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} - - tslib@1.14.1: - resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - - tslib@2.6.3: - resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} - - tsutils@3.21.0: - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} - peerDependencies: - typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' - - tty-table@4.2.3: - resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==} - engines: {node: '>=8.0.0'} - hasBin: true - - tunnel-agent@0.6.0: - resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} - - tweetnacl@0.14.5: - resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} - - type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} - - type-detect@4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: '>=4'} - - type-fest@0.13.1: - resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} - engines: {node: '>=10'} - - type-fest@0.18.1: - resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} - engines: {node: '>=10'} - - type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} - - type-fest@0.21.3: - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} - engines: {node: '>=10'} - - type-fest@0.4.1: - resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==} - engines: {node: '>=6'} - - type-fest@0.6.0: - resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} - engines: {node: '>=8'} - - type-fest@0.8.1: - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} - engines: {node: '>=8'} - - type-fest@1.4.0: - resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} - engines: {node: '>=10'} - - type-fest@4.20.1: - resolution: {integrity: sha512-R6wDsVsoS9xYOpy8vgeBlqpdOyzJ12HNfQhC/aAKWM3YoCV9TtunJzh/QpkMgeDhkoynDcw5f1y+qF9yc/HHyg==} - engines: {node: '>=16'} - - type-is@1.6.18: - resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} - engines: {node: '>= 0.6'} - - type@2.7.3: - resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==} - - typed-array-buffer@1.0.2: - resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} - engines: {node: '>= 0.4'} - - typed-array-byte-length@1.0.1: - resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} - engines: {node: '>= 0.4'} - - typed-array-byte-offset@1.0.2: - resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} - engines: {node: '>= 0.4'} - - typed-array-length@1.0.6: - resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} - engines: {node: '>= 0.4'} - - typed-assert@1.0.9: - resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==} - - typedarray-to-buffer@3.1.5: - resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} - - typedarray@0.0.6: - resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - - typescript@4.9.5: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} - engines: {node: '>=4.2.0'} - hasBin: true - - ua-parser-js@0.7.28: - resolution: {integrity: sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g==} - - uglify-js@3.18.0: - resolution: {integrity: sha512-SyVVbcNBCk0dzr9XL/R/ySrmYf0s372K6/hFklzgcp2lBFyXtw4I7BOdDjlLhE1aVqaI/SHWXWmYdlZxuyF38A==} - engines: {node: '>=0.8.0'} - hasBin: true - - unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} - - underscore.deep@0.5.3: - resolution: {integrity: sha512-4OuSOlFNkiVFVc3khkeG112Pdu1gbitMj7t9B9ENb61uFmN70Jq7Iluhi3oflcSgexkKfDdJ5XAJET2gEq6ikA==} - engines: {node: '>=0.10.x'} - peerDependencies: - underscore: 1.x - - underscore@1.7.0: - resolution: {integrity: sha512-cp0oQQyZhUM1kpJDLdGO1jPZHgS/MpzoWYfe9+CM2h/QGDZlqwT2T3YGukuBdaNJ/CAPoeyAZRRHz8JFo176vA==} - - unfetch@4.2.0: - resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==} - - unherit@1.1.3: - resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==} - - unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} - engines: {node: '>=4'} - - unicode-match-property-ecmascript@2.0.0: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} - engines: {node: '>=4'} - - unicode-match-property-value-ecmascript@2.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} - engines: {node: '>=4'} - - unicode-property-aliases-ecmascript@2.1.0: - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} - engines: {node: '>=4'} - - unicorn-magic@0.1.0: - resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} - engines: {node: '>=18'} - - unified@11.0.5: - resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} - - unified@9.2.0: - resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==} - - union-value@1.0.1: - resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} - engines: {node: '>=0.10.0'} - - union@0.5.0: - resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} - engines: {node: '>= 0.8.0'} - - unique-filename@1.1.1: - resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} - - unique-filename@2.0.1: - resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - unique-slug@2.0.2: - resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} - - unique-slug@3.0.0: - resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - unique-string@2.0.0: - resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} - engines: {node: '>=8'} - - unist-builder@2.0.3: - resolution: {integrity: sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==} - - unist-util-generated@1.1.6: - resolution: {integrity: sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==} - - unist-util-is@4.1.0: - resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} - - unist-util-is@6.0.0: - resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} - - unist-util-position@3.1.0: - resolution: {integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==} - - unist-util-position@5.0.0: - resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} - - unist-util-remove-position@2.0.1: - resolution: {integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==} - - unist-util-remove-position@5.0.0: - resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} - - unist-util-remove@2.1.0: - resolution: {integrity: sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==} - - unist-util-stringify-position@2.0.3: - resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} - - unist-util-stringify-position@4.0.0: - resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} - - unist-util-visit-parents@3.1.1: - resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} - - unist-util-visit-parents@6.0.1: - resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} - - unist-util-visit@2.0.3: - resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} - - unist-util-visit@5.0.0: - resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} - - universal-user-agent@6.0.1: - resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} - - universalify@0.1.2: - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} - engines: {node: '>= 4.0.0'} - - universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} - - universalify@2.0.1: - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} - engines: {node: '>= 10.0.0'} - - unpipe@1.0.0: - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} - engines: {node: '>= 0.8'} - - unquote@1.1.1: - resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} - - unset-value@1.0.0: - resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} - engines: {node: '>=0.10.0'} - - untildify@2.1.0: - resolution: {integrity: sha512-sJjbDp2GodvkB0FZZcn7k6afVisqX5BZD7Yq3xp4nN2O15BBK0cLm3Vwn2vQaF7UDS0UUsrQMkkplmDI5fskig==} - engines: {node: '>=0.10.0'} - - untildify@4.0.0: - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} - engines: {node: '>=8'} - - upath2@3.1.19: - resolution: {integrity: sha512-d23dQLi8nDWSRTIQwXtaYqMrHuca0As53fNiTLLFDmsGBbepsZepISaB2H1x45bDFN/n3Qw9bydvyZEacTrEWQ==} - - upath@1.2.0: - resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} - engines: {node: '>=4'} - - upath@2.0.1: - resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} - engines: {node: '>=4'} - - update-browserslist-db@1.0.16: - resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - - update-notifier@5.1.0: - resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==} - engines: {node: '>=10'} - - uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} - - urix@0.1.0: - resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} - deprecated: Please see https://github.com/lydell/urix#deprecated - - url-join@4.0.1: - resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} - - url-loader@2.3.0: - resolution: {integrity: sha512-goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog==} - engines: {node: '>= 8.9.0'} - peerDependencies: - file-loader: '*' - webpack: 5.84.1 - peerDependenciesMeta: - file-loader: - optional: true - - url-loader@4.1.1: - resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - file-loader: '*' - webpack: 5.84.1 - peerDependenciesMeta: - file-loader: - optional: true - - url-parse-lax@3.0.0: - resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} - engines: {node: '>=4'} - - url-parse@1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} - - url@0.11.3: - resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==} - - use-composed-ref@1.3.0: - resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - - use-isomorphic-layout-effect@1.1.2: - resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} - peerDependencies: - '@types/react': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - use-latest@1.2.1: - resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} - peerDependencies: - '@types/react': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - use-sync-external-store@1.2.0: - resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - - use-sync-external-store@1.2.2: - resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - - use@3.1.1: - resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} - engines: {node: '>=0.10.0'} - - util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - - util.promisify@1.0.0: - resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==} - - util.promisify@1.0.1: - resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} - - util@0.10.4: - resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} - - utila@0.4.0: - resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} - - utils-merge@1.0.1: - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} - engines: {node: '>= 0.4.0'} - - uuid-browser@3.1.0: - resolution: {integrity: sha512-dsNgbLaTrd6l3MMxTtouOCFw4CBFc/3a+GgYA2YyrJvyQ1u6q4pcu3ktLoUZ/VN/Aw9WsauazbgsgdfVWgAKQg==} - deprecated: Package no longer supported and required. Use the uuid package or crypto.randomUUID instead - - uuid@3.4.0: - resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} - deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. - hasBin: true - - uuid@8.3.2: - resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} - hasBin: true - - v8-compile-cache-lib@3.0.1: - resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - - v8-compile-cache@2.3.0: - resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} - - v8-compile-cache@2.4.0: - resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} - - v8-to-istanbul@7.1.2: - resolution: {integrity: sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==} - engines: {node: '>=10.10.0'} - - v8-to-istanbul@9.3.0: - resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} - engines: {node: '>=10.12.0'} - - validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} - - validate-npm-package-name@3.0.0: - resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==} - - validate-npm-package-name@4.0.0: - resolution: {integrity: sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - value-equal@1.0.1: - resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==} - - vary@1.1.2: - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} - engines: {node: '>= 0.8'} - - verror@1.10.0: - resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} - engines: {'0': node >=0.6.0} - - vfile-location@3.2.0: - resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==} - - vfile-message@2.0.4: - resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==} - - vfile-message@4.0.2: - resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} - - vfile@4.2.1: - resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==} - - vfile@6.0.1: - resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==} - - victory-vendor@36.9.2: - resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==} - - void-elements@3.1.0: - resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} - engines: {node: '>=0.10.0'} - - w3c-hr-time@1.0.2: - resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} - deprecated: Use your platform's native performance.now() and performance.timeOrigin. - - w3c-xmlserializer@2.0.0: - resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} - engines: {node: '>=10'} - - w3c-xmlserializer@4.0.0: - resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} - engines: {node: '>=14'} - - walk-up-path@1.0.0: - resolution: {integrity: sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg==} - - walker@1.0.8: - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} - - warning@4.0.3: - resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==} - - watch@1.0.2: - resolution: {integrity: sha512-1u+Z5n9Jc1E2c7qDO8SinPoZuHj7FgbgU1olSFoyaklduDvvtX7GMMtlE6OC9FTXq4KvNAOfj6Zu4vI1e9bAKA==} - engines: {node: '>=0.1.95'} - hasBin: true - - watchpack@2.4.1: - resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==} - engines: {node: '>=10.13.0'} - - wbuf@1.7.3: - resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} - - wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} - - web-namespaces@1.1.4: - resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==} - - webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} - - webidl-conversions@5.0.0: - resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} - engines: {node: '>=8'} - - webidl-conversions@6.1.0: - resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} - engines: {node: '>=10.4'} - - webidl-conversions@7.0.0: - resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} - engines: {node: '>=12'} - - webpack-bundle-analyzer@4.10.2: - resolution: {integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==} - engines: {node: '>= 10.13.0'} - hasBin: true - - webpack-cli@4.10.0: - resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - '@webpack-cli/generators': '*' - '@webpack-cli/migrate': '*' - webpack: 5.84.1 - webpack-bundle-analyzer: '*' - webpack-dev-server: '*' - peerDependenciesMeta: - '@webpack-cli/generators': - optional: true - '@webpack-cli/migrate': - optional: true - webpack-bundle-analyzer: - optional: true - webpack-dev-server: - optional: true - - webpack-dev-middleware@3.7.3: - resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==} - engines: {node: '>= 6'} - peerDependencies: - webpack: 5.84.1 - - webpack-dev-middleware@4.3.0: - resolution: {integrity: sha512-PjwyVY95/bhBh6VUqt6z4THplYcsvQ8YNNBTBM873xLVmw8FLeALn0qurHbs9EmcfhzQis/eoqypSnZeuUz26w==} - engines: {node: '>= v10.23.3'} - peerDependencies: - webpack: 5.84.1 - - webpack-dev-middleware@5.3.4: - resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: 5.84.1 - - webpack-dev-server@3.11.3: - resolution: {integrity: sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==} - engines: {node: '>= 6.11.5'} - hasBin: true - peerDependencies: - webpack: 5.84.1 - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - - webpack-dev-server@4.15.2: - resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==} - engines: {node: '>= 12.13.0'} - hasBin: true - peerDependencies: - webpack: 5.84.1 - webpack-cli: '*' - peerDependenciesMeta: - webpack: - optional: true - webpack-cli: - optional: true - - webpack-filter-warnings-plugin@1.2.1: - resolution: {integrity: sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==} - engines: {node: '>= 4.3 < 5.0.0 || >= 5.10'} - peerDependencies: - webpack: 5.84.1 - - webpack-hot-middleware@2.26.1: - resolution: {integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==} - - webpack-log@1.2.0: - resolution: {integrity: sha512-U9AnICnu50HXtiqiDxuli5gLB5PGBo7VvcHx36jRZHwK4vzOYLbImqT4lwWwoMHdQWwEKw736fCHEekokTEKHA==} - engines: {node: '>=6'} - - webpack-log@2.0.0: - resolution: {integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==} - engines: {node: '>= 6'} - - webpack-merge@5.10.0: - resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} - engines: {node: '>=10.0.0'} - - webpack-node-externals@3.0.0: - resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==} - engines: {node: '>=6'} - - webpack-sources@1.4.3: - resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==} - - webpack-sources@3.2.3: - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} - engines: {node: '>=10.13.0'} - - webpack-subresource-integrity@5.1.0: - resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==} - engines: {node: '>= 12'} - peerDependencies: - html-webpack-plugin: '>= 5.0.0-beta.1 < 6' - webpack: 5.84.1 - peerDependenciesMeta: - html-webpack-plugin: - optional: true - - webpack-virtual-modules@0.2.2: - resolution: {integrity: sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==} - - webpack-virtual-modules@0.4.6: - resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==} - - webpack@5.84.1: - resolution: {integrity: sha512-ZP4qaZ7vVn/K8WN/p990SGATmrL1qg4heP/MrVneczYtpDGJWlrgZv55vxaV2ul885Kz+25MP2kSXkPe3LZfmg==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - - websocket-driver@0.7.4: - resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} - engines: {node: '>=0.8.0'} - - websocket-extensions@0.1.4: - resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} - engines: {node: '>=0.8.0'} - - whatwg-encoding@1.0.5: - resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} - - whatwg-encoding@2.0.0: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} - engines: {node: '>=12'} - - whatwg-fetch@3.6.20: - resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} - - whatwg-mimetype@2.3.0: - resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} - - whatwg-mimetype@3.0.0: - resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} - engines: {node: '>=12'} - - whatwg-url@11.0.0: - resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} - engines: {node: '>=12'} - - whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} - - whatwg-url@8.7.0: - resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} - engines: {node: '>=10'} - - which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} - - which-builtin-type@1.1.3: - resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} - engines: {node: '>= 0.4'} - - which-collection@1.0.2: - resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} - engines: {node: '>= 0.4'} - - which-module@2.0.1: - resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} - - which-pm@2.0.0: - resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==} - engines: {node: '>=8.15'} - - which-typed-array@1.1.15: - resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} - engines: {node: '>= 0.4'} - - which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true - - which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} - hasBin: true - - wide-align@1.1.5: - resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} - - widest-line@3.1.0: - resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} - engines: {node: '>=8'} - - wildcard@2.0.1: - resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} - - word-wrap@1.2.5: - resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} - engines: {node: '>=0.10.0'} - - wordwrap@1.0.0: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} - - worker-loader@2.0.0: - resolution: {integrity: sha512-tnvNp4K3KQOpfRnD20m8xltE3eWh89Ye+5oj7wXEEHKac1P4oZ6p9oTj8/8ExqoSBnk9nu5Pr4nKfQ1hn2APJw==} - engines: {node: '>= 6.9.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 - - worker-rpc@0.1.1: - resolution: {integrity: sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==} - - world-countries@5.0.0: - resolution: {integrity: sha512-wAfOT9Y5i/xnxNOdKJKXdOCw9Q3yQLahBUeuRol+s+o20F6h2a4tLEbJ1lBCYwEQ30Sf9Meqeipk1gib3YwF5w==} - - wrap-ansi@5.1.0: - resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==} - engines: {node: '>=6'} - - wrap-ansi@6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: '>=8'} - - wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} - - wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} - - wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - - write-file-atomic@2.4.3: - resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} - - write-file-atomic@3.0.3: - resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} - - write-file-atomic@4.0.2: - resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - write-file-webpack-plugin@4.5.1: - resolution: {integrity: sha512-AZ7qJUvhTCBiOtG21aFJUcNuLVo2FFM6JMGKvaUGAH+QDqQAp2iG0nq3GcuXmJOFQR2JjpjhyYkyPrbFKhdjNQ==} - engines: {node: '>=4'} - - write-json-file@3.2.0: - resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==} - engines: {node: '>=6'} - - write-json-file@4.3.0: - resolution: {integrity: sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ==} - engines: {node: '>=8.3'} - - write-pkg@4.0.0: - resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==} - engines: {node: '>=8'} - - ws@6.2.3: - resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - - ws@7.5.10: - resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} - engines: {node: '>=8.3.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - - ws@8.17.1: - resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - - x-default-browser@0.4.0: - resolution: {integrity: sha512-7LKo7RtWfoFN/rHx1UELv/2zHGMx8MkZKDq1xENmOCTkfIqZJ0zZ26NEJX8czhnPXVcqS0ARjjfJB+eJ0/5Cvw==} - hasBin: true - - xdg-basedir@4.0.0: - resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} - engines: {node: '>=8'} - - xml-name-validator@3.0.0: - resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} - - xml-name-validator@4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} - engines: {node: '>=12'} - - xmlchars@2.2.0: - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} - - xtend@4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: '>=0.4'} - - y18n@4.0.3: - resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} - - y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} - - yallist@2.1.2: - resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} - - yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - - yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - - yaml@1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} - - yargs-parser@13.1.2: - resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==} - - yargs-parser@18.1.3: - resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} - engines: {node: '>=6'} - - yargs-parser@20.2.4: - resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} - engines: {node: '>=10'} - - yargs-parser@20.2.9: - resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} - engines: {node: '>=10'} - - yargs-parser@21.0.1: - resolution: {integrity: sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==} - engines: {node: '>=12'} - - yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} - - yargs@13.3.2: - resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==} - - yargs@15.4.1: - resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} - engines: {node: '>=8'} - - yargs@16.2.0: - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} - engines: {node: '>=10'} - - yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} - - yauzl@2.10.0: - resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} - - yn@3.1.1: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} - engines: {node: '>=6'} - - yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} - - zustand@4.5.2: - resolution: {integrity: sha512-2cN1tPkDVkwCy5ickKrI7vijSjPksFRfqS6237NzT0vqSsztTNnQdHw9mmN7uBdk3gceVXU0a+21jFzFzAc9+g==} - engines: {node: '>=12.7.0'} - peerDependencies: - '@types/react': 18.0.18 - immer: '>=9.0.6' - react: '>=16.8' - peerDependenciesMeta: - '@types/react': - optional: true - immer: - optional: true - react: - optional: true - - zwitch@1.0.5: - resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==} - - zwitch@2.0.4: - resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} - -snapshots: - - '@adobe/css-tools@4.4.0': {} - - '@ampproject/remapping@2.3.0': - dependencies: - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - - '@artsy/fresnel@6.2.1(react@18.3.1)': - dependencies: - react: 18.3.1 - - /@asgardeo/auth-js@5.0.1: - resolution: {integrity: sha512-XTb/+jPPBAnNGlZYeHVz2Ut5hI8DeJiMmX5YcAijiAvtW4Ove82lT4aLXm+FL8XmCYc+61hFNG1QLf8q2nMfSQ==} - - /@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@16.14.0)(react-router-dom@6.24.1)(react@16.14.0): - resolution: {integrity: sha512-PltiGPAUVyekEOun9BMte3H2AmFsihiLisobjax5NxdkpDurvrgUR9xCUh7qKkoQQHq4N1Y5crc8UpCg+hkLmQ==} - peerDependencies: - '@babel/runtime-corejs3': ^7.11.2 - react: '>=16.8' - react-dom: '>=16.8' - react-router-dom: ^6.3.0 - dependencies: - '@asgardeo/auth-spa': 3.0.3 - '@babel/runtime-corejs3': 7.24.7 - react: 16.14.0 - react-dom: 16.14.0(react@16.14.0) - react-router-dom: 6.24.1(react-dom@16.14.0)(react@16.14.0) - transitivePeerDependencies: - - debug - dev: false - - /@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1): - resolution: {integrity: sha512-PltiGPAUVyekEOun9BMte3H2AmFsihiLisobjax5NxdkpDurvrgUR9xCUh7qKkoQQHq4N1Y5crc8UpCg+hkLmQ==} - peerDependencies: - '@babel/runtime-corejs3': ^7.11.2 - react: '>=16.8' - react-dom: '>=16.8' - react-router-dom: ^6.3.0 - dependencies: - '@asgardeo/auth-spa': 3.0.3 - '@babel/runtime-corejs3': 7.24.7 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-router-dom: 4.3.1(react@18.3.1) - transitivePeerDependencies: - - debug - - /@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@6.24.1)(react@18.3.1): - resolution: {integrity: sha512-PltiGPAUVyekEOun9BMte3H2AmFsihiLisobjax5NxdkpDurvrgUR9xCUh7qKkoQQHq4N1Y5crc8UpCg+hkLmQ==} - peerDependencies: - '@babel/runtime-corejs3': ^7.11.2 - react: '>=16.8' - react-dom: '>=16.8' - react-router-dom: ^6.3.0 - dependencies: - '@asgardeo/auth-spa': 3.0.3 - '@babel/runtime-corejs3': 7.24.7 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-router-dom: 6.24.1(react-dom@18.3.1)(react@18.3.1) - transitivePeerDependencies: - - debug - dev: true - - /@asgardeo/auth-spa@3.0.3: - resolution: {integrity: sha512-2iRy6Si/xl68EsUV92IuMz0s9/8nFq/a+63Ui0Xr2Ysjc3YsWIO0zVmdpqevZ1J9yzGb9Fyy7uqlKE0QY7m8pA==} - dependencies: - '@asgardeo/auth-js': 5.0.1 - await-semaphore: 0.1.3 - axios: 0.26.1 - base64url: 3.0.1 - buffer: 6.0.3 - fast-sha256: 1.3.0 - jose: 4.15.7 - randombytes: 2.1.0 - transitivePeerDependencies: - - debug - - /@aw-web-design/x-default-browser@1.4.126: - resolution: {integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==} - hasBin: true - dependencies: - default-browser-id: 3.0.0 - dev: true - - '@babel/cli@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@jridgewell/trace-mapping': 0.3.25 - commander: 6.2.1 - convert-source-map: 2.0.0 - fs-readdir-recursive: 1.1.0 - glob: 7.2.3 - make-dir: 2.1.0 - slash: 2.0.0 - optionalDependencies: - '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3 - chokidar: 3.6.0 - - '@babel/code-frame@7.12.11': - dependencies: - '@babel/highlight': 7.24.7 - - '@babel/code-frame@7.24.7': - dependencies: - '@babel/highlight': 7.24.7 - picocolors: 1.0.1 - - '@babel/compat-data@7.24.7': {} - - '@babel/core@7.12.9': - dependencies: - '@babel/code-frame': 7.24.7 - '@babel/generator': 7.24.7 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.12.9) - '@babel/helpers': 7.24.7 - '@babel/parser': 7.24.7 - '@babel/template': 7.24.7 - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - convert-source-map: 1.9.0 - debug: 4.3.5(supports-color@8.1.1) - gensync: 1.0.0-beta.2 - json5: 2.2.3 - lodash: 4.17.21 - resolve: 1.22.8 - semver: 5.7.2 - source-map: 0.5.7 - transitivePeerDependencies: - - supports-color - - '@babel/core@7.24.7': - dependencies: - '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.24.7 - '@babel/generator': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) - '@babel/helpers': 7.24.7 - '@babel/parser': 7.24.7 - '@babel/template': 7.24.7 - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - convert-source-map: 2.0.0 - debug: 4.3.5(supports-color@8.1.1) - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/generator@7.24.7': - dependencies: - '@babel/types': 7.24.7 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 2.5.2 - - '@babel/helper-annotate-as-pure@7.24.7': - dependencies: - '@babel/types': 7.24.7 - - '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7': - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-compilation-targets@7.24.7': - dependencies: - '@babel/compat-data': 7.24.7 - '@babel/helper-validator-option': 7.24.7 - browserslist: 4.23.1 - lru-cache: 5.1.1 - semver: 6.3.1 - - '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.24.7 - '@babel/helper-optimise-call-expression': 7.24.7 - '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7) - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - regexpu-core: 5.3.2 - semver: 6.3.1 - - '@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/traverse': 7.24.7 - debug: 4.3.5(supports-color@8.1.1) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - debug: 4.3.5(supports-color@8.1.1) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - - '@babel/helper-environment-visitor@7.24.7': - dependencies: - '@babel/types': 7.24.7 - - '@babel/helper-function-name@7.24.7': - dependencies: - '@babel/template': 7.24.7 - '@babel/types': 7.24.7 - - '@babel/helper-hoist-variables@7.24.7': - dependencies: - '@babel/types': 7.24.7 - - '@babel/helper-member-expression-to-functions@7.24.7': - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-module-imports@7.24.7': - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-module-imports@7.24.7(supports-color@5.5.0)': - dependencies: - '@babel/traverse': 7.24.7(supports-color@5.5.0) - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-module-transforms@7.24.7(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-simple-access': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/helper-validator-identifier': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-simple-access': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/helper-validator-identifier': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-optimise-call-expression@7.24.7': - dependencies: - '@babel/types': 7.24.7 - - '@babel/helper-plugin-utils@7.10.4': {} - - '@babel/helper-plugin-utils@7.24.7': {} - - '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-wrap-function': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.24.7 - '@babel/helper-optimise-call-expression': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-simple-access@7.24.7': - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-skip-transparent-expression-wrappers@7.24.7': - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-split-export-declaration@7.24.7': - dependencies: - '@babel/types': 7.24.7 - - '@babel/helper-string-parser@7.24.7': {} - - '@babel/helper-validator-identifier@7.24.7': {} - - '@babel/helper-validator-option@7.24.7': {} - - '@babel/helper-wrap-function@7.24.7': - dependencies: - '@babel/helper-function-name': 7.24.7 - '@babel/template': 7.24.7 - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helpers@7.24.7': - dependencies: - '@babel/template': 7.24.7 - '@babel/types': 7.24.7 - - '@babel/highlight@7.24.7': - dependencies: - '@babel/helper-validator-identifier': 7.24.7 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.0.1 - - '@babel/parser@7.24.7': - dependencies: - '@babel/types': 7.24.7 - - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-proposal-export-default-from@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.24.7) - - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) - - '@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.12.9) - - '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.7)': - dependencies: - '@babel/compat-data': 7.24.7 - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7) - - '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - - '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-export-default-from@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7)': + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7): + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9)': + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9): + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7)': + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7): + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7)': + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7): + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7)': + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7): + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.7)': + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.7): + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7)': + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7): + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.7)': + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.7): + resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-environment-visitor': 7.24.7 @@ -34135,7 +20670,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-module-imports': 7.24.7 @@ -34144,17 +20683,29 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) @@ -34162,7 +20713,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) @@ -34171,7 +20726,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-classes@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-classes@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 @@ -34185,35 +20744,59 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/template': 7.24.7 - '@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7 @@ -34221,19 +20804,31 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-flow-strip-types@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-flow-strip-types@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-cjRKJ7FobOH2eakx7Ja+KpJRj8+y+/SiB3ooYm/n2UJfxu0oEaOoxOinitkJcPqv9KxS0kxTGPUaR7L2XcXDXA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -34241,36 +20836,60 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-compilation-targets': 7.24.7 '@babel/helper-function-name': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7) - '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) @@ -34278,7 +20897,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) @@ -34287,7 +20910,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-hoist-variables': 7.24.7 @@ -34297,7 +20924,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) @@ -34305,30 +20936,50 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7) - '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-compilation-targets': 7.24.7 @@ -34336,7 +20987,11 @@ snapshots: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7) '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -34344,13 +20999,21 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -34359,17 +21022,29 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.12.9)': + /@babel/plugin-transform-parameters@7.24.7(@babel/core@7.12.9): + resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) @@ -34377,7 +21052,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 @@ -34387,29 +21066,49 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-react-constant-elements@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-react-constant-elements@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-7LidzZfUXyfZ8/buRW6qIIHBY8wAZ1OrY9c/wTr8YhZ6vMPo+Uc/CVFLYY1spZrEQlD4w5u8wjqk5NQ3OVqQKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 @@ -34420,24 +21119,40 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 regenerator-transform: 0.15.2 - '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-runtime@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-runtime@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-module-imports': 7.24.7 @@ -34448,13 +21163,22 @@ snapshots: semver: 6.3.1 transitivePeerDependencies: - supports-color + dev: true - '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -34462,22 +21186,38 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 @@ -34487,35 +21227,57 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - '@babel/polyfill@7.12.1': + /@babel/polyfill@7.12.1: + resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==} + deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information. dependencies: core-js: 2.6.12 regenerator-runtime: 0.13.11 - '@babel/preset-env@7.24.7(@babel/core@7.24.7)': + /@babel/preset-env@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.24.7 '@babel/core': 7.24.7 @@ -34602,21 +21364,32 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/preset-flow@7.24.7(@babel/core@7.24.7)': + /@babel/preset-flow@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/helper-validator-option': 7.24.7 '@babel/plugin-transform-flow-strip-types': 7.24.7(@babel/core@7.24.7) - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.7)': + /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.7): + resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/types': 7.24.7 esutils: 2.0.3 - '@babel/preset-react@7.24.7(@babel/core@7.24.7)': + /@babel/preset-react@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -34628,7 +21401,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/preset-typescript@7.24.7(@babel/core@7.24.7)': + /@babel/preset-typescript@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -34639,7 +21416,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/register@7.24.6(@babel/core@7.24.7)': + /@babel/register@7.24.6(@babel/core@7.24.7): + resolution: {integrity: sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 clone-deep: 4.0.1 @@ -34648,24 +21429,33 @@ snapshots: pirates: 4.0.6 source-map-support: 0.5.21 - '@babel/regjsgen@0.8.0': {} + /@babel/regjsgen@0.8.0: + resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} - '@babel/runtime-corejs3@7.24.7': + /@babel/runtime-corejs3@7.24.7: + resolution: {integrity: sha512-eytSX6JLBY6PVAeQa2bFlDx/7Mmln/gaEpsit5a3WEvjGfiIytEsgAwuIXCPM0xvw0v0cJn3ilq0/TvXrW0kgA==} + engines: {node: '>=6.9.0'} dependencies: core-js-pure: 3.37.1 regenerator-runtime: 0.14.1 - '@babel/runtime@7.24.7': + /@babel/runtime@7.24.7: + resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==} + engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.14.1 - '@babel/template@7.24.7': + /@babel/template@7.24.7: + resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==} + engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.24.7 '@babel/parser': 7.24.7 '@babel/types': 7.24.7 - '@babel/traverse@7.24.7': + /@babel/traverse@7.24.7: + resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==} + engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.24.7 '@babel/generator': 7.24.7 @@ -34675,12 +21465,14 @@ snapshots: '@babel/helper-split-export-declaration': 7.24.7 '@babel/parser': 7.24.7 '@babel/types': 7.24.7 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/traverse@7.24.7(supports-color@5.5.0)': + /@babel/traverse@7.24.7(supports-color@5.5.0): + resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==} + engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.24.7 '@babel/generator': 7.24.7 @@ -34694,8 +21486,11 @@ snapshots: globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: false - '@babel/types@7.24.7': + /@babel/types@7.24.7: + resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==} + engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.24.7 '@babel/helper-validator-identifier': 7.24.7 @@ -34704,11 +21499,16 @@ snapshots: /@base2/pretty-print-object@1.0.1: resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} - '@bcoe/v8-coverage@0.2.3': {} + /@bcoe/v8-coverage@0.2.3: + resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} - '@braintree/sanitize-url@5.0.2': {} + /@braintree/sanitize-url@5.0.2: + resolution: {integrity: sha512-NBEJlHWrhQucLhZGHtSxM2loSaNUMajC7KOYJLyfcdW/6goVoff2HoYI3bz8YCDN0wKGbxtUL0gx2dvHpvnWlw==} + deprecated: Potential XSS vulnerability patched in v6.0.0. + dev: false - '@changesets/apply-release-plan@7.0.3': + /@changesets/apply-release-plan@7.0.3: + resolution: {integrity: sha512-klL6LCdmfbEe9oyfLxnidIf/stFXmrbFO/3gT5LU5pcyoZytzJe4gWpTBx3BPmyNPl16dZ1xrkcW7b98e3tYkA==} dependencies: '@babel/runtime': 7.24.7 '@changesets/config': 3.0.1 @@ -34724,8 +21524,10 @@ snapshots: prettier: 2.8.8 resolve-from: 5.0.0 semver: 7.6.2 + dev: true - '@changesets/assemble-release-plan@6.0.2': + /@changesets/assemble-release-plan@6.0.2: + resolution: {integrity: sha512-n9/Tdq+ze+iUtjmq0mZO3pEhJTKkku9hUxtUadW30jlN7kONqJG3O6ALeXrmc6gsi/nvoCuKjqEJ68Hk8RbMTQ==} dependencies: '@babel/runtime': 7.24.7 '@changesets/errors': 0.2.0 @@ -34734,20 +21536,27 @@ snapshots: '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 semver: 7.6.2 + dev: true - '@changesets/changelog-git@0.2.0': + /@changesets/changelog-git@0.2.0: + resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} dependencies: '@changesets/types': 6.0.0 + dev: true - '@changesets/changelog-github@0.4.8(encoding@0.1.13)': + /@changesets/changelog-github@0.4.8: + resolution: {integrity: sha512-jR1DHibkMAb5v/8ym77E4AMNWZKB5NPzw5a5Wtqm1JepAuIF+hrKp2u04NKM14oBZhHglkCfrla9uq8ORnK/dw==} dependencies: - '@changesets/get-github-info': 0.5.2(encoding@0.1.13) + '@changesets/get-github-info': 0.5.2 '@changesets/types': 5.2.1 dotenv: 8.6.0 transitivePeerDependencies: - encoding + dev: true - '@changesets/cli@2.27.5': + /@changesets/cli@2.27.5: + resolution: {integrity: sha512-UVppOvzCjjylBenFcwcZNG5IaZ8jsIaEVraV/pbXgukYNb0Oqa0d8UWb0LkYzA1Bf1HmUrOfccFcRLheRuA7pA==} + hasBin: true dependencies: '@babel/runtime': 7.24.7 '@changesets/apply-release-plan': 7.0.3 @@ -34783,8 +21592,10 @@ snapshots: spawndamnit: 2.0.0 term-size: 2.2.1 tty-table: 4.2.3 + dev: true - '@changesets/config@3.0.1': + /@changesets/config@3.0.1: + resolution: {integrity: sha512-nCr8pOemUjvGJ8aUu8TYVjqnUL+++bFOQHBVmtNbLvKzIDkN/uiP/Z4RKmr7NNaiujIURHySDEGFPftR4GbTUA==} dependencies: '@changesets/errors': 0.2.0 '@changesets/get-dependents-graph': 2.1.0 @@ -34793,27 +21604,35 @@ snapshots: '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 micromatch: 4.0.7 + dev: true - '@changesets/errors@0.2.0': + /@changesets/errors@0.2.0: + resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} dependencies: extendable-error: 0.1.7 + dev: true - '@changesets/get-dependents-graph@2.1.0': + /@changesets/get-dependents-graph@2.1.0: + resolution: {integrity: sha512-QOt6pQq9RVXKGHPVvyKimJDYJumx7p4DO5MO9AhRJYgAPgv0emhNqAqqysSVKHBm4sxKlGN4S1zXOIb5yCFuhQ==} dependencies: '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 chalk: 2.4.2 fs-extra: 7.0.1 semver: 7.6.2 + dev: true - '@changesets/get-github-info@0.5.2(encoding@0.1.13)': + /@changesets/get-github-info@0.5.2: + resolution: {integrity: sha512-JppheLu7S114aEs157fOZDjFqUDpm7eHdq5E8SSR0gUBTEK0cNSHsrSR5a66xs0z3RWuo46QvA3vawp8BxDHvg==} dependencies: dataloader: 1.4.0 - node-fetch: 2.7.0(encoding@0.1.13) + node-fetch: 2.7.0 transitivePeerDependencies: - encoding + dev: true - '@changesets/get-release-plan@4.0.2': + /@changesets/get-release-plan@4.0.2: + resolution: {integrity: sha512-rOalz7nMuMV2vyeP7KBeAhqEB7FM2GFPO5RQSoOoUKKH9L6wW3QyPA2K+/rG9kBrWl2HckPVES73/AuwPvbH3w==} dependencies: '@babel/runtime': 7.24.7 '@changesets/assemble-release-plan': 6.0.2 @@ -34822,10 +21641,14 @@ snapshots: '@changesets/read': 0.6.0 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 + dev: true - '@changesets/get-version-range-type@0.4.0': {} + /@changesets/get-version-range-type@0.4.0: + resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} + dev: true - '@changesets/git@3.0.0': + /@changesets/git@3.0.0: + resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} dependencies: '@babel/runtime': 7.24.7 '@changesets/errors': 0.2.0 @@ -34834,25 +21657,33 @@ snapshots: is-subdir: 1.2.0 micromatch: 4.0.7 spawndamnit: 2.0.0 + dev: true - '@changesets/logger@0.1.0': + /@changesets/logger@0.1.0: + resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} dependencies: chalk: 2.4.2 + dev: true - '@changesets/parse@0.4.0': + /@changesets/parse@0.4.0: + resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} dependencies: '@changesets/types': 6.0.0 js-yaml: 3.13.1 + dev: true - '@changesets/pre@2.0.0': + /@changesets/pre@2.0.0: + resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} dependencies: '@babel/runtime': 7.24.7 '@changesets/errors': 0.2.0 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 + dev: true - '@changesets/read@0.6.0': + /@changesets/read@0.6.0: + resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} dependencies: '@babel/runtime': 7.24.7 '@changesets/git': 3.0.0 @@ -34862,40 +21693,62 @@ snapshots: chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 + dev: true - '@changesets/should-skip-package@0.1.0': + /@changesets/should-skip-package@0.1.0: + resolution: {integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==} dependencies: '@babel/runtime': 7.24.7 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 + dev: true - '@changesets/types@4.1.0': {} + /@changesets/types@4.1.0: + resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} + dev: true - '@changesets/types@5.2.1': {} + /@changesets/types@5.2.1: + resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==} + dev: true - '@changesets/types@6.0.0': {} + /@changesets/types@6.0.0: + resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} + dev: true - '@changesets/write@0.3.1': + /@changesets/write@0.3.1: + resolution: {integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==} dependencies: '@babel/runtime': 7.24.7 '@changesets/types': 6.0.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 2.8.8 + dev: true - '@cnakazawa/watch@1.0.4': + /@cnakazawa/watch@1.0.4: + resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==} + engines: {node: '>=0.1.95'} + hasBin: true dependencies: exec-sh: 0.3.6 minimist: 1.2.8 - '@colors/colors@1.5.0': + /@colors/colors@1.5.0: + resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} + engines: {node: '>=0.1.90'} + requiresBuild: true optional: true - '@cspotcode/source-map-support@0.8.1': + /@cspotcode/source-map-support@0.8.1: + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} dependencies: '@jridgewell/trace-mapping': 0.3.9 + dev: true - '@cypress/request@2.88.12': + /@cypress/request@2.88.12: + resolution: {integrity: sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==} + engines: {node: '>= 6'} dependencies: aws-sign2: 0.7.0 aws4: 1.13.0 @@ -34915,6 +21768,7 @@ snapshots: tough-cookie: 4.1.4 tunnel-agent: 0.6.0 uuid: 8.3.2 + dev: true /@cypress/xvfb@1.2.4(supports-color@8.1.1): resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} @@ -34923,10 +21777,14 @@ snapshots: lodash.once: 4.1.1 transitivePeerDependencies: - supports-color + dev: true - '@discoveryjs/json-ext@0.5.7': {} + /@discoveryjs/json-ext@0.5.7: + resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} + engines: {node: '>=10.0.0'} - '@emotion/babel-plugin@11.11.0': + /@emotion/babel-plugin@11.11.0: + resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} dependencies: '@babel/helper-module-imports': 7.24.7 '@babel/runtime': 7.24.7 @@ -34941,6 +21799,7 @@ snapshots: stylis: 4.2.0 transitivePeerDependencies: - supports-color + dev: false /@emotion/cache@11.11.0: resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==} @@ -34950,27 +21809,40 @@ snapshots: '@emotion/utils': 1.2.1 '@emotion/weak-memoize': 0.3.1 stylis: 4.2.0 + dev: false /@emotion/hash@0.9.1: resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==} dev: false - '@emotion/is-prop-valid@0.8.8': + /@emotion/is-prop-valid@0.8.8: + resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} dependencies: '@emotion/memoize': 0.7.4 dev: false - '@emotion/is-prop-valid@1.2.2': + /@emotion/is-prop-valid@1.2.2: + resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==} dependencies: '@emotion/memoize': 0.8.1 + dev: false /@emotion/memoize@0.7.4: resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} dev: false - '@emotion/memoize@0.8.1': {} + /@emotion/memoize@0.8.1: + resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} + dev: false - '@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1)': + /@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1): + resolution: {integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==} + peerDependencies: + '@types/react': '*' + react: '>=16.8.0' + peerDependenciesMeta: + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 '@emotion/babel-plugin': 11.11.0 @@ -34979,12 +21851,12 @@ snapshots: '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@emotion/utils': 1.2.1 '@emotion/weak-memoize': 0.3.1 + '@types/react': 18.0.18 hoist-non-react-statics: 3.3.2 react: 18.3.1 - optionalDependencies: - '@types/react': 18.0.18 transitivePeerDependencies: - supports-color + dev: false /@emotion/serialize@1.1.4: resolution: {integrity: sha512-RIN04MBT8g+FnDwgvIUi8czvr1LU1alUMI05LekWB5DGyTm8cCBMCRpq3GqaiyEDRptEXOyXnvZ58GZYu4kBxQ==} @@ -34994,6 +21866,7 @@ snapshots: '@emotion/unitless': 0.8.1 '@emotion/utils': 1.2.1 csstype: 3.1.3 + dev: false /@emotion/sheet@1.2.2: resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} @@ -35016,21 +21889,27 @@ snapshots: '@emotion/serialize': 1.1.4 '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@emotion/utils': 1.2.1 - react: 18.3.1 - optionalDependencies: '@types/react': 18.0.18 + react: 18.3.1 transitivePeerDependencies: - supports-color + dev: false /@emotion/unitless@0.7.5: resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==} dev: false - '@emotion/unitless@0.8.1': {} + /@emotion/unitless@0.8.1: + resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} + dev: false - '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1)': + /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1): + resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} + peerDependencies: + react: '>=16.8.0' dependencies: react: 18.3.1 + dev: false /@emotion/utils@1.2.1: resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} @@ -35224,6 +22103,7 @@ snapshots: dependencies: eslint: 7.32.0 eslint-visitor-keys: 3.4.3 + dev: true /@eslint-community/eslint-utils@4.4.0(eslint@8.46.0): resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} @@ -35245,7 +22125,7 @@ snapshots: engines: {node: ^10.12.0 || >=12.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) espree: 7.3.1 globals: 13.24.0 ignore: 4.0.6 @@ -35291,25 +22171,40 @@ snapshots: '@babel/runtime': 7.24.7 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + dev: false - '@fluentui/react-component-ref@0.63.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@fluentui/react-component-ref@0.63.1(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-8MkXX4+R3i80msdbD4rFpEB4WWq2UDvGwG386g3ckIWbekdvN9z2kWAd9OXhRGqB7QeOsoAGWocp6gAMCivRlw==} + peerDependencies: + react: ^16.8.0 || ^17 || ^18 + react-dom: ^16.8.0 || ^17 || ^18 dependencies: '@babel/runtime': 7.24.7 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 16.13.1 + dev: false - '@gar/promisify@1.1.3': {} + /@gar/promisify@1.1.3: + resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} - '@gilbarbara/deep-equal@0.1.2': {} + /@gilbarbara/deep-equal@0.1.2: + resolution: {integrity: sha512-jk+qzItoEb0D0xSSmrKDDzf9sheQj/BAPxlgNxgmOaA3mxpUa6ndJLYGZKsJnIVEQSD8zcTbyILz7I0HcnBCRA==} + dev: false - '@gilbarbara/deep-equal@0.3.1': {} + /@gilbarbara/deep-equal@0.3.1: + resolution: {integrity: sha512-I7xWjLs2YSVMc5gGx1Z3ZG1lgFpITPndpi8Ku55GeEIKpACCPQNS/OTqQbxgTCfq0Ncvcc+CrFov96itVh6Qvw==} + dev: false - '@hapi/hoek@9.3.0': {} + /@hapi/hoek@9.3.0: + resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} + dev: false - '@hapi/topo@5.1.0': + /@hapi/topo@5.1.0: + resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} dependencies: '@hapi/hoek': 9.3.0 + dev: false /@humanwhocodes/config-array@0.11.14: resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} @@ -35329,7 +22224,7 @@ snapshots: deprecated: Use @eslint/config-array instead dependencies: '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -35353,22 +22248,32 @@ snapshots: engines: {node: '>=6.9.0'} dev: true - '@icons/material@0.2.4(react@18.3.1)': + /@icons/material@0.2.4(react@18.3.1): + resolution: {integrity: sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==} + peerDependencies: + react: '*' dependencies: react: 18.3.1 + dev: false - '@isaacs/cliui@8.0.2': + /@isaacs/cliui@8.0.2: + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} dependencies: string-width: 5.1.2 - string-width-cjs: string-width@4.2.3 + string-width-cjs: /string-width@4.2.3 strip-ansi: 7.1.0 - strip-ansi-cjs: strip-ansi@6.0.1 + strip-ansi-cjs: /strip-ansi@6.0.1 wrap-ansi: 8.1.0 wrap-ansi-cjs: /wrap-ansi@7.0.0 - '@isaacs/string-locale-compare@1.1.0': {} + /@isaacs/string-locale-compare@1.1.0: + resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==} + dev: true - '@istanbuljs/load-nyc-config@1.1.0': + /@istanbuljs/load-nyc-config@1.1.0: + resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} + engines: {node: '>=8'} dependencies: camelcase: 5.3.1 find-up: 4.1.0 @@ -35376,9 +22281,13 @@ snapshots: js-yaml: 3.13.1 resolve-from: 5.0.0 - '@istanbuljs/schema@0.1.3': {} + /@istanbuljs/schema@0.1.3: + resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + engines: {node: '>=8'} - '@jest/console@26.6.2': + /@jest/console@26.6.2: + resolution: {integrity: sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 '@types/node': 13.13.52 @@ -35386,6 +22295,7 @@ snapshots: jest-message-util: 26.6.2 jest-util: 26.6.2 slash: 3.0.0 + dev: true /@jest/console@29.7.0: resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} @@ -35398,7 +22308,9 @@ snapshots: jest-util: 29.7.0 slash: 3.0.0 - '@jest/core@26.6.3(ts-node@8.10.2(typescript@4.9.5))': + /@jest/core@26.6.3: + resolution: {integrity: sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/console': 26.6.2 '@jest/reporters': 26.6.2 @@ -35411,14 +22323,14 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 26.6.2 - jest-config: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-config: 26.6.3 jest-haste-map: 26.6.2 jest-message-util: 26.6.2 jest-regex-util: 26.0.0 jest-resolve: 26.6.2 jest-resolve-dependencies: 26.6.3 - jest-runner: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) - jest-runtime: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-runner: 26.6.3 + jest-runtime: 26.6.3 jest-snapshot: 26.6.2 jest-util: 26.6.2 jest-validate: 26.6.2 @@ -35434,11 +22346,19 @@ snapshots: - supports-color - ts-node - utf-8-validate + dev: true - '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))': + /@jest/core@29.7.0(ts-node@8.10.2): + resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true dependencies: '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0(node-notifier@8.0.2) + '@jest/reporters': 29.7.0 '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 @@ -35449,7 +22369,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)) + jest-config: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -35465,19 +22385,20 @@ snapshots: pretty-format: 29.7.0 slash: 3.0.0 strip-ansi: 6.0.1 - optionalDependencies: - node-notifier: 8.0.2 transitivePeerDependencies: - babel-plugin-macros - supports-color - ts-node - '@jest/environment@26.6.2': + /@jest/environment@26.6.2: + resolution: {integrity: sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/fake-timers': 26.6.2 '@jest/types': 26.6.2 '@types/node': 13.13.52 jest-mock: 26.6.2 + dev: true /@jest/environment@29.7.0: resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} @@ -35503,7 +22424,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@jest/fake-timers@26.6.2': + /@jest/fake-timers@26.6.2: + resolution: {integrity: sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 '@sinonjs/fake-timers': 6.0.1 @@ -35511,6 +22434,7 @@ snapshots: jest-message-util: 26.6.2 jest-mock: 26.6.2 jest-util: 26.6.2 + dev: true /@jest/fake-timers@29.7.0: resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} @@ -35523,11 +22447,14 @@ snapshots: jest-mock: 29.7.0 jest-util: 29.7.0 - '@jest/globals@26.6.2': + /@jest/globals@26.6.2: + resolution: {integrity: sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/environment': 26.6.2 '@jest/types': 26.6.2 expect: 26.6.2 + dev: true /@jest/globals@29.7.0: resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} @@ -35540,7 +22467,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@jest/reporters@26.6.2': + /@jest/reporters@26.6.2: + resolution: {integrity: sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==} + engines: {node: '>= 10.14.2'} dependencies: '@bcoe/v8-coverage': 0.2.3 '@jest/console': 26.6.2 @@ -35570,6 +22499,7 @@ snapshots: node-notifier: 8.0.2 transitivePeerDependencies: - supports-color + dev: true /@jest/reporters@29.7.0: resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} @@ -35604,8 +22534,6 @@ snapshots: string-length: 4.0.2 strip-ansi: 6.0.1 v8-to-istanbul: 9.3.0 - optionalDependencies: - node-notifier: 8.0.2 transitivePeerDependencies: - supports-color @@ -35615,11 +22543,14 @@ snapshots: dependencies: '@sinclair/typebox': 0.27.8 - '@jest/source-map@26.6.2': + /@jest/source-map@26.6.2: + resolution: {integrity: sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==} + engines: {node: '>= 10.14.2'} dependencies: callsites: 3.1.0 graceful-fs: 4.2.11 source-map: 0.6.1 + dev: true /@jest/source-map@29.6.3: resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} @@ -35629,18 +22560,15 @@ snapshots: callsites: 3.1.0 graceful-fs: 4.2.11 - '@jest/source-map@29.6.3': - dependencies: - '@jridgewell/trace-mapping': 0.3.25 - callsites: 3.1.0 - graceful-fs: 4.2.11 - - '@jest/test-result@26.6.2': + /@jest/test-result@26.6.2: + resolution: {integrity: sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/console': 26.6.2 '@jest/types': 26.6.2 '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 + dev: true /@jest/test-result@29.7.0: resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} @@ -35651,19 +22579,22 @@ snapshots: '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - '@jest/test-sequencer@26.6.3(ts-node@8.10.2(typescript@4.9.5))': + /@jest/test-sequencer@26.6.3: + resolution: {integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/test-result': 26.6.2 graceful-fs: 4.2.11 jest-haste-map: 26.6.2 - jest-runner: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) - jest-runtime: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-runner: 26.6.3 + jest-runtime: 26.6.3 transitivePeerDependencies: - bufferutil - canvas - supports-color - ts-node - utf-8-validate + dev: true /@jest/test-sequencer@29.7.0: resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} @@ -35674,7 +22605,9 @@ snapshots: jest-haste-map: 29.7.0 slash: 3.0.0 - '@jest/transform@26.6.2': + /@jest/transform@26.6.2: + resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} + engines: {node: '>= 10.14.2'} dependencies: '@babel/core': 7.24.7 '@jest/types': 26.6.2 @@ -35716,7 +22649,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@jest/types@26.6.2': + /@jest/types@26.6.2: + resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} + engines: {node: '>= 10.14.2'} dependencies: '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 @@ -35735,17 +22670,24 @@ snapshots: '@types/yargs': 17.0.32 chalk: 4.1.2 - '@jridgewell/gen-mapping@0.3.5': + /@jridgewell/gen-mapping@0.3.5: + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} + engines: {node: '>=6.0.0'} dependencies: '@jridgewell/set-array': 1.2.1 '@jridgewell/sourcemap-codec': 1.5.0 '@jridgewell/trace-mapping': 0.3.25 - '@jridgewell/resolve-uri@3.1.2': {} + /@jridgewell/resolve-uri@3.1.2: + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} - '@jridgewell/set-array@1.2.1': {} + /@jridgewell/set-array@1.2.1: + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} - '@jridgewell/source-map@0.3.6': + /@jridgewell/source-map@0.3.6: + resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} dependencies: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 @@ -35753,20 +22695,27 @@ snapshots: /@jridgewell/sourcemap-codec@1.5.0: resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} - '@jridgewell/trace-mapping@0.3.25': + /@jridgewell/trace-mapping@0.3.25: + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} dependencies: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 - '@jridgewell/trace-mapping@0.3.9': + /@jridgewell/trace-mapping@0.3.9: + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} dependencies: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 dev: true - '@leichtgewicht/ip-codec@2.0.5': {} + /@leichtgewicht/ip-codec@2.0.5: + resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} + dev: true - '@lerna/add@5.6.2': + /@lerna/add@5.6.2: + resolution: {integrity: sha512-NHrm7kYiqP+EviguY7/NltJ3G9vGmJW6v2BASUOhP9FZDhYbq3O+rCDlFdoVRNtcyrSg90rZFMOWHph4KOoCQQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/bootstrap': 5.6.2 '@lerna/command': 5.6.2 @@ -35781,8 +22730,12 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@lerna/bootstrap@5.6.2': + /@lerna/bootstrap@5.6.2: + resolution: {integrity: sha512-S2fMOEXbef7nrybQhzBywIGSLhuiQ5huPp1sU+v9Y6XEBsy/2IA+lb0gsZosvPqlRfMtiaFstL+QunaBhlWECA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/command': 5.6.2 '@lerna/filter-options': 5.6.2 @@ -35809,27 +22762,42 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@lerna/changed@5.6.2': + /@lerna/changed@5.6.2: + resolution: {integrity: sha512-uUgrkdj1eYJHQGsXXlpH5oEAfu3x0qzeTjgvpdNrxHEdQWi7zWiW59hRadmiImc14uJJYIwVK5q/QLugrsdGFQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/collect-updates': 5.6.2 '@lerna/command': 5.6.2 '@lerna/listable': 5.6.2 '@lerna/output': 5.6.2 + dev: true - '@lerna/check-working-tree@5.6.2': + /@lerna/check-working-tree@5.6.2: + resolution: {integrity: sha512-6Vf3IB6p+iNIubwVgr8A/KOmGh5xb4SyRmhFtAVqe33yWl2p3yc+mU5nGoz4ET3JLF1T9MhsePj0hNt6qyOTLQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/collect-uncommitted': 5.6.2 '@lerna/describe-ref': 5.6.2 '@lerna/validation-error': 5.6.2 + dev: true - '@lerna/child-process@5.6.2': + /@lerna/child-process@5.6.2: + resolution: {integrity: sha512-QIOQ3jIbWdduHd5892fbo3u7/dQgbhzEBB7cvf+Ys/iCPP8UQrBECi1lfRgA4kcTKC2MyMz0SoyXZz/lFcXc3A==} + engines: {node: ^14.15.0 || >=16.0.0} dependencies: chalk: 4.1.2 execa: 5.1.1 strong-log-transformer: 2.1.0 + dev: true - '@lerna/clean@5.6.2': + /@lerna/clean@5.6.2: + resolution: {integrity: sha512-A7j8r0Hk2pGyLUyaCmx4keNHen1L/KdcOjb4nR6X8GtTJR5AeA47a8rRKOCz9wwdyMPlo2Dau7d3RV9viv7a5g==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/command': 5.6.2 '@lerna/filter-options': 5.6.2 @@ -35839,29 +22807,45 @@ snapshots: p-map: 4.0.0 p-map-series: 2.1.0 p-waterfall: 2.1.1 + dev: true - '@lerna/cli@5.6.2': + /@lerna/cli@5.6.2: + resolution: {integrity: sha512-w0NRIEqDOmYKlA5t0iyqx0hbY7zcozvApmfvwF0lhkuhf3k6LRAFSamtimGQWicC779a7J2NXw4ASuBV47Fs1Q==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/global-options': 5.6.2 dedent: 0.7.0 npmlog: 6.0.2 yargs: 16.2.0 + dev: true - '@lerna/collect-uncommitted@5.6.2': + /@lerna/collect-uncommitted@5.6.2: + resolution: {integrity: sha512-i0jhxpypyOsW2PpPwIw4xg6EPh7/N3YuiI6P2yL7PynZ8nOv8DkIdoyMkhUP4gALjBfckH8Bj94eIaKMviqW4w==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 chalk: 4.1.2 npmlog: 6.0.2 + dev: true - '@lerna/collect-updates@5.6.2': + /@lerna/collect-updates@5.6.2: + resolution: {integrity: sha512-DdTK13X6PIsh9HINiMniFeiivAizR/1FBB+hDVe6tOhsXFBfjHMw1xZhXlE+mYIoFmDm1UFK7zvQSexoaxRqFA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 '@lerna/describe-ref': 5.6.2 minimatch: 3.1.2 npmlog: 6.0.2 slash: 3.0.0 + dev: true - '@lerna/command@5.6.2': + /@lerna/command@5.6.2: + resolution: {integrity: sha512-eLVGI9TmxcaGt1M7TXGhhBZoeWOtOedMiH7NuCGHtL6TMJ9k+SCExyx+KpNmE6ImyNOzws6EvYLPLjftiqmoaA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 '@lerna/package-graph': 5.6.2 @@ -35873,8 +22857,12 @@ snapshots: execa: 5.1.1 is-ci: 2.0.0 npmlog: 6.0.2 + dev: true - '@lerna/conventional-commits@5.6.2': + /@lerna/conventional-commits@5.6.2: + resolution: {integrity: sha512-fPrJpYJhxCgY2uyOCTcAAC6+T6lUAtpEGxLbjWHWTb13oKKEygp9THoFpe6SbAD0fYMb3jeZCZCqNofM62rmuA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/validation-error': 5.6.2 conventional-changelog-angular: 5.0.13 @@ -35886,14 +22874,21 @@ snapshots: npmlog: 6.0.2 pify: 5.0.0 semver: 7.6.2 + dev: true - '@lerna/create-symlink@5.6.2': + /@lerna/create-symlink@5.6.2: + resolution: {integrity: sha512-0WIs3P6ohPVh2+t5axrLZDE5Dt7fe3Kv0Auj0sBiBd6MmKZ2oS76apIl0Bspdbv8jX8+TRKGv6ib0280D0dtEw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: cmd-shim: 5.0.0 fs-extra: 9.1.0 npmlog: 6.0.2 + dev: true - '@lerna/create@5.6.2': + /@lerna/create@5.6.2: + resolution: {integrity: sha512-+Y5cMUxMNXjTTU9IHpgRYIwKo39w+blui1P+s+qYlZUSCUAew0xNpOBG8iN0Nc5X9op4U094oIdHxv7Dyz6tWQ==} + engines: {node: ^14.15.0 || >=16.0.0} dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 @@ -35914,20 +22909,32 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@lerna/describe-ref@5.6.2': + /@lerna/describe-ref@5.6.2: + resolution: {integrity: sha512-UqU0N77aT1W8duYGir7R+Sk3jsY/c4lhcCEcnayMpFScMbAp0ETGsW04cYsHK29sgg+ZCc5zEwebBqabWhMhnA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 npmlog: 6.0.2 + dev: true - '@lerna/diff@5.6.2': + /@lerna/diff@5.6.2: + resolution: {integrity: sha512-aHKzKvUvUI8vOcshC2Za/bdz+plM3r/ycqUrPqaERzp+kc1pYHyPeXezydVdEmgmmwmyKI5hx4+2QNnzOnun2A==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 '@lerna/validation-error': 5.6.2 npmlog: 6.0.2 + dev: true - '@lerna/exec@5.6.2': + /@lerna/exec@5.6.2: + resolution: {integrity: sha512-meZozok5stK7S0oAVn+kdbTmU+kHj9GTXjW7V8kgwG9ld+JJMTH3nKK1L3mEKyk9TFu9vFWyEOF7HNK6yEOoVg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 @@ -35936,55 +22943,91 @@ snapshots: '@lerna/run-topologically': 5.6.2 '@lerna/validation-error': 5.6.2 p-map: 4.0.0 + dev: true - '@lerna/filter-options@5.6.2': + /@lerna/filter-options@5.6.2: + resolution: {integrity: sha512-4Z0HIhPak2TabTsUqEBQaQeOqgqEt0qyskvsY0oviYvqP/nrJfJBZh4H93jIiNQF59LJCn5Ce3KJJrLExxjlzw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/collect-updates': 5.6.2 '@lerna/filter-packages': 5.6.2 dedent: 0.7.0 npmlog: 6.0.2 + dev: true - '@lerna/filter-packages@5.6.2': + /@lerna/filter-packages@5.6.2: + resolution: {integrity: sha512-el9V2lTEG0Bbz+Omo45hATkRVnChCTJhcTpth19cMJ6mQ4M5H4IgbWCJdFMBi/RpTnOhz9BhJxDbj95kuIvvzw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/validation-error': 5.6.2 multimatch: 5.0.0 npmlog: 6.0.2 + dev: true - '@lerna/get-npm-exec-opts@5.6.2': + /@lerna/get-npm-exec-opts@5.6.2: + resolution: {integrity: sha512-0RbSDJ+QC9D5UWZJh3DN7mBIU1NhBmdHOE289oHSkjDY+uEjdzMPkEUy+wZ8fCzMLFnnNQkAEqNaOAzZ7dmFLA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: npmlog: 6.0.2 + dev: true - '@lerna/get-packed@5.6.2': + /@lerna/get-packed@5.6.2: + resolution: {integrity: sha512-pp5nNDmtrtd21aKHjwwOY5CS7XNIHxINzGa+Jholn1jMDYUtdskpN++ZqYbATGpW831++NJuiuBVyqAWi9xbXg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: fs-extra: 9.1.0 ssri: 9.0.1 tar: 6.2.1 + dev: true - '@lerna/github-client@5.6.2(encoding@0.1.13)': + /@lerna/github-client@5.6.2: + resolution: {integrity: sha512-pjALazZoRZtKqfwLBwmW3HPptVhQm54PvA8s3qhCQ+3JkqrZiIFwkkxNZxs3jwzr+aaSOzfhSzCndg0urb0GXA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 '@octokit/plugin-enterprise-rest': 6.0.1 - '@octokit/rest': 19.0.13(encoding@0.1.13) + '@octokit/rest': 19.0.13 git-url-parse: 13.1.1 npmlog: 6.0.2 transitivePeerDependencies: - encoding + dev: true - '@lerna/gitlab-client@5.6.2(encoding@0.1.13)': + /@lerna/gitlab-client@5.6.2: + resolution: {integrity: sha512-TInJmbrsmYIwUyrRxytjO82KjJbRwm67F7LoZs1shAq6rMvNqi4NxSY9j+hT/939alFmEq1zssoy/caeLXHRfQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: - node-fetch: 2.7.0(encoding@0.1.13) + node-fetch: 2.7.0 npmlog: 6.0.2 transitivePeerDependencies: - encoding + dev: true - '@lerna/global-options@5.6.2': {} + /@lerna/global-options@5.6.2: + resolution: {integrity: sha512-kaKELURXTlczthNJskdOvh6GGMyt24qat0xMoJZ8plYMdofJfhz24h1OFcvB/EwCUwP/XV1+ohE5P+vdktbrEg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + dev: true - '@lerna/has-npm-version@5.6.2': + /@lerna/has-npm-version@5.6.2: + resolution: {integrity: sha512-kXCnSzffmTWsaK0ol30coyCfO8WH26HFbmJjRBzKv7VGkuAIcB6gX2gqRRgNLLlvI+Yrp+JSlpVNVnu15SEH2g==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 semver: 7.6.2 + dev: true - '@lerna/import@5.6.2': + /@lerna/import@5.6.2: + resolution: {integrity: sha512-xQUE49mtcP0z3KUdXBsyvp8rGDz6phuYUoQbhcFRJ7WPcQKzMvtm0XYrER6c2YWEX7QOuDac6tU82P8zTrTBaA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 @@ -35994,14 +23037,22 @@ snapshots: dedent: 0.7.0 fs-extra: 9.1.0 p-map-series: 2.1.0 + dev: true - '@lerna/info@5.6.2': + /@lerna/info@5.6.2: + resolution: {integrity: sha512-MPjY5Olj+fiZHgfEdwXUFRKamdEuLr9Ob/qut8JsB/oQSQ4ALdQfnrOcMT8lJIcC2R67EA5yav2lHPBIkezm8A==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/command': 5.6.2 '@lerna/output': 5.6.2 envinfo: 7.13.0 + dev: true - '@lerna/init@5.6.2': + /@lerna/init@5.6.2: + resolution: {integrity: sha512-ahU3/lgF+J8kdJAQysihFJROHthkIDXfHmvhw7AYnzf94HjxGNXj7nz6i3At1/dM/1nQhR+4/uNR1/OU4tTYYQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 @@ -36009,8 +23060,12 @@ snapshots: fs-extra: 9.1.0 p-map: 4.0.0 write-json-file: 4.3.0 + dev: true - '@lerna/link@5.6.2': + /@lerna/link@5.6.2: + resolution: {integrity: sha512-hXxQ4R3z6rUF1v2x62oIzLyeHL96u7ZBhxqYMJrm763D1VMSDcHKF9CjJfc6J9vH5Z2ZbL6CQg50Hw5mUpJbjg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/command': 5.6.2 '@lerna/package-graph': 5.6.2 @@ -36018,33 +23073,53 @@ snapshots: '@lerna/validation-error': 5.6.2 p-map: 4.0.0 slash: 3.0.0 + dev: true - '@lerna/list@5.6.2': + /@lerna/list@5.6.2: + resolution: {integrity: sha512-WjE5O2tQ3TcS+8LqXUaxi0YdldhxUhNihT5+Gg4vzGdIlrPDioO50Zjo9d8jOU7i3LMIk6EzCma0sZr2CVfEGg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/command': 5.6.2 '@lerna/filter-options': 5.6.2 '@lerna/listable': 5.6.2 '@lerna/output': 5.6.2 + dev: true - '@lerna/listable@5.6.2': + /@lerna/listable@5.6.2: + resolution: {integrity: sha512-8Yp49BwkY/5XqVru38Zko+6Wj/sgbwzJfIGEPy3Qu575r1NA/b9eI1gX22aMsEeXUeGOybR7nWT5ewnPQHjqvA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/query-graph': 5.6.2 chalk: 4.1.2 columnify: 1.6.0 + dev: true - '@lerna/log-packed@5.6.2': + /@lerna/log-packed@5.6.2: + resolution: {integrity: sha512-O9GODG7tMtWk+2fufn2MOkIDBYMRoKBhYMHshO5Aw/VIsH76DIxpX1koMzWfUngM/C70R4uNAKcVWineX4qzIw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: byte-size: 7.0.1 columnify: 1.6.0 has-unicode: 2.0.1 npmlog: 6.0.2 + dev: true - '@lerna/npm-conf@5.6.2': + /@lerna/npm-conf@5.6.2: + resolution: {integrity: sha512-gWDPhw1wjXYXphk/PAghTLexO5T6abVFhXb+KOMCeem366mY0F5bM88PiorL73aErTNUoR8n+V4X29NTZzDZpQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: config-chain: 1.1.13 pify: 5.0.0 + dev: true - '@lerna/npm-dist-tag@5.6.2': + /@lerna/npm-dist-tag@5.6.2: + resolution: {integrity: sha512-t2RmxV6Eog4acXkUI+EzWuYVbeVVY139pANIWS9qtdajfgp4GVXZi1S8mAIb70yeHdNpCp1mhK0xpCrFH9LvGQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/otplease': 5.6.2 npm-package-arg: 8.1.1 @@ -36053,8 +23128,12 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@lerna/npm-install@5.6.2': + /@lerna/npm-install@5.6.2: + resolution: {integrity: sha512-AT226zdEo+uGENd37jwYgdALKJAIJK4pNOfmXWZWzVb9oMOr8I2YSjPYvSYUNG7gOo2YJQU8x5Zd7OShv2924Q==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 '@lerna/get-npm-exec-opts': 5.6.2 @@ -36063,8 +23142,12 @@ snapshots: npmlog: 6.0.2 signal-exit: 3.0.7 write-pkg: 4.0.0 + dev: true - '@lerna/npm-publish@5.6.2': + /@lerna/npm-publish@5.6.2: + resolution: {integrity: sha512-ldSyewCfv9fAeC5xNjL0HKGSUxcC048EJoe/B+KRUmd+IPidvZxMEzRu08lSC/q3V9YeUv9ZvRnxATXOM8CffA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/otplease': 5.6.2 '@lerna/run-lifecycle': 5.6.2 @@ -36077,22 +23160,38 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@lerna/npm-run-script@5.6.2': + /@lerna/npm-run-script@5.6.2: + resolution: {integrity: sha512-MOQoWNcAyJivM8SYp0zELM7vg/Dj07j4YMdxZkey+S1UO0T4/vKBxb575o16hH4WeNzC3Pd7WBlb7C8dLOfNwQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 '@lerna/get-npm-exec-opts': 5.6.2 npmlog: 6.0.2 + dev: true - '@lerna/otplease@5.6.2': + /@lerna/otplease@5.6.2: + resolution: {integrity: sha512-dGS4lzkEQVTMAgji82jp8RK6UK32wlzrBAO4P4iiVHCUTuwNLsY9oeBXvVXSMrosJnl6Hbe0NOvi43mqSucGoA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/prompt': 5.6.2 + dev: true - '@lerna/output@5.6.2': + /@lerna/output@5.6.2: + resolution: {integrity: sha512-++d+bfOQwY66yo7q1XuAvRcqtRHCG45e/awP5xQomTZ6R1rhWiZ3whWdc9Z6lF7+UtBB9toSYYffKU/xc3L0yQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: npmlog: 6.0.2 + dev: true - '@lerna/pack-directory@5.6.2': + /@lerna/pack-directory@5.6.2: + resolution: {integrity: sha512-w5Jk5fo+HkN4Le7WMOudTcmAymcf0xPd302TqAQncjXpk0cb8tZbj+5bbNHsGb58GRjOIm5icQbHXooQUxbHhA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/get-packed': 5.6.2 '@lerna/package': 5.6.2 @@ -36104,32 +23203,52 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@lerna/package-graph@5.6.2': + /@lerna/package-graph@5.6.2: + resolution: {integrity: sha512-TmL61qBBvA3Tc4qICDirZzdFFwWOA6qicIXUruLiE2PblRowRmCO1bKrrP6XbDOspzwrkPef6N2F2/5gHQAnkQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/prerelease-id-from-version': 5.6.2 '@lerna/validation-error': 5.6.2 npm-package-arg: 8.1.1 npmlog: 6.0.2 semver: 7.6.2 + dev: true - '@lerna/package@5.6.2': + /@lerna/package@5.6.2: + resolution: {integrity: sha512-LaOC8moyM5J9WnRiWZkedjOninSclBOJyPqhif6mHb2kCFX6jAroNYzE8KM4cphu8CunHuhI6Ixzswtv+Dultw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: load-json-file: 6.2.0 npm-package-arg: 8.1.1 write-pkg: 4.0.0 + dev: true - '@lerna/prerelease-id-from-version@5.6.2': + /@lerna/prerelease-id-from-version@5.6.2: + resolution: {integrity: sha512-7gIm9fecWFVNy2kpj/KbH11bRcpyANAwpsft3X5m6J7y7A6FTUscCbEvl3ZNdpQKHNuvnHgCtkm3A5PMSCEgkA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: semver: 7.6.2 + dev: true - '@lerna/profiler@5.6.2': + /@lerna/profiler@5.6.2: + resolution: {integrity: sha512-okwkagP5zyRIOYTceu/9/esW7UZFt7lyL6q6ZgpSG3TYC5Ay+FXLtS6Xiha/FQdVdumFqKULDWTGovzUlxcwaw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: fs-extra: 9.1.0 npmlog: 6.0.2 upath: 2.0.1 + dev: true - '@lerna/project@5.6.2': + /@lerna/project@5.6.2: + resolution: {integrity: sha512-kPIMcIy/0DVWM91FPMMFmXyAnCuuLm3NdhnA8NusE//VuY9wC6QC/3OwuCY39b2dbko/fPZheqKeAZkkMH6sGg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/package': 5.6.2 '@lerna/validation-error': 5.6.2 @@ -36144,11 +23263,16 @@ snapshots: p-map: 4.0.0 resolve-from: 5.0.0 write-json-file: 4.3.0 + dev: true - '@lerna/prompt@5.6.2': + /@lerna/prompt@5.6.2: + resolution: {integrity: sha512-4hTNmVYADEr0GJTMegWV+GW6n+dzKx1vN9v2ISqyle283Myv930WxuyO0PeYGqTrkneJsyPreCMovuEGCvZ0iQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: inquirer: 8.2.6 npmlog: 6.0.2 + dev: true /@lerna/publish@5.6.2(nx@15.9.3): resolution: {integrity: sha512-QaW0GjMJMuWlRNjeDCjmY/vjriGSWgkLS23yu8VKNtV5U3dt5yIKA3DNGV3HgZACuu45kQxzMDsfLzgzbGNtYA==} @@ -36190,28 +23314,47 @@ snapshots: - supports-color dev: true - '@lerna/pulse-till-done@5.6.2': + /@lerna/pulse-till-done@5.6.2: + resolution: {integrity: sha512-eA/X1RCxU5YGMNZmbgPi+Kyfx1Q3bn4P9jo/LZy+/NRRr1po3ASXP2GJZ1auBh/9A2ELDvvKTOXCVHqczKC6rA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: npmlog: 6.0.2 + dev: true - '@lerna/query-graph@5.6.2': + /@lerna/query-graph@5.6.2: + resolution: {integrity: sha512-KRngr96yBP8XYDi9/U62fnGO+ZXqm04Qk6a2HtoTr/ha8QvO1s7Tgm0xs/G7qWXDQHZgunWIbmK/LhxM7eFQrw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/package-graph': 5.6.2 + dev: true - '@lerna/resolve-symlink@5.6.2': + /@lerna/resolve-symlink@5.6.2: + resolution: {integrity: sha512-PDQy+7M8JEFtwIVHJgWvSxHkxJf9zXCENkvIWDB+SsoDPhw9+caewt46bTeP5iGm9pOMu3oZukaWo/TvF7sNjg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: fs-extra: 9.1.0 npmlog: 6.0.2 read-cmd-shim: 3.0.1 + dev: true - '@lerna/rimraf-dir@5.6.2': + /@lerna/rimraf-dir@5.6.2: + resolution: {integrity: sha512-jgEfzz7uBUiQKteq3G8MtJiA2D2VoKmZSSY3VSiW/tPOSXYxxSHxEsClQdCeNa6+sYrDNDT8fP6MJ3lPLjDeLA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 npmlog: 6.0.2 path-exists: 4.0.0 rimraf: 3.0.2 + dev: true - '@lerna/run-lifecycle@5.6.2': + /@lerna/run-lifecycle@5.6.2: + resolution: {integrity: sha512-u9gGgq/50Fm8dvfcc/TSHOCAQvzLD7poVanDMhHYWOAqRDnellJEEmA1K/Yka4vZmySrzluahkry9G6jcREt+g==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/npm-conf': 5.6.2 '@npmcli/run-script': 4.2.1 @@ -36220,13 +23363,21 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@lerna/run-topologically@5.6.2': + /@lerna/run-topologically@5.6.2: + resolution: {integrity: sha512-QQ/jGOIsVvUg3izShWsd67RlWYh9UOH2yw97Ol1zySX9+JspCMVQrn9eKq1Pk8twQOFhT87LpT/aaxbTBgREPw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/query-graph': 5.6.2 p-queue: 6.6.2 + dev: true - '@lerna/run@5.6.2': + /@lerna/run@5.6.2: + resolution: {integrity: sha512-c2kJxdFrNg5KOkrhmgwKKUOsfSrGNlFCe26EttufOJ3xfY0VnXlEw9rHOkTgwtu7969rfCdyaVP1qckMrF1Dgw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/command': 5.6.2 '@lerna/filter-options': 5.6.2 @@ -36238,15 +23389,23 @@ snapshots: '@lerna/validation-error': 5.6.2 fs-extra: 9.1.0 p-map: 4.0.0 + dev: true - '@lerna/symlink-binary@5.6.2': + /@lerna/symlink-binary@5.6.2: + resolution: {integrity: sha512-Cth+miwYyO81WAmrQbPBrLHuF+F0UUc0el5kRXLH6j5zzaRS3kMM68r40M7MmfH8m3GPi7691UARoWFEotW5jw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/create-symlink': 5.6.2 '@lerna/package': 5.6.2 fs-extra: 9.1.0 p-map: 4.0.0 + dev: true - '@lerna/symlink-dependencies@5.6.2': + /@lerna/symlink-dependencies@5.6.2: + resolution: {integrity: sha512-dUVNQLEcjVOIQiT9OlSAKt0ykjyJPy8l9i4NJDe2/0XYaUjo8PWsxJ0vrutz27jzi2aZUy07ASmowQZEmnLHAw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/create-symlink': 5.6.2 '@lerna/resolve-symlink': 5.6.2 @@ -36254,20 +23413,32 @@ snapshots: fs-extra: 9.1.0 p-map: 4.0.0 p-map-series: 2.1.0 + dev: true - '@lerna/temp-write@5.6.2': + /@lerna/temp-write@5.6.2: + resolution: {integrity: sha512-S5ZNVTurSwWBmc9kh5alfSjmO3+BnRT6shYtOlmVIUYqWeYVYA5C1Htj322bbU4CSNCMFK6NQl4qGKL17HMuig==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: graceful-fs: 4.2.11 is-stream: 2.0.1 make-dir: 3.1.0 temp-dir: 1.0.0 uuid: 8.3.2 + dev: true - '@lerna/timer@5.6.2': {} + /@lerna/timer@5.6.2: + resolution: {integrity: sha512-AjMOiLc2B+5Nzdd9hNORetAdZ/WK8YNGX/+2ypzM68TMAPfIT5C40hMlSva9Yg4RsBz22REopXgM5s2zQd5ZQA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + dev: true - '@lerna/validation-error@5.6.2': + /@lerna/validation-error@5.6.2: + resolution: {integrity: sha512-4WlDUHaa+RSJNyJRtX3gVIAPVzjZD2tle8AJ0ZYBfdZnZmG0VlB2pD1FIbOQPK8sY2h5m0cHLRvfLoLncqHvdQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: npmlog: 6.0.2 + dev: true /@lerna/version@5.6.2(nx@15.9.3): resolution: {integrity: sha512-odNSR2rTbHW++xMZSQKu/F6Syrd/sUvwDLPaMKktoOSPKmycHt/eWcuQQyACdtc43Iqeu4uQd7PCLsniqOVFrw==} @@ -36279,8 +23450,8 @@ snapshots: '@lerna/collect-updates': 5.6.2 '@lerna/command': 5.6.2 '@lerna/conventional-commits': 5.6.2 - '@lerna/github-client': 5.6.2(encoding@0.1.13) - '@lerna/gitlab-client': 5.6.2(encoding@0.1.13) + '@lerna/github-client': 5.6.2 + '@lerna/gitlab-client': 5.6.2 '@lerna/output': 5.6.2 '@lerna/prerelease-id-from-version': 5.6.2 '@lerna/prompt': 5.6.2 @@ -36308,19 +23479,26 @@ snapshots: - supports-color dev: true - '@lerna/write-log-file@5.6.2': + /@lerna/write-log-file@5.6.2: + resolution: {integrity: sha512-J09l18QnWQ3sXIRwuJkjXY3+KwPR2uO5NgbZGE3GXJK1V/LzOBRMvjGAIbuQHXw25uqe7vpLUpB8drtnFrubCQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: npmlog: 6.0.2 write-file-atomic: 4.0.2 + dev: true - '@manypkg/find-root@1.1.0': + /@manypkg/find-root@1.1.0: + resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} dependencies: '@babel/runtime': 7.24.7 '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 + dev: true - '@manypkg/get-packages@1.1.3': + /@manypkg/get-packages@1.1.3: + resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} dependencies: '@babel/runtime': 7.24.7 '@changesets/types': 4.1.0 @@ -36328,8 +23506,10 @@ snapshots: fs-extra: 8.1.0 globby: 11.1.0 read-yaml-file: 1.1.0 + dev: true - '@mdx-js/mdx@1.6.22': + /@mdx-js/mdx@1.6.22: + resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==} dependencies: '@babel/core': 7.12.9 '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9) @@ -36353,11 +23533,16 @@ snapshots: transitivePeerDependencies: - supports-color - '@mdx-js/react@1.6.22(react@18.3.1)': + /@mdx-js/react@1.6.22(react@18.3.1): + resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} + peerDependencies: + react: ^16.13.1 || ^17.0.0 dependencies: react: 18.3.1 + dev: true - '@mdx-js/util@1.6.22': {} + /@mdx-js/util@1.6.22: + resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==} /@microsoft/applicationinsights-analytics-js@3.2.1(tslib@2.6.3): resolution: {integrity: sha512-BDFnV0WwLcUIqgPmC3Sl8Z35ybf4898WSbrfCC80BNbxi2zztyJSLlxWXKSw9j+DCkKZMYIJIsWnpKQfEtqA7g==} @@ -36370,6 +23555,7 @@ snapshots: '@microsoft/dynamicproto-js': 2.0.3 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 + dev: false /@microsoft/applicationinsights-cfgsync-js@3.2.1(tslib@2.6.3): resolution: {integrity: sha512-a0gf3czbRycOXwIRO/dYqmTThYkGRS26TVETRpSnW12IcAuLE82FJfWHlHRmSNX9xY/F+wWc0N7BqHcWjFIbeQ==} @@ -36383,6 +23569,7 @@ snapshots: '@nevware21/ts-async': 0.5.2 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 + dev: false /@microsoft/applicationinsights-channel-js@3.2.1(tslib@2.6.3): resolution: {integrity: sha512-+aWBBbIW4/Tf4sLGZmWhd5chktBpKQpnCbkuoTHGe+AWO8Q8fsDa4w2Y89OGuEg9OJ3kr2VKTUU7LgILKFz/cg==} @@ -36396,13 +23583,18 @@ snapshots: '@nevware21/ts-async': 0.5.2 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 + dev: false - '@microsoft/applicationinsights-common@2.8.18(tslib@2.6.3)': + /@microsoft/applicationinsights-common@2.8.18(tslib@2.6.3): + resolution: {integrity: sha512-/PBRmRL6rFCoO3vWpIEHuFnu+TinEYRKWOj+I+XVUH5myZpv+nYvaRdwryVTkmCYxLyL9kxtNn7hQx8DBlhdSw==} + peerDependencies: + tslib: '*' dependencies: '@microsoft/applicationinsights-core-js': 2.8.18(tslib@2.6.3) '@microsoft/applicationinsights-shims': 2.0.2 '@microsoft/dynamicproto-js': 1.1.11 tslib: 2.6.3 + dev: false /@microsoft/applicationinsights-common@3.2.1(tslib@2.6.3): resolution: {integrity: sha512-vRYQ1SIZJEz1eFbs2AQiLtev5L+zmjZ1Jkj3BWfIxJLd6n0cVR4NZETBSyMuk11KH7MIOrDLvh1CzjBIJIpDAg==} @@ -36414,12 +23606,17 @@ snapshots: '@microsoft/dynamicproto-js': 2.0.3 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 + dev: false - '@microsoft/applicationinsights-core-js@2.8.18(tslib@2.6.3)': + /@microsoft/applicationinsights-core-js@2.8.18(tslib@2.6.3): + resolution: {integrity: sha512-yPHRZFLpnEO0uSgFPM1BLMRRwjoten9YBbn4pJRbCT4PigLnj748knmWsMwXIdcehtkRTYz78kPYa/LWP7nvmA==} + peerDependencies: + tslib: '*' dependencies: '@microsoft/applicationinsights-shims': 2.0.2 '@microsoft/dynamicproto-js': 1.1.11 tslib: 2.6.3 + dev: false /@microsoft/applicationinsights-core-js@3.2.1(tslib@2.6.3): resolution: {integrity: sha512-euxkDrF5BroAY7wgviaTVZdMvRAENQtUW4pDTsIjJK26shi1m5fPCc5l+vMn7kO2wQEaEgAOVw+/kSQgXDHN+Q==} @@ -36431,6 +23628,7 @@ snapshots: '@nevware21/ts-async': 0.5.2 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 + dev: false /@microsoft/applicationinsights-dependencies-js@3.2.1(tslib@2.6.3): resolution: {integrity: sha512-NZ7OY/7KYmJ6/TFsDZojsr9mA4uNv4ZTrNNXfWqtPxx0ClYalSm6Xyjna0N1d1wktrfecHe8K/ZrWJgxI2bfRw==} @@ -36444,6 +23642,7 @@ snapshots: '@nevware21/ts-async': 0.5.2 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 + dev: false /@microsoft/applicationinsights-properties-js@3.2.1(tslib@2.6.3): resolution: {integrity: sha512-GO96t7tQ1eEHPENVXjOlf91h/Iz8p4I0XayALTSshHMc+eDfsi1a/b2JYrfNDC4fanPU44Kmx3QZkXrBb1ri5A==} @@ -36456,8 +23655,14 @@ snapshots: '@microsoft/dynamicproto-js': 2.0.3 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 + dev: false - '@microsoft/applicationinsights-react-js@3.4.3(history@4.10.1)(react@18.3.1)(tslib@2.6.3)': + /@microsoft/applicationinsights-react-js@3.4.3(history@4.10.1)(react@18.3.1)(tslib@2.6.3): + resolution: {integrity: sha512-+IIPDYU7DKBwByN7lK/mkMGrnWMGdyIsEZfDzBh/fKDZgGGGgH9B3WHej+vIpdwBcVaPbYx++lonTshn56C9/A==} + peerDependencies: + history: '>= 4.10.1' + react: '>= 17.0.1' + tslib: '*' dependencies: '@microsoft/applicationinsights-common': 2.8.18(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 2.8.18(tslib@2.6.3) @@ -36466,10 +23671,14 @@ snapshots: history: 4.10.1 react: 18.3.1 tslib: 2.6.3 + dev: false - '@microsoft/applicationinsights-shims@2.0.2': {} + /@microsoft/applicationinsights-shims@2.0.2: + resolution: {integrity: sha512-PoHEgsnmcqruLNHZ/amACqdJ6YYQpED0KSRe6J7gIJTtpZC1FfFU9b1fmDKDKtFoUSrPzEh1qzO3kmRZP0betg==} + dev: false - '@microsoft/applicationinsights-shims@3.0.1': + /@microsoft/applicationinsights-shims@3.0.1: + resolution: {integrity: sha512-DKwboF47H1nb33rSUfjqI6ryX29v+2QWcTrRvcQDA32AZr5Ilkr7whOOSsD1aBzwqX0RJEIP1Z81jfE3NBm/Lg==} dependencies: '@nevware21/ts-utils': 0.11.3 dev: false @@ -36491,24 +23700,34 @@ snapshots: '@nevware21/ts-async': 0.5.2 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 + dev: false - '@microsoft/dynamicproto-js@1.1.11': {} + /@microsoft/dynamicproto-js@1.1.11: + resolution: {integrity: sha512-gNw9z9LbqLV+WadZ6/MMrWwO3e0LuoUH1wve/1iPsBNbgqeVCiB0EZFNNj2lysxS2gkqoF9hmyVaG3MoM1BkxA==} + dev: false - '@microsoft/dynamicproto-js@2.0.3': + /@microsoft/dynamicproto-js@2.0.3: + resolution: {integrity: sha512-JTWTU80rMy3mdxOjjpaiDQsTLZ6YSGGqsjURsY6AUQtIj0udlF/jYmhdLZu8693ZIC0T1IwYnFa0+QeiMnziBA==} dependencies: '@nevware21/ts-utils': 0.11.3 dev: false - '@microsoft/tsdoc-config@0.16.2': + /@microsoft/tsdoc-config@0.16.2: + resolution: {integrity: sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==} dependencies: '@microsoft/tsdoc': 0.14.2 ajv: 6.12.6 jju: 1.4.0 resolve: 1.19.0 + dev: true - '@microsoft/tsdoc@0.14.2': {} + /@microsoft/tsdoc@0.14.2: + resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==} + dev: true - '@mole-inc/bin-wrapper@8.0.1': + /@mole-inc/bin-wrapper@8.0.1: + resolution: {integrity: sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: bin-check: 4.1.0 bin-version-check: 5.1.0 @@ -36518,107 +23737,245 @@ snapshots: filenamify: 5.1.1 got: 11.8.6 os-filter-obj: 2.0.0 + dev: true - '@monaco-editor/loader@1.4.0(monaco-editor@0.50.0)': + /@monaco-editor/loader@1.4.0(monaco-editor@0.50.0): + resolution: {integrity: sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==} + peerDependencies: + monaco-editor: '>= 0.21.0 < 1' dependencies: monaco-editor: 0.50.0 state-local: 1.0.7 + dev: false - '@monaco-editor/react@4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@monaco-editor/react@4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-RFkU9/i7cN2bsq/iTkurMWOEErmYcY6JiQI3Jn+WeR/FGISH8JbHERjpS9oRuSOPvDMJI0Z8nJeKkbOs9sBYQw==} + peerDependencies: + monaco-editor: '>= 0.25.0 < 1' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@monaco-editor/loader': 1.4.0(monaco-editor@0.50.0) monaco-editor: 0.50.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + dev: false - '@mrmlnc/readdir-enhanced@2.2.1': + /@mrmlnc/readdir-enhanced@2.2.1: + resolution: {integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==} + engines: {node: '>=4'} dependencies: call-me-maybe: 1.0.2 glob-to-regexp: 0.3.0 dev: false - '@mswjs/cookies@0.1.7': + /@mswjs/cookies@0.1.7: + resolution: {integrity: sha512-bDg1ReMBx+PYDB4Pk7y1Q07Zz1iKIEUWQpkEXiA2lEWg9gvOZ8UBmGXilCEUvyYoRFlmr/9iXTRR69TrgSwX/Q==} dependencies: '@types/set-cookie-parser': 2.4.9 set-cookie-parser: 2.6.0 + dev: true - '@mswjs/interceptors@0.12.7': + /@mswjs/interceptors@0.12.7: + resolution: {integrity: sha512-eGjZ3JRAt0Fzi5FgXiV/P3bJGj0NqsN7vBS0J0FO2AQRQ0jCKQS4lEFm4wvlSgKQNfeuc/Vz6d81VtU3Gkx/zg==} dependencies: '@open-draft/until': 1.0.3 '@xmldom/xmldom': 0.7.13 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) headers-utils: 3.0.2 outvariant: 1.4.2 strict-event-emitter: 0.2.8 transitivePeerDependencies: - supports-color + dev: true - '@mui/base@5.0.0-alpha.128(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@mui/base@5.0.0-alpha.108(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-KjzRUts2i/ODlMfywhFTqTzQl+Cr9nlDSZxJcnYjrbOV/iRyQNBTDoiFJt+XEdRi0fZBHnk74AFbnP56ehybsA==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 '@emotion/is-prop-valid': 1.2.2 '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) '@popperjs/core': 2.11.8 + '@types/react': 18.0.18 clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - optionalDependencies: - '@types/react': 18.0.18 + dev: false - '@mui/base@5.0.0-beta.0(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@mui/base@5.0.0-alpha.128(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-wub3wxNN+hUp8hzilMlXX3sZrPo75vsy1cXEQpqdTfIFlE9HprP1jlulFiPg5tfPst2OKmygXr2hhmgvAKRrzQ==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 '@emotion/is-prop-valid': 1.2.2 '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) '@popperjs/core': 2.11.8 + '@types/react': 18.0.18 clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - optionalDependencies: + dev: false + + /@mui/base@5.0.0-beta.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-ap+juKvt8R8n3cBqd/pGtZydQ4v2I/hgJKnvJRGjpSh3RvsvnDHO4rXov8MHQlH6VqpOekwgilFLGxMZjNTucA==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.24.7 + '@emotion/is-prop-valid': 1.2.2 + '@mui/types': 7.2.14(@types/react@18.0.18) + '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) + '@popperjs/core': 2.11.8 '@types/react': 18.0.18 + clsx: 1.2.1 + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-is: 18.3.1 + dev: false - '@mui/core-downloads-tracker@5.15.20': {} + /@mui/core-downloads-tracker@5.15.20: + resolution: {integrity: sha512-DoL2ppgldL16utL8nNyj/P12f8mCNdx/Hb/AJnX9rLY4b52hCMIx1kH83pbXQ6uMy6n54M3StmEbvSGoj2OFuA==} + dev: false - '@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1)': + /@mui/icons-material@5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1): + resolution: {integrity: sha512-oGcKmCuHaYbAAoLN67WKSXtHmEgyWcJToT1uRtmPyxMj9N5uqwc/mRtEnst4Wj/eGr+zYH2FiZQ79v9k7kSk1Q==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@mui/material': 5.13.0 + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 - '@mui/material': 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - optionalDependencies: + '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@types/react': 18.0.18 + react: 18.3.1 + dev: false - '@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@mui/lab@5.0.0-alpha.110(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-SkX5QNbaWouO7BXvb8zpFzDizLt7UzgaebqKSvFJLF28OXiNDfPVCle6IIB4g7hAyb/o19Kbhxs9V+LwK5gQzA==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@emotion/react': ^11.5.0 + '@emotion/styled': ^11.3.0 + '@mui/material': 5.13.0 + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 - '@mui/base': 5.0.0-alpha.128(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/material': 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/system': 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + '@mui/base': 5.0.0-alpha.108(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) + '@types/react': 18.0.18 clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - optionalDependencies: + dev: false + + /@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-niv2mFgSTgdrRJXbWoX9pIivhe80BaFXfdWajXe1bS8VYH3Y5WyJpk8KiU3rbHyJswbFEGd8N6EBBrq11X8yMA==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@emotion/react': ^11.5.0 + '@emotion/styled': ^11.3.0 + '@mui/material': 5.13.0 + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.24.7 '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + '@mui/base': 5.0.0-alpha.128(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + '@mui/types': 7.2.14(@types/react@18.0.18) + '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) '@types/react': 18.0.18 + clsx: 1.2.1 + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-is: 18.3.1 + dev: false - '@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@mui/material@5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-ckS+9tCpAzpdJdaTF+btF0b6mF9wbXg/EVKtnoAWYi0UKXoXBAVvEUMNpLGA5xdpCdf+A6fPbVUEHs9TsfU+Yw==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@emotion/react': ^11.5.0 + '@emotion/styled': ^11.3.0 + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 - '@mui/base': 5.0.0-beta.0(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + '@mui/base': 5.0.0-beta.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/core-downloads-tracker': 5.15.20 - '@mui/system': 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) + '@types/react': 18.0.18 '@types/react-transition-group': 4.4.10 clsx: 1.2.1 csstype: 3.1.3 @@ -36626,67 +23983,119 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - optionalDependencies: - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) - '@types/react': 18.0.18 + react-transition-group: 4.4.5(react-dom@18.3.1)(react@18.3.1) + dev: false - '@mui/private-theming@5.15.20(@types/react@18.0.18)(react@18.3.1)': + /@mui/private-theming@5.15.20(@types/react@18.0.18)(react@18.3.1): + resolution: {integrity: sha512-BK8F94AIqSrnaPYXf2KAOjGZJgWfvqAVQ2gVR3EryvQFtuBnG6RwodxrCvd3B48VuMy6Wsk897+lQMUxJyk+6g==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) + '@types/react': 18.0.18 prop-types: 15.8.1 react: 18.3.1 - optionalDependencies: - '@types/react': 18.0.18 + dev: false - '@mui/styled-engine@5.15.14(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(react@18.3.1)': + /@mui/styled-engine@5.15.14(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.3.1): + resolution: {integrity: sha512-RILkuVD8gY6PvjZjqnWhz8fu68dVkqhM5+jYWfB5yhlSQKg+2rHkmEwm75XIeAqI3qwOndK6zELK5H6Zxn4NHw==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@emotion/react': ^11.4.1 + '@emotion/styled': ^11.3.0 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true dependencies: '@babel/runtime': 7.24.7 '@emotion/cache': 11.11.0 + '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) csstype: 3.1.3 prop-types: 15.8.1 react: 18.3.1 - optionalDependencies: - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + dev: false - '@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1)': + /@mui/system@5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1): + resolution: {integrity: sha512-LoMq4IlAAhxzL2VNUDBTQxAb4chnBe8JvRINVNDiMtHE2PiPOoHlhOPutSxEbaL5mkECPVWSv6p8JEV+uykwIA==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@emotion/react': ^11.5.0 + '@emotion/styled': ^11.3.0 + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 + '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@mui/private-theming': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@mui/styled-engine': 5.15.14(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(react@18.3.1) + '@mui/styled-engine': 5.15.14(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.3.1) '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) + '@types/react': 18.0.18 clsx: 2.1.1 csstype: 3.1.3 prop-types: 15.8.1 react: 18.3.1 - optionalDependencies: - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) - '@types/react': 18.0.18 + dev: false - '@mui/types@7.2.14(@types/react@18.0.18)': - optionalDependencies: + /@mui/types@7.2.14(@types/react@18.0.18): + resolution: {integrity: sha512-MZsBZ4q4HfzBsywtXgM1Ksj6HDThtiwmOKUXH1pKYISI9gAVXCNHNpo7TlGoGrBaYWZTdNoirIN7JsQcQUjmQQ==} + peerDependencies: + '@types/react': 18.0.18 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: '@types/react': 18.0.18 + dev: false - '@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1)': + /@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1): + resolution: {integrity: sha512-mAbYx0sovrnpAu1zHc3MDIhPqL8RPVC5W5xcO1b7PiSCJPtckIZmBkp8hefamAvUiAV8gpfMOM6Zb+eSisbI2A==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 '@types/prop-types': 15.7.12 + '@types/react': 18.0.18 prop-types: 15.8.1 react: 18.3.1 react-is: 18.3.1 - optionalDependencies: - '@types/react': 18.0.18 + dev: false - '@mui/x-data-grid@6.20.1(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@mui/x-data-grid@6.20.1(@mui/material@5.13.0)(@mui/system@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-x1muWWIG9otkk4FuvoTxH3I4foyA1caFu8ZC9TvMQ+7NSBKcfy/JeLQfKkZk8ACUUosvENdrRIkhqU2xdIqIVg==} + engines: {node: '>=14.0.0'} + peerDependencies: + '@mui/material': 5.13.0 + '@mui/system': ^5.4.1 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 dependencies: '@babel/runtime': 7.24.7 - '@mui/material': 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/system': 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) clsx: 2.1.1 prop-types: 15.8.1 @@ -36695,6 +24104,7 @@ snapshots: reselect: 4.1.8 transitivePeerDependencies: - '@types/react' + dev: false /@ndelangen/get-tarball@3.0.9: resolution: {integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==} @@ -36714,10 +24124,15 @@ snapshots: resolution: {integrity: sha512-oipW+tyKN68bREjoESYAzOZiatM+1LF+ez1TX3BaeinhCkI18xsLgmpH9tvwHaVgKf1Tsth25sdbXVtYmgRYvQ==} dev: false - '@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3': + /@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3: + resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==} + requiresBuild: true + dev: true optional: true - '@nodelib/fs.scandir@2.1.5': + /@nodelib/fs.scandir@2.1.5: + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} dependencies: '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 @@ -36727,14 +24142,21 @@ snapshots: engines: {node: '>= 6'} dev: false - '@nodelib/fs.stat@2.0.5': {} + /@nodelib/fs.stat@2.0.5: + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} - '@nodelib/fs.walk@1.2.8': + /@nodelib/fs.walk@1.2.8: + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} dependencies: '@nodelib/fs.scandir': 2.1.5 fastq: 1.17.1 - '@npmcli/arborist@5.3.0': + /@npmcli/arborist@5.3.0: + resolution: {integrity: sha512-+rZ9zgL1lnbl8Xbb1NQdMjveOMwj4lIYfcDtyJHHi5x4X8jtR6m8SXooJMZy5vmFVZ8w7A2Bnd/oX9eTuU8w5A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true dependencies: '@isaacs/string-locale-compare': 1.1.0 '@npmcli/installed-package-contents': 1.0.7 @@ -36773,19 +24195,26 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@npmcli/fs@1.1.1': + /@npmcli/fs@1.1.1: + resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} dependencies: '@gar/promisify': 1.1.3 semver: 7.6.2 dev: false - '@npmcli/fs@2.1.2': + /@npmcli/fs@2.1.2: + resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: '@gar/promisify': 1.1.3 semver: 7.6.2 + dev: true - '@npmcli/git@3.0.2': + /@npmcli/git@3.0.2: + resolution: {integrity: sha512-CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: '@npmcli/promise-spawn': 3.0.0 lru-cache: 7.18.3 @@ -36798,20 +24227,30 @@ snapshots: which: 2.0.2 transitivePeerDependencies: - bluebird + dev: true - '@npmcli/installed-package-contents@1.0.7': + /@npmcli/installed-package-contents@1.0.7: + resolution: {integrity: sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==} + engines: {node: '>= 10'} + hasBin: true dependencies: npm-bundled: 1.1.2 npm-normalize-package-bin: 1.0.1 + dev: true - '@npmcli/map-workspaces@2.0.4': + /@npmcli/map-workspaces@2.0.4: + resolution: {integrity: sha512-bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: '@npmcli/name-from-folder': 1.0.1 glob: 8.1.0 minimatch: 5.1.6 read-package-json-fast: 2.0.3 + dev: true - '@npmcli/metavuln-calculator@3.1.1': + /@npmcli/metavuln-calculator@3.1.1: + resolution: {integrity: sha512-n69ygIaqAedecLeVH3KnO39M6ZHiJ2dEv5A7DGvcqCB8q17BGUgW8QaanIkbWUo2aYGZqJaOORTLAlIvKjNDKA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: cacache: 16.1.3 json-parse-even-better-errors: 2.3.1 @@ -36820,31 +24259,52 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@npmcli/move-file@1.1.2': + /@npmcli/move-file@1.1.2: + resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} + engines: {node: '>=10'} + deprecated: This functionality has been moved to @npmcli/fs dependencies: mkdirp: 1.0.4 rimraf: 3.0.2 dev: false - '@npmcli/move-file@2.0.1': + /@npmcli/move-file@2.0.1: + resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This functionality has been moved to @npmcli/fs dependencies: mkdirp: 1.0.4 rimraf: 3.0.2 + dev: true - '@npmcli/name-from-folder@1.0.1': {} + /@npmcli/name-from-folder@1.0.1: + resolution: {integrity: sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA==} + dev: true - '@npmcli/node-gyp@2.0.0': {} + /@npmcli/node-gyp@2.0.0: + resolution: {integrity: sha512-doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dev: true - '@npmcli/package-json@2.0.0': + /@npmcli/package-json@2.0.0: + resolution: {integrity: sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: json-parse-even-better-errors: 2.3.1 + dev: true - '@npmcli/promise-spawn@3.0.0': + /@npmcli/promise-spawn@3.0.0: + resolution: {integrity: sha512-s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: infer-owner: 1.0.4 + dev: true - '@npmcli/run-script@4.2.1': + /@npmcli/run-script@4.2.1: + resolution: {integrity: sha512-7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: '@npmcli/node-gyp': 2.0.0 '@npmcli/promise-spawn': 3.0.0 @@ -36854,6 +24314,7 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true /@nrwl/cli@15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99): resolution: {integrity: sha512-qiAKHkov3iBx6hroPTitUrkRSUZFQqVgNJiF9gXRFC6pNJe9RS4rlmcIaoUFOboi9CnH5jwblNJVcz8YSVYOvA==} @@ -36863,6 +24324,7 @@ snapshots: - '@swc-node/register' - '@swc/core' - debug + dev: true /@nrwl/cypress@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6): resolution: {integrity: sha512-p7LcNa6q1yZXSp1BOlMrn79QB4BEioAwWzAyqbtsrOd+5JkgQwAetwI7VFktjXohbH0SmVASqXhVJgXacoPgOA==} @@ -37708,6 +25170,7 @@ snapshots: - verdaccio - vue-template-compiler - webpack-cli + dev: true /@nx/workspace@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99): resolution: {integrity: sha512-7rG+7S7f6CyxrvLSduSyvJZ4DYfpCO1WZkEfZDpp9cuQVJudeZqrXqolupkmQqymTTWyNSRASvLbL1GBRLtU3w==} @@ -37725,167 +25188,241 @@ snapshots: - debug dev: true - '@nrwl/workspace@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(prettier@1.19.1)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5)': - dependencies: - '@nrwl/devkit': 14.8.8(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(typescript@4.9.5) - '@nrwl/jest': 14.8.8(@types/node@13.13.52)(node-notifier@8.0.2)(nx@14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)))(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) - '@nrwl/linter': 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17))(@types/node@13.13.52)(eslint@7.32.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))(typescript@4.9.5) - '@parcel/watcher': 2.0.4 - chalk: 4.1.0 - chokidar: 3.6.0 - cli-cursor: 3.1.0 - cli-spinners: 2.6.1 - dotenv: 10.0.0 - enquirer: 2.3.6 - figures: 3.2.0 - flat: 5.0.2 - fs-extra: 10.1.0 - glob: 7.1.4 - ignore: 5.3.1 - minimatch: 3.0.5 - npm-run-path: 4.0.1 - nx: 14.8.8(@swc-node/register@1.9.2(@swc/core@1.6.5(@swc/helpers@0.3.17))(@swc/types@0.1.9)(typescript@4.9.5))(@swc/core@1.6.5(@swc/helpers@0.3.17)) - open: 8.4.2 - rxjs: 6.6.7 - semver: 7.3.4 - tmp: 0.2.3 - tslib: 2.6.3 - yargs: 17.7.2 - yargs-parser: 21.0.1 - optionalDependencies: - prettier: 1.19.1 - transitivePeerDependencies: - - '@swc-node/register' - - '@swc/core' - - '@types/node' - - debug - - eslint - - node-notifier - - supports-color - - ts-node - - typescript - - '@octokit/auth-token@3.0.4': {} + /@octokit/auth-token@3.0.4: + resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==} + engines: {node: '>= 14'} + dev: true - '@octokit/core@4.2.4(encoding@0.1.13)': + /@octokit/core@4.2.4: + resolution: {integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==} + engines: {node: '>= 14'} dependencies: '@octokit/auth-token': 3.0.4 - '@octokit/graphql': 5.0.6(encoding@0.1.13) - '@octokit/request': 6.2.8(encoding@0.1.13) + '@octokit/graphql': 5.0.6 + '@octokit/request': 6.2.8 '@octokit/request-error': 3.0.3 '@octokit/types': 9.3.2 before-after-hook: 2.2.3 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding + dev: true - '@octokit/endpoint@7.0.6': + /@octokit/endpoint@7.0.6: + resolution: {integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==} + engines: {node: '>= 14'} dependencies: '@octokit/types': 9.3.2 is-plain-object: 5.0.0 universal-user-agent: 6.0.1 + dev: true - '@octokit/graphql@5.0.6(encoding@0.1.13)': + /@octokit/graphql@5.0.6: + resolution: {integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==} + engines: {node: '>= 14'} dependencies: - '@octokit/request': 6.2.8(encoding@0.1.13) + '@octokit/request': 6.2.8 '@octokit/types': 9.3.2 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding + dev: true - '@octokit/openapi-types@18.1.1': {} + /@octokit/openapi-types@18.1.1: + resolution: {integrity: sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==} + dev: true - '@octokit/plugin-enterprise-rest@6.0.1': {} + /@octokit/plugin-enterprise-rest@6.0.1: + resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==} + dev: true - '@octokit/plugin-paginate-rest@6.1.2(@octokit/core@4.2.4(encoding@0.1.13))': + /@octokit/plugin-paginate-rest@6.1.2(@octokit/core@4.2.4): + resolution: {integrity: sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==} + engines: {node: '>= 14'} + peerDependencies: + '@octokit/core': '>=4' dependencies: - '@octokit/core': 4.2.4(encoding@0.1.13) + '@octokit/core': 4.2.4 '@octokit/tsconfig': 1.0.2 '@octokit/types': 9.3.2 + dev: true - '@octokit/plugin-request-log@1.0.4(@octokit/core@4.2.4(encoding@0.1.13))': + /@octokit/plugin-request-log@1.0.4(@octokit/core@4.2.4): + resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} + peerDependencies: + '@octokit/core': '>=3' dependencies: - '@octokit/core': 4.2.4(encoding@0.1.13) + '@octokit/core': 4.2.4 + dev: true - '@octokit/plugin-rest-endpoint-methods@7.2.3(@octokit/core@4.2.4(encoding@0.1.13))': + /@octokit/plugin-rest-endpoint-methods@7.2.3(@octokit/core@4.2.4): + resolution: {integrity: sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==} + engines: {node: '>= 14'} + peerDependencies: + '@octokit/core': '>=3' dependencies: - '@octokit/core': 4.2.4(encoding@0.1.13) + '@octokit/core': 4.2.4 '@octokit/types': 10.0.0 + dev: true - '@octokit/request-error@3.0.3': + /@octokit/request-error@3.0.3: + resolution: {integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==} + engines: {node: '>= 14'} dependencies: '@octokit/types': 9.3.2 deprecation: 2.3.1 once: 1.4.0 + dev: true - '@octokit/request@6.2.8(encoding@0.1.13)': + /@octokit/request@6.2.8: + resolution: {integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==} + engines: {node: '>= 14'} dependencies: '@octokit/endpoint': 7.0.6 '@octokit/request-error': 3.0.3 '@octokit/types': 9.3.2 is-plain-object: 5.0.0 - node-fetch: 2.7.0(encoding@0.1.13) + node-fetch: 2.7.0 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding + dev: true - '@octokit/rest@19.0.13(encoding@0.1.13)': + /@octokit/rest@19.0.13: + resolution: {integrity: sha512-/EzVox5V9gYGdbAI+ovYj3nXQT1TtTHRT+0eZPcuC05UFSWO3mdO9UY1C0i2eLF9Un1ONJkAk+IEtYGAC+TahA==} + engines: {node: '>= 14'} dependencies: - '@octokit/core': 4.2.4(encoding@0.1.13) - '@octokit/plugin-paginate-rest': 6.1.2(@octokit/core@4.2.4(encoding@0.1.13)) - '@octokit/plugin-request-log': 1.0.4(@octokit/core@4.2.4(encoding@0.1.13)) - '@octokit/plugin-rest-endpoint-methods': 7.2.3(@octokit/core@4.2.4(encoding@0.1.13)) + '@octokit/core': 4.2.4 + '@octokit/plugin-paginate-rest': 6.1.2(@octokit/core@4.2.4) + '@octokit/plugin-request-log': 1.0.4(@octokit/core@4.2.4) + '@octokit/plugin-rest-endpoint-methods': 7.2.3(@octokit/core@4.2.4) transitivePeerDependencies: - encoding + dev: true - '@octokit/tsconfig@1.0.2': {} + /@octokit/tsconfig@1.0.2: + resolution: {integrity: sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==} + dev: true - '@octokit/types@10.0.0': + /@octokit/types@10.0.0: + resolution: {integrity: sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==} dependencies: '@octokit/openapi-types': 18.1.1 + dev: true - '@octokit/types@9.3.2': + /@octokit/types@9.3.2: + resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==} dependencies: '@octokit/openapi-types': 18.1.1 + dev: true - '@one-ini/wasm@0.1.1': {} + /@one-ini/wasm@0.1.1: + resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} + dev: false - '@open-draft/until@1.0.3': {} + /@open-draft/until@1.0.3: + resolution: {integrity: sha512-Aq58f5HiWdyDlFffbbSjAlv596h/cOnt2DO1w3DOC7OJ5EHs0hd/nycJfiu9RJbT6Yk6F1knnRRXNSpxoIVZ9Q==} + dev: true - '@oxygen-ui/primitives@1.11.0': {} + /@oxygen-ui/primitives@1.11.0: + resolution: {integrity: sha512-z1d75MVfkYYrLiBRFPJJNvcMc1/j5qd9eZZGMXH04Ipg1VbVHj3DGl6BvqRGIHeBdNtm3NgjBwx8VfqHQ/i6HA==} + dev: false + + /@oxygen-ui/react-icons@1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5): + resolution: {integrity: sha512-qb1bCzC6c0xecRHneQy6T0LlGNLMvqomw1kuExubstn1kcebF7Y+TH8hjlrr4F3tp+upTBRXNEsVAUeq24Xnpw==} + peerDependencies: + react: '>=18.0.0' + react-dom: '>=18.0.0' + typescript: '>=4.0.0' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + typescript: 4.9.5 + dev: false - '@oxygen-ui/react-icons@1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)': + /@oxygen-ui/react@1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5): + resolution: {integrity: sha512-Ij9E3CvX/fNGQkWbH6ic9LNsldFHeuy/2adksNsJLQgVsbvPct/coXyPYF8duH17dPEu6nksEHJwIfxoz9ekww==} + peerDependencies: + '@emotion/react': ^11.10.5 + '@emotion/styled': ^11.10.5 + '@mui/icons-material': ^5.10.16 + '@mui/lab': 5.0.0-alpha.110 + '@mui/material': 5.13.0 + '@mui/system': ^5.10.16 + '@mui/utils': ^5.10.16 + react: '>=18.0.0' + react-dom: '>=18.0.0' + typescript: '>=4.0.0' + peerDependenciesMeta: + typescript: + optional: true dependencies: + '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + '@mui/icons-material': 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + '@mui/lab': 5.0.0-alpha.110(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) + '@mui/x-data-grid': 6.20.1(@mui/material@5.13.0)(@mui/system@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@oxygen-ui/primitives': 1.11.0 + '@oxygen-ui/react-icons': 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + clsx: 1.2.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - optionalDependencies: + react-world-flags: 1.6.0(react@18.3.1) typescript: 4.9.5 + transitivePeerDependencies: + - '@types/react' + dev: false - ? '@oxygen-ui/react@1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)' - : dependencies: + /@oxygen-ui/react@1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5): + resolution: {integrity: sha512-Ij9E3CvX/fNGQkWbH6ic9LNsldFHeuy/2adksNsJLQgVsbvPct/coXyPYF8duH17dPEu6nksEHJwIfxoz9ekww==} + peerDependencies: + '@emotion/react': ^11.10.5 + '@emotion/styled': ^11.10.5 + '@mui/icons-material': ^5.10.16 + '@mui/lab': 5.0.0-alpha.110 + '@mui/material': 5.13.0 + '@mui/system': ^5.10.16 + '@mui/utils': ^5.10.16 + react: '>=18.0.0' + react-dom: '>=18.0.0' + typescript: '>=4.0.0' + peerDependenciesMeta: + typescript: + optional: true + dependencies: '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) - '@mui/icons-material': 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) - '@mui/lab': 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/material': 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/system': 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + '@mui/icons-material': 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + '@mui/lab': 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@mui/x-data-grid': 6.20.1(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/x-data-grid': 6.20.1(@mui/material@5.13.0)(@mui/system@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@oxygen-ui/primitives': 1.11.0 - '@oxygen-ui/react-icons': 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + '@oxygen-ui/react-icons': 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) clsx: 1.2.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-world-flags: 1.6.0(react@18.3.1) - optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - '@types/react' + dev: false - '@parcel/watcher@2.0.4': + /@parcel/watcher@2.0.4: + resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==} + engines: {node: '>= 10.0.0'} + requiresBuild: true dependencies: node-addon-api: 3.2.1 node-gyp-build: 4.8.1 + dev: true /@phenomnomnominal/tsquery@5.0.1(typescript@5.1.6): resolution: {integrity: sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==} @@ -37902,7 +25439,31 @@ snapshots: requiresBuild: true optional: true - '@pmmmwh/react-refresh-webpack-plugin@0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@pmmmwh/react-refresh-webpack-plugin@0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1): + resolution: {integrity: sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==} + engines: {node: '>= 10.x'} + peerDependencies: + '@types/webpack': 4.x + react-refresh: '>=0.8.3 <0.10.0' + sockjs-client: ^1.4.0 + type-fest: ^0.13.1 + webpack: 5.84.1 + webpack-dev-server: 3.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + '@types/webpack': + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true dependencies: ansi-html: 0.0.7 error-stack-parser: 2.1.4 @@ -37915,7 +25476,31 @@ snapshots: webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) dev: true - '@pmmmwh/react-refresh-webpack-plugin@0.5.15(@types/webpack@4.41.38)(react-refresh@0.10.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.10.0)(webpack-dev-server@3.11.3)(webpack@5.84.1): + resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==} + engines: {node: '>= 10.13'} + peerDependencies: + '@types/webpack': 4.x || 5.x + react-refresh: '>=0.10.0 <1.0.0' + sockjs-client: ^1.4.0 + type-fest: '>=0.17.0 <5.0.0' + webpack: 5.84.1 + webpack-dev-server: 3.x || 4.x || 5.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + '@types/webpack': + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true dependencies: ansi-html: 0.0.9 core-js-pure: 3.37.1 @@ -37929,7 +25514,31 @@ snapshots: webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) dev: true - '@pmmmwh/react-refresh-webpack-plugin@0.5.15(@types/webpack@4.41.38)(react-refresh@0.11.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.11.0)(webpack-dev-server@3.11.3)(webpack@5.84.1): + resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==} + engines: {node: '>= 10.13'} + peerDependencies: + '@types/webpack': 4.x || 5.x + react-refresh: '>=0.10.0 <1.0.0' + sockjs-client: ^1.4.0 + type-fest: '>=0.17.0 <5.0.0' + webpack: 5.84.1 + webpack-dev-server: 3.x || 4.x || 5.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + '@types/webpack': + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true dependencies: ansi-html: 0.0.9 core-js-pure: 3.37.1 @@ -37981,15 +25590,20 @@ snapshots: webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) dev: true - '@polka/url@1.0.0-next.25': {} + /@polka/url@1.0.0-next.25: + resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} /@popperjs/core@2.11.8: resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} dev: false - '@reactflow/background@11.2.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@reactflow/background@11.2.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-gOtae79Zx1zOs9tD4tmKfuiQQOyG0O81BWBCHqlAQgemKlYExElFKOC67lgTDZ4GGFK+4sXrgrWQ5h14hzaFgg==} + peerDependencies: + react: '>=17' + react-dom: '>=17' dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) classcat: 5.0.5 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -37997,10 +25611,15 @@ snapshots: transitivePeerDependencies: - '@types/react' - immer + dev: false - '@reactflow/controls@11.1.13(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@reactflow/controls@11.1.13(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-rA74+mbt2bnz9Fba6JL1JsKHNNEK6Nl70+ssfOLKMpRFIg512IroayBWufgPJB82X9dgMIzZfx/UcEFFUFJQ8Q==} + peerDependencies: + react: '>=17' + react-dom: '>=17' dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) classcat: 5.0.5 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -38008,8 +25627,13 @@ snapshots: transitivePeerDependencies: - '@types/react' - immer + dev: false - '@reactflow/core@11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@reactflow/core@11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-AhszxILp1RNk3SwrnC/eYh1XsOil5yzthYG5k+oTpvLH5H3BtIWIVkeLEJwmL611lPKL3JuScfjliUxBm9128w==} + peerDependencies: + react: '>=17' + react-dom: '>=17' dependencies: '@types/d3': 7.4.3 '@types/d3-drag': 3.0.7 @@ -38025,10 +25649,15 @@ snapshots: transitivePeerDependencies: - '@types/react' - immer + dev: false - '@reactflow/minimap@11.5.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@reactflow/minimap@11.5.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-564gP/GMZKaJjVRGIrVLv2gIjgc89+qvNwuZzHnQLXjBw5+nS/QkW57Qx/M33MxVAaM+Z5rJ8gKknMSnxekwvQ==} + peerDependencies: + react: '>=17' + react-dom: '>=17' dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@types/d3-selection': 3.0.10 '@types/d3-zoom': 3.0.8 classcat: 5.0.5 @@ -38040,10 +25669,15 @@ snapshots: transitivePeerDependencies: - '@types/react' - immer + dev: false - '@reactflow/node-resizer@2.1.0(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@reactflow/node-resizer@2.1.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-DVL8nnWsltP8/iANadAcTaDB4wsEkx2mOLlBEPNE3yc5loSm3u9l5m4enXRcBym61MiMuTtDPzZMyYYQUjuYIg==} + peerDependencies: + react: '>=17' + react-dom: '>=17' dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) classcat: 5.0.5 d3-drag: 3.0.0 d3-selection: 3.0.0 @@ -38053,10 +25687,15 @@ snapshots: transitivePeerDependencies: - '@types/react' - immer + dev: false - '@reactflow/node-toolbar@1.2.1(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@reactflow/node-toolbar@1.2.1(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-EcMUMzJGAACYQTiUaBm3zxeiiKCPwU2MaoDeZdnEMbvq+2SfohKOur6JklANjv30kL+Pf3xj8QopEtyKTS4XrA==} + peerDependencies: + react: '>=17' + react-dom: '>=17' dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) classcat: 5.0.5 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -38064,23 +25703,36 @@ snapshots: transitivePeerDependencies: - '@types/react' - immer + dev: false /@remix-run/router@1.17.1: resolution: {integrity: sha512-mCOMec4BKd6BRGBZeSnGiIgwsbLGp3yhVqAD8H+PxiRNEHgDpZb8J1TnrSDlg97t0ySKMQJTHCWBCmBpSmkF6Q==} engines: {node: '>=14.0.0'} - '@rollup/plugin-babel@5.3.1(@babel/core@7.24.7)(@types/babel__core@7.20.5)(rollup@2.79.1)': + /@rollup/plugin-babel@5.3.1(@babel/core@7.24.7)(rollup@2.79.1): + resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} + engines: {node: '>= 10.0.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@types/babel__core': ^7.1.9 + rollup: ^1.20.0||^2.0.0 + peerDependenciesMeta: + '@types/babel__core': + optional: true dependencies: '@babel/core': 7.24.7 '@babel/helper-module-imports': 7.24.7 '@rollup/pluginutils': 3.1.0(rollup@2.79.1) rollup: 2.79.1 - optionalDependencies: - '@types/babel__core': 7.20.5 transitivePeerDependencies: - supports-color + dev: true - '@rollup/plugin-commonjs@20.0.0(rollup@2.79.1)': + /@rollup/plugin-commonjs@20.0.0(rollup@2.79.1): + resolution: {integrity: sha512-5K0g5W2Ol8hAcTHqcTBHiA7M58tfmYi1o9KxeJuuRNpGaTa5iLjcyemBitCBcKXaHamOBBEH2dGom6v6Unmqjg==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^2.38.3 dependencies: '@rollup/pluginutils': 3.1.0(rollup@2.79.1) commondir: 1.0.1 @@ -38090,6 +25742,7 @@ snapshots: magic-string: 0.25.9 resolve: 1.22.8 rollup: 2.79.1 + dev: true /@rollup/plugin-commonjs@25.0.8(rollup@4.18.1): resolution: {integrity: sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A==} @@ -38126,11 +25779,16 @@ snapshots: rollup: 4.18.1 dev: true - '@rollup/plugin-image@2.1.1(rollup@2.79.1)': + /@rollup/plugin-image@2.1.1(rollup@2.79.1): + resolution: {integrity: sha512-AgP4U85zuQJdUopLUCM+hTf45RepgXeTb8EJsleExVy99dIoYpt3ZlDYJdKmAc2KLkNntCDg6BPJvgJU3uGF+g==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 dependencies: '@rollup/pluginutils': 3.1.0(rollup@2.79.1) mini-svg-data-uri: 1.4.4 rollup: 2.79.1 + dev: true /@rollup/plugin-image@3.0.3(rollup@4.18.1): resolution: {integrity: sha512-qXWQwsXpvD4trSb8PeFPFajp8JLpRtqqOeNYRUKnEQNHm7e5UP7fuSRcbjQAJ7wDZBbnJvSdY5ujNBQd9B1iFg==} @@ -38161,10 +25819,14 @@ snapshots: rollup: 4.18.1 dev: true - '@rollup/plugin-json@4.1.0(rollup@2.79.1)': + /@rollup/plugin-json@4.1.0(rollup@2.79.1): + resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 dependencies: '@rollup/pluginutils': 3.1.0(rollup@2.79.1) rollup: 2.79.1 + dev: true /@rollup/plugin-json@6.1.0(rollup@4.18.1): resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==} @@ -38179,7 +25841,11 @@ snapshots: rollup: 4.18.1 dev: true - '@rollup/plugin-node-resolve@13.3.0(rollup@2.79.1)': + /@rollup/plugin-node-resolve@13.3.0(rollup@2.79.1): + resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} + engines: {node: '>= 10.0.0'} + peerDependencies: + rollup: ^2.42.0 dependencies: '@rollup/pluginutils': 3.1.0(rollup@2.79.1) '@types/resolve': 1.17.1 @@ -38188,6 +25854,7 @@ snapshots: is-module: 1.0.0 resolve: 1.22.8 rollup: 2.79.1 + dev: true /@rollup/plugin-node-resolve@15.2.3(rollup@4.18.1): resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} @@ -38224,25 +25891,40 @@ snapshots: resolve: 1.22.8 rollup: 4.18.1 tslib: 2.6.3 + typescript: 4.9.5 + dev: true - '@rollup/plugin-url@7.0.0(rollup@4.18.0)': + /@rollup/plugin-url@7.0.0(rollup@2.79.1): + resolution: {integrity: sha512-cIWcEObrmEPAU8q8NluGWlCPlQDuoSKvkyI3eOFO4fx6W02mLNj4ZEiUT0X2mKMIvQzoWL1feEK9d1yr1ICgrw==} + engines: {node: '>=10.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 dependencies: '@rollup/pluginutils': 4.2.1 make-dir: 3.1.0 mime: 2.6.0 - rollup: 4.18.0 + rollup: 2.79.1 + dev: true - '@rollup/pluginutils@3.1.0(rollup@2.79.1)': + /@rollup/pluginutils@3.1.0(rollup@2.79.1): + resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 dependencies: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.3.1 rollup: 2.79.1 + dev: true - '@rollup/pluginutils@4.2.1': + /@rollup/pluginutils@4.2.1: + resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} + engines: {node: '>= 8.0.0'} dependencies: estree-walker: 2.0.2 picomatch: 2.3.1 + dev: true /@rollup/pluginutils@5.1.0(rollup@4.18.1): resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} @@ -38387,45 +26069,71 @@ snapshots: dev: true optional: true - '@semantic-ui-react/event-stack@3.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@semantic-ui-react/event-stack@3.1.3(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-FdTmJyWvJaYinHrKRsMLDrz4tTMGdFfds299Qory53hBugiDvGC0tEJf+cHsi5igDwWb/CLOgOiChInHwq8URQ==} + peerDependencies: + react: ^16.0.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 dependencies: exenv: 1.2.2 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + dev: false - '@sideway/address@4.1.5': + /@sideway/address@4.1.5: + resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} dependencies: '@hapi/hoek': 9.3.0 + dev: false - '@sideway/formula@3.0.1': {} + /@sideway/formula@3.0.1: + resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} + dev: false - '@sideway/pinpoint@2.0.0': {} + /@sideway/pinpoint@2.0.0: + resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} + dev: false /@sinclair/typebox@0.27.8: resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} - '@sindresorhus/is@0.14.0': {} + /@sindresorhus/is@0.14.0: + resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} + engines: {node: '>=6'} + dev: false - '@sindresorhus/is@4.6.0': {} + /@sindresorhus/is@4.6.0: + resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} + engines: {node: '>=10'} + dev: true - '@sindresorhus/merge-streams@2.3.0': {} + /@sindresorhus/merge-streams@2.3.0: + resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} + engines: {node: '>=18'} + dev: true - '@sinonjs/commons@1.8.6': + /@sinonjs/commons@1.8.6: + resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} dependencies: type-detect: 4.0.8 + dev: true - '@sinonjs/commons@3.0.1': + /@sinonjs/commons@3.0.1: + resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} dependencies: type-detect: 4.0.8 - '@sinonjs/fake-timers@10.3.0': + /@sinonjs/fake-timers@10.3.0: + resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} dependencies: '@sinonjs/commons': 3.0.1 - '@sinonjs/fake-timers@6.0.1': + /@sinonjs/fake-timers@6.0.1: + resolution: {integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==} dependencies: '@sinonjs/commons': 1.8.6 + dev: true /@storybook/addon-actions@6.5.16(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-aADjilFmuD6TNGz2CRPSupnyiA/IGkPJHDBTqMpsDXTUr8xnuD122xkIhg6UxmCM2y1c+ncwYXy3WPK2xXK57g==} @@ -38438,41 +26146,52 @@ snapshots: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) core-js: 3.37.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 polished: 4.3.1 prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-inspector: 5.1.1(react@18.3.1) regenerator-runtime: 0.13.11 telejson: 6.0.8 ts-dedent: 2.2.0 util-deprecate: 1.0.2 uuid-browser: 3.1.0 - optionalDependencies: - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + dev: true - '@storybook/addon-backgrounds@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/addon-backgrounds@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-t7qooZ892BruhilFmzYPbysFwpULt/q4zYXNSmKVbAYta8UVvitjcU4F18p8FpWd9WvhiTr0SDlyhNZuzvDfug==} + 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/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) core-js: 3.37.1 global: 4.4.0 memoizerific: 1.11.3 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 util-deprecate: 1.0.2 @@ -38502,24 +26221,7 @@ snapshots: lodash: 4.17.21 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - - '@storybook/addon-controls@6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': - dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/core-common': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/node-logger': 6.5.16 - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - core-js: 3.37.1 - lodash: 4.17.21 ts-dedent: 2.2.0 - optionalDependencies: - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@swc/core' - esbuild @@ -38529,6 +26231,7 @@ snapshots: - uglify-js - vue-template-compiler - webpack-cli + dev: true /@storybook/addon-docs@6.5.16(@babel/core@7.24.7)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1): resolution: {integrity: sha512-QM9WDZG9P02UvbzLu947a8ZngOrQeAKAT8jCibQFM/+RJ39xBlfm8rm+cQy3dm94wgtjmVkA3mKGOV/yrrsddg==} @@ -38554,27 +26257,26 @@ snapshots: '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/docs-tools': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/docs-tools': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/mdx1-csf': 0.0.1(@babel/core@7.24.7) '@storybook/node-logger': 6.5.16 '@storybook/postinstall': 6.5.16 - '@storybook/preview-web': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/source-loader': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/preview-web': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/source-loader': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) core-js: 3.37.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 remark-external-links: 8.0.0 remark-slug: 6.1.0 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - optionalDependencies: - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@babel/core' - '@swc/core' @@ -38586,14 +26288,24 @@ snapshots: - vue-template-compiler - webpack - webpack-cli + dev: true - '@storybook/addon-links@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/addon-links@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-P/mmqK57NGXnR0i3d/T5B0rIt0Lg8Yq+qionRr3LK3AwG/4yGnYt4GNomLEknn/eEwABYq1Q/Z1aOpgIhNdq5A==} + 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/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@types/qs': 6.9.15 core-js: 3.37.1 global: 4.4.0 @@ -38603,69 +26315,103 @@ snapshots: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 - optionalDependencies: - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + dev: true - '@storybook/addon-measure@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/addon-measure@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-DMwnXkmM2L6POTh4KaOWvOAtQ2p9Tr1UUNxz6VXiN5cKFohpCs6x0txdLU5WN8eWIq0VFsO7u5ZX34CGCc6gCg==} + 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/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.37.1 global: 4.4.0 - optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + dev: true - '@storybook/addon-outline@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/addon-outline@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-0du96nha4qltexO0Xq1xB7LeRSbqjC9XqtZLflXG7/X3ABoPD2cXgOV97eeaXUodIyb2qYBbHUfftBeA75x0+w==} + 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/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.37.1 global: 4.4.0 - regenerator-runtime: 0.13.11 - ts-dedent: 2.2.0 - optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + regenerator-runtime: 0.13.11 + ts-dedent: 2.2.0 + dev: true - '@storybook/addon-toolbars@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/addon-toolbars@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-y3PuUKiwOWrAvqx1YdUvArg0UaAwmboXFeR2bkrowk1xcT+xnRO3rML4npFeUl26OQ1FzwxX/cw6nknREBBLEA==} + 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/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) core-js: 3.37.1 - regenerator-runtime: 0.13.11 - optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + regenerator-runtime: 0.13.11 + dev: true - '@storybook/addon-viewport@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/addon-viewport@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-1Vyqf1U6Qng6TXlf4SdqUKyizlw1Wn6+qW8YeA2q1lbkJqn3UlnHXIp8Q0t/5q1dK5BFtREox3+jkGwbJrzkmA==} + 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/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/core-events': 6.5.16 - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) core-js: 3.37.1 global: 4.4.0 memoizerific: 1.11.3 prop-types: 15.8.1 - regenerator-runtime: 0.13.11 - optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + regenerator-runtime: 0.13.11 + dev: true /@storybook/addons@6.5.16(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-p3DqQi+8QRL5k7jXhXmJZLsE/GqHqyY6PcoA1oNTJr0try48uhTGUOYkgzmqtDaa/qPFO5LP+xCPzZXckGtquQ==} @@ -38673,13 +26419,13 @@ snapshots: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@types/webpack-env': 1.18.5 core-js: 3.37.1 global: 4.4.0 @@ -38697,9 +26443,9 @@ snapshots: '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) core-js: 3.37.1 fast-deep-equal: 3.1.3 global: 4.4.0 @@ -38748,56 +26494,55 @@ snapshots: optional: true dependencies: '@babel/core': 7.24.7 - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/channels': 6.5.16 - '@storybook/client-api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/client-api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/core-events': 6.5.16 '@storybook/node-logger': 6.5.16 - '@storybook/preview-web': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/preview-web': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/ui': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/ui': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@types/node': 16.18.101 '@types/webpack': 4.41.38 autoprefixer: 9.8.8 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.37.1 - css-loader: 3.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - file-loader: 6.2.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + css-loader: 3.6.0(webpack@5.84.1) + file-loader: 6.2.0(webpack@5.84.1) find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + fork-ts-checker-webpack-plugin: 4.1.6(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) glob: 7.2.3 glob-promise: 3.4.0(glob@7.2.3) global: 4.4.0 - html-webpack-plugin: 4.5.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + html-webpack-plugin: 4.5.2(webpack@5.84.1) pnp-webpack-plugin: 1.6.4(typescript@4.9.5) postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 - postcss-loader: 4.3.0(postcss@7.0.39)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - raw-loader: 4.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + postcss-loader: 4.3.0(postcss@7.0.39)(webpack@5.84.1) + raw-loader: 4.0.2(webpack@5.84.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) stable: 0.1.8 - style-loader: 1.3.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - terser-webpack-plugin: 4.2.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + style-loader: 1.3.0(webpack@5.84.1) + terser-webpack-plugin: 4.2.3(webpack@5.84.1) ts-dedent: 2.2.0 - url-loader: 4.1.1(file-loader@6.2.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + typescript: 4.9.5 + url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.84.1) util-deprecate: 1.0.2 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-dev-middleware: 3.7.3(webpack@5.84.1) webpack-filter-warnings-plugin: 1.2.1(webpack@5.84.1) webpack-hot-middleware: 2.26.1 webpack-virtual-modules: 0.2.2 - optionalDependencies: - typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - bluebird @@ -38807,6 +26552,7 @@ snapshots: - uglify-js - vue-template-compiler - webpack-cli + dev: false /@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): resolution: {integrity: sha512-kh8Sofm1sbijaHDWtm0sXabqACHVFjikU/fIkkW786kpjoPIPIec1a+hrLgDsZxMU3I7XapSOaCFzWt6FjVXjg==} @@ -38819,32 +26565,32 @@ snapshots: optional: true dependencies: '@babel/core': 7.24.7 - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/channels': 6.5.16 - '@storybook/client-api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/client-api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/core-events': 6.5.16 '@storybook/node-logger': 6.5.16 - '@storybook/preview-web': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/preview-web': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@types/node': 16.18.101 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) babel-plugin-named-exports-order: 0.0.2 browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.37.1 - css-loader: 5.2.7(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + css-loader: 5.2.7(webpack@5.84.1) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) glob: 7.2.3 glob-promise: 3.4.0(glob@7.2.3) - html-webpack-plugin: 5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + html-webpack-plugin: 5.6.0(webpack@5.84.1) path-browserify: 1.0.1 process: 0.11.10 react: 18.3.1 @@ -38853,13 +26599,12 @@ snapshots: style-loader: 2.0.0(webpack@5.84.1) terser-webpack-plugin: 5.3.10(@swc/core@1.3.99)(esbuild@0.18.20)(webpack@5.84.1) ts-dedent: 2.2.0 + typescript: 4.9.5 util-deprecate: 1.0.2 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-dev-middleware: 4.3.0(webpack@5.84.1) webpack-hot-middleware: 2.26.1 webpack-virtual-modules: 0.4.6 - optionalDependencies: - typescript: 4.9.5 transitivePeerDependencies: - '@rspack/core' - '@swc/core' @@ -38869,6 +26614,7 @@ snapshots: - uglify-js - vue-template-compiler - webpack-cli + dev: false /@storybook/builder-webpack5@7.6.9(@swc/helpers@0.5.9)(esbuild@0.18.20)(typescript@5.1.6)(webpack-cli@4.10.0): resolution: {integrity: sha512-LDwD1chjTVRKxJebkN4GkMl/aR7jzVYIx+0VuFKjDM/6er341ixE5GMIlvXKdYb8JWI8bI7suknSjbsd3LeBoA==} @@ -38927,7 +26673,8 @@ snapshots: - webpack-cli dev: true - '@storybook/channel-postmessage@6.5.16': + /@storybook/channel-postmessage@6.5.16: + resolution: {integrity: sha512-fZZSN29dsUArWOx7e7lTdMA9+7zijVwCwbvi2Fo4fqhRLh1DsTb/VXfz1FKMCWAjNlcX7QQvV25tnxbqsD6lyw==} dependencies: '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 @@ -38945,6 +26692,7 @@ snapshots: core-js: 3.37.1 global: 4.4.0 telejson: 6.0.8 + dev: false /@storybook/channels@6.5.16: resolution: {integrity: sha512-VylzaWQZaMozEwZPJdyJoz+0jpDa8GRyaqu9TGG6QGv+KU5POoZaGLDkRE7TzWkyyP0KQLo80K99MssZCpgSeg==} @@ -38987,7 +26735,7 @@ snapshots: fs-extra: 9.1.0 get-port: 5.1.1 globby: 11.1.0 - jscodeshift: 0.13.1(@babel/preset-env@7.24.7(@babel/core@7.24.7)) + jscodeshift: 0.13.1(@babel/preset-env@7.24.7) json5: 2.2.3 leven: 3.1.0 prompts: 2.4.2 @@ -39012,6 +26760,7 @@ snapshots: - utf-8-validate - vue-template-compiler - webpack-cli + dev: false /@storybook/cli@7.6.9: resolution: {integrity: sha512-HXxr8m1S9wsCtVZ/iQy/bHIUcGlNZ6bMo8jBcFh2V5EgDi350LGQ8q1w/zbwNMD0z0OhmPiv84okksBrOMW6pw==} @@ -39064,15 +26813,19 @@ snapshots: - utf-8-validate dev: true - '@storybook/client-api@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/client-api@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-i3UwkzzUFw8I+E6fOcgB5sc4oU2fhvaKnqC1mpd9IYGJ9JN9MnGIaVl3Ko28DtFItu/QabC9JsLIJVripFLktQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@types/qs': 6.9.15 '@types/webpack-env': 1.18.5 core-js: 3.37.1 @@ -39088,6 +26841,7 @@ snapshots: synchronous-promise: 2.0.17 ts-dedent: 2.2.0 util-deprecate: 1.0.2 + dev: false /@storybook/client-logger@6.5.16: resolution: {integrity: sha512-pxcNaCj3ItDdicPTXTtmYJE3YC1SjxFrBmHcyrN+nffeNyiMuViJdOOZzzzucTUG0wcOOX8jaSyak+nnHg5H1Q==} @@ -39112,7 +26866,7 @@ snapshots: core-js: 3.37.1 cross-spawn: 7.0.3 globby: 11.1.0 - jscodeshift: 0.13.1(@babel/preset-env@7.24.7(@babel/core@7.24.7)) + jscodeshift: 0.13.1(@babel/preset-env@7.24.7) lodash: 4.17.21 prettier: 2.3.0 recast: 0.19.1 @@ -39121,6 +26875,7 @@ snapshots: - '@babel/preset-env' - '@storybook/mdx2-csf' - supports-color + dev: false /@storybook/codemod@7.6.9: resolution: {integrity: sha512-7vj5zVu4GmBpY6fxrRsJby5ttN/tN5Z8RFil06PhTy8SI8JxFoJCWBaPwtOvICObdBAqDx9idGVzbcVpdVdJEg==} @@ -39141,12 +26896,17 @@ snapshots: recast: 0.23.9 transitivePeerDependencies: - supports-color + dev: true - '@storybook/components@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/components@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-LzBOFJKITLtDcbW9jXl0/PaG+4xAz25PK8JxPZpIALbmOpYWOAPcO6V9C2heX6e6NgWFMUxjplkULEk9RCQMNA==} + 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': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) core-js: 3.37.1 memoizerific: 1.11.3 qs: 6.12.3 @@ -39166,16 +26926,16 @@ snapshots: typescript: optional: true dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/channel-websocket': 6.5.16 - '@storybook/client-api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/client-api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/preview-web': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/ui': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/preview-web': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/ui': 6.5.16(react-dom@18.3.1)(react@18.3.1) airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 core-js: 3.37.1 @@ -39186,6 +26946,7 @@ snapshots: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 + typescript: 4.9.5 unfetch: 4.2.0 util-deprecate: 1.0.2 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) @@ -39234,7 +26995,7 @@ snapshots: '@storybook/semver': 7.3.2 '@types/node': 16.18.101 '@types/pretty-hrtime': 1.0.3 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) babel-plugin-macros: 3.1.0 babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.24.7) chalk: 4.1.2 @@ -39242,7 +27003,7 @@ snapshots: express: 4.19.2(supports-color@6.1.0) file-system-cache: 1.1.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) fs-extra: 9.1.0 glob: 7.2.3 handlebars: 4.7.8 @@ -39258,6 +27019,7 @@ snapshots: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 + typescript: 4.9.5 util-deprecate: 1.0.2 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) transitivePeerDependencies: @@ -39360,7 +27122,7 @@ snapshots: globby: 11.1.0 ip: 2.0.1 lodash: 4.17.21 - node-fetch: 2.7.0(encoding@0.1.13) + node-fetch: 2.7.0 open: 8.4.2 pretty-hrtime: 1.0.3 prompts: 2.4.2 @@ -39371,15 +27133,12 @@ snapshots: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 + typescript: 4.9.5 util-deprecate: 1.0.2 watchpack: 2.4.1 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) ws: 8.17.1 x-default-browser: 0.4.0 - optionalDependencies: - '@storybook/builder-webpack5': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - '@storybook/manager-webpack5': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - typescript: 4.9.5 transitivePeerDependencies: - '@storybook/mdx2-csf' - '@swc/core' @@ -39393,6 +27152,7 @@ snapshots: - utf-8-validate - vue-template-compiler - webpack-cli + dev: false /@storybook/core-server@7.6.9: resolution: {integrity: sha512-zRzKmdYhDiIxX+K3i/Ri6v3uuWzwFcdNaKkWnUSDsIR40kI5vCQB6aad/4Lrf/qMVvjWCOkLNFxOD2X4cXMM6w==} @@ -39481,10 +27241,6 @@ snapshots: '@storybook/manager-webpack5': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: - '@storybook/builder-webpack5': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - '@storybook/manager-webpack5': 6.5.16(@swc/core@1.6.5(@swc/helpers@0.3.17))(encoding@0.1.13)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) typescript: 4.9.5 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) transitivePeerDependencies: @@ -39500,6 +27256,7 @@ snapshots: - utf-8-validate - vue-template-compiler - webpack-cli + dev: false /@storybook/csf-tools@6.5.16: resolution: {integrity: sha512-+WD4sH/OwAfXZX3IN6/LOZ9D9iGEFcN+Vvgv9wOsLRgsAZ10DG/NK6c1unXKDM/ogJtJYccNI8Hd+qNE/GFV6A==} @@ -39525,6 +27282,7 @@ snapshots: ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color + dev: false /@storybook/csf-tools@7.6.9: resolution: {integrity: sha512-1Lfq+d3NBhmCq07Tz3Fc5Y2szpXKFtQ8Xx9/Ht0NC/dihn8ZgRlFa8uak9BKNWh5kTQb4EP7e0PMmwyowR1JWQ==} @@ -39557,11 +27315,12 @@ snapshots: resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==} dev: true - '@storybook/docs-tools@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/docs-tools@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-o+rAWPRGifjBF5xZzTKOqnHN3XQWkl0QFJYVDIiJYJrVll7ExCkpEq/PahOGzIBBV+tpMstJgmKM3lr/lu/jmg==} dependencies: '@babel/core': 7.24.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) core-js: 3.37.1 doctrine: 3.0.0 lodash: 4.17.21 @@ -39607,38 +27366,37 @@ snapshots: '@storybook/core-client': 6.5.16(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1) '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/node-logger': 6.5.16 - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/ui': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/ui': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@types/node': 16.18.101 '@types/webpack': 4.41.38 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.37.1 - css-loader: 3.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + css-loader: 3.6.0(webpack@5.84.1) express: 4.19.2(supports-color@6.1.0) - file-loader: 6.2.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + file-loader: 6.2.0(webpack@5.84.1) find-up: 5.0.0 fs-extra: 9.1.0 - html-webpack-plugin: 4.5.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - node-fetch: 2.7.0(encoding@0.1.13) + html-webpack-plugin: 4.5.2(webpack@5.84.1) + node-fetch: 2.7.0 pnp-webpack-plugin: 1.6.4(typescript@4.9.5) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 resolve-from: 5.0.0 - style-loader: 1.3.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + style-loader: 1.3.0(webpack@5.84.1) telejson: 6.0.8 - terser-webpack-plugin: 4.2.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + terser-webpack-plugin: 4.2.3(webpack@5.84.1) ts-dedent: 2.2.0 - url-loader: 4.1.1(file-loader@6.2.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + typescript: 4.9.5 + url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.84.1) util-deprecate: 1.0.2 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-dev-middleware: 3.7.3(webpack@5.84.1) webpack-virtual-modules: 0.2.2 - optionalDependencies: - typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - bluebird @@ -39649,6 +27407,7 @@ snapshots: - uglify-js - vue-template-compiler - webpack-cli + dev: false /@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): resolution: {integrity: sha512-OtxXv8JCe0r/0rE5HxaFicsNsXA+fqZxzokxquFFgrYf/1Jg4d7QX6/pG5wINF+5qInJfVkRG6xhPzv1s5bk9Q==} @@ -39667,35 +27426,34 @@ snapshots: '@storybook/core-client': 6.5.16(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1) '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/node-logger': 6.5.16 - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/ui': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/ui': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@types/node': 16.18.101 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.37.1 - css-loader: 5.2.7(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + css-loader: 5.2.7(webpack@5.84.1) express: 4.19.2(supports-color@6.1.0) find-up: 5.0.0 fs-extra: 9.1.0 - html-webpack-plugin: 5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - node-fetch: 2.7.0(encoding@0.1.13) + html-webpack-plugin: 5.6.0(webpack@5.84.1) + node-fetch: 2.7.0 process: 0.11.10 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 resolve-from: 5.0.0 - style-loader: 2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + style-loader: 2.0.0(webpack@5.84.1) telejson: 6.0.8 terser-webpack-plugin: 5.3.10(@swc/core@1.3.99)(esbuild@0.18.20)(webpack@5.84.1) ts-dedent: 2.2.0 + typescript: 4.9.5 util-deprecate: 1.0.2 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-dev-middleware: 4.3.0(webpack@5.84.1) webpack-virtual-modules: 0.4.6 - optionalDependencies: - typescript: 4.9.5 transitivePeerDependencies: - '@rspack/core' - '@swc/core' @@ -39706,6 +27464,7 @@ snapshots: - uglify-js - vue-template-compiler - webpack-cli + dev: false /@storybook/manager@7.6.9: resolution: {integrity: sha512-FGY4Dsttg1P9fPVeXuQyIEpXdQYHMMvqUoCpEc0hkDBf4cu6tbQCLOeP7EPKN4oVW+zKh4BanJlrOlqGAD5jWA==} @@ -39746,6 +27505,7 @@ snapshots: resolution: {integrity: sha512-08K2q+qN6pqyPW7PHLCZ5G5Xa6Wosd6t0F16PQ4abX2ItlJLabVoJN5mZ0gm/aeLTjD8QYr8IDvacu4eXh0SVA==} dependencies: core-js: 3.37.1 + dev: true /@storybook/preset-react-webpack@7.6.9(@babel/core@7.24.7)(@swc/core@1.3.99)(esbuild@0.18.20)(typescript@5.1.6)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3): resolution: {integrity: sha512-53zfRsr+YeP6SkoIBXCQjKhAMlVTRNtSpzuvhd7MvLoaU3YO9xE1ZzHMljk1r6gXt+GOMdEzZhFRGc/z/M62Vg==} @@ -39814,14 +27574,18 @@ snapshots: util-deprecate: 1.0.2 dev: true - '@storybook/preview-web@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/preview-web@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-IJnvfe2sKCfk7apN9Fu9U8qibbarrPX5JB55ZzK1amSHVmSDuYk5MIMc/U3NnSQNnvd1DO5v/zMcGgj563hrtg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) ansi-to-html: 0.6.15 core-js: 3.37.1 global: 4.4.0 @@ -39839,9 +27603,13 @@ snapshots: resolution: {integrity: sha512-cQbejRzUYghU913ZWLc37YinzU4Ziv5eYonQzGk7C5O2hP2MoDYqIL9CIll00tNb9lXDuK1kYz7AVJNrsDrvCg==} dev: true - '@storybook/react-docgen-typescript-plugin@1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@storybook/react-docgen-typescript-plugin@1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.84.1): + resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==} + peerDependencies: + typescript: '>= 3.x' + webpack: 5.84.1 dependencies: - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) endent: 2.1.0 find-cache-dir: 3.3.2 flat-cache: 3.2.0 @@ -39852,6 +27620,7 @@ snapshots: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) transitivePeerDependencies: - supports-color + dev: false /@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.1.6)(webpack@5.84.1): resolution: {integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==} @@ -39914,6 +27683,7 @@ snapshots: - webpack-dev-server - webpack-hot-middleware - webpack-plugin-serve + dev: true /@storybook/react@6.5.16(@babel/core@7.24.7)(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(require-from-string@2.0.2)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3): resolution: {integrity: sha512-cBtNlOzf/MySpNLBK22lJ8wFU22HnfTB2xJyBk7W7Zi71Lm7Uxkhv1Pz8HdiQndJ0SlsAAQOWjQYsSZsGkZIaA==} @@ -39956,9 +27726,9 @@ snapshots: '@storybook/docs-tools': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/manager-webpack5': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/node-logger': 6.5.16 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.84.1) '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@types/estree': 0.0.51 '@types/node': 16.18.101 '@types/webpack-env': 1.18.5 @@ -39976,12 +27746,13 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-element-to-jsx-string: 14.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-element-to-jsx-string: 14.3.4(react-dom@18.3.1)(react@18.3.1) react-refresh: 0.11.0 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 require-from-string: 2.0.2 ts-dedent: 2.2.0 + typescript: 4.9.5 util-deprecate: 1.0.2 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) transitivePeerDependencies: @@ -40003,6 +27774,7 @@ snapshots: - webpack-dev-server - webpack-hot-middleware - webpack-plugin-serve + dev: false /@storybook/react@7.6.9(typescript@5.1.6): resolution: {integrity: sha512-nKBiI0wVyN3yj9xgNjIVKaaYSwe+qBqn0pxmiHSY20mUY4GH1thEY2KMtL0BLIU/mvcp6cw/Sj3oDFKCe+G0MA==} @@ -40042,7 +27814,11 @@ snapshots: - supports-color dev: true - '@storybook/router@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/router@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-ZgeP8a5YV/iuKbv31V8DjPxlV4AzorRiR8OuSt/KqaiYXNXlOoQDz/qMmiNcrshrfLpmkzoq7fSo4T8lWo2UwQ==} + 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': 6.5.16 core-js: 3.37.1 @@ -40052,14 +27828,21 @@ snapshots: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 - '@storybook/semver@7.3.2': + /@storybook/semver@7.3.2: + resolution: {integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==} + engines: {node: '>=10'} + hasBin: true dependencies: core-js: 3.37.1 find-up: 4.1.0 - '@storybook/source-loader@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/source-loader@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-fyVl4jrM/5JLrb48aqXPu7sTsmySQaVGFp1zfeqvPPlJRFMastDrePm5XGPN7Qjv1wsKmpuBvuweFKOT1pru3g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.37.1 @@ -40071,6 +27854,7 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 + dev: true /@storybook/store@6.5.16(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-g+bVL5hmMq/9cM51K04e37OviUPHT0rHHrRm5wj/hrf18Kd9120b3sxdQ5Dc+HZ292yuME0n+cyrQPTYx9Epmw==} @@ -40078,7 +27862,7 @@ snapshots: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 @@ -40107,7 +27891,7 @@ snapshots: fetch-retry: 5.0.6 fs-extra: 9.1.0 global: 4.4.0 - isomorphic-unfetch: 3.1.0(encoding@0.1.13) + isomorphic-unfetch: 3.1.0 nanoid: 3.3.7 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 @@ -40123,6 +27907,7 @@ snapshots: - uglify-js - vue-template-compiler - webpack-cli + dev: false /@storybook/telemetry@7.6.9: resolution: {integrity: sha512-0Dj2RH5oAL1mY72OcZKmiOlAcWyex2bwYJZUnsFrA+RFvOr7FbHAVWwudz4orWzIkYFTESixF4wuF0mYk8ds6g==} @@ -40138,8 +27923,13 @@ snapshots: transitivePeerDependencies: - encoding - supports-color + dev: true - '@storybook/theming@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/theming@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-hNLctkjaYLRdk1+xYTkC1mg4dYz2wSv6SqbLpcKMbkPHTE0ElhddGPHQqB362md/w9emYXNkt1LSMD8Xk9JzVQ==} + 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': 6.5.16 core-js: 3.37.1 @@ -40157,17 +27947,21 @@ snapshots: file-system-cache: 2.3.0 dev: true - '@storybook/ui@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/ui@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-rHn/n12WM8BaXtZ3IApNZCiS+C4Oc5+Lkl4MoctX8V7QSml0SxZBB5hsJ/AiWkgbRxjQpa/L/Nt7/Qw0FjTH/A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/core-events': 6.5.16 - '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) core-js: 3.37.1 memoizerific: 1.11.3 qs: 6.12.3 @@ -40175,15 +27969,23 @@ snapshots: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 resolve-from: 5.0.0 + dev: false /@svgr/babel-plugin-add-jsx-attribute@4.2.0: resolution: {integrity: sha512-j7KnilGyZzYr/jhcrSYS3FGWMZVaqyCG0vzMCwzvei0coIkczuYMcniK07nI0aHJINciujjH11T72ICW5eL5Ig==} engines: {node: '>=8'} dev: true - '@svgr/babel-plugin-add-jsx-attribute@5.4.0': {} + /@svgr/babel-plugin-add-jsx-attribute@5.4.0: + resolution: {integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==} + engines: {node: '>=10'} + dev: true - '@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.24.7)': + /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.24.7): + resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 @@ -40201,9 +28003,16 @@ snapshots: engines: {node: '>=8'} dev: true - '@svgr/babel-plugin-remove-jsx-attribute@5.4.0': {} + /@svgr/babel-plugin-remove-jsx-attribute@5.4.0: + resolution: {integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==} + engines: {node: '>=10'} + dev: true - '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.7)': + /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.7): + resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 @@ -40212,9 +28021,16 @@ snapshots: engines: {node: '>=8'} dev: true - '@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1': {} + /@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1: + resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==} + engines: {node: '>=10'} + dev: true - '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.7)': + /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.7): + resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 @@ -40223,9 +28039,16 @@ snapshots: engines: {node: '>=8'} dev: true - '@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1': {} + /@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1: + resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==} + engines: {node: '>=10'} + dev: true - '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.24.7)': + /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.24.7): + resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 @@ -40243,9 +28066,16 @@ snapshots: engines: {node: '>=8'} dev: true - '@svgr/babel-plugin-svg-dynamic-title@5.4.0': {} + /@svgr/babel-plugin-svg-dynamic-title@5.4.0: + resolution: {integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==} + engines: {node: '>=10'} + dev: true - '@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.24.7)': + /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.24.7): + resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 @@ -40263,9 +28093,16 @@ snapshots: engines: {node: '>=8'} dev: true - '@svgr/babel-plugin-svg-em-dimensions@5.4.0': {} + /@svgr/babel-plugin-svg-em-dimensions@5.4.0: + resolution: {integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==} + engines: {node: '>=10'} + dev: true - '@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.24.7)': + /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.24.7): + resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 @@ -40283,9 +28120,16 @@ snapshots: engines: {node: '>=8'} dev: true - '@svgr/babel-plugin-transform-react-native-svg@5.4.0': {} + /@svgr/babel-plugin-transform-react-native-svg@5.4.0: + resolution: {integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==} + engines: {node: '>=10'} + dev: true - '@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.24.7)': + /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.24.7): + resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 @@ -40303,9 +28147,16 @@ snapshots: engines: {node: '>=8'} dev: true - '@svgr/babel-plugin-transform-svg-component@5.5.0': {} + /@svgr/babel-plugin-transform-svg-component@5.5.0: + resolution: {integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==} + engines: {node: '>=10'} + dev: true - '@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.24.7)': + /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.24.7): + resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} + engines: {node: '>=12'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 @@ -40318,7 +28169,9 @@ snapshots: '@babel/core': 7.24.7 dev: true - '@svgr/babel-preset@4.3.3': + /@svgr/babel-preset@4.3.3: + resolution: {integrity: sha512-6PG80tdz4eAlYUN3g5GZiUjg2FMcp+Wn6rtnz5WJG9ITGEF1pmFdzq02597Hn0OmnQuCVaBYQE1OVFAnwOl+0A==} + engines: {node: '>=8'} dependencies: '@svgr/babel-plugin-add-jsx-attribute': 4.2.0 '@svgr/babel-plugin-remove-jsx-attribute': 4.2.0 @@ -40330,7 +28183,9 @@ snapshots: '@svgr/babel-plugin-transform-svg-component': 4.2.0 dev: true - '@svgr/babel-preset@5.5.0': + /@svgr/babel-preset@5.5.0: + resolution: {integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==} + engines: {node: '>=10'} dependencies: '@svgr/babel-plugin-add-jsx-attribute': 5.4.0 '@svgr/babel-plugin-remove-jsx-attribute': 5.4.0 @@ -40340,8 +28195,13 @@ snapshots: '@svgr/babel-plugin-svg-em-dimensions': 5.4.0 '@svgr/babel-plugin-transform-react-native-svg': 5.4.0 '@svgr/babel-plugin-transform-svg-component': 5.5.0 + dev: true - '@svgr/babel-preset@6.5.1(@babel/core@7.24.7)': + /@svgr/babel-preset@6.5.1(@babel/core@7.24.7): + resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.24.7) @@ -40370,7 +28230,9 @@ snapshots: '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.24.7) dev: true - '@svgr/core@4.3.3': + /@svgr/core@4.3.3: + resolution: {integrity: sha512-qNuGF1QON1626UCaZamWt5yedpgOytvLj5BQZe2j1k1B8DUG4OyugZyfEwBeXozCUwhLEpsrgPrE+eCu4fY17w==} + engines: {node: '>=8'} dependencies: '@svgr/plugin-jsx': 4.3.3 camelcase: 5.3.1 @@ -40379,15 +28241,20 @@ snapshots: - supports-color dev: true - '@svgr/core@5.5.0': + /@svgr/core@5.5.0: + resolution: {integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==} + engines: {node: '>=10'} dependencies: '@svgr/plugin-jsx': 5.5.0 camelcase: 6.3.0 cosmiconfig: 7.1.0 transitivePeerDependencies: - supports-color + dev: true - '@svgr/core@6.5.1': + /@svgr/core@6.5.1: + resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} + engines: {node: '>=10'} dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 6.5.1(@babel/core@7.24.7) @@ -40411,16 +28278,23 @@ snapshots: - typescript dev: true - '@svgr/hast-util-to-babel-ast@4.3.2': + /@svgr/hast-util-to-babel-ast@4.3.2: + resolution: {integrity: sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg==} + engines: {node: '>=8'} dependencies: '@babel/types': 7.24.7 dev: true - '@svgr/hast-util-to-babel-ast@5.5.0': + /@svgr/hast-util-to-babel-ast@5.5.0: + resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} + engines: {node: '>=10'} dependencies: '@babel/types': 7.24.7 + dev: true - '@svgr/hast-util-to-babel-ast@6.5.1': + /@svgr/hast-util-to-babel-ast@6.5.1: + resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} + engines: {node: '>=10'} dependencies: '@babel/types': 7.24.7 entities: 4.5.0 @@ -40433,7 +28307,9 @@ snapshots: entities: 4.5.0 dev: true - '@svgr/plugin-jsx@4.3.3': + /@svgr/plugin-jsx@4.3.3: + resolution: {integrity: sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w==} + engines: {node: '>=8'} dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 4.3.3 @@ -40443,7 +28319,9 @@ snapshots: - supports-color dev: true - '@svgr/plugin-jsx@5.5.0': + /@svgr/plugin-jsx@5.5.0: + resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} + engines: {node: '>=10'} dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 5.5.0 @@ -40451,8 +28329,13 @@ snapshots: svg-parser: 2.0.4 transitivePeerDependencies: - supports-color + dev: true - '@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1)': + /@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1): + resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==} + engines: {node: '>=10'} + peerDependencies: + '@svgr/core': ^6.0.0 dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 6.5.1(@babel/core@7.24.7) @@ -40477,20 +28360,29 @@ snapshots: - supports-color dev: true - '@svgr/plugin-svgo@4.3.1': + /@svgr/plugin-svgo@4.3.1: + resolution: {integrity: sha512-PrMtEDUWjX3Ea65JsVCwTIXuSqa3CG9px+DluF1/eo9mlDrgrtFE7NE/DjdhjJgSM9wenlVBzkzneSIUgfUI/w==} + engines: {node: '>=8'} dependencies: cosmiconfig: 5.2.1 merge-deep: 3.0.3 svgo: 1.3.2 dev: true - '@svgr/plugin-svgo@5.5.0': + /@svgr/plugin-svgo@5.5.0: + resolution: {integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==} + engines: {node: '>=10'} dependencies: cosmiconfig: 7.1.0 deepmerge: 4.3.1 svgo: 1.3.2 + dev: true - '@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1)': + /@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1): + resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==} + engines: {node: '>=10'} + peerDependencies: + '@svgr/core': '*' dependencies: '@svgr/core': 6.5.1 cosmiconfig: 7.1.0 @@ -40511,7 +28403,9 @@ snapshots: - typescript dev: true - '@svgr/rollup@6.5.1': + /@svgr/rollup@6.5.1: + resolution: {integrity: sha512-GeUfq0grJfpcn2jRWRaZ4npn27nnWK21vUj6MqDqknuJnEqGADcZZjO9wrUAaPLr3InAnQi0Z7nwiNUdzkaj6A==} + engines: {node: '>=10'} dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) @@ -40524,8 +28418,11 @@ snapshots: '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1) transitivePeerDependencies: - supports-color + dev: true - '@svgr/webpack@4.3.2': + /@svgr/webpack@4.3.2: + resolution: {integrity: sha512-F3VE5OvyOWBEd2bF7BdtFRyI6E9it3mN7teDw0JQTlVtc4HZEYiiLSl+Uf9Uub6IYHVGc+qIrxxDyeedkQru2w==} + engines: {node: '>=8'} dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) @@ -40539,7 +28436,9 @@ snapshots: - supports-color dev: true - '@svgr/webpack@5.5.0': + /@svgr/webpack@5.5.0: + resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==} + engines: {node: '>=10'} dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) @@ -40551,8 +28450,11 @@ snapshots: loader-utils: 2.0.4 transitivePeerDependencies: - supports-color + dev: true - '@svgr/webpack@6.5.1': + /@svgr/webpack@6.5.1: + resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==} + engines: {node: '>=10'} dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) @@ -40592,6 +28494,7 @@ snapshots: dependencies: '@swc/core': 1.3.99(@swc/helpers@0.5.9) '@swc/types': 0.1.9 + dev: true /@swc-node/register@1.6.8(@swc/core@1.3.99)(@swc/types@0.1.9)(typescript@5.1.6): resolution: {integrity: sha512-74ijy7J9CWr1Z88yO+ykXphV29giCrSpANQPQRooE0bObpkTO1g4RzQovIfbIaniBiGDDVsYwDoQ3FIrCE8HcQ==} @@ -40603,19 +28506,21 @@ snapshots: '@swc-node/sourcemap-support': 0.3.0 '@swc/core': 1.3.99(@swc/helpers@0.5.9) colorette: 2.0.20 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) pirates: 4.0.6 tslib: 2.6.3 typescript: 5.1.6 transitivePeerDependencies: - '@swc/types' - supports-color + dev: true /@swc-node/sourcemap-support@0.3.0: resolution: {integrity: sha512-gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA==} dependencies: source-map-support: 0.5.21 tslib: 2.6.3 + dev: true /@swc/cli@0.1.65(@swc/core@1.3.99): resolution: {integrity: sha512-4NcgsvJVHhA7trDnMmkGLLvWMHu2kSy+qHx6QwRhhJhdiYdNUrhdp+ERxen73sYtaeEOYeLJcWrQ60nzKi6rpg==} @@ -40636,8 +28541,7 @@ snapshots: semver: 7.6.2 slash: 3.0.0 source-map: 0.7.4 - optionalDependencies: - chokidar: 3.6.0 + dev: true /@swc/core-darwin-arm64@1.3.99: resolution: {integrity: sha512-Qj7Jct68q3ZKeuJrjPx7k8SxzWN6PqLh+VFxzA+KwLDpQDPzOlKRZwkIMzuFjLhITO4RHgSnXoDk/Syz0ZeN+Q==} @@ -40735,26 +28639,36 @@ snapshots: '@swc/core-win32-ia32-msvc': 1.3.99 '@swc/core-win32-x64-msvc': 1.3.99 - '@swc/counter@0.1.3': {} + /@swc/counter@0.1.3: + resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} /@swc/helpers@0.5.9: resolution: {integrity: sha512-XI76sLwMJoLjJTOK5RblBZkouOJG3X3hjxLCzLnyN1ifAiKQc6Hck3uvnU4Z/dV/Dyk36Ffj8FLvDLV2oWvKTw==} dependencies: tslib: 2.6.3 - '@swc/types@0.1.9': + /@swc/types@0.1.9: + resolution: {integrity: sha512-qKnCno++jzcJ4lM4NTfYifm1EFSCeIfKiAHAfkENZAV5Kl9PjJIyd2yeeVv6c/2CckuLyv2NmRC5pv6pm2WQBg==} dependencies: '@swc/counter': 0.1.3 - '@szmarczak/http-timer@1.1.2': + /@szmarczak/http-timer@1.1.2: + resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} + engines: {node: '>=6'} dependencies: defer-to-connect: 1.1.3 + dev: false - '@szmarczak/http-timer@4.0.6': + /@szmarczak/http-timer@4.0.6: + resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} + engines: {node: '>=10'} dependencies: defer-to-connect: 2.0.1 + dev: true - '@testing-library/dom@7.31.2': + /@testing-library/dom@7.31.2: + resolution: {integrity: sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==} + engines: {node: '>=10'} dependencies: '@babel/code-frame': 7.24.7 '@babel/runtime': 7.24.7 @@ -40764,8 +28678,11 @@ snapshots: dom-accessibility-api: 0.5.16 lz-string: 1.5.0 pretty-format: 26.6.2 + dev: true - '@testing-library/dom@8.20.1': + /@testing-library/dom@8.20.1: + resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==} + engines: {node: '>=12'} dependencies: '@babel/code-frame': 7.24.7 '@babel/runtime': 7.24.7 @@ -40775,8 +28692,11 @@ snapshots: dom-accessibility-api: 0.5.16 lz-string: 1.5.0 pretty-format: 27.5.1 + dev: true - '@testing-library/dom@9.3.4': + /@testing-library/dom@9.3.4: + resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} + engines: {node: '>=14'} dependencies: '@babel/code-frame': 7.24.7 '@babel/runtime': 7.24.7 @@ -40786,8 +28706,11 @@ snapshots: dom-accessibility-api: 0.5.16 lz-string: 1.5.0 pretty-format: 27.5.1 + dev: true - '@testing-library/jest-dom@5.17.0': + /@testing-library/jest-dom@5.17.0: + resolution: {integrity: sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==} + engines: {node: '>=8', npm: '>=6', yarn: '>=1'} dependencies: '@adobe/css-tools': 4.4.0 '@babel/runtime': 7.24.7 @@ -40798,6 +28721,7 @@ snapshots: dom-accessibility-api: 0.5.16 lodash: 4.17.21 redent: 3.0.0 + dev: true /@testing-library/jest-dom@6.4.6(@types/jest@29.4.4)(jest@29.4.3): resolution: {integrity: sha512-8qpnGVincVDLEcQXWaHOf6zmlbwTKc6Us6PPu4CRnPXCzo2OGBS5cwgMMOWdxDpEz1mkbvXHpEy99M5Yvt682w==} @@ -40855,55 +28779,93 @@ snapshots: dependencies: '@adobe/css-tools': 4.4.0 '@babel/runtime': 7.24.7 + '@types/jest': 29.5.12 aria-query: 5.3.0 chalk: 3.0.0 css.escape: 1.5.1 dom-accessibility-api: 0.6.3 + jest: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) lodash: 4.17.21 redent: 3.0.0 - optionalDependencies: - '@jest/globals': 29.7.0 - '@types/jest': 29.5.12 - jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + dev: true - '@testing-library/react@14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@testing-library/react@14.3.1(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==} + engines: {node: '>=14'} + peerDependencies: + react: ^18.0.0 + react-dom: ^18.0.0 dependencies: '@babel/runtime': 7.24.7 '@testing-library/dom': 9.3.4 '@types/react-dom': 18.3.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + dev: true - '@testing-library/user-event@12.8.3(@testing-library/dom@7.31.2)': + /@testing-library/user-event@12.8.3(@testing-library/dom@7.31.2): + resolution: {integrity: sha512-IR0iWbFkgd56Bu5ZI/ej8yQwrkCv8Qydx6RzwbKz9faXazR/+5tvYKsZQgyXJiwgpcva127YO6JcWy7YlCfofQ==} + engines: {node: '>=10', npm: '>=6'} + peerDependencies: + '@testing-library/dom': '>=7.21.4' dependencies: '@babel/runtime': 7.24.7 '@testing-library/dom': 7.31.2 + dev: true - '@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4)': + /@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4): + resolution: {integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==} + engines: {node: '>=12', npm: '>=6'} + peerDependencies: + '@testing-library/dom': '>=7.21.4' dependencies: '@testing-library/dom': 9.3.4 + dev: true - '@tokenizer/token@0.3.0': {} + /@tokenizer/token@0.3.0: + resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} + dev: true - '@tootallnate/once@1.1.2': {} + /@tootallnate/once@1.1.2: + resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} + engines: {node: '>= 6'} + dev: true - '@tootallnate/once@2.0.0': {} + /@tootallnate/once@2.0.0: + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} + dev: true - '@trysound/sax@0.2.0': {} + /@trysound/sax@0.2.0: + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} - '@tsconfig/node10@1.0.11': {} + /@tsconfig/node10@1.0.11: + resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} + dev: true - '@tsconfig/node12@1.0.11': {} + /@tsconfig/node12@1.0.11: + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + dev: true - '@tsconfig/node14@1.0.3': {} + /@tsconfig/node14@1.0.3: + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + dev: true - '@tsconfig/node16@1.0.4': {} + /@tsconfig/node16@1.0.4: + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + dev: true - '@types/aria-query@4.2.2': {} + /@types/aria-query@4.2.2: + resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} + dev: true - '@types/aria-query@5.0.4': {} + /@types/aria-query@5.0.4: + resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} + dev: true - '@types/babel__core@7.20.5': + /@types/babel__core@7.20.5: + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} dependencies: '@babel/parser': 7.24.7 '@babel/types': 7.24.7 @@ -40911,46 +28873,60 @@ snapshots: '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.6 - '@types/babel__generator@7.6.8': + /@types/babel__generator@7.6.8: + resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} dependencies: '@babel/types': 7.24.7 - '@types/babel__template@7.4.4': + /@types/babel__template@7.4.4: + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} dependencies: '@babel/parser': 7.24.7 '@babel/types': 7.24.7 - '@types/babel__traverse@7.20.6': + /@types/babel__traverse@7.20.6: + resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} dependencies: '@babel/types': 7.24.7 - '@types/body-parser@1.19.5': + /@types/body-parser@1.19.5: + resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} dependencies: '@types/connect': 3.4.38 '@types/node': 13.13.52 + dev: true - '@types/bonjour@3.5.13': + /@types/bonjour@3.5.13: + resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/cacheable-request@6.0.3': + /@types/cacheable-request@6.0.3: + resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} dependencies: '@types/http-cache-semantics': 4.0.4 '@types/keyv': 3.1.4 '@types/node': 13.13.52 '@types/responselike': 1.0.3 + dev: true /@types/connect-history-api-fallback@1.5.4: resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} dependencies: '@types/express-serve-static-core': 4.19.5 '@types/node': 13.13.52 + dev: true - '@types/connect@3.4.38': + /@types/connect@3.4.38: + resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/cookie@0.4.1': {} + /@types/cookie@0.4.1: + resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==} + dev: true /@types/cross-spawn@6.0.6: resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==} @@ -40969,92 +28945,154 @@ snapshots: cssnano: 5.1.15(postcss@8.4.39) transitivePeerDependencies: - postcss + dev: true - '@types/d3-array@3.2.1': {} + /@types/d3-array@3.2.1: + resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==} + dev: false - '@types/d3-axis@3.0.6': + /@types/d3-axis@3.0.6: + resolution: {integrity: sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==} dependencies: '@types/d3-selection': 3.0.10 + dev: false - '@types/d3-brush@3.0.6': + /@types/d3-brush@3.0.6: + resolution: {integrity: sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==} dependencies: '@types/d3-selection': 3.0.10 + dev: false - '@types/d3-chord@3.0.6': {} + /@types/d3-chord@3.0.6: + resolution: {integrity: sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==} + dev: false - '@types/d3-color@3.1.3': {} + /@types/d3-color@3.1.3: + resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==} + dev: false - '@types/d3-contour@3.0.6': + /@types/d3-contour@3.0.6: + resolution: {integrity: sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==} dependencies: '@types/d3-array': 3.2.1 '@types/geojson': 7946.0.14 + dev: false - '@types/d3-delaunay@6.0.4': {} + /@types/d3-delaunay@6.0.4: + resolution: {integrity: sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==} + dev: false - '@types/d3-dispatch@3.0.6': {} + /@types/d3-dispatch@3.0.6: + resolution: {integrity: sha512-4fvZhzMeeuBJYZXRXrRIQnvUYfyXwYmLsdiN7XXmVNQKKw1cM8a5WdID0g1hVFZDqT9ZqZEY5pD44p24VS7iZQ==} + dev: false - '@types/d3-drag@3.0.7': + /@types/d3-drag@3.0.7: + resolution: {integrity: sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==} dependencies: '@types/d3-selection': 3.0.10 + dev: false - '@types/d3-dsv@3.0.7': {} + /@types/d3-dsv@3.0.7: + resolution: {integrity: sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==} + dev: false - '@types/d3-ease@3.0.2': {} + /@types/d3-ease@3.0.2: + resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==} + dev: false - '@types/d3-fetch@3.0.7': + /@types/d3-fetch@3.0.7: + resolution: {integrity: sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==} dependencies: '@types/d3-dsv': 3.0.7 + dev: false - '@types/d3-force@3.0.10': {} + /@types/d3-force@3.0.10: + resolution: {integrity: sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==} + dev: false - '@types/d3-format@3.0.4': {} + /@types/d3-format@3.0.4: + resolution: {integrity: sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==} + dev: false - '@types/d3-geo@3.1.0': + /@types/d3-geo@3.1.0: + resolution: {integrity: sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==} dependencies: '@types/geojson': 7946.0.14 + dev: false - '@types/d3-hierarchy@3.1.7': {} + /@types/d3-hierarchy@3.1.7: + resolution: {integrity: sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==} + dev: false - '@types/d3-interpolate@3.0.4': + /@types/d3-interpolate@3.0.4: + resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==} dependencies: '@types/d3-color': 3.1.3 + dev: false - '@types/d3-path@3.1.0': {} + /@types/d3-path@3.1.0: + resolution: {integrity: sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==} + dev: false - '@types/d3-polygon@3.0.2': {} + /@types/d3-polygon@3.0.2: + resolution: {integrity: sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==} + dev: false - '@types/d3-quadtree@3.0.6': {} + /@types/d3-quadtree@3.0.6: + resolution: {integrity: sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==} + dev: false - '@types/d3-random@3.0.3': {} + /@types/d3-random@3.0.3: + resolution: {integrity: sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==} + dev: false - '@types/d3-scale-chromatic@3.0.3': {} + /@types/d3-scale-chromatic@3.0.3: + resolution: {integrity: sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==} + dev: false - '@types/d3-scale@4.0.8': + /@types/d3-scale@4.0.8: + resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==} dependencies: '@types/d3-time': 3.0.3 + dev: false - '@types/d3-selection@3.0.10': {} + /@types/d3-selection@3.0.10: + resolution: {integrity: sha512-cuHoUgS/V3hLdjJOLTT691+G2QoqAjCVLmr4kJXR4ha56w1Zdu8UUQ5TxLRqudgNjwXeQxKMq4j+lyf9sWuslg==} + dev: false - '@types/d3-shape@3.1.6': + /@types/d3-shape@3.1.6: + resolution: {integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==} dependencies: '@types/d3-path': 3.1.0 + dev: false - '@types/d3-time-format@4.0.3': {} + /@types/d3-time-format@4.0.3: + resolution: {integrity: sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==} + dev: false - '@types/d3-time@3.0.3': {} + /@types/d3-time@3.0.3: + resolution: {integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==} + dev: false - '@types/d3-timer@3.0.2': {} + /@types/d3-timer@3.0.2: + resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==} + dev: false - '@types/d3-transition@3.0.8': + /@types/d3-transition@3.0.8: + resolution: {integrity: sha512-ew63aJfQ/ms7QQ4X7pk5NxQ9fZH/z+i24ZfJ6tJSfqxJMrYLiK01EAs2/Rtw/JreGUsS3pLPNV644qXFGnoZNQ==} dependencies: '@types/d3-selection': 3.0.10 + dev: false - '@types/d3-zoom@3.0.8': + /@types/d3-zoom@3.0.8: + resolution: {integrity: sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==} dependencies: '@types/d3-interpolate': 3.0.4 '@types/d3-selection': 3.0.10 + dev: false - '@types/d3@7.4.3': + /@types/d3@7.4.3: + resolution: {integrity: sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==} dependencies: '@types/d3-array': 3.2.1 '@types/d3-axis': 3.0.6 @@ -41086,6 +29124,7 @@ snapshots: '@types/d3-timer': 3.0.2 '@types/d3-transition': 3.0.8 '@types/d3-zoom': 3.0.8 + dev: false /@types/detect-port@1.3.5: resolution: {integrity: sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==} @@ -41117,40 +29156,50 @@ snapshots: '@types/eslint': 8.56.10 '@types/estree': 1.0.5 - '@types/eslint@7.29.0': + /@types/eslint@7.29.0: + resolution: {integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==} dependencies: '@types/estree': 1.0.5 '@types/json-schema': 7.0.15 + dev: true - '@types/eslint@8.56.10': + /@types/eslint@8.56.10: + resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==} dependencies: '@types/estree': 1.0.5 '@types/json-schema': 7.0.15 + /@types/estree@0.0.39: + resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} + dev: true + /@types/estree@0.0.51: resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} - '@types/estree@0.0.39': {} - - '@types/estree@0.0.51': {} - - '@types/estree@1.0.5': {} + /@types/estree@1.0.5: + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} - '@types/express-serve-static-core@4.19.5': + /@types/express-serve-static-core@4.19.5: + resolution: {integrity: sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==} dependencies: '@types/node': 13.13.52 '@types/qs': 6.9.15 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 + dev: true - '@types/express@4.17.21': + /@types/express@4.17.21: + resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} dependencies: '@types/body-parser': 1.19.5 '@types/express-serve-static-core': 4.19.5 '@types/qs': 6.9.15 '@types/serve-static': 1.15.7 + dev: true - '@types/file-saver@2.0.7': {} + /@types/file-saver@2.0.7: + resolution: {integrity: sha512-dNKVfHd/jk0SkR/exKGj2ggkB45MAkzvWCaqLUUgkyjITkGNzH8H+yUwr+BLJUBjZOe9w8X3wgmXhZDRg1ED6A==} + dev: true /@types/find-cache-dir@3.2.1: resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==} @@ -41160,35 +29209,41 @@ snapshots: resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/geojson@7946.0.14': {} + /@types/geojson@7946.0.14: + resolution: {integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==} + dev: false - '@types/glob@7.2.0': + /@types/glob@7.2.0: + resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 5.1.2 '@types/node': 13.13.52 - '@types/glob@8.1.0': + /@types/glob@8.1.0: + resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==} dependencies: '@types/minimatch': 5.1.2 '@types/node': 13.13.52 dev: false - '@types/graceful-fs@4.1.9': + /@types/graceful-fs@4.1.9: + resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} dependencies: '@types/node': 13.13.52 - '@types/hast@2.3.10': - dependencies: - '@types/unist': 2.0.10 - - '@types/hast@3.0.4': + /@types/hast@2.3.10: + resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} dependencies: '@types/unist': 2.0.10 - '@types/history@4.7.11': {} + /@types/history@4.7.11: + resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==} + dev: true - '@types/hoist-non-react-statics@3.3.5': + /@types/hoist-non-react-statics@3.3.5: + resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==} dependencies: '@types/react': 18.0.18 hoist-non-react-statics: 3.3.2 @@ -41197,43 +29252,63 @@ snapshots: resolution: {integrity: sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==} dev: false - '@types/html-minifier-terser@6.1.0': {} + /@types/html-minifier-terser@6.1.0: + resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} - '@types/http-cache-semantics@4.0.4': {} + /@types/http-cache-semantics@4.0.4: + resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} + dev: true - '@types/http-errors@2.0.4': {} + /@types/http-errors@2.0.4: + resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} + dev: true - '@types/http-proxy@1.17.14': + /@types/http-proxy@1.17.14: + resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/i18next-xhr-backend@1.4.2': + /@types/i18next-xhr-backend@1.4.2: + resolution: {integrity: sha512-uykS5BvdSoN+G7j7D19xzR12pEVkWmUrIEIxMsj2brVVzjc3gIthWCQKYqbe/b1q87SLbWb/ZHN9bR4qxi1H6A==} + deprecated: This is a stub types definition. i18next-xhr-backend provides its own type definitions, so you do not need this installed. dependencies: i18next-xhr-backend: 3.2.2 + dev: true - '@types/i18next@8.4.3': {} + /@types/i18next@8.4.3: + resolution: {integrity: sha512-ayqHEU+i9H7/Fkefnhyvml1ChKEZXcDwmVqo3jmrxy7PoAtTSY1t4/hr58Xz8hkXLPoCGS1hTc6bLJOUaOAjfQ==} + dev: true - '@types/inquirer@8.2.10': + /@types/inquirer@8.2.10: + resolution: {integrity: sha512-IdD5NmHyVjWM8SHWo/kPBgtzXatwPkfwzyP3fN1jF2g9BWt5WO+8hL2F4o2GKIYsU40PpqeevuUWvkS/roXJkA==} dependencies: '@types/through': 0.0.33 rxjs: 7.8.1 + dev: true - '@types/is-function@1.0.3': {} + /@types/is-function@1.0.3: + resolution: {integrity: sha512-/CLhCW79JUeLKznI6mbVieGbl4QU5Hfn+6udw1YHZoofASjbQ5zaP5LzAUZYDpRYEjS4/P+DhEgyJ/PQmGGTWw==} - '@types/istanbul-lib-coverage@2.0.6': {} + /@types/istanbul-lib-coverage@2.0.6: + resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} - '@types/istanbul-lib-report@3.0.3': + /@types/istanbul-lib-report@3.0.3: + resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} dependencies: '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports@3.0.4': + /@types/istanbul-reports@3.0.4: + resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} dependencies: '@types/istanbul-lib-report': 3.0.3 - '@types/jest@26.0.24': + /@types/jest@26.0.24: + resolution: {integrity: sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==} dependencies: jest-diff: 26.6.2 pretty-format: 26.6.2 + dev: true /@types/jest@29.4.4: resolution: {integrity: sha512-qezb65VIH7X1wobSnd6Lvdve7PXSyQRa3dljTkhTtDhi603RvHQCshSlJcuyMLHJpeHgY3NKwvDJWxMOOHxGDQ==} @@ -41248,52 +29323,72 @@ snapshots: expect: 29.7.0 pretty-format: 29.7.0 - '@types/js-beautify@1.14.3': {} + /@types/js-beautify@1.14.3: + resolution: {integrity: sha512-FMbQHz+qd9DoGvgLHxeqqVPaNRffpIu5ZjozwV8hf9JAGpIOzuAf4wGbRSo8LNITHqGjmmVjaMggTT5P4v4IHg==} + dev: true - '@types/js-levenshtein@1.1.3': {} + /@types/js-levenshtein@1.1.3: + resolution: {integrity: sha512-jd+Q+sD20Qfu9e2aEXogiO3vpOC1PYJOUdyN9gvs4Qrvkg4wF43L5OhqrPeokdv8TL0/mXoYfpkcoGZMNN2pkQ==} + dev: true - '@types/js-yaml@3.12.3': {} + /@types/js-yaml@3.12.3: + resolution: {integrity: sha512-otRe77JNNWzoVGLKw8TCspKswRoQToys4tuL6XYVBFxjgeM0RUrx7m3jkaTdxILxeGry3zM8mGYkGXMeQ02guA==} + dev: true - '@types/jsdom@20.0.1': + /@types/jsdom@20.0.1: + resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} dependencies: '@types/node': 13.13.52 '@types/tough-cookie': 4.0.5 parse5: 7.1.2 + dev: true - '@types/json-schema@7.0.15': {} + /@types/json-schema@7.0.15: + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} - '@types/json5@0.0.29': {} + /@types/json5@0.0.29: + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + dev: true - '@types/keyv@3.1.4': + /@types/keyv@3.1.4: + resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: '@types/node': 13.13.52 - '@types/lodash-es@4.17.12': + /@types/lodash-es@4.17.12: + resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==} dependencies: '@types/lodash': 4.17.5 + dev: true - '@types/lodash@4.17.5': {} + /@types/lodash@4.17.5: + resolution: {integrity: sha512-MBIOHVZqVqgfro1euRDWX7OO0fBVUUMrN6Pwm8LQsz8cWhEpihlvR70ENj3f40j58TNxZaWv2ndSkInykNBBJw==} - '@types/mdast@3.0.15': + /@types/mdast@3.0.15: + resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} dependencies: '@types/unist': 2.0.10 /@types/mime-types@2.1.4: resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==} - '@types/mime-types@2.1.4': {} - - '@types/mime@1.3.5': {} - - '@types/minimatch@3.0.5': {} + /@types/mime@1.3.5: + resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} + dev: true - '@types/minimatch@5.1.2': {} + /@types/minimatch@3.0.5: + resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} + dev: true - '@types/minimist@1.2.5': {} + /@types/minimatch@5.1.2: + resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} - '@types/ms@0.7.34': {} + /@types/minimist@1.2.5: + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} + dev: true - '@types/node-fetch@2.6.11': + /@types/node-fetch@2.6.11: + resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==} dependencies: '@types/node': 13.13.52 form-data: 4.0.0 @@ -41338,89 +29433,102 @@ snapshots: /@types/parse-json@4.0.2: resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} - '@types/node@13.13.52': {} + /@types/parse5@5.0.3: + resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==} - '@types/node@14.18.63': {} + /@types/prettier@2.7.3: + resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} + dev: true - '@types/node@16.18.101': {} + /@types/pretty-hrtime@1.0.3: + resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==} - '@types/normalize-package-data@2.4.4': {} + /@types/prop-types@15.7.12: + resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} /@types/q@1.5.8: resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==} dev: true - '@types/overlayscrollbars@1.12.5': {} - - '@types/parse-json@4.0.2': {} - - '@types/parse5@5.0.3': {} - - '@types/prettier@2.7.3': {} - - '@types/pretty-hrtime@1.0.3': {} - - '@types/prop-types@15.7.12': {} - - '@types/q@1.5.8': {} - - '@types/qs@6.9.15': {} + /@types/qs@6.9.15: + resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==} - '@types/range-parser@1.2.7': {} + /@types/range-parser@1.2.7: + resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} + dev: true - '@types/react-color@3.0.12': + /@types/react-color@3.0.12: + resolution: {integrity: sha512-pr3uKE3lSvf7GFo1Rn2K3QktiZQFFrSgSGJ/3iMvSOYWt2pPAJ97rVdVfhWxYJZ8prAEXzoP2XX//3qGSQgu7Q==} dependencies: '@types/react': 18.0.18 '@types/reactcss': 1.2.12 + dev: true - '@types/react-dom@18.3.0': + /@types/react-dom@18.3.0: + resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} dependencies: '@types/react': 18.0.18 + dev: true - '@types/react-notification-system@0.2.39': + /@types/react-notification-system@0.2.39: + resolution: {integrity: sha512-yfptO86dbfW4qaw34CIedfakdKWV3sPM0xb4T5EQZOza80WLvOUUKjdmZTeGyEKk/7n2za8RJa6aZpz/A+2Qbw==} dependencies: '@types/react': 18.0.18 + dev: true - '@types/react-redux@7.1.33': + /@types/react-redux@7.1.33: + resolution: {integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==} dependencies: '@types/hoist-non-react-statics': 3.3.5 '@types/react': 18.0.18 hoist-non-react-statics: 3.3.2 redux: 4.2.1 - '@types/react-router-dom@5.3.3': + /@types/react-router-dom@5.3.3: + resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==} dependencies: '@types/history': 4.7.11 '@types/react': 18.0.18 '@types/react-router': 5.1.20 + dev: true - '@types/react-router@5.1.20': + /@types/react-router@5.1.20: + resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==} dependencies: '@types/history': 4.7.11 '@types/react': 18.0.18 + dev: true /@types/react-transition-group@4.4.10: resolution: {integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==} dependencies: '@types/react': 18.0.18 + dev: false - '@types/react@18.0.18': + /@types/react@18.0.18: + resolution: {integrity: sha512-6hI08umYs6NaiHFEEGioXnxJ+oEhY3eRz8VCUaudZmGdtvPviCJB8mgaMxaDWAdPSYd4eFavrPk2QIolwbLYrg==} dependencies: '@types/prop-types': 15.7.12 '@types/scheduler': 0.23.0 csstype: 3.1.3 - '@types/reactcss@1.2.12': + /@types/reactcss@1.2.12: + resolution: {integrity: sha512-BrXUQ86/wbbFiZv8h/Q1/Q1XOsaHneYmCb/tHe9+M8XBAAUc2EHfdY0DY22ZZjVSaXr5ix7j+zsqO2eGZub8lQ==} dependencies: '@types/react': 18.0.18 + dev: true - '@types/reactour@1.18.5': + /@types/reactour@1.18.5: + resolution: {integrity: sha512-Pl5yh9bXeXaFcioDk6XVmUzdJGZDAKesVmwoh2KvN/1FXSd9saN8pIprLvfspnXANMcgl3AtSlD4zs0cJIhGIw==} dependencies: '@types/react': 18.0.18 + dev: true - '@types/redux-mock-store@1.0.6': + /@types/redux-mock-store@1.0.6: + resolution: {integrity: sha512-eg5RDfhJTXuoJjOMyXiJbaDb1B8tfTaJixscmu+jOusj6adGC0Krntz09Tf4gJgXeCqCrM5bBMd+B7ez0izcAQ==} dependencies: redux: 4.2.1 + dev: true /@types/resolve@1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} @@ -41441,90 +29549,119 @@ snapshots: dependencies: '@types/node': 13.13.52 - '@types/resolve@1.20.2': {} - - '@types/responselike@1.0.3': - dependencies: - '@types/node': 13.13.52 - - '@types/retry@0.12.0': {} + /@types/retry@0.12.0: + resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} + dev: true - '@types/scheduler@0.23.0': {} + /@types/scheduler@0.23.0: + resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==} - '@types/semver@7.5.8': {} + /@types/semver@7.5.8: + resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} + dev: true - '@types/send@0.17.4': + /@types/send@0.17.4: + resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} dependencies: '@types/mime': 1.3.5 '@types/node': 13.13.52 + dev: true - '@types/serve-index@1.9.4': + /@types/serve-index@1.9.4: + resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} dependencies: '@types/express': 4.17.21 + dev: true - '@types/serve-static@1.15.7': + /@types/serve-static@1.15.7: + resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} dependencies: '@types/http-errors': 2.0.4 '@types/node': 13.13.52 '@types/send': 0.17.4 + dev: true - '@types/set-cookie-parser@2.4.9': + /@types/set-cookie-parser@2.4.9: + resolution: {integrity: sha512-bCorlULvl0xTdjj4BPUHX4cqs9I+go2TfW/7Do1nnFYWS0CPP429Qr1AY42kiFhCwLpvAkWFr1XIBHd8j6/MCQ==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/sinonjs__fake-timers@8.1.1': {} + /@types/sinonjs__fake-timers@8.1.1: + resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} + dev: true - '@types/sizzle@2.3.8': {} + /@types/sizzle@2.3.8: + resolution: {integrity: sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==} + dev: true - '@types/sockjs@0.3.36': + /@types/sockjs@0.3.36: + resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} dependencies: '@types/node': 13.13.52 + dev: true /@types/source-list-map@0.1.6: resolution: {integrity: sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==} dev: false - '@types/stack-utils@2.0.3': {} + /@types/stack-utils@2.0.3: + resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} /@types/tapable@1.0.12: resolution: {integrity: sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==} dev: false - '@types/testing-library__jest-dom@5.14.9': + /@types/testing-library__jest-dom@5.14.9: + resolution: {integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==} dependencies: '@types/jest': 29.5.12 + dev: true - '@types/through@0.0.33': + /@types/through@0.0.33: + resolution: {integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/tough-cookie@4.0.5': {} + /@types/tough-cookie@4.0.5: + resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} + dev: true - '@types/ua-parser-js@0.7.36': {} + /@types/ua-parser-js@0.7.36: + resolution: {integrity: sha512-N1rW+njavs70y2cApeIw1vLMYXRwfBy+7trgavGuuTfOd7j1Yh7QTRc/yqsPl6ncokt72ZXuxEU0PiCp9bSwNQ==} + dev: true - '@types/uglify-js@3.17.5': + /@types/uglify-js@3.17.5: + resolution: {integrity: sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==} dependencies: source-map: 0.6.1 dev: false - '@types/unist@2.0.10': {} - - '@types/unist@3.0.2': {} + /@types/unist@2.0.10: + resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} - '@types/uuid@9.0.8': {} + /@types/uuid@9.0.8: + resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==} + dev: true - '@types/webappsec-credential-management@0.6.8': {} + /@types/webappsec-credential-management@0.6.8: + resolution: {integrity: sha512-DES/SkK54U7AG8hmMkGCJkOSlywM3R+TzaWT+rBnX3lQTJ3K57jWr+UccWY8ImkuKekC9BjB+AH4zLJB4JKpvQ==} + dev: true - '@types/webpack-env@1.18.5': {} + /@types/webpack-env@1.18.5: + resolution: {integrity: sha512-wz7kjjRRj8/Lty4B+Kr0LN6Ypc/3SymeCCGSbaXp2leH0ZVg/PriNiOwNj4bD4uphI7A8NXS4b6Gl373sfO5mA==} - '@types/webpack-sources@3.2.3': + /@types/webpack-sources@3.2.3: + resolution: {integrity: sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==} dependencies: '@types/node': 13.13.52 '@types/source-list-map': 0.1.6 source-map: 0.7.4 dev: false - '@types/webpack@4.41.38': + /@types/webpack@4.41.38: + resolution: {integrity: sha512-oOW7E931XJU1mVfCnxCVgv8GLFL768pDO5u2Gzk82i8yTIgX6i7cntyZOkZYb/JtYM8252SN9bQp9tgkVDSsRw==} dependencies: '@types/node': 13.13.52 '@types/tapable': 1.0.12 @@ -41534,41 +29671,58 @@ snapshots: source-map: 0.6.1 dev: false - '@types/ws@8.5.10': + /@types/ws@8.5.10: + resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/yargs-parser@21.0.3': {} + /@types/yargs-parser@21.0.3: + resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} - '@types/yargs@15.0.19': + /@types/yargs@15.0.19: + resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} dependencies: '@types/yargs-parser': 21.0.3 - '@types/yargs@17.0.32': + /@types/yargs@17.0.32: + resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} dependencies: '@types/yargs-parser': 21.0.3 - '@types/yauzl@2.10.3': + /@types/yauzl@2.10.3: + resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} + requiresBuild: true dependencies: '@types/node': 13.13.52 + dev: true optional: true - '@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5)': + /@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5): + resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + '@typescript-eslint/parser': ^4.0.0 + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true dependencies: '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/scope-manager': 4.33.0 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) eslint: 7.32.0 functional-red-black-tree: 1.0.1 ignore: 5.3.1 regexpp: 3.2.0 semver: 7.6.2 tsutils: 3.21.0(typescript@4.9.5) - optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color + dev: true /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.46.0)(typescript@5.1.6): resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} @@ -41614,18 +29768,27 @@ snapshots: transitivePeerDependencies: - supports-color - typescript + dev: true - '@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5)': + /@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5): + resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true dependencies: '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.5) - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) eslint: 7.32.0 - optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color + dev: true /@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6): resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} @@ -41653,11 +29816,15 @@ snapshots: dependencies: '@typescript-eslint/types': 4.33.0 '@typescript-eslint/visitor-keys': 4.33.0 + dev: true - '@typescript-eslint/scope-manager@5.62.0': + /@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.62.0(eslint@8.46.0)(typescript@5.1.6): resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} @@ -41684,35 +29851,52 @@ snapshots: engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dev: true - '@typescript-eslint/types@5.62.0': {} + /@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)': + /@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} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true dependencies: '@typescript-eslint/types': 4.33.0 '@typescript-eslint/visitor-keys': 4.33.0 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.2 tsutils: 3.21.0(typescript@4.9.5) - optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color + dev: true - '@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5)': + /@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.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.2 tsutils: 3.21.0(typescript@4.9.5) - optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color + dev: true /@typescript-eslint/typescript-estree@5.62.0(typescript@5.1.6): resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} @@ -41753,6 +29937,7 @@ snapshots: transitivePeerDependencies: - supports-color - typescript + dev: true /@typescript-eslint/utils@5.62.0(eslint@8.46.0)(typescript@5.1.6): resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} @@ -41780,51 +29965,64 @@ snapshots: dependencies: '@typescript-eslint/types': 4.33.0 eslint-visitor-keys: 2.1.0 + dev: true - '@typescript-eslint/visitor-keys@5.62.0': + /@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.3 + dev: true - '@ungap/structured-clone@1.2.0': {} - - '@webassemblyjs/ast@1.12.1': + /@webassemblyjs/ast@1.12.1: + resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} dependencies: '@webassemblyjs/helper-numbers': 1.11.6 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/floating-point-hex-parser@1.11.6': {} + /@webassemblyjs/floating-point-hex-parser@1.11.6: + resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} - '@webassemblyjs/helper-api-error@1.11.6': {} + /@webassemblyjs/helper-api-error@1.11.6: + resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} - '@webassemblyjs/helper-buffer@1.12.1': {} + /@webassemblyjs/helper-buffer@1.12.1: + resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==} - '@webassemblyjs/helper-numbers@1.11.6': + /@webassemblyjs/helper-numbers@1.11.6: + resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} dependencies: '@webassemblyjs/floating-point-hex-parser': 1.11.6 '@webassemblyjs/helper-api-error': 1.11.6 '@xtuc/long': 4.2.2 - '@webassemblyjs/helper-wasm-bytecode@1.11.6': {} + /@webassemblyjs/helper-wasm-bytecode@1.11.6: + resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} - '@webassemblyjs/helper-wasm-section@1.12.1': + /@webassemblyjs/helper-wasm-section@1.12.1: + resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==} dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-buffer': 1.12.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 '@webassemblyjs/wasm-gen': 1.12.1 - '@webassemblyjs/ieee754@1.11.6': + /@webassemblyjs/ieee754@1.11.6: + resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} dependencies: '@xtuc/ieee754': 1.2.0 - '@webassemblyjs/leb128@1.11.6': + /@webassemblyjs/leb128@1.11.6: + resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} dependencies: '@xtuc/long': 4.2.2 - '@webassemblyjs/utf8@1.11.6': {} + /@webassemblyjs/utf8@1.11.6: + resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} - '@webassemblyjs/wasm-edit@1.12.1': + /@webassemblyjs/wasm-edit@1.12.1: + resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==} dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-buffer': 1.12.1 @@ -41835,7 +30033,8 @@ snapshots: '@webassemblyjs/wasm-parser': 1.12.1 '@webassemblyjs/wast-printer': 1.12.1 - '@webassemblyjs/wasm-gen@1.12.1': + /@webassemblyjs/wasm-gen@1.12.1: + resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==} dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 @@ -41843,14 +30042,16 @@ snapshots: '@webassemblyjs/leb128': 1.11.6 '@webassemblyjs/utf8': 1.11.6 - '@webassemblyjs/wasm-opt@1.12.1': + /@webassemblyjs/wasm-opt@1.12.1: + resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==} dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-buffer': 1.12.1 '@webassemblyjs/wasm-gen': 1.12.1 '@webassemblyjs/wasm-parser': 1.12.1 - '@webassemblyjs/wasm-parser@1.12.1': + /@webassemblyjs/wasm-parser@1.12.1: + resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==} dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-api-error': 1.11.6 @@ -41859,28 +30060,46 @@ snapshots: '@webassemblyjs/leb128': 1.11.6 '@webassemblyjs/utf8': 1.11.6 - '@webassemblyjs/wast-printer@1.12.1': + /@webassemblyjs/wast-printer@1.12.1: + resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==} dependencies: '@webassemblyjs/ast': 1.12.1 '@xtuc/long': 4.2.2 - '@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0)(webpack@5.84.1): + resolution: {integrity: sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==} + peerDependencies: + webpack: 5.84.1 + webpack-cli: 4.x.x dependencies: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) - '@webpack-cli/info@1.5.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': + /@webpack-cli/info@1.5.0(webpack-cli@4.10.0): + resolution: {integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==} + peerDependencies: + webpack-cli: 4.x.x dependencies: envinfo: 7.13.0 webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) - '@webpack-cli/serve@1.7.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))': + /@webpack-cli/serve@1.7.0(webpack-cli@4.10.0)(webpack-dev-server@3.11.3): + resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==} + peerDependencies: + webpack-cli: 4.x.x + webpack-dev-server: '*' + peerDependenciesMeta: + webpack-dev-server: + optional: true dependencies: webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) - optionalDependencies: - webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) - '@webpack-contrib/schema-utils@1.0.0-beta.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@webpack-contrib/schema-utils@1.0.0-beta.0(webpack@5.84.1): + resolution: {integrity: sha512-LonryJP+FxQQHsjGBi6W786TQB1Oym+agTpY0c+Kj8alnIw+DLUJb6SI8Y1GHGhLCH1yPRrucjObUmxNICQ1pg==} + engines: {node: '>= 6.9.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 dependencies: ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) @@ -41889,12 +30108,18 @@ snapshots: text-table: 0.2.0 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-log: 1.2.0 + dev: true - '@xmldom/xmldom@0.7.13': {} + /@xmldom/xmldom@0.7.13: + resolution: {integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==} + engines: {node: '>=10.0.0'} + dev: true - '@xtuc/ieee754@1.2.0': {} + /@xtuc/ieee754@1.2.0: + resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} - '@xtuc/long@4.2.2': {} + /@xtuc/long@4.2.2: + resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} /@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20): resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==} @@ -41922,7 +30147,9 @@ snapshots: tslib: 1.14.1 dev: true - '@yarnpkg/lockfile@1.1.0': {} + /@yarnpkg/lockfile@1.1.0: + resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} + dev: true /@yarnpkg/parsers@3.0.0-rc.46: resolution: {integrity: sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==} @@ -41930,50 +30157,94 @@ snapshots: dependencies: js-yaml: 3.13.1 tslib: 2.6.3 + dev: true - '@zkochan/js-yaml@0.0.6': + /@zkochan/js-yaml@0.0.6: + resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} + hasBin: true dependencies: argparse: 2.0.1 + dev: true - JSONStream@1.3.5: + /JSONStream@1.3.5: + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + hasBin: true dependencies: jsonparse: 1.3.1 through: 2.3.8 + dev: true - abab@2.0.6: {} + /abab@2.0.6: + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + deprecated: Use your platform's native atob() and btoa() methods instead + dev: true - abbrev@1.1.1: {} + /abbrev@1.1.1: + resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} + dev: true - abbrev@2.0.0: {} + /abbrev@2.0.0: + resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dev: false - accepts@1.3.8: + /accepts@1.3.8: + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} dependencies: mime-types: 2.1.35 negotiator: 0.6.3 - acorn-globals@6.0.0: + /acorn-globals@6.0.0: + resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} dependencies: acorn: 7.4.1 acorn-walk: 7.2.0 + dev: true - acorn-globals@7.0.1: + /acorn-globals@7.0.1: + resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} dependencies: acorn: 8.12.0 acorn-walk: 8.3.3 + dev: true - acorn-import-assertions@1.9.0(acorn@8.12.0): + /acorn-import-assertions@1.9.0(acorn@8.12.0): + resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} + peerDependencies: + acorn: ^8 dependencies: acorn: 8.12.0 - acorn-jsx@5.3.2(acorn@7.4.1): + /acorn-jsx@5.3.2(acorn@7.4.1): + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 7.4.1 - acorn-jsx@5.3.2(acorn@8.12.0): + /acorn-jsx@5.3.2(acorn@8.12.0): + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 8.12.0 + dev: true + + /acorn-walk@7.2.0: + resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} + engines: {node: '>=0.4.0'} - acorn-walk@7.2.0: {} + /acorn-walk@8.3.3: + resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==} + engines: {node: '>=0.4.0'} + dependencies: + acorn: 8.12.0 + + /acorn@7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} + hasBin: true /acorn@8.12.0: resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==} @@ -41996,34 +30267,27 @@ snapshots: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} dependencies: - acorn: 8.12.0 - - acorn@7.4.1: {} - - acorn@8.12.0: {} - - add-stream@1.0.0: {} - - address@1.2.2: {} - - agent-base@5.1.1: {} - - agent-base@6.0.2: - dependencies: - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) transitivePeerDependencies: - supports-color + dev: true - agentkeepalive@4.5.0: + /agentkeepalive@4.5.0: + resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} + engines: {node: '>= 8.0.0'} dependencies: humanize-ms: 1.2.1 + dev: true - aggregate-error@3.1.0: + /aggregate-error@3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} dependencies: clean-stack: 2.2.0 indent-string: 4.0.0 - airbnb-js-shims@2.2.1: + /airbnb-js-shims@2.2.1: + resolution: {integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==} dependencies: array-includes: 3.1.8 array.prototype.flat: 1.3.2 @@ -42044,55 +30308,89 @@ snapshots: symbol.prototype.description: 1.0.6 dev: false - ajv-errors@1.0.1(ajv@6.12.6): + /ajv-errors@1.0.1(ajv@6.12.6): + resolution: {integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==} + peerDependencies: + ajv: '>=5.0.0' dependencies: ajv: 6.12.6 - ajv-formats@2.1.1(ajv@8.16.0): - optionalDependencies: + /ajv-formats@2.1.1(ajv@8.16.0): + resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + dependencies: ajv: 8.16.0 - ajv-keywords@3.5.2(ajv@6.12.6): + /ajv-keywords@3.5.2(ajv@6.12.6): + resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} + peerDependencies: + ajv: ^6.9.1 dependencies: ajv: 6.12.6 - ajv-keywords@5.1.0(ajv@8.16.0): + /ajv-keywords@5.1.0(ajv@8.16.0): + resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} + peerDependencies: + ajv: ^8.8.2 dependencies: ajv: 8.16.0 fast-deep-equal: 3.1.3 - ajv@6.12.6: + /ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 json-schema-traverse: 0.4.1 uri-js: 4.4.1 - ajv@8.16.0: + /ajv@8.16.0: + resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==} dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 uri-js: 4.4.1 - ansi-align@3.0.1: + /ansi-align@3.0.1: + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} dependencies: string-width: 4.2.3 dev: false - ansi-colors@3.2.4: {} + /ansi-colors@3.2.4: + resolution: {integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==} + engines: {node: '>=6'} - ansi-colors@4.1.3: {} + /ansi-colors@4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} - ansi-escapes@4.3.2: + /ansi-escapes@4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} dependencies: type-fest: 0.21.3 - ansi-html-community@0.0.8: {} + /ansi-html-community@0.0.8: + resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} + engines: {'0': node >= 0.8.0} + hasBin: true - ansi-html@0.0.7: {} + /ansi-html@0.0.7: + resolution: {integrity: sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA==} + engines: {'0': node >= 0.8.0} + hasBin: true + dev: true - ansi-html@0.0.9: {} + /ansi-html@0.0.9: + resolution: {integrity: sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==} + engines: {'0': node >= 0.8.0} + hasBin: true /ansi-red@0.1.1: resolution: {integrity: sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==} @@ -42105,33 +30403,52 @@ snapshots: resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} engines: {node: '>=0.10.0'} - ansi-regex@3.0.1: {} + /ansi-regex@3.0.1: + resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} + engines: {node: '>=4'} + dev: true - ansi-regex@4.1.1: {} + /ansi-regex@4.1.1: + resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} + engines: {node: '>=6'} - ansi-regex@5.0.1: {} + /ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} /ansi-regex@6.0.1: resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} engines: {node: '>=12'} - ansi-styles@2.2.1: {} + /ansi-styles@2.2.1: + resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} + engines: {node: '>=0.10.0'} + dev: true - ansi-styles@3.2.1: + /ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} dependencies: color-convert: 1.9.3 - ansi-styles@4.3.0: + /ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} dependencies: color-convert: 2.0.1 - ansi-styles@5.2.0: {} + /ansi-styles@5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} /ansi-styles@6.2.1: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} engines: {node: '>=12'} - ansi-to-html@0.6.15: + /ansi-to-html@0.6.15: + resolution: {integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==} + engines: {node: '>=8.0.0'} + hasBin: true dependencies: entities: 2.2.0 @@ -42148,77 +30465,127 @@ snapshots: transitivePeerDependencies: - supports-color - anymatch@3.1.3: + /anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 - app-root-dir@1.0.2: {} + /app-root-dir@1.0.2: + resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==} - append-transform@2.0.0: + /append-transform@2.0.0: + resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==} + engines: {node: '>=8'} dependencies: default-require-extensions: 3.0.1 + dev: true - aproba@2.0.0: {} + /aproba@2.0.0: + resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} - arch@2.2.0: {} + /arch@2.2.0: + resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} + dev: true - archy@1.0.0: {} + /archy@1.0.0: + resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} + dev: true - are-we-there-yet@2.0.0: + /are-we-there-yet@2.0.0: + resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} + engines: {node: '>=10'} + deprecated: This package is no longer supported. dependencies: delegates: 1.0.0 readable-stream: 3.6.2 - are-we-there-yet@3.0.1: + /are-we-there-yet@3.0.1: + resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. dependencies: delegates: 1.0.0 readable-stream: 3.6.2 + dev: true - arg@4.1.3: {} + /arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} - argparse@1.0.10: + /argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} dependencies: sprintf-js: 1.0.3 - argparse@2.0.1: {} + /argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + dev: true - aria-query@4.2.2: + /aria-query@4.2.2: + resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} + engines: {node: '>=6.0'} dependencies: '@babel/runtime': 7.24.7 '@babel/runtime-corejs3': 7.24.7 + dev: true - aria-query@5.1.3: + /aria-query@5.1.3: + resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} dependencies: deep-equal: 2.2.3 + dev: true - aria-query@5.3.0: + /aria-query@5.3.0: + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} dependencies: dequal: 2.0.3 + dev: true - arr-diff@4.0.0: {} + /arr-diff@4.0.0: + resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} + engines: {node: '>=0.10.0'} - arr-flatten@1.1.0: {} + /arr-flatten@1.1.0: + resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} + engines: {node: '>=0.10.0'} - arr-union@3.1.0: {} + /arr-union@3.1.0: + resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} + engines: {node: '>=0.10.0'} - array-buffer-byte-length@1.0.1: + /array-buffer-byte-length@1.0.1: + resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 is-array-buffer: 3.0.4 - array-differ@3.0.0: {} + /array-differ@3.0.0: + resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} + engines: {node: '>=8'} + dev: true - array-find-index@1.0.2: + /array-find-index@1.0.2: + resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} + engines: {node: '>=0.10.0'} + requiresBuild: true + dev: false optional: true - array-flatten@1.1.1: {} + /array-flatten@1.1.1: + resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} - array-flatten@2.1.2: {} + /array-flatten@2.1.2: + resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} - array-ify@1.0.0: {} + /array-ify@1.0.0: + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + dev: true - array-includes@3.1.8: + /array-includes@3.1.8: + resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -42227,19 +30594,32 @@ snapshots: get-intrinsic: 1.2.4 is-string: 1.0.7 - array-union@1.0.2: + /array-union@1.0.2: + resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==} + engines: {node: '>=0.10.0'} dependencies: array-uniq: 1.0.3 - array-union@2.1.0: {} + /array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} - array-union@3.0.1: {} + /array-union@3.0.1: + resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==} + engines: {node: '>=12'} + dev: true - array-uniq@1.0.3: {} + /array-uniq@1.0.3: + resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} + engines: {node: '>=0.10.0'} - array-unique@0.3.2: {} + /array-unique@0.3.2: + resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} + engines: {node: '>=0.10.0'} - array.prototype.findlast@1.2.5: + /array.prototype.findlast@1.2.5: + resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -42247,8 +30627,11 @@ snapshots: es-errors: 1.3.0 es-object-atoms: 1.0.0 es-shim-unscopables: 1.0.2 + dev: true - array.prototype.findlastindex@1.2.5: + /array.prototype.findlastindex@1.2.5: + resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -42256,22 +30639,29 @@ snapshots: es-errors: 1.3.0 es-object-atoms: 1.0.0 es-shim-unscopables: 1.0.2 + dev: true - array.prototype.flat@1.3.2: + /array.prototype.flat@1.3.2: + resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-shim-unscopables: 1.0.2 - array.prototype.flatmap@1.3.2: + /array.prototype.flatmap@1.3.2: + resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-shim-unscopables: 1.0.2 - array.prototype.map@1.0.7: + /array.prototype.map@1.0.7: + resolution: {integrity: sha512-XpcFfLoBEAhezrrNw1V+yLXkE7M6uR7xJEsxbG6c/V9v043qurwVJB9r9UTnoSioFDoz1i1VOydpWGmJpfVZbg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -42281,7 +30671,9 @@ snapshots: is-string: 1.0.7 dev: false - array.prototype.reduce@1.0.7: + /array.prototype.reduce@1.0.7: + resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -42291,22 +30683,29 @@ snapshots: es-object-atoms: 1.0.0 is-string: 1.0.7 - array.prototype.toreversed@1.1.2: + /array.prototype.toreversed@1.1.2: + resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-shim-unscopables: 1.0.2 + dev: true - array.prototype.tosorted@1.1.4: + /array.prototype.tosorted@1.1.4: + resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-errors: 1.3.0 es-shim-unscopables: 1.0.2 + dev: true - arraybuffer.prototype.slice@1.0.3: + /arraybuffer.prototype.slice@1.0.3: + resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} + engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.1 call-bind: 1.0.7 @@ -42317,17 +30716,28 @@ snapshots: is-array-buffer: 3.0.4 is-shared-array-buffer: 1.0.3 - arrify@1.0.1: {} + /arrify@1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + dev: true - arrify@2.0.1: {} + /arrify@2.0.1: + resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} + engines: {node: '>=8'} - asap@2.0.6: {} + /asap@2.0.6: + resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} - asn1@0.2.6: + /asn1@0.2.6: + resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} dependencies: safer-buffer: 2.1.2 + dev: true - assert-plus@1.0.0: {} + /assert-plus@1.0.0: + resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} + engines: {node: '>=0.8'} + dev: true /assert@2.1.0: resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} @@ -42343,11 +30753,18 @@ snapshots: resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} engines: {node: '>=0.10.0'} - ast-types-flow@0.0.7: {} + /ast-types-flow@0.0.7: + resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} + dev: true - ast-types@0.13.3: {} + /ast-types@0.13.3: + resolution: {integrity: sha512-XTZ7xGML849LkQP86sWdQzfhwbt3YwIO6MqbX9mUNYY98VKaaVZP7YNNm70IpwecbkkxmfC5IYAzOQ/2p29zRA==} + engines: {node: '>=4'} + dev: false - ast-types@0.14.2: + /ast-types@0.14.2: + resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==} + engines: {node: '>=4'} dependencies: tslib: 2.6.3 dev: false @@ -42359,25 +30776,41 @@ snapshots: tslib: 2.6.3 dev: true - astral-regex@2.0.0: {} + /astral-regex@2.0.0: + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} + engines: {node: '>=8'} - astring@1.8.6: {} + /astring@1.8.6: + resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==} + hasBin: true + dev: true - async-each@1.0.6: {} + /async-each@1.0.6: + resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==} - async-limiter@1.0.1: {} + /async-limiter@1.0.1: + resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} - async@2.6.4: + /async@2.6.4: + resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} dependencies: lodash: 4.17.21 - async@3.2.5: {} + /async@3.2.5: + resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} + dev: true - asynckit@0.4.0: {} + /asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} - at-least-node@1.0.0: {} + /at-least-node@1.0.0: + resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + engines: {node: '>= 4.0.0'} - atob@2.1.2: {} + /atob@2.1.2: + resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} + engines: {node: '>= 4.5.0'} + hasBin: true /autolinker@0.28.1: resolution: {integrity: sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==} @@ -42399,8 +30832,11 @@ snapshots: picocolors: 1.0.1 postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - autoprefixer@9.8.8: + /autoprefixer@9.8.8: + resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} + hasBin: true dependencies: browserslist: 4.23.1 caniuse-lite: 1.0.30001636 @@ -42411,58 +30847,134 @@ snapshots: postcss-value-parser: 4.2.0 dev: false - available-typed-arrays@1.0.7: + /available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} dependencies: possible-typed-array-names: 1.0.0 /await-semaphore@0.1.3: resolution: {integrity: sha512-d1W2aNSYcz/sxYO4pMGX9vq65qOTu0P800epMud+6cYYX0QcT7zyqcxec3VWzpgvdXo57UWmVbZpLMjX2m1I7Q==} - aws-sign2@0.7.0: {} + /aws-sign2@0.7.0: + resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} + dev: true - aws4@1.13.0: {} + /aws4@1.13.0: + resolution: {integrity: sha512-3AungXC4I8kKsS9PuS4JH2nc+0bVY/mjgrephHTIi8fpEeGsTHBUJeosp0Wc1myYMElmD0B3Oc4XL/HVJ4PV2g==} + dev: true - axe-core@4.9.1: {} + /axe-core@4.9.1: + resolution: {integrity: sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==} + engines: {node: '>=4'} + dev: true - axios@0.19.2: + /axios@0.19.2: + resolution: {integrity: sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==} + deprecated: Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410 dependencies: follow-redirects: 1.5.10 transitivePeerDependencies: - supports-color + dev: false - axios@0.21.4: + /axios@0.21.4: + resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} dependencies: - follow-redirects: 1.15.6(debug@4.3.5(supports-color@6.1.0)) + follow-redirects: 1.15.6(debug@4.3.5) transitivePeerDependencies: - debug + dev: false - axios@0.26.1: + /axios@0.26.1: + resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==} dependencies: - follow-redirects: 1.15.6(debug@4.3.5(supports-color@6.1.0)) + follow-redirects: 1.15.6(debug@4.3.5) transitivePeerDependencies: - debug - axios@1.7.2: + /axios@1.7.2: + resolution: {integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==} dependencies: - follow-redirects: 1.15.6(debug@4.3.5(supports-color@6.1.0)) + follow-redirects: 1.15.6(debug@4.3.5) form-data: 4.0.0 proxy-from-env: 1.1.0 transitivePeerDependencies: - debug + dev: true - axobject-query@2.2.0: {} + /axobject-query@2.2.0: + resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} + dev: true - babel-code-frame@6.26.0: + /babel-code-frame@6.26.0: + resolution: {integrity: sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==} dependencies: chalk: 1.1.3 esutils: 2.0.3 js-tokens: 3.0.2 + dev: true + + /babel-core@6.26.3: + resolution: {integrity: sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==} + dependencies: + babel-code-frame: 6.26.0 + babel-generator: 6.26.1 + babel-helpers: 6.24.1 + babel-messages: 6.23.0 + babel-register: 6.26.0 + babel-runtime: 6.26.0 + babel-template: 6.26.0 + babel-traverse: 6.26.0 + babel-types: 6.26.0 + babylon: 6.18.0 + convert-source-map: 1.9.0 + debug: 2.6.9(supports-color@6.1.0) + json5: 0.5.1 + lodash: 4.17.21 + minimatch: 3.1.2 + path-is-absolute: 1.0.1 + private: 0.1.8 + slash: 1.0.0 + source-map: 0.5.7 + transitivePeerDependencies: + - supports-color + dev: true - babel-core@7.0.0-bridge.0(@babel/core@7.24.7): + /babel-core@7.0.0-bridge.0(@babel/core@7.24.7): + resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 - babel-jest@26.6.3(@babel/core@7.24.7): + /babel-generator@6.26.1: + resolution: {integrity: sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==} + dependencies: + babel-messages: 6.23.0 + babel-runtime: 6.26.0 + babel-types: 6.26.0 + detect-indent: 4.0.0 + jsesc: 1.3.0 + lodash: 4.17.21 + source-map: 0.5.7 + trim-right: 1.0.1 + dev: true + + /babel-helpers@6.24.1: + resolution: {integrity: sha512-n7pFrqQm44TCYvrCDb0MqabAF+JUBq+ijBvNMUxpkLjJaAu32faIexewMumrH5KLLJ1HDyT0PTEqRyAe/GwwuQ==} + dependencies: + babel-runtime: 6.26.0 + babel-template: 6.26.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-jest@26.6.3(@babel/core@7.24.7): + resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} + engines: {node: '>= 10.14.2'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.24.7 '@jest/transform': 26.6.2 @@ -42493,7 +31005,12 @@ snapshots: transitivePeerDependencies: - supports-color - babel-loader@8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /babel-loader@8.3.0(@babel/core@7.24.7)(webpack@5.84.1): + resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} + engines: {node: '>= 8.9'} + peerDependencies: + '@babel/core': ^7.0.0 + webpack: 5.84.1 dependencies: '@babel/core': 7.24.7 find-cache-dir: 3.3.2 @@ -42515,19 +31032,28 @@ snapshots: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - babel-messages@6.23.0: + /babel-messages@6.23.0: + resolution: {integrity: sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==} dependencies: babel-runtime: 6.26.0 + dev: true - babel-plugin-add-react-displayname@0.0.5: {} + /babel-plugin-add-react-displayname@0.0.5: + resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} - babel-plugin-apply-mdx-type-prop@1.6.22(@babel/core@7.12.9): + /babel-plugin-apply-mdx-type-prop@1.6.22(@babel/core@7.12.9): + resolution: {integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==} + peerDependencies: + '@babel/core': ^7.11.6 dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 '@mdx-js/util': 1.6.22 - babel-plugin-const-enum@1.2.0(@babel/core@7.24.7): + /babel-plugin-const-enum@1.2.0(@babel/core@7.24.7): + resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -42535,13 +31061,16 @@ snapshots: '@babel/traverse': 7.24.7 transitivePeerDependencies: - supports-color + dev: true /babel-plugin-extract-import-names@1.6.22: resolution: {integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==} dependencies: '@babel/helper-plugin-utils': 7.10.4 - babel-plugin-istanbul@6.1.1: + /babel-plugin-istanbul@6.1.1: + resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} + engines: {node: '>=8'} dependencies: '@babel/helper-plugin-utils': 7.24.7 '@istanbuljs/load-nyc-config': 1.1.0 @@ -42551,7 +31080,9 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-jest-hoist@26.6.2: + /babel-plugin-jest-hoist@26.6.2: + resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==} + engines: {node: '>= 10.14.2'} dependencies: '@babel/template': 7.24.7 '@babel/types': 7.24.7 @@ -42567,20 +31098,17 @@ snapshots: '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.6 - babel-plugin-jest-hoist@29.6.3: - dependencies: - '@babel/template': 7.24.7 - '@babel/types': 7.24.7 - '@types/babel__core': 7.20.5 - '@types/babel__traverse': 7.20.6 - - babel-plugin-macros@2.8.0: + /babel-plugin-macros@2.8.0: + resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} dependencies: '@babel/runtime': 7.24.7 cosmiconfig: 6.0.0 resolve: 1.22.8 + dev: true - babel-plugin-macros@3.1.0: + /babel-plugin-macros@3.1.0: + resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} + engines: {node: '>=10', npm: '>=6'} dependencies: '@babel/runtime': 7.24.7 cosmiconfig: 7.1.0 @@ -42590,7 +31118,10 @@ snapshots: resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==} dev: false - babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.7): + /babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.7): + resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/compat-data': 7.24.7 '@babel/core': 7.24.7 @@ -42599,7 +31130,10 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.24.7): + /babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.24.7): + resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.24.7) @@ -42607,7 +31141,10 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.7): + /babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.7): + resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.24.7 '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7) @@ -42615,14 +31152,18 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.7): + /babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.7): + resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.24.7 '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - babel-plugin-react-docgen@4.2.1: + /babel-plugin-react-docgen@4.2.1: + resolution: {integrity: sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==} dependencies: ast-types: 0.14.2 lodash: 4.17.21 @@ -42631,27 +31172,36 @@ snapshots: - supports-color dev: false - babel-plugin-rename-jsx-attribute@0.2.4(babel-core@7.0.0-bridge.0(@babel/core@7.24.7)): + /babel-plugin-rename-jsx-attribute@0.2.4(babel-core@6.26.3): + resolution: {integrity: sha512-R3kRggMmkXAd465a2q2Y2IceIUJHoyw9q/c0I7i3JdQDHGbUj59OTOR6QjRuB/bII1yH2Xuy/KM5+NNs9NzCGw==} + peerDependencies: + babel-core: ^6.26.3 dependencies: - babel-core: 7.0.0-bridge.0(@babel/core@7.24.7) + babel-core: 6.26.3 + dev: true - babel-plugin-styled-components@2.1.4(@babel/core@7.24.7)(styled-components@4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(supports-color@5.5.0): + /babel-plugin-styled-components@2.1.4(@babel/core@7.24.7)(styled-components@4.4.1)(supports-color@5.5.0): + resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==} + peerDependencies: + styled-components: '>= 2' dependencies: '@babel/helper-annotate-as-pure': 7.24.7 '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0) '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7) lodash: 4.17.21 picomatch: 2.3.1 - styled-components: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + styled-components: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) transitivePeerDependencies: - '@babel/core' - supports-color + dev: false /babel-plugin-transform-async-to-promises@0.8.18: resolution: {integrity: sha512-WpOrF76nUHijnNn10eBGOHZmXQC8JYRME9rOLxStOga7Av2VO53ehVFvVNImMksVtQuL2/7ZNxEgxnx7oo/3Hw==} dev: true - babel-plugin-transform-es2015-modules-commonjs@6.26.2: + /babel-plugin-transform-es2015-modules-commonjs@6.26.2: + resolution: {integrity: sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==} dependencies: babel-plugin-transform-strict-mode: 6.24.1 babel-runtime: 6.26.0 @@ -42659,26 +31209,39 @@ snapshots: babel-types: 6.26.0 transitivePeerDependencies: - supports-color + dev: true - babel-plugin-transform-strict-mode@6.24.1: + /babel-plugin-transform-strict-mode@6.24.1: + resolution: {integrity: sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw==} dependencies: babel-runtime: 6.26.0 babel-types: 6.26.0 + dev: true - babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.24.7)(@babel/traverse@7.24.7): + /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.24.7): + resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} + peerDependencies: + '@babel/core': ^7 + '@babel/traverse': ^7 + peerDependenciesMeta: + '@babel/traverse': + optional: true dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - optionalDependencies: - '@babel/traverse': 7.24.7 + dev: true - babel-polyfill@6.26.0: + /babel-polyfill@6.26.0: + resolution: {integrity: sha512-F2rZGQnAdaHWQ8YAoeRbukc7HS9QgdgeyJ0rQDd485v9opwuPvjpPFcOOT/WmkKTdgy9ESgSPXDcTNpzrGr6iQ==} dependencies: babel-runtime: 6.26.0 core-js: 2.6.12 regenerator-runtime: 0.10.5 - babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.7): + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.7): + resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.24.7 '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7) @@ -42694,7 +31257,11 @@ snapshots: '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.7) - babel-preset-jest@26.6.2(@babel/core@7.24.7): + /babel-preset-jest@26.6.2(@babel/core@7.24.7): + resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} + engines: {node: '>= 10.14.2'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.24.7 babel-plugin-jest-hoist: 26.6.2 @@ -42710,12 +31277,28 @@ snapshots: babel-plugin-jest-hoist: 29.6.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7) - babel-runtime@6.26.0: + /babel-register@6.26.0: + resolution: {integrity: sha512-veliHlHX06wjaeY8xNITbveXSiI+ASFnOqvne/LaIJIqOWi2Ogmj91KOugEz/hoh/fwMhXNBJPCv8Xaz5CyM4A==} + dependencies: + babel-core: 6.26.3 + babel-runtime: 6.26.0 + core-js: 2.6.12 + home-or-tmp: 2.0.0 + lodash: 4.17.21 + mkdirp: 0.5.6 + source-map-support: 0.4.18 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-runtime@6.26.0: + resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==} dependencies: core-js: 2.6.12 regenerator-runtime: 0.11.1 - babel-template@6.26.0: + /babel-template@6.26.0: + resolution: {integrity: sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg==} dependencies: babel-runtime: 6.26.0 babel-traverse: 6.26.0 @@ -42724,8 +31307,10 @@ snapshots: lodash: 4.17.21 transitivePeerDependencies: - supports-color + dev: true - babel-traverse@6.26.0: + /babel-traverse@6.26.0: + resolution: {integrity: sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA==} dependencies: babel-code-frame: 6.26.0 babel-messages: 6.23.0 @@ -42738,29 +31323,38 @@ snapshots: lodash: 4.17.21 transitivePeerDependencies: - supports-color + dev: true - babel-types@6.26.0: + /babel-types@6.26.0: + resolution: {integrity: sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==} dependencies: babel-runtime: 6.26.0 esutils: 2.0.3 lodash: 4.17.21 to-fast-properties: 1.0.3 + dev: true - babylon@6.18.0: {} + /babylon@6.18.0: + resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==} + hasBin: true + dev: true - bail@1.0.5: {} + /bail@1.0.5: + resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} - bail@2.0.2: {} + /balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - balanced-match@1.0.2: {} + /base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} /base64url@3.0.1: resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==} engines: {node: '>=6.0.0'} - base64url@3.0.1: {} - - base@0.11.2: + /base@0.11.2: + resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} + engines: {node: '>=0.10.0'} dependencies: cache-base: 1.0.1 class-utils: 0.3.6 @@ -42770,20 +31364,29 @@ snapshots: mixin-deep: 1.3.2 pascalcase: 0.1.1 - basic-auth@2.0.1: + /basic-auth@2.0.1: + resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} + engines: {node: '>= 0.8'} dependencies: safe-buffer: 5.1.2 + dev: true /batch@0.6.1: resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} - bcrypt-pbkdf@1.0.2: + /bcrypt-pbkdf@1.0.2: + resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} dependencies: tweetnacl: 0.14.5 + dev: true - before-after-hook@2.2.3: {} + /before-after-hook@2.2.3: + resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} + dev: true - better-opn@2.1.1: + /better-opn@2.1.1: + resolution: {integrity: sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==} + engines: {node: '>8.0.0'} dependencies: open: 7.4.2 dev: false @@ -42795,22 +31398,31 @@ snapshots: open: 8.4.2 dev: true - better-path-resolve@1.0.0: + /better-path-resolve@1.0.0: + resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} + engines: {node: '>=4'} dependencies: is-windows: 1.0.2 + dev: true /big-integer@1.6.52: resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} engines: {node: '>=0.6'} - big.js@5.2.2: {} + /big.js@5.2.2: + resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} - bin-check@4.1.0: + /bin-check@4.1.0: + resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==} + engines: {node: '>=4'} dependencies: execa: 0.7.0 executable: 4.1.1 + dev: true - bin-links@3.0.3: + /bin-links@3.0.3: + resolution: {integrity: sha512-zKdnMPWEdh4F5INR07/eBrodC7QrF5JKvqskjz/ZZRXg5YSAZIbn8zGhbhUrElzHBZ2fvEQdOU59RHcTG3GiwA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: cmd-shim: 5.0.0 mkdirp-infer-owner: 2.0.0 @@ -42818,40 +31430,59 @@ snapshots: read-cmd-shim: 3.0.1 rimraf: 3.0.2 write-file-atomic: 4.0.2 + dev: true - bin-version-check@5.1.0: + /bin-version-check@5.1.0: + resolution: {integrity: sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==} + engines: {node: '>=12'} dependencies: bin-version: 6.0.0 semver: 7.6.2 semver-truncate: 3.0.0 + dev: true - bin-version@6.0.0: + /bin-version@6.0.0: + resolution: {integrity: sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==} + engines: {node: '>=12'} dependencies: execa: 5.1.1 find-versions: 5.1.0 + dev: true - binary-extensions@1.13.1: {} + /binary-extensions@1.13.1: + resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==} + engines: {node: '>=0.10.0'} - binary-extensions@2.3.0: {} + /binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} - bindings@1.5.0: + /bindings@1.5.0: + resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + requiresBuild: true dependencies: file-uri-to-path: 1.0.0 optional: true - bl@4.1.0: + /bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} dependencies: buffer: 5.7.1 inherits: 2.0.4 readable-stream: 3.6.2 + dev: true - blob-util@2.0.2: {} + /blob-util@2.0.2: + resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} + dev: true /bluebird@3.7.2: resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} dev: true - body-parser@1.20.2(supports-color@6.1.0): + /body-parser@1.20.2(supports-color@6.1.0): + resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} dependencies: bytes: 3.1.2 content-type: 1.0.5 @@ -42868,12 +31499,15 @@ snapshots: transitivePeerDependencies: - supports-color - bonjour-service@1.2.1: + /bonjour-service@1.2.1: + resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==} dependencies: fast-deep-equal: 3.1.3 multicast-dns: 7.2.5 + dev: true - bonjour@3.5.0: + /bonjour@3.5.0: + resolution: {integrity: sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==} dependencies: array-flatten: 2.1.2 deep-equal: 1.1.2 @@ -42882,9 +31516,12 @@ snapshots: multicast-dns: 6.2.3 multicast-dns-service-types: 1.1.0 - boolbase@1.0.0: {} + /boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - boxen@5.1.2: + /boxen@5.1.2: + resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} + engines: {node: '>=10'} dependencies: ansi-align: 3.0.1 camelcase: 6.3.0 @@ -42896,9 +31533,12 @@ snapshots: wrap-ansi: 7.0.0 dev: false - bplist-parser@0.1.1: + /bplist-parser@0.1.1: + resolution: {integrity: sha512-2AEM0FXy8ZxVLBuqX0hqt1gDwcnz2zygEkQ6zaD5Wko/sB9paUNwlpawrFtKeHUAQUOzjVy9AO4oeonqIHKA9Q==} + requiresBuild: true dependencies: big-integer: 1.6.52 + dev: false optional: true /bplist-parser@0.2.0: @@ -42914,11 +31554,14 @@ snapshots: balanced-match: 1.0.2 concat-map: 0.0.1 - brace-expansion@2.0.1: + /brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} dependencies: balanced-match: 1.0.2 - braces@2.3.2(supports-color@6.1.0): + /braces@2.3.2(supports-color@6.1.0): + resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} + engines: {node: '>=0.10.0'} dependencies: arr-flatten: 1.1.0 array-unique: 0.3.2 @@ -42933,18 +31576,24 @@ snapshots: transitivePeerDependencies: - supports-color - braces@3.0.3: + /braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} dependencies: fill-range: 7.1.1 - breakword@1.0.6: + /breakword@1.0.6: + resolution: {integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==} dependencies: wcwidth: 1.0.1 + dev: true /browser-assert@1.2.1: resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==} - browser-process-hrtime@1.0.0: {} + /browser-process-hrtime@1.0.0: + resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} + dev: true /browserify-zlib@0.1.4: resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==} @@ -42962,45 +31611,71 @@ snapshots: node-releases: 2.0.14 update-browserslist-db: 1.0.16(browserslist@4.23.1) - bs-logger@0.2.6: + /bs-logger@0.2.6: + resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} + engines: {node: '>= 6'} dependencies: fast-json-stable-stringify: 2.1.0 - bser@2.1.1: + /bser@2.1.1: + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} dependencies: node-int64: 0.4.0 - buffer-crc32@0.2.13: {} + /buffer-crc32@0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} - buffer-from@1.1.2: {} + /buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - buffer-indexof@1.1.1: {} + /buffer-indexof@1.1.1: + resolution: {integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==} - buffer@5.7.1: + /buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} dependencies: base64-js: 1.5.1 ieee754: 1.2.1 + dev: true - buffer@6.0.3: + /buffer@6.0.3: + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} dependencies: base64-js: 1.5.1 ieee754: 1.2.1 - builtin-modules@3.3.0: {} + /builtin-modules@3.3.0: + resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} + engines: {node: '>=6'} + dev: true - builtins@1.0.3: {} + /builtins@1.0.3: + resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==} + dev: true - builtins@5.1.0: + /builtins@5.1.0: + resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==} dependencies: semver: 7.6.2 + dev: true - byte-size@7.0.1: {} + /byte-size@7.0.1: + resolution: {integrity: sha512-crQdqyCwhokxwV1UyDzLZanhkugAgft7vt0qbbdt60C6Zf3CAiGmtUCylbtYwrU6loOUw3euGrNtW1J651ot1A==} + engines: {node: '>=10'} + dev: true - bytes@3.0.0: {} + /bytes@3.0.0: + resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} + engines: {node: '>= 0.8'} - bytes@3.1.2: {} + /bytes@3.1.2: + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} - c8@7.14.0: + /c8@7.14.0: + resolution: {integrity: sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw==} + engines: {node: '>=10.12.0'} + hasBin: true dependencies: '@bcoe/v8-coverage': 0.2.3 '@istanbuljs/schema': 0.1.3 @@ -43016,7 +31691,9 @@ snapshots: yargs-parser: 20.2.9 dev: false - cacache@15.3.0: + /cacache@15.3.0: + resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==} + engines: {node: '>= 10'} dependencies: '@npmcli/fs': 1.1.1 '@npmcli/move-file': 1.1.2 @@ -43040,7 +31717,9 @@ snapshots: - bluebird dev: false - cacache@16.1.3: + /cacache@16.1.3: + resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: '@npmcli/fs': 2.1.2 '@npmcli/move-file': 2.0.1 @@ -43062,8 +31741,11 @@ snapshots: unique-filename: 2.0.1 transitivePeerDependencies: - bluebird + dev: true - cache-base@1.0.1: + /cache-base@1.0.1: + resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} + engines: {node: '>=0.10.0'} dependencies: collection-visit: 1.0.0 component-emitter: 1.3.1 @@ -43075,9 +31757,14 @@ snapshots: union-value: 1.0.1 unset-value: 1.0.0 - cacheable-lookup@5.0.4: {} + /cacheable-lookup@5.0.4: + resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} + engines: {node: '>=10.6.0'} + dev: true - cacheable-request@6.1.0: + /cacheable-request@6.1.0: + resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} + engines: {node: '>=8'} dependencies: clone-response: 1.0.3 get-stream: 5.2.0 @@ -43086,8 +31773,11 @@ snapshots: lowercase-keys: 2.0.0 normalize-url: 4.5.1 responselike: 1.0.2 + dev: false - cacheable-request@7.0.4: + /cacheable-request@7.0.4: + resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} + engines: {node: '>=8'} dependencies: clone-response: 1.0.3 get-stream: 5.2.0 @@ -43096,17 +31786,26 @@ snapshots: lowercase-keys: 2.0.0 normalize-url: 6.1.0 responselike: 2.0.1 + dev: true - cachedir@2.4.0: {} + /cachedir@2.4.0: + resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==} + engines: {node: '>=6'} + dev: true - caching-transform@4.0.0: + /caching-transform@4.0.0: + resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==} + engines: {node: '>=8'} dependencies: hasha: 5.2.2 make-dir: 3.1.0 package-hash: 4.0.0 write-file-atomic: 3.0.3 + dev: true - call-bind@1.0.7: + /call-bind@1.0.7: + resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} + engines: {node: '>= 0.4'} dependencies: es-define-property: 1.0.0 es-errors: 1.3.0 @@ -43118,76 +31817,117 @@ snapshots: resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} dev: false - caller-callsite@2.0.0: + /caller-callsite@2.0.0: + resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} + engines: {node: '>=4'} dependencies: callsites: 2.0.0 - caller-path@2.0.0: + /caller-path@2.0.0: + resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} + engines: {node: '>=4'} dependencies: caller-callsite: 2.0.0 - callsites@2.0.0: {} + /callsites@2.0.0: + resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} + engines: {node: '>=4'} - callsites@3.1.0: {} + /callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} - camel-case@4.1.2: + /camel-case@4.1.2: + resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} dependencies: pascal-case: 3.1.2 tslib: 2.6.3 - camelcase-css@2.0.1: {} + /camelcase-css@2.0.1: + resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} + engines: {node: '>= 6'} - camelcase-keys@2.1.0: + /camelcase-keys@2.1.0: + resolution: {integrity: sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: camelcase: 2.1.1 map-obj: 1.0.1 + dev: false optional: true - camelcase-keys@6.2.2: + /camelcase-keys@6.2.2: + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} dependencies: camelcase: 5.3.1 map-obj: 4.3.0 quick-lru: 4.0.1 + dev: true - camelcase@2.1.1: + /camelcase@2.1.1: + resolution: {integrity: sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==} + engines: {node: '>=0.10.0'} + requiresBuild: true + dev: false optional: true - camelcase@5.3.1: {} + /camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} - camelcase@6.3.0: {} + /camelcase@6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} - camelize@1.0.1: {} + /camelize@1.0.1: + resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} + dev: false - caniuse-api@3.0.0: + /caniuse-api@3.0.0: + resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: browserslist: 4.23.1 caniuse-lite: 1.0.30001636 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 + dev: true - caniuse-lite@1.0.30001636: {} + /caniuse-lite@1.0.30001636: + resolution: {integrity: sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==} - capture-exit@2.0.0: + /capture-exit@2.0.0: + resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} + engines: {node: 6.* || 8.* || >= 10.*} dependencies: rsvp: 4.8.5 - case-sensitive-paths-webpack-plugin@2.4.0: {} - - caseless@0.12.0: {} + /case-sensitive-paths-webpack-plugin@2.4.0: + resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} + engines: {node: '>=4'} - ccount@1.1.0: {} + /caseless@0.12.0: + resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + dev: true - ccount@2.0.1: {} + /ccount@1.1.0: + resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==} - chalk@1.1.3: + /chalk@1.1.3: + resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} + engines: {node: '>=0.10.0'} dependencies: ansi-styles: 2.2.1 escape-string-regexp: 1.0.5 has-ansi: 2.0.0 strip-ansi: 3.0.1 supports-color: 2.0.0 + dev: true - chalk@2.4.2: + /chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 @@ -43216,44 +31956,35 @@ snapshots: ansi-styles: 4.3.0 supports-color: 7.2.0 - chalk@4.1.0: - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - - chalk@4.1.1: - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - - chalk@4.1.2: - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - - char-regex@1.0.2: {} - - character-entities-html4@2.1.0: {} - - character-entities-legacy@1.1.4: {} - - character-entities-legacy@3.0.0: {} - - character-entities@1.2.4: {} + /char-regex@1.0.2: + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + engines: {node: '>=10'} - character-entities@2.0.2: {} + /character-entities-legacy@1.1.4: + resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} - character-reference-invalid@1.1.4: {} + /character-entities@1.2.4: + resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} - character-reference-invalid@2.0.1: {} + /character-reference-invalid@1.1.4: + resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} - chardet@0.7.0: {} + /chardet@0.7.0: + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + dev: true - check-more-types@2.24.0: {} + /check-more-types@2.24.0: + resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} + engines: {node: '>= 0.8.0'} + dev: true - child_process@1.0.2: {} + /child_process@1.0.2: + resolution: {integrity: sha512-Wmza/JzL0SiWz7kl6MhIKT5ceIlnFPJX+lwUGj7Clhy5MMldsSoJR0+uvRzOS5Kv45Mq7t1PoE8TsOA9bzvb6g==} + dev: true - chokidar@2.1.8(supports-color@6.1.0): + /chokidar@2.1.8(supports-color@6.1.0): + resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==} + deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies dependencies: anymatch: 2.0.0(supports-color@6.1.0) async-each: 1.0.6 @@ -43271,7 +32002,9 @@ snapshots: transitivePeerDependencies: - supports-color - chokidar@3.6.0: + /chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} dependencies: anymatch: 3.1.3 braces: 3.0.3 @@ -43291,11 +32024,16 @@ snapshots: resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} engines: {node: '>=10'} - chrome-trace-event@1.0.4: {} + /chrome-trace-event@1.0.4: + resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} + engines: {node: '>=6.0'} - ci-info@2.0.0: {} + /ci-info@2.0.0: + resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} - ci-info@3.9.0: {} + /ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} /citty@0.1.6: resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} @@ -43307,87 +32045,129 @@ snapshots: resolution: {integrity: sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==} dev: true - cjs-module-lexer@1.3.1: {} + /cjs-module-lexer@1.3.1: + resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==} - class-utils@0.3.6: + /class-utils@0.3.6: + resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} + engines: {node: '>=0.10.0'} dependencies: arr-union: 3.1.0 define-property: 0.2.5 isobject: 3.0.1 static-extend: 0.1.2 - classcat@5.0.5: {} + /classcat@5.0.5: + resolution: {integrity: sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==} + dev: false - classnames@2.5.1: {} + /classnames@2.5.1: + resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==} - clean-css@4.2.4: + /clean-css@4.2.4: + resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==} + engines: {node: '>= 4.0'} dependencies: source-map: 0.6.1 - clean-css@5.3.3: + /clean-css@5.3.3: + resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} + engines: {node: '>= 10.0'} dependencies: source-map: 0.6.1 - clean-stack@2.2.0: {} + /clean-stack@2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} /cli-boxes@2.2.1: resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} engines: {node: '>=6'} dev: false - cli-cursor@3.1.0: + /cli-cursor@3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} dependencies: restore-cursor: 3.1.0 + dev: true - cli-spinners@2.6.1: {} + /cli-spinners@2.6.1: + resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} + engines: {node: '>=6'} + dev: true - cli-spinners@2.9.2: {} + /cli-spinners@2.9.2: + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + engines: {node: '>=6'} + dev: true - cli-table3@0.6.5: + /cli-table3@0.6.5: + resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} + engines: {node: 10.* || >= 12.*} dependencies: string-width: 4.2.3 optionalDependencies: '@colors/colors': 1.5.0 - cli-truncate@2.1.0: + /cli-truncate@2.1.0: + resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} + engines: {node: '>=8'} dependencies: slice-ansi: 3.0.0 string-width: 4.2.3 + dev: true - cli-width@3.0.0: {} + /cli-width@3.0.0: + resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} + engines: {node: '>= 10'} + dev: true - cli@1.0.1: + /cli@1.0.1: + resolution: {integrity: sha512-41U72MB56TfUMGndAKK8vJ78eooOD4Z5NOL4xEfjc0c23s+6EYKXlXsmACBVclLP1yOfWCgEganVzddVrSNoTg==} + engines: {node: '>=0.2.5'} dependencies: exit: 0.1.2 glob: 7.2.3 + dev: false - client-only@0.0.1: {} + /client-only@0.0.1: + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + dev: false - cliui@5.0.0: + /cliui@5.0.0: + resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==} dependencies: string-width: 3.1.0 strip-ansi: 5.2.0 wrap-ansi: 5.1.0 - cliui@6.0.0: + /cliui@6.0.0: + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 6.2.0 + dev: true - cliui@7.0.4: + /cliui@7.0.4: + resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - cliui@8.0.1: + /cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - clone-deep@0.2.4: + /clone-deep@0.2.4: + resolution: {integrity: sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==} + engines: {node: '>=0.10.0'} dependencies: for-own: 0.1.5 is-plain-object: 2.0.4 @@ -43396,41 +32176,62 @@ snapshots: shallow-clone: 0.1.2 dev: true - clone-deep@4.0.1: + /clone-deep@4.0.1: + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} dependencies: is-plain-object: 2.0.4 kind-of: 6.0.3 shallow-clone: 3.0.1 - clone-response@1.0.3: + /clone-response@1.0.3: + resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} dependencies: mimic-response: 1.0.1 - clone@1.0.4: {} + /clone@1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + dev: true - clone@2.1.2: {} + /clone@2.1.2: + resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} + engines: {node: '>=0.8'} + dev: true /clsx@1.2.1: resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} engines: {node: '>=6'} dev: false - clsx@2.1.1: {} + /clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} + dev: false - cmd-shim@5.0.0: + /cmd-shim@5.0.0: + resolution: {integrity: sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: mkdirp-infer-owner: 2.0.0 + dev: true - co@4.6.0: {} + /co@4.6.0: + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} - coa@2.0.2: + /coa@2.0.2: + resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} + engines: {node: '>= 4.0'} dependencies: '@types/q': 1.5.8 chalk: 2.4.2 q: 1.5.1 dev: true - codemirror@5.65.16: {} + /codemirror@5.65.16: + resolution: {integrity: sha512-br21LjYmSlVL0vFCPWPfhzUCT34FM/pAdK7rRIZwa0rrtrIdotvP4Oh4GUHsu2E3IrQMCfRkL/fN3ytMNxVQvg==} + dev: false /coffee-script@1.12.7: resolution: {integrity: sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==} @@ -43442,62 +32243,97 @@ snapshots: /collapse-white-space@1.0.6: resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==} - collect-v8-coverage@1.0.2: {} + /collect-v8-coverage@1.0.2: + resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} - collection-visit@1.0.0: + /collection-visit@1.0.0: + resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} + engines: {node: '>=0.10.0'} dependencies: map-visit: 1.0.0 object-visit: 1.0.1 - color-convert@1.9.3: + /color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: color-name: 1.1.3 - color-convert@2.0.1: + /color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} dependencies: color-name: 1.1.4 - color-name@1.1.3: {} + /color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - color-name@1.1.4: {} + /color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - color-support@1.1.3: {} + /color-support@1.1.3: + resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} + hasBin: true - colord@2.9.3: {} + /colord@2.9.3: + resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} + dev: true - colorette@1.4.0: {} + /colorette@1.4.0: + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} - colorette@2.0.20: {} + /colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} - columnify@1.6.0: + /columnify@1.6.0: + resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==} + engines: {node: '>=8.0.0'} dependencies: strip-ansi: 6.0.1 wcwidth: 1.0.1 + dev: true - combined-stream@1.0.8: + /combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} dependencies: delayed-stream: 1.0.0 - comma-separated-tokens@1.0.8: {} + /comma-separated-tokens@1.0.8: + resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} - comma-separated-tokens@2.0.3: {} + /commander@10.0.1: + resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} + engines: {node: '>=14'} + dev: false - commander@10.0.1: {} + /commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} /commander@4.1.1: resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} engines: {node: '>= 6'} dev: false - commander@4.1.1: {} + /commander@5.1.0: + resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} + engines: {node: '>= 6'} + dev: true - commander@5.1.0: {} + /commander@6.2.1: + resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} + engines: {node: '>= 6'} - commander@6.2.1: {} + /commander@7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} - commander@7.2.0: {} + /commander@8.3.0: + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + engines: {node: '>= 12'} - commander@8.3.0: {} + /common-ancestor-path@1.0.1: + resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} + dev: true /common-path-prefix@3.0.0: resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} @@ -43508,29 +32344,39 @@ snapshots: engines: {node: '>=4.0.0'} dev: true - common-tags@1.8.2: {} - - commondir@1.0.1: {} + /commondir@1.0.1: + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} - compare-func@2.0.0: + /compare-func@2.0.0: + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} dependencies: array-ify: 1.0.0 dot-prop: 5.3.0 + dev: true - component-emitter@1.3.1: {} + /component-emitter@1.3.1: + resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==} - compressible@2.0.18: + /compressible@2.0.18: + resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} + engines: {node: '>= 0.6'} dependencies: mime-db: 1.52.0 - compression-webpack-plugin@7.1.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /compression-webpack-plugin@7.1.2(webpack@5.84.1): + resolution: {integrity: sha512-9DKNW6ILLjx+bNBoviHDgLx6swBhWWH9ApClC9sTH2NoFfQM47BapQfovCm9zjD9v1uZwInF5a925FB9ErGQeQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: schema-utils: 3.3.0 serialize-javascript: 5.0.1 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - compression@1.7.4(supports-color@6.1.0): + /compression@1.7.4(supports-color@6.1.0): + resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} + engines: {node: '>= 0.8.0'} dependencies: accepts: 1.3.8 bytes: 3.0.0 @@ -43545,23 +32391,30 @@ snapshots: /concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - concat-stream@1.6.2: + /concat-stream@1.6.2: + resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} + engines: {'0': node >= 0.8} dependencies: buffer-from: 1.1.2 inherits: 2.0.4 readable-stream: 2.3.8 typedarray: 0.0.6 - concat-stream@2.0.0: + /concat-stream@2.0.0: + resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} + engines: {'0': node >= 6.0} dependencies: buffer-from: 1.1.2 inherits: 2.0.4 readable-stream: 3.6.2 typedarray: 0.0.6 + dev: true - concat-with-sourcemaps@1.1.0: + /concat-with-sourcemaps@1.1.0: + resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==} dependencies: source-map: 0.6.1 + dev: true /confbox@0.1.7: resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==} @@ -43573,7 +32426,9 @@ snapshots: ini: 1.3.8 proto-list: 1.2.4 - configstore@5.0.1: + /configstore@5.0.1: + resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} + engines: {node: '>=8'} dependencies: dot-prop: 5.3.0 graceful-fs: 4.2.11 @@ -43581,12 +32436,20 @@ snapshots: unique-string: 2.0.0 write-file-atomic: 3.0.3 xdg-basedir: 4.0.0 + dev: false - confusing-browser-globals@1.0.11: {} + /confusing-browser-globals@1.0.11: + resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} + dev: true - connect-history-api-fallback@1.6.0: {} + /connect-history-api-fallback@1.6.0: + resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==} + engines: {node: '>=0.8'} - connect-history-api-fallback@2.0.0: {} + /connect-history-api-fallback@2.0.0: + resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} + engines: {node: '>=0.8'} + dev: true /consola@3.2.3: resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} @@ -43597,8 +32460,10 @@ snapshots: resolution: {integrity: sha512-duS7VP5pvfsNLDvL1O4VOEbw37AI3A4ZUQYemvDlnpGrNu9tprR7BYWpDYwC0Xia0Zxz5ZupdiIrUp0GH1aXfg==} dependencies: date-now: 0.1.4 + dev: false - console-control-strings@1.1.0: {} + /console-control-strings@1.1.0: + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} /constants-browserify@1.0.0: resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} @@ -43610,14 +32475,21 @@ snapshots: dependencies: safe-buffer: 5.2.1 - content-type@1.0.5: {} + /content-type@1.0.5: + resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} + engines: {node: '>= 0.6'} - conventional-changelog-angular@5.0.13: + /conventional-changelog-angular@5.0.13: + resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} + engines: {node: '>=10'} dependencies: compare-func: 2.0.0 q: 1.5.1 + dev: true - conventional-changelog-core@4.2.4: + /conventional-changelog-core@4.2.4: + resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==} + engines: {node: '>=10'} dependencies: add-stream: 1.0.0 conventional-changelog-writer: 5.0.1 @@ -43633,10 +32505,17 @@ snapshots: read-pkg: 3.0.0 read-pkg-up: 3.0.0 through2: 4.0.2 + dev: true - conventional-changelog-preset-loader@2.3.4: {} + /conventional-changelog-preset-loader@2.3.4: + resolution: {integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==} + engines: {node: '>=10'} + dev: true - conventional-changelog-writer@5.0.1: + /conventional-changelog-writer@5.0.1: + resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==} + engines: {node: '>=10'} + hasBin: true dependencies: conventional-commits-filter: 2.0.7 dateformat: 3.0.3 @@ -43647,13 +32526,20 @@ snapshots: semver: 6.3.1 split: 1.0.1 through2: 4.0.2 + dev: true - conventional-commits-filter@2.0.7: + /conventional-commits-filter@2.0.7: + resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==} + engines: {node: '>=10'} dependencies: lodash.ismatch: 4.4.0 modify-values: 1.0.1 + dev: true - conventional-commits-parser@3.2.4: + /conventional-commits-parser@3.2.4: + resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} + engines: {node: '>=10'} + hasBin: true dependencies: JSONStream: 1.3.5 is-text-path: 1.0.1 @@ -43661,8 +32547,12 @@ snapshots: meow: 8.1.2 split2: 3.2.2 through2: 4.0.2 + dev: true - conventional-recommended-bump@6.1.0: + /conventional-recommended-bump@6.1.0: + resolution: {integrity: sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==} + engines: {node: '>=10'} + hasBin: true dependencies: concat-stream: 2.0.0 conventional-changelog-preset-loader: 2.3.4 @@ -43672,22 +32562,35 @@ snapshots: git-semver-tags: 4.1.1 meow: 8.1.2 q: 1.5.1 + dev: true - convert-source-map@1.9.0: {} + /convert-source-map@1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} - convert-source-map@2.0.0: {} + /convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - cookie-signature@1.0.6: {} + /cookie-signature@1.0.6: + resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} - cookie@0.4.2: {} + /cookie@0.4.2: + resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} + engines: {node: '>= 0.6'} + dev: true - cookie@0.6.0: {} + /cookie@0.6.0: + resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} + engines: {node: '>= 0.6'} - copy-anything@2.0.6: + /copy-anything@2.0.6: + resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} dependencies: is-what: 3.14.1 + dev: true - copy-descriptor@0.1.1: {} + /copy-descriptor@0.1.1: + resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} + engines: {node: '>=0.10.0'} /copy-webpack-plugin@10.2.4(webpack@5.84.1): resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==} @@ -43704,7 +32607,11 @@ snapshots: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - copy-webpack-plugin@12.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /copy-webpack-plugin@12.0.2(webpack@5.84.1): + resolution: {integrity: sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==} + engines: {node: '>= 18.12.0'} + peerDependencies: + webpack: 5.84.1 dependencies: fast-glob: 3.3.2 glob-parent: 6.0.2 @@ -43715,30 +32622,48 @@ snapshots: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - core-js-compat@3.37.1: + /core-js-compat@3.37.1: + resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==} dependencies: browserslist: 4.23.1 - core-js-pure@3.37.1: {} + /core-js-pure@3.37.1: + resolution: {integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==} + requiresBuild: true - core-js@2.6.12: {} + /core-js@2.6.12: + resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} + deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. + requiresBuild: true - core-js@3.37.1: {} + /core-js@3.37.1: + resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==} + requiresBuild: true - core-util-is@1.0.2: {} + /core-util-is@1.0.2: + resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + dev: true - core-util-is@1.0.3: {} + /core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - corser@2.0.1: {} + /corser@2.0.1: + resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==} + engines: {node: '>= 0.4.0'} + dev: true - cosmiconfig@5.2.1: + /cosmiconfig@5.2.1: + resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} + engines: {node: '>=4'} dependencies: import-fresh: 2.0.0 is-directory: 0.3.1 js-yaml: 3.13.1 parse-json: 4.0.0 - cosmiconfig@6.0.0: + /cosmiconfig@6.0.0: + resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} + engines: {node: '>=8'} dependencies: '@types/parse-json': 4.0.2 import-fresh: 3.3.0 @@ -43746,7 +32671,9 @@ snapshots: path-type: 4.0.0 yaml: 1.10.2 - cosmiconfig@7.1.0: + /cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} dependencies: '@types/parse-json': 4.0.2 import-fresh: 3.3.0 @@ -43775,8 +32702,11 @@ snapshots: dependencies: underscore: 1.7.0 underscore.deep: 0.5.3(underscore@1.7.0) + dev: false - cp-file@7.0.0: + /cp-file@7.0.0: + resolution: {integrity: sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==} + engines: {node: '>=8'} dependencies: graceful-fs: 4.2.11 make-dir: 3.1.0 @@ -43784,7 +32714,9 @@ snapshots: p-event: 4.2.0 dev: false - cpy@8.1.2: + /cpy@8.1.2: + resolution: {integrity: sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==} + engines: {node: '>=8'} dependencies: arrify: 2.0.1 cp-file: 7.0.0 @@ -43799,13 +32731,16 @@ snapshots: - supports-color dev: false - create-jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)): + /create-jest@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): + resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)) + jest-config: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -43836,13 +32771,17 @@ snapshots: resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} dev: true - cross-spawn@5.1.0: + /cross-spawn@5.1.0: + resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} dependencies: lru-cache: 4.1.5 shebang-command: 1.2.0 which: 1.3.1 + dev: true - cross-spawn@6.0.5: + /cross-spawn@6.0.5: + resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} + engines: {node: '>=4.8'} dependencies: nice-try: 1.0.5 path-key: 2.0.1 @@ -43850,19 +32789,26 @@ snapshots: shebang-command: 1.2.0 which: 1.3.1 - cross-spawn@7.0.3: + /cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 - crypto-js@3.3.0: {} + /crypto-js@3.3.0: + resolution: {integrity: sha512-DIT51nX0dCfKltpRiXV+/TVZq+Qq2NgF4644+K7Ttnla7zEzqc+kjJyiB96BHNyUTBxyjzRcZYpUdZa+QAqi6Q==} + dev: false /crypto-random-string@2.0.0: resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} engines: {node: '>=8'} - css-color-keywords@1.0.0: {} + /css-color-keywords@1.0.0: + resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} + engines: {node: '>=4'} + dev: false /css-declaration-sorter@6.4.1(postcss@8.4.39): resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} @@ -43882,7 +32828,11 @@ snapshots: postcss: 8.4.39 dev: true - css-loader@1.0.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /css-loader@1.0.1(webpack@5.84.1): + resolution: {integrity: sha512-+ZHAZm/yqvJ2kDtPne3uX0C+Vr3Zn5jFn2N4HywtS5ujwvsVkyg0VArEXpl3BgczDA8anieki1FIzhchX4yrDw==} + engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 dependencies: babel-code-frame: 6.26.0 css-selector-tokenizer: 0.7.3 @@ -43899,7 +32849,11 @@ snapshots: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - css-loader@3.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /css-loader@3.6.0(webpack@5.84.1): + resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==} + engines: {node: '>= 8.9.0'} + peerDependencies: + webpack: 5.84.1 dependencies: camelcase: 5.3.1 cssesc: 3.0.0 @@ -43917,7 +32871,11 @@ snapshots: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: false - css-loader@5.2.7(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /css-loader@5.2.7(webpack@5.84.1): + resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: icss-utils: 5.1.0(postcss@8.4.39) loader-utils: 2.0.4 @@ -43932,7 +32890,17 @@ snapshots: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: false - css-loader@6.11.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /css-loader@6.11.0(webpack@5.84.1): + resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==} + engines: {node: '>= 12.13.0'} + peerDependencies: + '@rspack/core': 0.x || 1.x + webpack: 5.84.1 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true dependencies: icss-utils: 5.1.0(postcss@8.4.39) postcss: 8.4.39 @@ -43984,7 +32952,8 @@ snapshots: resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} dev: true - css-select@2.1.0: + /css-select@2.1.0: + resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==} dependencies: boolbase: 1.0.0 css-what: 3.4.2 @@ -43992,7 +32961,8 @@ snapshots: nth-check: 1.0.2 dev: true - css-select@4.3.0: + /css-select@4.3.0: + resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} dependencies: boolbase: 1.0.0 css-what: 6.1.0 @@ -44000,7 +32970,8 @@ snapshots: domutils: 2.8.0 nth-check: 2.1.1 - css-select@5.1.0: + /css-select@5.1.0: + resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} dependencies: boolbase: 1.0.0 css-what: 6.1.0 @@ -44008,34 +32979,46 @@ snapshots: domutils: 3.1.0 nth-check: 2.1.1 - css-selector-tokenizer@0.7.3: + /css-selector-tokenizer@0.7.3: + resolution: {integrity: sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==} dependencies: cssesc: 3.0.0 fastparse: 1.1.2 + dev: true - css-to-react-native@2.3.2: + /css-to-react-native@2.3.2: + resolution: {integrity: sha512-VOFaeZA053BqvvvqIA8c9n0+9vFppVBAHCp6JgFTtTMU3Mzi+XnelJ9XC9ul3BqFzZyQ5N+H0SnwsWT2Ebchxw==} dependencies: camelize: 1.0.1 css-color-keywords: 1.0.0 postcss-value-parser: 3.3.1 + dev: false - css-tree@1.0.0-alpha.37: + /css-tree@1.0.0-alpha.37: + resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} + engines: {node: '>=8.0.0'} dependencies: mdn-data: 2.0.4 source-map: 0.6.1 dev: true - css-tree@1.1.3: + /css-tree@1.1.3: + resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} + engines: {node: '>=8.0.0'} dependencies: mdn-data: 2.0.14 source-map: 0.6.1 - css-tree@2.2.1: + /css-tree@2.2.1: + resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} dependencies: mdn-data: 2.0.28 source-map-js: 1.2.0 - css-tree@2.3.1: + /css-tree@2.3.1: + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} dependencies: mdn-data: 2.0.30 source-map-js: 1.2.0 @@ -44045,9 +33028,13 @@ snapshots: engines: {node: '>= 6'} dev: true - css-what@6.1.0: {} + /css-what@6.1.0: + resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} + engines: {node: '>= 6'} - css.escape@1.5.1: {} + /css.escape@1.5.1: + resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} + dev: true /cssesc@3.0.0: resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} @@ -44159,6 +33146,7 @@ snapshots: lilconfig: 2.1.0 postcss: 8.4.39 yaml: 1.10.2 + dev: true /cssnano@6.1.2(postcss@8.4.39): resolution: {integrity: sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==} @@ -44177,42 +33165,70 @@ snapshots: dependencies: css-tree: 1.1.3 - csso@5.0.5: + /csso@5.0.5: + resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} dependencies: css-tree: 2.2.1 - cssom@0.3.8: {} + /cssom@0.3.8: + resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + dev: true - cssom@0.4.4: {} + /cssom@0.4.4: + resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} + dev: true - cssom@0.5.0: {} + /cssom@0.5.0: + resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} + dev: true - cssstyle@2.3.0: + /cssstyle@2.3.0: + resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} + engines: {node: '>=8'} dependencies: cssom: 0.3.8 + dev: true /csstype@3.1.3: resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} - csv-generate@3.4.3: {} + /csv-generate@3.4.3: + resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} + dev: true - csv-parse@4.16.3: {} + /csv-parse@4.16.3: + resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} + dev: true - csv-stringify@5.6.5: {} + /csv-stringify@5.6.5: + resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} + dev: true - csv@5.5.3: + /csv@5.5.3: + resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} + engines: {node: '>= 0.1.90'} dependencies: csv-generate: 3.4.3 csv-parse: 4.16.3 csv-stringify: 5.6.5 stream-transform: 2.1.3 + dev: true - currently-unhandled@0.4.1: + /currently-unhandled@0.4.1: + resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: array-find-index: 1.0.2 + dev: false optional: true - cypress@9.7.0: + /cypress@9.7.0: + resolution: {integrity: sha512-+1EE1nuuuwIt/N1KXRR2iWHU+OiIt7H28jJDyyI4tiUftId/DrXYEwoDa5+kH2pki1zxnA0r6HrUGHV5eLbF5Q==} + engines: {node: '>=12.0.0'} + hasBin: true + requiresBuild: true dependencies: '@cypress/request': 2.88.12 '@cypress/xvfb': 1.2.4(supports-color@8.1.1) @@ -44256,55 +33272,102 @@ snapshots: tmp: 0.2.3 untildify: 4.0.0 yauzl: 2.10.0 + dev: true - d3-array@3.2.4: + /d3-array@3.2.4: + resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} + engines: {node: '>=12'} dependencies: internmap: 2.0.3 + dev: false - d3-color@3.1.0: {} + /d3-color@3.1.0: + resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} + engines: {node: '>=12'} + dev: false - d3-dispatch@3.0.1: {} + /d3-dispatch@3.0.1: + resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} + engines: {node: '>=12'} + dev: false - d3-drag@3.0.0: + /d3-drag@3.0.0: + resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} + engines: {node: '>=12'} dependencies: d3-dispatch: 3.0.1 d3-selection: 3.0.0 + dev: false - d3-ease@3.0.1: {} + /d3-ease@3.0.1: + resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} + engines: {node: '>=12'} + dev: false - d3-format@3.1.0: {} + /d3-format@3.1.0: + resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} + engines: {node: '>=12'} + dev: false - d3-interpolate@3.0.1: + /d3-interpolate@3.0.1: + resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} + engines: {node: '>=12'} dependencies: d3-color: 3.1.0 + dev: false - d3-path@3.1.0: {} + /d3-path@3.1.0: + resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==} + engines: {node: '>=12'} + dev: false - d3-scale@4.0.2: + /d3-scale@4.0.2: + resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} + engines: {node: '>=12'} dependencies: d3-array: 3.2.4 d3-format: 3.1.0 d3-interpolate: 3.0.1 d3-time: 3.1.0 d3-time-format: 4.1.0 + dev: false - d3-selection@3.0.0: {} + /d3-selection@3.0.0: + resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} + engines: {node: '>=12'} + dev: false - d3-shape@3.2.0: + /d3-shape@3.2.0: + resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==} + engines: {node: '>=12'} dependencies: d3-path: 3.1.0 + dev: false - d3-time-format@4.1.0: + /d3-time-format@4.1.0: + resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} + engines: {node: '>=12'} dependencies: d3-time: 3.1.0 + dev: false - d3-time@3.1.0: + /d3-time@3.1.0: + resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} + engines: {node: '>=12'} dependencies: d3-array: 3.2.4 + dev: false - d3-timer@3.0.1: {} + /d3-timer@3.0.1: + resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} + engines: {node: '>=12'} + dev: false - d3-transition@3.0.1(d3-selection@3.0.0): + /d3-transition@3.0.1(d3-selection@3.0.0): + resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} + engines: {node: '>=12'} + peerDependencies: + d3-selection: 2 - 3 dependencies: d3-color: 3.1.0 d3-dispatch: 3.0.1 @@ -44312,147 +33375,254 @@ snapshots: d3-interpolate: 3.0.1 d3-selection: 3.0.0 d3-timer: 3.0.1 + dev: false - d3-zoom@3.0.0: + /d3-zoom@3.0.0: + resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} + engines: {node: '>=12'} dependencies: d3-dispatch: 3.0.1 d3-drag: 3.0.0 d3-interpolate: 3.0.1 d3-selection: 3.0.0 d3-transition: 3.0.1(d3-selection@3.0.0) + dev: false - d@1.0.2: + /d@1.0.2: + resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==} + engines: {node: '>=0.12'} dependencies: es5-ext: 0.10.64 type: 2.7.3 + dev: true - damerau-levenshtein@1.0.8: {} + /damerau-levenshtein@1.0.8: + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + dev: true - dargs@7.0.0: {} + /dargs@7.0.0: + resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} + engines: {node: '>=8'} + dev: true - dashdash@1.14.1: + /dashdash@1.14.1: + resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} + engines: {node: '>=0.10'} dependencies: assert-plus: 1.0.0 + dev: true - data-urls@2.0.0: + /data-urls@2.0.0: + resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} + engines: {node: '>=10'} dependencies: abab: 2.0.6 whatwg-mimetype: 2.3.0 whatwg-url: 8.7.0 + dev: true - data-urls@3.0.2: + /data-urls@3.0.2: + resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} + engines: {node: '>=12'} dependencies: abab: 2.0.6 whatwg-mimetype: 3.0.0 whatwg-url: 11.0.0 + dev: true - data-view-buffer@1.0.1: + /data-view-buffer@1.0.1: + resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-data-view: 1.0.1 - data-view-byte-length@1.0.1: + /data-view-byte-length@1.0.1: + resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-data-view: 1.0.1 - data-view-byte-offset@1.0.0: + /data-view-byte-offset@1.0.0: + resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-data-view: 1.0.1 - dataloader@1.4.0: {} + /dataloader@1.4.0: + resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} + dev: true - date-format@2.1.0: {} + /date-format@2.1.0: + resolution: {integrity: sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==} + engines: {node: '>=4.0'} + deprecated: 2.x is no longer supported. Please upgrade to 4.x or higher. + dev: true - date-now@0.1.4: {} + /date-now@0.1.4: + resolution: {integrity: sha512-AsElvov3LoNB7tf5k37H2jYSB+ZZPMT5sG2QjJCcdlV5chIv6htBUBUui2IKRjgtKAKtCBN7Zbwa+MtwLjSeNw==} + dev: false - dateformat@3.0.3: {} + /dateformat@3.0.3: + resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} + dev: true - dayjs@1.11.11: {} + /dayjs@1.11.11: + resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==} + dev: true - debounce@1.2.1: {} + /debounce@1.2.1: + resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} - debug@2.6.9(supports-color@6.1.0): + /debug@2.6.9(supports-color@6.1.0): + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.0.0 - optionalDependencies: supports-color: 6.1.0 - debug@3.1.0: + /debug@3.1.0: + resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.0.0 dev: false - debug@3.2.7(supports-color@6.1.0): + /debug@3.2.7(supports-color@6.1.0): + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.1.3 - optionalDependencies: supports-color: 6.1.0 - debug@3.2.7(supports-color@8.1.1): + /debug@3.2.7(supports-color@8.1.1): + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.1.3 - optionalDependencies: supports-color: 8.1.1 + dev: true - debug@4.3.5(supports-color@5.5.0): + /debug@4.3.5(supports-color@5.5.0): + resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.1.2 - optionalDependencies: supports-color: 5.5.0 + dev: false - debug@4.3.5(supports-color@6.1.0): + /debug@4.3.5(supports-color@6.1.0): + resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.1.2 - optionalDependencies: supports-color: 6.1.0 - debug@4.3.5(supports-color@8.1.1): + /debug@4.3.5(supports-color@8.1.1): + resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.1.2 - optionalDependencies: supports-color: 8.1.1 + dev: true - debuglog@1.0.1: {} + /debuglog@1.0.1: + resolution: {integrity: sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + dev: true - decamelize-keys@1.1.1: + /decamelize-keys@1.1.1: + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + engines: {node: '>=0.10.0'} dependencies: decamelize: 1.2.0 map-obj: 1.0.1 + dev: true - decamelize@1.2.0: {} - - decimal.js-light@2.5.1: {} + /decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} - decimal.js@10.4.3: {} + /decimal.js-light@2.5.1: + resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==} + dev: false - decode-named-character-reference@1.0.2: - dependencies: - character-entities: 2.0.2 + /decimal.js@10.4.3: + resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + dev: true - decode-uri-component@0.2.2: {} + /decode-uri-component@0.2.2: + resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} + engines: {node: '>=0.10'} - decompress-response@3.3.0: + /decompress-response@3.3.0: + resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} + engines: {node: '>=4'} dependencies: mimic-response: 1.0.1 + dev: false - decompress-response@6.0.0: + /decompress-response@6.0.0: + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} + engines: {node: '>=10'} dependencies: mimic-response: 3.1.0 + dev: true - dedent@0.7.0: {} + /dedent@0.7.0: + resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} - dedent@1.5.3(babel-plugin-macros@3.1.0): - optionalDependencies: - babel-plugin-macros: 3.1.0 + /dedent@1.5.3: + resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} + peerDependencies: + babel-plugin-macros: ^3.1.0 + peerDependenciesMeta: + babel-plugin-macros: + optional: true - deep-diff@1.0.2: {} + /deep-diff@1.0.2: + resolution: {integrity: sha512-aWS3UIVH+NPGCD1kki+DCU9Dua032iSsO43LqQpcs4R3+dVv7tX0qBGjiVHJHjplsoUM2XRO/KB92glqc68awg==} + dev: false - deep-equal@1.1.2: + /deep-equal@1.1.2: + resolution: {integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==} + engines: {node: '>= 0.4'} dependencies: is-arguments: 1.1.1 is-date-object: 1.0.5 @@ -44461,7 +33631,9 @@ snapshots: object-keys: 1.1.1 regexp.prototype.flags: 1.5.2 - deep-equal@2.2.3: + /deep-equal@2.2.3: + resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} + engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.1 call-bind: 1.0.7 @@ -44482,19 +33654,28 @@ snapshots: which-collection: 1.0.2 which-typed-array: 1.1.15 - deep-extend@0.6.0: {} + /deep-extend@0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + dev: false - deep-is@0.1.4: {} + /deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} /deepmerge@4.3.1: resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} engines: {node: '>=0.10.0'} - default-browser-id@1.0.4: + /default-browser-id@1.0.4: + resolution: {integrity: sha512-qPy925qewwul9Hifs+3sx1ZYn14obHxpkX+mPD369w4Rzg+YkJBgi3SOvwUq81nWSjqGUegIgEPwD8u+HUnxlw==} + engines: {node: '>=0.10.0'} + hasBin: true + requiresBuild: true dependencies: bplist-parser: 0.1.1 meow: 3.7.0 untildify: 2.1.0 + dev: false optional: true /default-browser-id@3.0.0: @@ -44512,45 +33693,70 @@ snapshots: execa: 1.0.0 ip-regex: 2.1.0 - default-gateway@6.0.3: + /default-gateway@6.0.3: + resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} + engines: {node: '>= 10'} dependencies: execa: 5.1.1 + dev: true - default-require-extensions@3.0.1: + /default-require-extensions@3.0.1: + resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==} + engines: {node: '>=8'} dependencies: strip-bom: 4.0.0 + dev: true - defaults@1.0.4: + /defaults@1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} dependencies: clone: 1.0.4 + dev: true - defer-to-connect@1.1.3: {} + /defer-to-connect@1.1.3: + resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} + dev: false - defer-to-connect@2.0.1: {} + /defer-to-connect@2.0.1: + resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} + engines: {node: '>=10'} + dev: true - define-data-property@1.1.4: + /define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} dependencies: es-define-property: 1.0.0 es-errors: 1.3.0 gopd: 1.0.1 - define-lazy-prop@2.0.0: {} + /define-lazy-prop@2.0.0: + resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} + engines: {node: '>=8'} - define-properties@1.2.1: + /define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} dependencies: define-data-property: 1.1.4 has-property-descriptors: 1.0.2 object-keys: 1.1.1 - define-property@0.2.5: + /define-property@0.2.5: + resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} + engines: {node: '>=0.10.0'} dependencies: is-descriptor: 0.1.7 - define-property@1.0.0: + /define-property@1.0.0: + resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} + engines: {node: '>=0.10.0'} dependencies: is-descriptor: 1.0.3 - define-property@2.0.2: + /define-property@2.0.2: + resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} + engines: {node: '>=0.10.0'} dependencies: is-descriptor: 1.0.3 isobject: 3.0.1 @@ -44589,49 +33795,81 @@ snapshots: resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} engines: {node: '>=0.4.0'} - delegates@1.0.0: {} + /delegates@1.0.0: + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} - depd@1.1.2: {} + /depd@1.1.2: + resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} + engines: {node: '>= 0.6'} - depd@2.0.0: {} + /depd@2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} - deprecation@2.3.1: {} + /deprecation@2.3.1: + resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} + dev: true - dequal@2.0.3: {} + /dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + dev: true - destroy@1.2.0: {} + /destroy@1.2.0: + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - detab@2.0.4: + /detab@2.0.4: + resolution: {integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==} dependencies: repeat-string: 1.6.1 - detect-indent@5.0.0: {} + /detect-indent@4.0.0: + resolution: {integrity: sha512-BDKtmHlOzwI7iRuEkhzsnPoi5ypEhWAJB5RvHWe1kMr06js3uK5B3734i3ui5Yd+wOJV1cpE4JnivPD283GU/A==} + engines: {node: '>=0.10.0'} + dependencies: + repeating: 2.0.1 + dev: true - detect-indent@6.1.0: {} + /detect-indent@5.0.0: + resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==} + engines: {node: '>=4'} + dev: true + + /detect-indent@6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} + dev: true - detect-newline@3.1.0: {} + /detect-newline@3.1.0: + resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} + engines: {node: '>=8'} - detect-node@2.1.0: {} + /detect-node@2.1.0: + resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} - detect-package-manager@2.0.1: + /detect-package-manager@2.0.1: + resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==} + engines: {node: '>=12'} dependencies: execa: 5.1.1 - detect-port@1.6.1: + /detect-port@1.6.1: + resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==} + engines: {node: '>= 4.0.0'} + hasBin: true dependencies: address: 1.2.2 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) transitivePeerDependencies: - supports-color - devlop@1.1.0: - dependencies: - dequal: 2.0.3 - - dezalgo@1.0.4: + /dezalgo@1.0.4: + resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==} dependencies: asap: 2.0.6 wrappy: 1.0.2 + dev: true /diacritics-map@0.1.0: resolution: {integrity: sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==} @@ -44647,133 +33885,190 @@ snapshots: resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - diff@4.0.2: {} + /diff@4.0.2: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} - dir-glob@2.2.2: + /dir-glob@2.2.2: + resolution: {integrity: sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==} + engines: {node: '>=4'} dependencies: path-type: 3.0.0 dev: false - dir-glob@3.0.1: + /dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} dependencies: path-type: 4.0.0 - dns-equal@1.0.0: {} + /dns-equal@1.0.0: + resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} - dns-packet@1.3.4: + /dns-packet@1.3.4: + resolution: {integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==} dependencies: ip: 1.1.9 safe-buffer: 5.2.1 - dns-packet@5.6.1: + /dns-packet@5.6.1: + resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} + engines: {node: '>=6'} dependencies: '@leichtgewicht/ip-codec': 2.0.5 + dev: true - dns-txt@2.0.2: + /dns-txt@2.0.2: + resolution: {integrity: sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==} dependencies: buffer-indexof: 1.1.1 - doctrine@2.1.0: + /doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} dependencies: esutils: 2.0.3 + dev: true - doctrine@3.0.0: + /doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} dependencies: esutils: 2.0.3 - dom-accessibility-api@0.5.16: {} + /dom-accessibility-api@0.5.16: + resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} + dev: true - dom-accessibility-api@0.6.3: {} + /dom-accessibility-api@0.6.3: + resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} + dev: true - dom-converter@0.2.0: + /dom-converter@0.2.0: + resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} dependencies: utila: 0.4.0 - dom-helpers@5.2.1: + /dom-helpers@5.2.1: + resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} dependencies: '@babel/runtime': 7.24.7 csstype: 3.1.3 + dev: false - dom-serializer@0.2.2: + /dom-serializer@0.2.2: + resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} dependencies: domelementtype: 2.3.0 entities: 2.2.0 - dom-serializer@1.4.1: + /dom-serializer@1.4.1: + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 entities: 2.2.0 - dom-serializer@2.0.0: + /dom-serializer@2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 entities: 4.5.0 - dom-walk@0.1.2: {} + /dom-walk@0.1.2: + resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==} - domelementtype@1.3.1: {} + /domelementtype@1.3.1: + resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} - domelementtype@2.3.0: {} + /domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} - domexception@2.0.1: + /domexception@2.0.1: + resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} + engines: {node: '>=8'} + deprecated: Use your platform's native DOMException instead dependencies: webidl-conversions: 5.0.0 + dev: true - domexception@4.0.0: + /domexception@4.0.0: + resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} + engines: {node: '>=12'} + deprecated: Use your platform's native DOMException instead dependencies: webidl-conversions: 7.0.0 + dev: true - domhandler@2.3.0: + /domhandler@2.3.0: + resolution: {integrity: sha512-q9bUwjfp7Eif8jWxxxPSykdRZAb6GkguBGSgvvCrhI9wB71W2K/Kvv4E61CF/mcCfnVJDeDWx/Vb/uAqbDj6UQ==} dependencies: domelementtype: 1.3.1 + dev: false - domhandler@4.3.1: + /domhandler@4.3.1: + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} dependencies: domelementtype: 2.3.0 - domhandler@5.0.3: + /domhandler@5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} dependencies: domelementtype: 2.3.0 - dompurify@3.1.5: {} + /dompurify@3.1.5: + resolution: {integrity: sha512-lwG+n5h8QNpxtyrJW/gJWckL+1/DQiYMX8f7t8Z2AZTPw1esVrqjI63i7Zc2Gz0aKzLVMYC1V1PL/ky+aY/NgA==} + dev: false - domutils@1.5.1: + /domutils@1.5.1: + resolution: {integrity: sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==} dependencies: dom-serializer: 0.2.2 domelementtype: 1.3.1 - dev: true + dev: false - domutils@1.7.0: + /domutils@1.7.0: + resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} dependencies: dom-serializer: 0.2.2 domelementtype: 1.3.1 + dev: true - domutils@2.8.0: + /domutils@2.8.0: + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} dependencies: dom-serializer: 1.4.1 domelementtype: 2.3.0 domhandler: 4.3.1 - domutils@3.1.0: + /domutils@3.1.0: + resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} dependencies: dom-serializer: 2.0.0 domelementtype: 2.3.0 domhandler: 5.0.3 - dot-case@3.0.4: + /dot-case@3.0.4: + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} dependencies: no-case: 3.0.4 tslib: 2.6.3 - dot-prop@5.3.0: + /dot-prop@5.3.0: + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} dependencies: is-obj: 2.0.0 - dot-prop@6.0.1: + /dot-prop@6.0.1: + resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} + engines: {node: '>=10'} dependencies: is-obj: 2.0.0 + dev: true /dotenv-expand@10.0.0: resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} @@ -44783,7 +34078,10 @@ snapshots: /dotenv-expand@5.1.0: resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} - dotenv@10.0.0: {} + /dotenv@10.0.0: + resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} + engines: {node: '>=10'} + dev: true /dotenv@16.3.2: resolution: {integrity: sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==} @@ -44795,13 +34093,16 @@ snapshots: engines: {node: '>=12'} dev: true - dotenv@8.6.0: {} + /dotenv@8.6.0: + resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} + engines: {node: '>=10'} /duplexer3@0.1.5: resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} dev: false - duplexer@0.1.2: {} + /duplexer@0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} /duplexify@3.7.1: resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} @@ -44815,37 +34116,55 @@ snapshots: /eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - ecc-jsbn@0.1.2: + /ecc-jsbn@0.1.2: + resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} dependencies: jsbn: 0.1.1 safer-buffer: 2.1.2 + dev: true - editorconfig@1.0.4: + /editorconfig@1.0.4: + resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==} + engines: {node: '>=14'} + hasBin: true dependencies: '@one-ini/wasm': 0.1.1 commander: 10.0.1 minimatch: 9.0.1 semver: 7.6.2 + dev: false - ee-first@1.1.1: {} + /ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - ejs@3.1.10: + /ejs@3.1.10: + resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} + engines: {node: '>=0.10.0'} + hasBin: true dependencies: jake: 10.9.1 + dev: true - electron-to-chromium@1.4.810: {} + /electron-to-chromium@1.4.810: + resolution: {integrity: sha512-Kaxhu4T7SJGpRQx99tq216gCq2nMxJo+uuT6uzz9l8TVN2stL7M06MIIXAtr9jsrLs2Glflgf2vMQRepxawOdQ==} /emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} engines: {node: '>=12'} - emittery@0.7.2: {} + /emittery@0.7.2: + resolution: {integrity: sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==} + engines: {node: '>=10'} + dev: true - emoji-regex@7.0.3: {} + /emoji-regex@7.0.3: + resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==} - emoji-regex@8.0.0: {} + /emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - emoji-regex@9.2.2: {} + /emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} /emojis-list@3.0.0: resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} @@ -44855,68 +34174,105 @@ snapshots: resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} engines: {node: '>= 0.8'} - encoding@0.1.13: + /encoding@0.1.13: + resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} + requiresBuild: true dependencies: iconv-lite: 0.6.3 + dev: true optional: true - end-of-stream@1.4.4: + /end-of-stream@1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} dependencies: once: 1.4.0 - endent@2.1.0: + /endent@2.1.0: + resolution: {integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==} dependencies: dedent: 0.7.0 fast-json-parse: 1.0.3 objectorarray: 1.0.5 - enhanced-resolve@4.5.0: + /enhanced-resolve@4.5.0: + resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==} + engines: {node: '>=6.9.0'} dependencies: graceful-fs: 4.2.11 memory-fs: 0.5.0 tapable: 1.1.3 + dev: true - enhanced-resolve@5.17.0: + /enhanced-resolve@5.17.0: + resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==} + engines: {node: '>=10.13.0'} dependencies: graceful-fs: 4.2.11 tapable: 2.2.1 - enquirer@2.3.6: + /enquirer@2.3.6: + resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + engines: {node: '>=8.6'} dependencies: ansi-colors: 4.1.3 + dev: true - enquirer@2.4.1: + /enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} dependencies: ansi-colors: 4.1.3 strip-ansi: 6.0.1 - entities@1.0.0: {} + /entities@1.0.0: + resolution: {integrity: sha512-LbLqfXgJMmy81t+7c14mnulFHJ170cM6E+0vMXR9k/ZiZwgX8i5pNgjTCX3SO4VeUsFLV+8InixoretwU+MjBQ==} + dev: false - entities@2.2.0: {} + /entities@2.2.0: + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} - entities@3.0.1: {} + /entities@3.0.1: + resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} + engines: {node: '>=0.12'} + dev: false - entities@4.5.0: {} + /entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} - env-paths@2.2.1: {} + /env-paths@2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} + dev: true - envinfo@7.13.0: {} + /envinfo@7.13.0: + resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==} + engines: {node: '>=4'} + hasBin: true - err-code@2.0.3: {} + /err-code@2.0.3: + resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} + dev: true - errno@0.1.8: + /errno@0.1.8: + resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} + hasBin: true dependencies: prr: 1.0.1 - error-ex@1.3.2: + /error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} dependencies: is-arrayish: 0.2.1 - error-stack-parser@2.1.4: + /error-stack-parser@2.1.4: + resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} dependencies: stackframe: 1.3.4 - es-abstract@1.23.3: + /es-abstract@1.23.3: + resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} + engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.1 arraybuffer.prototype.slice: 1.0.3 @@ -44965,15 +34321,21 @@ snapshots: unbox-primitive: 1.0.2 which-typed-array: 1.1.15 - es-array-method-boxes-properly@1.0.0: {} + /es-array-method-boxes-properly@1.0.0: + resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} - es-define-property@1.0.0: + /es-define-property@1.0.0: + resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} + engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.4 - es-errors@1.3.0: {} + /es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} - es-get-iterator@1.1.3: + /es-get-iterator@1.1.3: + resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 @@ -44985,7 +34347,9 @@ snapshots: isarray: 2.0.5 stop-iteration-iterator: 1.0.0 - es-iterator-helpers@1.0.19: + /es-iterator-helpers@1.0.19: + resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -45001,57 +34365,76 @@ snapshots: internal-slot: 1.0.7 iterator.prototype: 1.1.2 safe-array-concat: 1.1.2 + dev: true - es-module-lexer@1.5.4: {} + /es-module-lexer@1.5.4: + resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} - es-object-atoms@1.0.0: + /es-object-atoms@1.0.0: + resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} + engines: {node: '>= 0.4'} dependencies: es-errors: 1.3.0 - es-set-tostringtag@2.0.3: + /es-set-tostringtag@2.0.3: + resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} + engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.4 has-tostringtag: 1.0.2 hasown: 2.0.2 - es-shim-unscopables@1.0.2: + /es-shim-unscopables@1.0.2: + resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} dependencies: hasown: 2.0.2 - es-to-primitive@1.2.1: + /es-to-primitive@1.2.1: + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} dependencies: is-callable: 1.2.7 is-date-object: 1.0.5 is-symbol: 1.0.4 - es5-ext@0.10.64: + /es5-ext@0.10.64: + resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==} + engines: {node: '>=0.10'} + requiresBuild: true dependencies: es6-iterator: 2.0.3 es6-symbol: 3.1.4 esniff: 2.0.1 next-tick: 1.1.0 + dev: true /es5-shim@4.6.7: resolution: {integrity: sha512-jg21/dmlrNQI7JyyA2w7n+yifSxBng0ZralnSfVZjoCawgNTCnS+yBCyVM9DL5itm7SUnDGgv7hcq2XCZX4iRQ==} engines: {node: '>=0.4.0'} dev: false - es6-error@4.1.1: {} + /es6-error@4.1.1: + resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} - es6-iterator@2.0.3: + /es6-iterator@2.0.3: + resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} dependencies: d: 1.0.2 es5-ext: 0.10.64 es6-symbol: 3.1.4 + dev: true /es6-shim@0.35.8: resolution: {integrity: sha512-Twf7I2v4/1tLoIXMT8HlqaBSS5H2wQTs2wx3MNYCI8K1R1/clXyCazrcVCPm/FuO9cyV8+leEaZOWD5C253NDg==} dev: false - es6-symbol@3.1.4: + /es6-symbol@3.1.4: + resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==} + engines: {node: '>=0.12'} dependencies: d: 1.0.2 ext: 1.7.0 + dev: true /esbuild-plugin-alias@0.2.1: resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==} @@ -45101,19 +34484,35 @@ snapshots: resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} engines: {node: '>=6'} - escape-goat@2.1.1: {} + /escape-goat@2.1.1: + resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==} + engines: {node: '>=8'} + dev: false - escape-html@1.0.3: {} + /escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} - escape-string-regexp@1.0.5: {} + /escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} - escape-string-regexp@2.0.0: {} + /escape-string-regexp@2.0.0: + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} - escape-string-regexp@4.0.0: {} + /escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} - escape-string-regexp@5.0.0: {} + /escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + dev: true - escodegen@2.1.0: + /escodegen@2.1.0: + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} + hasBin: true dependencies: esprima: 4.0.1 estraverse: 5.3.0 @@ -45121,10 +34520,15 @@ snapshots: optionalDependencies: source-map: 0.6.1 - eslint-compat-utils@0.5.1(eslint@7.32.0): + /eslint-compat-utils@0.5.1(eslint@7.32.0): + resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} + engines: {node: '>=12'} + peerDependencies: + eslint: '>=6.0.0' dependencies: eslint: 7.32.0 semver: 7.6.2 + dev: true /eslint-config-prettier@9.1.0(eslint@8.46.0): resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} @@ -45135,23 +34539,44 @@ snapshots: eslint: 8.46.0 dev: true - eslint-import-resolver-node@0.3.9: + /eslint-import-resolver-node@0.3.9: + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} dependencies: - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7(supports-color@6.1.0) is-core-module: 2.14.0 resolve: 1.22.8 transitivePeerDependencies: - supports-color + dev: true - eslint-module-utils@2.8.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0): + /eslint-module-utils@2.8.1(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0): + resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} + 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: - debug: 3.2.7(supports-color@8.1.1) - optionalDependencies: '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) + debug: 3.2.7(supports-color@6.1.0) eslint: 7.32.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color + dev: true /eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.46.0): resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} @@ -45189,22 +34614,28 @@ snapshots: dependencies: eslint: 8.46.0 globals: 13.24.0 + dev: true - eslint-plugin-header@https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3(eslint@7.32.0): - dependencies: - eslint: 7.32.0 - - eslint-plugin-import@2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0): + /eslint-plugin-import@2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0): + resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} + 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': 4.33.0(eslint@7.32.0)(typescript@4.9.5) array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 array.prototype.flat: 1.3.2 array.prototype.flatmap: 1.3.2 - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7(supports-color@6.1.0) doctrine: 2.1.0 eslint: 7.32.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0) hasown: 2.0.2 is-core-module: 2.14.0 is-glob: 4.0.3 @@ -45214,12 +34645,11 @@ snapshots: object.values: 1.2.0 semver: 6.3.1 tsconfig-paths: 3.15.0 - optionalDependencies: - '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color + dev: true /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.46.0): resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} @@ -45266,8 +34696,13 @@ snapshots: '@testing-library/dom': 8.20.1 eslint: 7.32.0 requireindex: 1.2.0 + dev: true - eslint-plugin-jsonc@2.16.0(eslint@7.32.0): + /eslint-plugin-jsonc@2.16.0(eslint@7.32.0): + resolution: {integrity: sha512-Af/ZL5mgfb8FFNleH6KlO4/VdmDuTqmM+SPnWcdoWywTetv7kq+vQe99UyQb9XO3b0OWLVuTH7H0d/PXYCMdSg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0) eslint: 7.32.0 @@ -45277,6 +34712,7 @@ snapshots: jsonc-eslint-parser: 2.4.0 natural-compare: 1.4.0 synckit: 0.6.2 + dev: true /eslint-plugin-jsx-a11y@6.5.1(eslint@8.46.0): resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==} @@ -45297,10 +34733,16 @@ snapshots: jsx-ast-utils: 3.3.5 language-tags: 1.0.9 minimatch: 3.1.2 + dev: true - eslint-plugin-react-hooks@4.6.2(eslint@7.32.0): + /eslint-plugin-react-hooks@4.6.2(eslint@7.32.0): + resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} + 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: 7.32.0 + dev: true /eslint-plugin-react-hooks@4.6.2(eslint@8.46.0): resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} @@ -45360,21 +34802,31 @@ snapshots: resolve: 2.0.0-next.5 semver: 6.3.1 string.prototype.matchall: 4.0.11 + dev: true - eslint-plugin-testing-library@5.11.1(eslint@7.32.0)(typescript@4.9.5): + /eslint-plugin-testing-library@5.11.1(eslint@7.32.0)(typescript@4.9.5): + resolution: {integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} + peerDependencies: + eslint: ^7.5.0 || ^8.0.0 dependencies: '@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@4.9.5) eslint: 7.32.0 transitivePeerDependencies: - supports-color - typescript + dev: true - eslint-plugin-tsdoc@0.2.17: + /eslint-plugin-tsdoc@0.2.17: + resolution: {integrity: sha512-xRmVi7Zx44lOBuYqG8vzTXuL6IdGOeF9nHX17bjJ8+VE6fsxpdGem0/SBTmAwgYMKYB1WBkqRJVQ+n8GK041pA==} dependencies: '@microsoft/tsdoc': 0.14.2 '@microsoft/tsdoc-config': 0.16.2 + dev: true - eslint-scope@5.1.1: + /eslint-scope@5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} dependencies: esrecurse: 4.3.0 estraverse: 4.3.0 @@ -45393,18 +34845,35 @@ snapshots: dependencies: eslint-visitor-keys: 1.3.0 - eslint-utils@3.0.0(eslint@7.32.0): + /eslint-utils@3.0.0(eslint@7.32.0): + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: '>=5' dependencies: eslint: 7.32.0 eslint-visitor-keys: 2.1.0 + dev: true - eslint-visitor-keys@1.3.0: {} + /eslint-visitor-keys@1.3.0: + resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} + engines: {node: '>=4'} - eslint-visitor-keys@2.1.0: {} + /eslint-visitor-keys@2.1.0: + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} + engines: {node: '>=10'} - eslint-visitor-keys@3.4.3: {} + /eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true - eslint-webpack-plugin@2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /eslint-webpack-plugin@2.7.0(eslint@7.32.0)(webpack@5.84.1): + resolution: {integrity: sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + webpack: 5.84.1 dependencies: '@types/eslint': 7.29.0 arrify: 2.0.1 @@ -45433,7 +34902,12 @@ snapshots: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - eslint-webpack-plugin@3.2.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /eslint-webpack-plugin@3.2.0(eslint@7.32.0)(webpack@5.84.1): + resolution: {integrity: sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==} + engines: {node: '>= 12.13.0'} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + webpack: 5.84.1 dependencies: '@types/eslint': 8.56.10 eslint: 7.32.0 @@ -45444,7 +34918,10 @@ snapshots: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - eslint@7.32.0: + /eslint@7.32.0: + resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} + engines: {node: ^10.12.0 || >=12.0.0} + hasBin: true dependencies: '@babel/code-frame': 7.12.11 '@eslint/eslintrc': 0.4.3 @@ -45452,7 +34929,7 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) doctrine: 3.0.0 enquirer: 2.4.1 escape-string-regexp: 4.0.0 @@ -45543,20 +35020,29 @@ snapshots: es5-ext: 0.10.64 event-emitter: 0.3.5 type: 2.7.3 + dev: true - espree@7.3.1: + /espree@7.3.1: + resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} + engines: {node: ^10.12.0 || >=12.0.0} dependencies: acorn: 7.4.1 acorn-jsx: 5.3.2(acorn@7.4.1) eslint-visitor-keys: 1.3.0 - espree@9.6.1: + /espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.12.0 acorn-jsx: 5.3.2(acorn@8.12.0) eslint-visitor-keys: 3.4.3 + dev: true - esprima@4.0.1: {} + /esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true /esquery@1.6.0: resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} @@ -45564,15 +35050,23 @@ snapshots: dependencies: estraverse: 5.3.0 - esrecurse@4.3.0: + /esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} dependencies: estraverse: 5.3.0 - estraverse@4.3.0: {} + /estraverse@4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} - estraverse@5.3.0: {} + /estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} - estree-to-babel@3.2.1: + /estree-to-babel@3.2.1: + resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} + engines: {node: '>=8.3.0'} dependencies: '@babel/traverse': 7.24.7 '@babel/types': 7.24.7 @@ -45581,40 +35075,64 @@ snapshots: - supports-color dev: false - estree-util-is-identifier-name@3.0.0: {} - - estree-walker@0.2.1: {} + /estree-walker@0.2.1: + resolution: {integrity: sha512-6/I1dwNKk0N9iGOU3ydzAAurz4NPo/ttxZNCqgIVbWFvWyzWBSNonRrJ5CpjDuyBfmM7ENN7WCzUi9aT/UPXXQ==} + dev: true - estree-walker@0.6.1: {} + /estree-walker@0.6.1: + resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} + dev: true - estree-walker@1.0.1: {} + /estree-walker@1.0.1: + resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} + dev: true - estree-walker@2.0.2: {} + /estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + dev: true - esutils@2.0.3: {} + /esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} - etag@1.8.1: {} + /etag@1.8.1: + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} - event-emitter@0.3.5: + /event-emitter@0.3.5: + resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} dependencies: d: 1.0.2 es5-ext: 0.10.64 + dev: true - eventemitter2@6.4.9: {} + /eventemitter2@6.4.9: + resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==} + dev: true - eventemitter3@4.0.7: {} + /eventemitter3@4.0.7: + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} - events@3.3.0: {} + /events@3.3.0: + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} - eventsource@2.0.2: {} + /eventsource@2.0.2: + resolution: {integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==} + engines: {node: '>=12.0.0'} - exec-sh@0.2.2: + /exec-sh@0.2.2: + resolution: {integrity: sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==} dependencies: merge: 1.2.1 + dev: true - exec-sh@0.3.6: {} + /exec-sh@0.3.6: + resolution: {integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==} - execa@0.7.0: + /execa@0.7.0: + resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==} + engines: {node: '>=4'} dependencies: cross-spawn: 5.1.0 get-stream: 3.0.0 @@ -45623,8 +35141,11 @@ snapshots: p-finally: 1.0.0 signal-exit: 3.0.7 strip-eof: 1.0.0 + dev: true - execa@1.0.0: + /execa@1.0.0: + resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} + engines: {node: '>=6'} dependencies: cross-spawn: 6.0.5 get-stream: 4.1.0 @@ -45634,7 +35155,9 @@ snapshots: signal-exit: 3.0.7 strip-eof: 1.0.0 - execa@4.1.0: + /execa@4.1.0: + resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} + engines: {node: '>=10'} dependencies: cross-spawn: 7.0.3 get-stream: 5.2.0 @@ -45645,8 +35168,11 @@ snapshots: onetime: 5.1.2 signal-exit: 3.0.7 strip-final-newline: 2.0.0 + dev: true - execa@5.1.1: + /execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} dependencies: cross-spawn: 7.0.3 get-stream: 6.0.1 @@ -45678,12 +35204,19 @@ snapshots: engines: {node: '>=4'} dependencies: pify: 2.3.0 + dev: true - exenv@1.2.2: {} + /exenv@1.2.2: + resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==} + dev: false - exit@0.1.2: {} + /exit@0.1.2: + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} + engines: {node: '>= 0.8.0'} - expand-brackets@2.1.4(supports-color@6.1.0): + /expand-brackets@2.1.4(supports-color@6.1.0): + resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} + engines: {node: '>=0.10.0'} dependencies: debug: 2.6.9(supports-color@6.1.0) define-property: 0.2.5 @@ -45712,6 +35245,7 @@ snapshots: jest-matcher-utils: 26.6.2 jest-message-util: 26.6.2 jest-regex-util: 26.0.0 + dev: true /expect@29.7.0: resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} @@ -45723,9 +35257,13 @@ snapshots: jest-message-util: 29.7.0 jest-util: 29.7.0 - exponential-backoff@3.1.1: {} + /exponential-backoff@3.1.1: + resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} + dev: true - express@4.19.2(supports-color@6.1.0): + /express@4.19.2(supports-color@6.1.0): + resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==} + engines: {node: '>= 0.10.0'} dependencies: accepts: 1.3.8 array-flatten: 1.1.1 @@ -45761,39 +35299,59 @@ snapshots: transitivePeerDependencies: - supports-color - ext-list@2.2.2: + /ext-list@2.2.2: + resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} + engines: {node: '>=0.10.0'} dependencies: mime-db: 1.52.0 + dev: true - ext-name@5.0.0: + /ext-name@5.0.0: + resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==} + engines: {node: '>=4'} dependencies: ext-list: 2.2.2 sort-keys-length: 1.0.1 + dev: true - ext@1.7.0: + /ext@1.7.0: + resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} dependencies: type: 2.7.3 + dev: true - extend-shallow@2.0.1: + /extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} dependencies: is-extendable: 0.1.1 - extend-shallow@3.0.2: + /extend-shallow@3.0.2: + resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} + engines: {node: '>=0.10.0'} dependencies: assign-symbols: 1.0.0 is-extendable: 1.0.1 - extend@3.0.2: {} + /extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} - extendable-error@0.1.7: {} + /extendable-error@0.1.7: + resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} + dev: true - external-editor@3.1.0: + /external-editor@3.1.0: + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} dependencies: chardet: 0.7.0 iconv-lite: 0.4.24 tmp: 0.0.33 + dev: true - extglob@2.0.4(supports-color@6.1.0): + /extglob@2.0.4(supports-color@6.1.0): + resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} + engines: {node: '>=0.10.0'} dependencies: array-unique: 0.3.2 define-property: 1.0.0 @@ -45806,15 +35364,22 @@ snapshots: transitivePeerDependencies: - supports-color - extract-text-webpack-plugin@4.0.0-beta.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /extract-text-webpack-plugin@4.0.0-beta.0(webpack@5.84.1): + resolution: {integrity: sha512-Hypkn9jUTnFr0DpekNam53X47tXn3ucY08BQumv7kdGgeVUBLq3DJHJTi6HNxv4jl9W+Skxjz9+RnK0sJyqqjA==} + engines: {node: '>= 6.9.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 dependencies: async: 2.6.4 loader-utils: 1.4.2 schema-utils: 0.4.7 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-sources: 1.4.3 + dev: true - extract-zip@1.7.0: + /extract-zip@1.7.0: + resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==} + hasBin: true dependencies: concat-stream: 1.6.2 debug: 2.6.9(supports-color@6.1.0) @@ -45823,7 +35388,10 @@ snapshots: transitivePeerDependencies: - supports-color - extract-zip@2.0.1(supports-color@8.1.1): + /extract-zip@2.0.1(supports-color@8.1.1): + resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} + engines: {node: '>= 10.17.0'} + hasBin: true dependencies: debug: 4.3.5(supports-color@8.1.1) get-stream: 5.2.0 @@ -45832,14 +35400,24 @@ snapshots: '@types/yauzl': 2.10.3 transitivePeerDependencies: - supports-color + dev: true - extsprintf@1.3.0: {} + /extsprintf@1.3.0: + resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} + engines: {'0': node >=0.6.0} + dev: true - fast-deep-equal@3.1.3: {} + /fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - fast-equals@5.0.1: {} + /fast-equals@5.0.1: + resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==} + engines: {node: '>=6.0.0'} + dev: false - fast-glob@2.2.7: + /fast-glob@2.2.7: + resolution: {integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==} + engines: {node: '>=4.0.0'} dependencies: '@mrmlnc/readdir-enhanced': 2.2.1 '@nodelib/fs.stat': 1.1.3 @@ -45851,15 +35429,20 @@ snapshots: - supports-color dev: false - fast-glob@3.2.7: + /fast-glob@3.2.7: + resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} + engines: {node: '>=8'} 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.7 + dev: true - fast-glob@3.3.2: + /fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 @@ -45867,28 +35450,43 @@ snapshots: merge2: 1.4.1 micromatch: 4.0.7 - fast-json-parse@1.0.3: {} + /fast-json-parse@1.0.3: + resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==} + + /fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} - fast-json-stable-stringify@2.1.0: {} + /fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} /fast-sha256@1.3.0: resolution: {integrity: sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==} - fast-sha256@1.3.0: {} - - fast-sort@3.4.0: {} + /fast-sort@3.4.0: + resolution: {integrity: sha512-c/cMBGA5mH3OYjaXedtLIM3hQjv+KuZuiD2QEH5GofNOZeQVDIYIN7Okc2AW1KPhk44g5PTZnXp8t2lOMl8qhQ==} + dev: true - fast-xml-parser@3.21.1: + /fast-xml-parser@3.21.1: + resolution: {integrity: sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==} + hasBin: true dependencies: strnum: 1.0.5 + dev: true - fastest-levenshtein@1.0.16: {} + /fastest-levenshtein@1.0.16: + resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} + engines: {node: '>= 4.9.1'} - fastestsmallesttextencoderdecoder@1.0.22: {} + /fastestsmallesttextencoderdecoder@1.0.22: + resolution: {integrity: sha512-Pb8d48e+oIuY4MaM64Cd7OW1gt4nxCHs7/ddPPZ/Ic3sg8yVGM7O9wDvZ7us6ScaUupzM+pfBolwtYhN1IxBIw==} + dev: false - fastparse@1.1.2: {} + /fastparse@1.1.2: + resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==} + dev: true - fastq@1.17.1: + /fastq@1.17.1: + resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} dependencies: reusify: 1.0.4 @@ -45898,41 +35496,59 @@ snapshots: dependencies: websocket-driver: 0.7.4 - fb-watchman@2.0.2: + /fb-watchman@2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} dependencies: bser: 2.1.1 - fd-slicer@1.1.0: + /fd-slicer@1.1.0: + resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} dependencies: pend: 1.2.0 /fetch-retry@5.0.6: resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==} - figures@3.2.0: + /figures@3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} dependencies: escape-string-regexp: 1.0.5 + dev: true - file-entry-cache@6.0.1: + /file-entry-cache@6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} dependencies: flat-cache: 3.2.0 - file-loader@2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /file-loader@2.0.0(webpack@5.84.1): + resolution: {integrity: sha512-YCsBfd1ZGCyonOKLxPiKPdu+8ld9HAaMEvJewzz+b2eTF7uL5Zm/HdBF6FjCrpCMRq25Mi0U1gl4pwn2TlH7hQ==} + engines: {node: '>= 6.9.0 < 7.0.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 dependencies: loader-utils: 1.4.2 schema-utils: 1.0.0 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - file-loader@6.2.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /file-loader@6.2.0(webpack@5.84.1): + resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - file-saver@2.0.5: {} + /file-saver@2.0.5: + resolution: {integrity: sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==} + dev: false - file-system-cache@1.1.0: + /file-system-cache@1.1.0: + resolution: {integrity: sha512-IzF5MBq+5CR0jXx5RxPe4BICl/oEhBSXKaL9fLhAXrIfIUS77Hr4vzrYyqYMHN6uTt+BOqi3fDCTjjEBCjERKw==} dependencies: fs-extra: 10.1.0 ramda: 0.28.0 @@ -45951,23 +35567,37 @@ snapshots: readable-web-to-node-stream: 3.0.2 strtok3: 7.1.0 token-types: 5.0.1 + dev: true - file-uri-to-path@1.0.0: + /file-uri-to-path@1.0.0: + resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + requiresBuild: true optional: true - filelist@1.0.4: + /filelist@1.0.4: + resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} dependencies: minimatch: 5.1.6 + dev: true - filename-reserved-regex@3.0.0: {} + /filename-reserved-regex@3.0.0: + resolution: {integrity: sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true - filenamify@5.1.1: + /filenamify@5.1.1: + resolution: {integrity: sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==} + engines: {node: '>=12.20'} dependencies: filename-reserved-regex: 3.0.0 strip-outer: 2.0.0 trim-repeated: 2.0.0 + dev: true - filesize@3.6.1: {} + /filesize@3.6.1: + resolution: {integrity: sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==} + engines: {node: '>= 0.4.0'} + dev: true /fill-range@2.2.4: resolution: {integrity: sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==} @@ -45989,17 +35619,27 @@ snapshots: repeat-string: 1.6.1 to-regex-range: 2.1.1 - fill-range@7.1.1: + /fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} dependencies: to-regex-range: 5.0.1 - filter-obj@1.1.0: {} + /filter-obj@1.1.0: + resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} + engines: {node: '>=0.10.0'} + dev: true - final-form@4.20.10: + /final-form@4.20.10: + resolution: {integrity: sha512-TL48Pi1oNHeMOHrKv1bCJUrWZDcD3DIG6AGYVNOnyZPr7Bd/pStN0pL+lfzF5BNoj/FclaoiaLenk4XUIFVYng==} + engines: {node: '>=8'} dependencies: '@babel/runtime': 7.24.7 + dev: false - finalhandler@1.2.0(supports-color@6.1.0): + /finalhandler@1.2.0(supports-color@6.1.0): + resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} + engines: {node: '>= 0.8'} dependencies: debug: 2.6.9(supports-color@6.1.0) encodeurl: 1.0.2 @@ -46011,13 +35651,17 @@ snapshots: transitivePeerDependencies: - supports-color - find-cache-dir@2.1.0: + /find-cache-dir@2.1.0: + resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} + engines: {node: '>=6'} dependencies: commondir: 1.0.1 make-dir: 2.1.0 pkg-dir: 3.0.0 - find-cache-dir@3.3.2: + /find-cache-dir@3.3.2: + resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} + engines: {node: '>=8'} dependencies: commondir: 1.0.1 make-dir: 3.1.0 @@ -46035,26 +35679,39 @@ snapshots: resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} dev: false - find-up@1.1.2: + /find-up@1.1.2: + resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: path-exists: 2.1.0 pinkie-promise: 2.0.1 + dev: false optional: true - find-up@2.1.0: + /find-up@2.1.0: + resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} + engines: {node: '>=4'} dependencies: locate-path: 2.0.0 + dev: true - find-up@3.0.0: + /find-up@3.0.0: + resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} + engines: {node: '>=6'} dependencies: locate-path: 3.0.0 - find-up@4.1.0: + /find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} dependencies: locate-path: 5.0.0 path-exists: 4.0.0 - find-up@5.0.0: + /find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} dependencies: locate-path: 6.0.0 path-exists: 4.0.0 @@ -46072,39 +35729,60 @@ snapshots: engines: {node: '>=12'} dependencies: semver-regex: 4.0.5 + dev: true - find-yarn-workspace-root2@1.2.16: + /find-yarn-workspace-root2@1.2.16: + resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} dependencies: micromatch: 4.0.7 pkg-dir: 4.2.0 + dev: true - flat-cache@3.2.0: + /flat-cache@3.2.0: + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} + engines: {node: ^10.12.0 || >=12.0.0} dependencies: flatted: 3.3.1 keyv: 4.5.4 rimraf: 3.0.2 - flat@5.0.2: {} + /flat@5.0.2: + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + hasBin: true - flatted@2.0.2: {} + /flatted@2.0.2: + resolution: {integrity: sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==} + dev: true - flatted@3.3.1: {} + /flatted@3.3.1: + resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} /flow-parser@0.238.0: resolution: {integrity: sha512-VE7XSv1epljsIN2YeBnxCmGJihpNIAnLLu/pPOdA+Gkso7qDltJwUi6vfHjgxdBbjSdAuPGnhuOHJUQG+yYwIg==} engines: {node: '>=0.4.0'} - follow-redirects@1.15.6(debug@4.3.5(supports-color@6.1.0)): - optionalDependencies: + /follow-redirects@1.15.6(debug@4.3.5): + resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + dependencies: debug: 4.3.5(supports-color@6.1.0) - follow-redirects@1.5.10: + /follow-redirects@1.5.10: + resolution: {integrity: sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==} + engines: {node: '>=4.0'} dependencies: debug: 3.1.0 transitivePeerDependencies: - supports-color + dev: false - for-each@0.3.3: + /for-each@0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} dependencies: is-callable: 1.2.7 @@ -46113,29 +35791,52 @@ snapshots: engines: {node: '>=0.10.0'} dev: true - for-in@1.0.2: {} + /for-in@1.0.2: + resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} + engines: {node: '>=0.10.0'} - for-own@0.1.5: + /for-own@0.1.5: + resolution: {integrity: sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==} + engines: {node: '>=0.10.0'} dependencies: for-in: 1.0.2 dev: true - foreground-child@2.0.0: + /foreground-child@2.0.0: + resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} + engines: {node: '>=8.0.0'} dependencies: cross-spawn: 7.0.3 signal-exit: 3.0.7 - foreground-child@3.2.1: + /foreground-child@3.2.1: + resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==} + engines: {node: '>=14'} dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 - forever-agent@0.6.1: {} + /forever-agent@0.6.1: + resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} + dev: true - fork-ts-checker-webpack-plugin@4.1.6(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /fork-ts-checker-webpack-plugin@4.1.6(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1): + resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} + engines: {node: '>=6.11.5', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: 5.84.1 + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true dependencies: '@babel/code-frame': 7.24.7 chalk: 2.4.2 + eslint: 7.32.0 micromatch: 3.1.10(supports-color@6.1.0) minimatch: 3.1.2 semver: 5.7.2 @@ -46143,13 +35844,23 @@ snapshots: typescript: 4.9.5 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) worker-rpc: 0.1.1 - optionalDependencies: - eslint: 7.32.0 transitivePeerDependencies: - supports-color dev: false - fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1): + resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} + engines: {node: '>=10', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: 5.84.1 + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true dependencies: '@babel/code-frame': 7.24.7 '@types/json-schema': 7.0.15 @@ -46157,6 +35868,7 @@ snapshots: chokidar: 3.6.0 cosmiconfig: 6.0.0 deepmerge: 4.3.1 + eslint: 7.32.0 fs-extra: 9.1.0 glob: 7.2.3 memfs: 3.5.3 @@ -46249,7 +35961,27 @@ snapshots: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - form-data@2.3.3: + /form-data@2.3.3: + resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} + engines: {node: '>= 0.12'} + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + dev: true + + /form-data@3.0.1: + resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} + engines: {node: '>= 6'} + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + dev: true + + /form-data@4.0.0: + resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} + engines: {node: '>= 6'} dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 @@ -46259,31 +35991,50 @@ snapshots: resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} engines: {node: '>= 0.6'} - format@0.2.2: {} - - forwarded@0.2.0: {} - - fraction.js@4.3.7: {} + /fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + dev: true - fragment-cache@0.2.1: + /fragment-cache@0.2.1: + resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} + engines: {node: '>=0.10.0'} dependencies: map-cache: 0.2.2 - framer-motion@11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /framer-motion@11.2.11(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-n+ozoEzgJu/2h9NoQMokF+CwNqIRVyuRC4RwMPwklfrrTjbVV32k9uBIgqYAwn7Jfpt5LuDVCtT57MWz1FbaLw==} + peerDependencies: + '@emotion/is-prop-valid': '*' + react: ^18.0.0 + react-dom: ^18.0.0 + peerDependenciesMeta: + '@emotion/is-prop-valid': + optional: true + react: + optional: true + react-dom: + optional: true dependencies: - tslib: 2.6.3 - optionalDependencies: - '@emotion/is-prop-valid': 1.2.2 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + tslib: 2.6.3 + dev: false - fresh@0.5.2: {} + /fresh@0.5.2: + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} - fromentries@1.3.2: {} + /fromentries@1.3.2: + resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==} + dev: true - fs-constants@1.0.0: {} + /fs-constants@1.0.0: + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + dev: true - fs-extra@10.1.0: + /fs-extra@10.1.0: + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 @@ -46314,53 +36065,81 @@ snapshots: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 + dev: true - fs-extra@8.1.0: + /fs-extra@8.1.0: + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 + dev: true - fs-extra@9.1.0: + /fs-extra@9.1.0: + resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} + engines: {node: '>=10'} dependencies: at-least-node: 1.0.0 graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 - fs-minipass@2.1.0: + /fs-minipass@2.1.0: + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} dependencies: minipass: 3.3.6 - fs-monkey@1.0.6: {} + /fs-monkey@1.0.6: + resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==} - fs-readdir-recursive@1.1.0: {} + /fs-readdir-recursive@1.1.0: + resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==} + dev: true - fs.realpath@1.0.0: {} + /fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: {} + /fs@0.0.1-security: + resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} + dev: true - fsevents@1.2.13: + /fsevents@1.2.13: + resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==} + engines: {node: '>= 4.0'} + os: [darwin] + deprecated: The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2 + requiresBuild: true dependencies: bindings: 1.5.0 nan: 2.20.0 optional: true - fsevents@2.3.3: + /fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true optional: true - function-bind@1.1.2: {} + /function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - function.prototype.name@1.1.6: + /function.prototype.name@1.1.6: + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 functions-have-names: 1.2.3 - functional-red-black-tree@1.0.1: {} + /functional-red-black-tree@1.0.1: + resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} - functions-have-names@1.2.3: {} + /functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} /gauge@3.0.2: resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} @@ -46377,7 +36156,10 @@ snapshots: strip-ansi: 6.0.1 wide-align: 1.1.5 - gauge@4.0.4: + /gauge@4.0.4: + resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. dependencies: aproba: 2.0.0 color-support: 1.1.3 @@ -46387,16 +36169,25 @@ snapshots: string-width: 4.2.3 strip-ansi: 6.0.1 wide-align: 1.1.5 + dev: true - generic-names@4.0.0: + /generic-names@4.0.0: + resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} dependencies: loader-utils: 3.3.1 + dev: true - gensync@1.0.0-beta.2: {} + /gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} - get-caller-file@2.0.5: {} + /get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} - get-intrinsic@1.2.4: + /get-intrinsic@1.2.4: + resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} + engines: {node: '>= 0.4'} dependencies: es-errors: 1.3.0 function-bind: 1.1.2 @@ -46413,29 +36204,48 @@ snapshots: resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} engines: {node: '>=8.0.0'} - get-pkg-repo@4.2.1: + /get-pkg-repo@4.2.1: + resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} + engines: {node: '>=6.9.0'} + hasBin: true dependencies: '@hutson/parse-repository-url': 3.0.2 hosted-git-info: 4.1.0 through2: 2.0.5 yargs: 16.2.0 + dev: true - get-port@5.1.1: {} + /get-port@5.1.1: + resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} + engines: {node: '>=8'} - get-stdin@4.0.1: + /get-stdin@4.0.1: + resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==} + engines: {node: '>=0.10.0'} + requiresBuild: true + dev: false optional: true - get-stream@3.0.0: {} + /get-stream@3.0.0: + resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==} + engines: {node: '>=4'} + dev: true - get-stream@4.1.0: + /get-stream@4.1.0: + resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} + engines: {node: '>=6'} dependencies: pump: 3.0.0 - get-stream@5.2.0: + /get-stream@5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} dependencies: pump: 3.0.0 - get-stream@6.0.1: {} + /get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} /get-stream@8.0.1: resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} @@ -46450,15 +36260,21 @@ snapshots: es-errors: 1.3.0 get-intrinsic: 1.2.4 - get-value@2.0.6: {} + /get-value@2.0.6: + resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} + engines: {node: '>=0.10.0'} - getos@3.2.1: + /getos@3.2.1: + resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} dependencies: async: 3.2.5 + dev: true - getpass@0.1.7: + /getpass@0.1.7: + resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} dependencies: assert-plus: 1.0.0 + dev: true /giget@1.2.3: resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==} @@ -46484,46 +36300,72 @@ snapshots: meow: 8.1.2 split2: 3.2.2 through2: 4.0.2 + dev: true - git-remote-origin-url@2.0.0: + /git-remote-origin-url@2.0.0: + resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} + engines: {node: '>=4'} dependencies: gitconfiglocal: 1.0.0 pify: 2.3.0 + dev: true - git-semver-tags@4.1.1: + /git-semver-tags@4.1.1: + resolution: {integrity: sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==} + engines: {node: '>=10'} + hasBin: true dependencies: meow: 8.1.2 semver: 6.3.1 + dev: true - git-up@7.0.0: + /git-up@7.0.0: + resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} dependencies: is-ssh: 1.4.0 parse-url: 8.1.0 + dev: true - git-url-parse@13.1.1: + /git-url-parse@13.1.1: + resolution: {integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==} dependencies: git-up: 7.0.0 + dev: true - gitconfiglocal@1.0.0: + /gitconfiglocal@1.0.0: + resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==} dependencies: ini: 1.3.8 + dev: true - github-slugger@1.5.0: {} + /github-slugger@1.5.0: + resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} + dev: true - glob-parent@3.1.0: + /glob-parent@3.1.0: + resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==} dependencies: is-glob: 3.1.0 path-dirname: 1.0.2 - glob-parent@5.1.2: + /glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} dependencies: is-glob: 4.0.3 - glob-parent@6.0.2: + /glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} dependencies: is-glob: 4.0.3 + dev: true - glob-promise@3.4.0(glob@7.2.3): + /glob-promise@3.4.0(glob@7.2.3): + resolution: {integrity: sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==} + engines: {node: '>=4'} + peerDependencies: + glob: '*' dependencies: '@types/glob': 8.1.0 glob: 7.2.3 @@ -46533,9 +36375,13 @@ snapshots: resolution: {integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==} dev: false - glob-to-regexp@0.4.1: {} + /glob-to-regexp@0.4.1: + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - glob@10.4.2: + /glob@10.4.2: + resolution: {integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==} + engines: {node: '>=16 || 14 >=14.18'} + hasBin: true dependencies: foreground-child: 3.2.1 jackspeak: 3.4.0 @@ -46567,46 +36413,55 @@ snapshots: once: 1.4.0 path-is-absolute: 1.0.1 - glob@7.2.3: - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - - glob@8.1.0: + /glob@8.1.0: + resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} + engines: {node: '>=12'} + deprecated: Glob versions prior to v9 are no longer supported dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 minimatch: 5.1.6 once: 1.4.0 + dev: true - global-dirs@3.0.1: + /global-dirs@3.0.1: + resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} + engines: {node: '>=10'} dependencies: ini: 2.0.0 - global@4.4.0: + /global@4.4.0: + resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==} dependencies: min-document: 2.19.0 process: 0.11.10 - globals@11.12.0: {} + /globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} - globals@13.24.0: + /globals@13.24.0: + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} + engines: {node: '>=8'} dependencies: type-fest: 0.20.2 - globals@9.18.0: {} + /globals@9.18.0: + resolution: {integrity: sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==} + engines: {node: '>=0.10.0'} + dev: true - globalthis@1.0.4: + /globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} dependencies: define-properties: 1.2.1 gopd: 1.0.1 - globby@10.0.1: + /globby@10.0.1: + resolution: {integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==} + engines: {node: '>=8'} dependencies: '@types/glob': 7.2.0 array-union: 2.1.0 @@ -46616,8 +36471,11 @@ snapshots: ignore: 5.3.1 merge2: 1.4.1 slash: 3.0.0 + dev: true - globby@11.1.0: + /globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} dependencies: array-union: 2.1.0 dir-glob: 3.0.1 @@ -46626,7 +36484,9 @@ snapshots: merge2: 1.4.1 slash: 3.0.0 - globby@12.2.0: + /globby@12.2.0: + resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: array-union: 3.0.1 dir-glob: 3.0.1 @@ -46634,6 +36494,7 @@ snapshots: ignore: 5.3.1 merge2: 1.4.1 slash: 4.0.0 + dev: true /globby@14.0.2: resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} @@ -46645,8 +36506,11 @@ snapshots: path-type: 5.0.0 slash: 5.1.0 unicorn-magic: 0.1.0 + dev: true - globby@6.1.0: + /globby@6.1.0: + resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==} + engines: {node: '>=0.10.0'} dependencies: array-union: 1.0.2 glob: 7.2.3 @@ -46654,7 +36518,9 @@ snapshots: pify: 2.3.0 pinkie-promise: 2.0.1 - globby@9.2.0: + /globby@9.2.0: + resolution: {integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==} + engines: {node: '>=6'} dependencies: '@types/glob': 7.2.0 array-union: 1.0.2 @@ -46668,11 +36534,14 @@ snapshots: - supports-color dev: false - gopd@1.0.1: + /gopd@1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: get-intrinsic: 1.2.4 - got@11.8.6: + /got@11.8.6: + resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} + engines: {node: '>=10.19.0'} dependencies: '@sindresorhus/is': 4.6.0 '@szmarczak/http-timer': 4.0.6 @@ -46685,8 +36554,11 @@ snapshots: lowercase-keys: 2.0.0 p-cancelable: 2.1.1 responselike: 2.0.1 + dev: true - got@9.6.0: + /got@9.6.0: + resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} + engines: {node: '>=8.6'} dependencies: '@sindresorhus/is': 0.14.0 '@szmarczak/http-timer': 1.1.2 @@ -46701,14 +36573,23 @@ snapshots: p-cancelable: 1.1.0 to-readable-stream: 1.0.0 url-parse-lax: 3.0.0 + dev: false - graceful-fs@4.2.11: {} + /graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - grapheme-splitter@1.0.4: {} + /grapheme-splitter@1.0.4: + resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} + dev: true - graphemer@1.4.0: {} + /graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + dev: true - graphql@15.9.0: {} + /graphql@15.9.0: + resolution: {integrity: sha512-GCOQdvm7XxV1S4U4CGrsdlEN37245eC8P9zaYCMr6K1BG0IPGy5lUwmJsEOGyl1GD6HXjOtl2keCP9asRBwNvA==} + engines: {node: '>= 10.x'} + dev: true /gray-matter@2.1.1: resolution: {integrity: sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==} @@ -46754,9 +36635,13 @@ snapshots: dependencies: duplexer: 0.1.2 - handle-thing@2.0.1: {} + /handle-thing@2.0.1: + resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} - handlebars@4.7.8: + /handlebars@4.7.8: + resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} + engines: {node: '>=0.4.7'} + hasBin: true dependencies: minimist: 1.2.8 neo-async: 2.6.2 @@ -46765,72 +36650,115 @@ snapshots: optionalDependencies: uglify-js: 3.18.0 - hard-rejection@2.1.0: {} + /hard-rejection@2.1.0: + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} + dev: true - harmony-reflect@1.6.2: {} + /harmony-reflect@1.6.2: + resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} + dev: true - has-ansi@2.0.0: + /has-ansi@2.0.0: + resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} + engines: {node: '>=0.10.0'} dependencies: ansi-regex: 2.1.1 + dev: true - has-bigints@1.0.2: {} + /has-bigints@1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} - has-flag@3.0.0: {} + /has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} - has-flag@4.0.0: {} + /has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} - has-glob@1.0.0: + /has-glob@1.0.0: + resolution: {integrity: sha512-D+8A457fBShSEI3tFCj65PAbT++5sKiFtdCdOam0gnfBgw9D277OERk+HM9qYJXmdVLZ/znez10SqHN0BBQ50g==} + engines: {node: '>=0.10.0'} dependencies: is-glob: 3.1.0 dev: false - has-property-descriptors@1.0.2: + /has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} dependencies: es-define-property: 1.0.0 - has-proto@1.0.3: {} + /has-proto@1.0.3: + resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} + engines: {node: '>= 0.4'} - has-symbols@1.0.3: {} + /has-symbols@1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} - has-tostringtag@1.0.2: + /has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 - has-unicode@2.0.1: {} + /has-unicode@2.0.1: + resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} - has-value@0.3.1: + /has-value@0.3.1: + resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} + engines: {node: '>=0.10.0'} dependencies: get-value: 2.0.6 has-values: 0.1.4 isobject: 2.1.0 - has-value@1.0.0: + /has-value@1.0.0: + resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} + engines: {node: '>=0.10.0'} dependencies: get-value: 2.0.6 has-values: 1.0.0 isobject: 3.0.1 - has-values@0.1.4: {} + /has-values@0.1.4: + resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} + engines: {node: '>=0.10.0'} - has-values@1.0.0: + /has-values@1.0.0: + resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} + engines: {node: '>=0.10.0'} dependencies: is-number: 3.0.0 kind-of: 4.0.0 - has-yarn@2.1.0: {} + /has-yarn@2.1.0: + resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==} + engines: {node: '>=8'} + dev: false - has@1.0.4: {} + /has@1.0.4: + resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} + engines: {node: '>= 0.4.0'} + dev: true - hasha@5.2.2: + /hasha@5.2.2: + resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} + engines: {node: '>=8'} dependencies: is-stream: 2.0.1 type-fest: 0.8.1 + dev: true - hasown@2.0.2: + /hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} dependencies: function-bind: 1.1.2 - hast-to-hyperscript@9.0.1: + /hast-to-hyperscript@9.0.1: + resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==} dependencies: '@types/unist': 2.0.10 comma-separated-tokens: 1.0.8 @@ -46840,7 +36768,8 @@ snapshots: unist-util-is: 4.1.0 web-namespaces: 1.1.4 - hast-util-from-parse5@6.0.1: + /hast-util-from-parse5@6.0.1: + resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==} dependencies: '@types/parse5': 5.0.3 hastscript: 6.0.0 @@ -46849,9 +36778,11 @@ snapshots: vfile-location: 3.2.0 web-namespaces: 1.1.4 - hast-util-parse-selector@2.2.5: {} + /hast-util-parse-selector@2.2.5: + resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==} - hast-util-raw@6.0.1: + /hast-util-raw@6.0.1: + resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==} dependencies: '@types/hast': 2.3.10 hast-util-from-parse5: 6.0.1 @@ -46864,27 +36795,8 @@ snapshots: xtend: 4.0.2 zwitch: 1.0.5 - hast-util-to-jsx-runtime@2.3.0: - dependencies: - '@types/estree': 1.0.5 - '@types/hast': 3.0.4 - '@types/unist': 3.0.2 - comma-separated-tokens: 2.0.3 - devlop: 1.1.0 - estree-util-is-identifier-name: 3.0.0 - hast-util-whitespace: 3.0.0 - mdast-util-mdx-expression: 2.0.0 - mdast-util-mdx-jsx: 3.1.2 - mdast-util-mdxjs-esm: 2.0.1 - property-information: 6.5.0 - space-separated-tokens: 2.0.2 - style-to-object: 1.0.6 - unist-util-position: 5.0.0 - vfile-message: 4.0.2 - transitivePeerDependencies: - - supports-color - - hast-util-to-parse5@6.0.0: + /hast-util-to-parse5@6.0.0: + resolution: {integrity: sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==} dependencies: hast-to-hyperscript: 9.0.1 property-information: 5.6.0 @@ -46892,11 +36804,8 @@ snapshots: xtend: 4.0.2 zwitch: 1.0.5 - hast-util-whitespace@3.0.0: - dependencies: - '@types/hast': 3.0.4 - - hastscript@6.0.0: + /hastscript@6.0.0: + resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} dependencies: '@types/hast': 2.3.10 comma-separated-tokens: 1.0.8 @@ -46904,9 +36813,13 @@ snapshots: property-information: 5.6.0 space-separated-tokens: 1.1.5 - he@1.2.0: {} + /he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true - headers-utils@3.0.2: {} + /headers-utils@3.0.2: + resolution: {integrity: sha512-xAxZkM1dRyGV2Ou5bzMxBPNLoRCjcX+ya7KSWybQD2KwLphxsapUVK6x/02o7f4VU6GPSXch9vNY2+gkU8tYWQ==} + dev: true /history@4.10.1: resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==} @@ -46917,28 +36830,48 @@ snapshots: tiny-invariant: 1.3.3 tiny-warning: 1.0.3 value-equal: 1.0.1 + dev: false /hoist-non-react-statics@2.5.5: resolution: {integrity: sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==} dev: false - hoist-non-react-statics@3.3.2: + /hoist-non-react-statics@3.3.2: + resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} dependencies: react-is: 16.13.1 - hosted-git-info@2.8.9: {} + /home-or-tmp@2.0.0: + resolution: {integrity: sha512-ycURW7oUxE2sNiPVw1HVEFsW+ecOpJ5zaj7eC0RlwhibhRBod20muUN8qu/gzx956YrLolVvs1MTXwKgC2rVEg==} + engines: {node: '>=0.10.0'} + dependencies: + os-homedir: 1.0.2 + os-tmpdir: 1.0.2 + dev: true + + /hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} - hosted-git-info@3.0.8: + /hosted-git-info@3.0.8: + resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==} + engines: {node: '>=10'} dependencies: lru-cache: 6.0.0 + dev: true - hosted-git-info@4.1.0: + /hosted-git-info@4.1.0: + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} dependencies: lru-cache: 6.0.0 + dev: true - hosted-git-info@5.2.1: + /hosted-git-info@5.2.1: + resolution: {integrity: sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: lru-cache: 7.18.3 + dev: true /hosted-git-info@7.0.2: resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==} @@ -46955,26 +36888,40 @@ snapshots: readable-stream: 2.3.8 wbuf: 1.7.3 - html-dom-parser@2.0.0: + /html-dom-parser@2.0.0: + resolution: {integrity: sha512-PwVjg12yfWunpH2WjwjaYNKcZyKKm20kclTfMQohiRzfgYiXX0dR7nXIIKnHneghMDvB0rKFZLEAe11ykOfpcg==} dependencies: domhandler: 4.3.1 htmlparser2: 7.2.0 + dev: false - html-encoding-sniffer@2.0.1: + /html-encoding-sniffer@2.0.1: + resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} + engines: {node: '>=10'} dependencies: whatwg-encoding: 1.0.5 + dev: true - html-encoding-sniffer@3.0.0: + /html-encoding-sniffer@3.0.0: + resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + engines: {node: '>=12'} dependencies: whatwg-encoding: 2.0.0 + dev: true - html-entities@1.4.0: {} + /html-entities@1.4.0: + resolution: {integrity: sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==} - html-entities@2.5.2: {} + /html-entities@2.5.2: + resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} - html-escaper@2.0.2: {} + /html-escaper@2.0.2: + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} - html-minifier-terser@5.1.1: + /html-minifier-terser@5.1.1: + resolution: {integrity: sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==} + engines: {node: '>=6'} + hasBin: true dependencies: camel-case: 4.1.2 clean-css: 4.2.4 @@ -46985,7 +36932,10 @@ snapshots: terser: 4.8.1 dev: false - html-minifier-terser@6.1.0: + /html-minifier-terser@6.1.0: + resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} + engines: {node: '>=12'} + hasBin: true dependencies: camel-case: 4.1.2 clean-css: 5.3.3 @@ -46995,27 +36945,47 @@ snapshots: relateurl: 0.2.7 terser: 5.31.1 - html-parse-stringify@3.0.1: + /html-parse-stringify@3.0.1: + resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==} dependencies: void-elements: 3.1.0 + dev: false - html-react-parser@2.0.0(react@18.3.1): + /html-react-parser@2.0.0(react@18.3.1): + resolution: {integrity: sha512-AI1lhybWGi8w4QkGtEIS3iSGAjeFGaonxl/+CzqzCeNT3g3z/yx2NKsA93trnv2BLjhe+juGLmLeTSUkyYWk9Q==} + peerDependencies: + react: 0.14 || 15 || 16 || 17 || 18 dependencies: domhandler: 4.3.1 html-dom-parser: 2.0.0 react: 18.3.1 react-property: 2.0.0 style-to-js: 1.1.1 + dev: false /html-tags@3.3.1: resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} engines: {node: '>=8'} - html-url-attributes@3.0.0: {} + /html-to-react@1.7.0(react@18.3.1): + resolution: {integrity: sha512-b5HTNaTGyOj5GGIMiWVr1k57egAZ/vGy0GGefnCQ1VW5hu9+eku8AXHtf2/DeD95cj/FKBKYa1J7SWBOX41yUQ==} + peerDependencies: + react: ^0.13.0 || ^0.14.0 || >=15 + dependencies: + domhandler: 5.0.3 + htmlparser2: 9.1.0 + lodash.camelcase: 4.3.0 + react: 18.3.1 + dev: false - html-void-elements@1.0.5: {} + /html-void-elements@1.0.5: + resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==} - html-webpack-plugin@4.5.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /html-webpack-plugin@4.5.2(webpack@5.84.1): + resolution: {integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==} + engines: {node: '>=6.9'} + peerDependencies: + webpack: 5.84.1 dependencies: '@types/html-minifier-terser': 5.1.2 '@types/tapable': 1.0.12 @@ -47029,7 +36999,17 @@ snapshots: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: false - html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /html-webpack-plugin@5.6.0(webpack@5.84.1): + resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==} + engines: {node: '>=10.13.0'} + peerDependencies: + '@rspack/core': 0.x || 1.x + webpack: 5.84.1 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 @@ -47038,40 +37018,60 @@ snapshots: tapable: 2.2.1 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - htmlparser2@3.8.3: + /htmlparser2@3.8.3: + resolution: {integrity: sha512-hBxEg3CYXe+rPIua8ETe7tmG3XDn9B0edOE/e9wH2nLczxzgdu0m0aNHY+5wFZiviLWLdANPJTssa92dMcXQ5Q==} dependencies: domelementtype: 1.3.1 domhandler: 2.3.0 domutils: 1.5.1 entities: 1.0.0 readable-stream: 1.1.14 + dev: false - htmlparser2@6.1.0: + /htmlparser2@6.1.0: + resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 domutils: 2.8.0 entities: 2.2.0 - htmlparser2@7.2.0: + /htmlparser2@7.2.0: + resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 domutils: 2.8.0 entities: 3.0.1 + dev: false + + /htmlparser2@9.1.0: + resolution: {integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==} + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.1.0 + entities: 4.5.0 + dev: false - http-cache-semantics@4.1.1: {} + /http-cache-semantics@4.1.1: + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} - http-deceiver@1.2.7: {} + /http-deceiver@1.2.7: + resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} - http-errors@1.6.3: + /http-errors@1.6.3: + resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} + engines: {node: '>= 0.6'} dependencies: depd: 1.1.2 inherits: 2.0.3 setprototypeof: 1.1.0 statuses: 1.5.0 - http-errors@2.0.0: + /http-errors@2.0.0: + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} dependencies: depd: 2.0.0 inherits: 2.0.4 @@ -47079,27 +37079,36 @@ snapshots: statuses: 2.0.1 toidentifier: 1.0.1 - http-parser-js@0.5.8: {} + /http-parser-js@0.5.8: + resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} - http-proxy-agent@4.0.1: + /http-proxy-agent@4.0.1: + resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} + engines: {node: '>= 6'} dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) transitivePeerDependencies: - supports-color + dev: true - http-proxy-agent@5.0.0: + /http-proxy-agent@5.0.0: + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) transitivePeerDependencies: - supports-color + dev: true - http-proxy-middleware@0.19.1(debug@4.3.5(supports-color@6.1.0))(supports-color@6.1.0): + /http-proxy-middleware@0.19.1(debug@4.3.5)(supports-color@6.1.0): + resolution: {integrity: sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==} + engines: {node: '>=4.0.0'} dependencies: - http-proxy: 1.18.1(debug@4.3.5(supports-color@6.1.0)) + http-proxy: 1.18.1(debug@4.3.5) is-glob: 4.0.3 lodash: 4.17.21 micromatch: 3.1.10(supports-color@6.1.0) @@ -47107,75 +37116,106 @@ snapshots: - debug - supports-color - http-proxy-middleware@2.0.6(@types/express@4.17.21): + /http-proxy-middleware@2.0.6(@types/express@4.17.21): + resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/express': ^4.17.13 + peerDependenciesMeta: + '@types/express': + optional: true dependencies: + '@types/express': 4.17.21 '@types/http-proxy': 1.17.14 - http-proxy: 1.18.1(debug@4.3.5(supports-color@6.1.0)) + http-proxy: 1.18.1(debug@4.3.5) is-glob: 4.0.3 is-plain-obj: 3.0.0 micromatch: 4.0.7 - optionalDependencies: - '@types/express': 4.17.21 transitivePeerDependencies: - debug + dev: true - http-proxy@1.18.1(debug@4.3.5(supports-color@6.1.0)): + /http-proxy@1.18.1(debug@4.3.5): + resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} + engines: {node: '>=8.0.0'} dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.15.6(debug@4.3.5(supports-color@6.1.0)) + follow-redirects: 1.15.6(debug@4.3.5) requires-port: 1.0.0 transitivePeerDependencies: - debug - http-server@14.1.1: + /http-server@14.1.1: + resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==} + engines: {node: '>=12'} + hasBin: true dependencies: basic-auth: 2.0.1 chalk: 4.1.2 corser: 2.0.1 he: 1.2.0 html-encoding-sniffer: 3.0.0 - http-proxy: 1.18.1(debug@4.3.5(supports-color@6.1.0)) + http-proxy: 1.18.1(debug@4.3.5) mime: 1.6.0 minimist: 1.2.8 opener: 1.5.2 - portfinder: 1.0.32 + portfinder: 1.0.32(supports-color@6.1.0) secure-compare: 3.0.1 union: 0.5.0 url-join: 4.0.1 transitivePeerDependencies: - debug - supports-color + dev: true - http-signature@1.3.6: + /http-signature@1.3.6: + resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} + engines: {node: '>=0.10'} dependencies: assert-plus: 1.0.0 jsprim: 2.0.2 sshpk: 1.18.0 + dev: true - http2-wrapper@1.0.3: + /http2-wrapper@1.0.3: + resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} + engines: {node: '>=10.19.0'} dependencies: quick-lru: 5.1.1 resolve-alpn: 1.2.1 + dev: true - https-proxy-agent@4.0.0: + /https-proxy-agent@4.0.0: + resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==} + engines: {node: '>= 6.0.0'} dependencies: agent-base: 5.1.1 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) transitivePeerDependencies: - supports-color - https-proxy-agent@5.0.1: + /https-proxy-agent@5.0.1: + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} dependencies: agent-base: 6.0.2 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) transitivePeerDependencies: - supports-color + dev: true - human-id@1.0.2: {} + /human-id@1.0.2: + resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} + dev: true - human-signals@1.1.1: {} + /human-signals@1.1.1: + resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} + engines: {node: '>=8.12.0'} + dev: true - human-signals@2.1.0: {} + /human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} /human-signals@5.0.0: resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} @@ -47186,34 +37226,52 @@ snapshots: resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} dependencies: ms: 2.1.3 + dev: true - i18next-browser-languagedetector@6.1.8: + /i18next-browser-languagedetector@6.1.8: + resolution: {integrity: sha512-Svm+MduCElO0Meqpj1kJAriTC6OhI41VhlT/A0UPjGoPZBhAHIaGE5EfsHlTpgdH09UVX7rcc72pSDDBeKSQQA==} dependencies: '@babel/runtime': 7.24.7 + dev: false - i18next-xhr-backend@3.2.2: + /i18next-xhr-backend@3.2.2: + resolution: {integrity: sha512-OtRf2Vo3IqAxsttQbpjYnmMML12IMB5e0fc5B7qKJFLScitYaXa1OhMX0n0X/3vrfFlpHL9Ro/H+ps4Ej2j7QQ==} + deprecated: replaced by i18next-http-backend dependencies: '@babel/runtime': 7.24.7 - i18next@21.10.0: + /i18next@21.10.0: + resolution: {integrity: sha512-YeuIBmFsGjUfO3qBmMOc0rQaun4mIpGKET5WDwvu8lU7gvwpcariZLNtL0Fzj+zazcHUrlXHiptcFhBMFaxzfg==} dependencies: '@babel/runtime': 7.24.7 + dev: false - iconv-lite@0.4.24: + /iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} dependencies: safer-buffer: 2.1.2 - iconv-lite@0.6.3: + /iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} dependencies: safer-buffer: 2.1.2 + dev: true - icss-replace-symbols@1.1.0: {} + /icss-replace-symbols@1.1.0: + resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} + dev: true - icss-utils@2.1.0: + /icss-utils@2.1.0: + resolution: {integrity: sha512-bsVoyn/1V4R1kYYjLcWLedozAM4FClZUdjE9nIr8uWY7xs78y9DATgwz2wGU7M+7z55KenmmTkN2DVJ7bqzjAA==} dependencies: postcss: 6.0.23 + dev: true - icss-utils@4.1.1: + /icss-utils@4.1.1: + resolution: {integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==} + engines: {node: '>= 6'} dependencies: postcss: 7.0.39 dev: false @@ -47226,88 +37284,147 @@ snapshots: dependencies: postcss: 8.4.39 - identity-obj-proxy@3.0.0: + /identity-obj-proxy@3.0.0: + resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} + engines: {node: '>=4'} dependencies: harmony-reflect: 1.6.2 + dev: true - ieee754@1.2.1: {} + /ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - ignore-walk@5.0.1: + /ignore-walk@5.0.1: + resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: minimatch: 5.1.6 + dev: true - ignore@4.0.6: {} + /ignore@4.0.6: + resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} + engines: {node: '>= 4'} - ignore@5.3.1: {} + /ignore@5.3.1: + resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} + engines: {node: '>= 4'} - image-size@0.5.5: + /image-size@0.5.5: + resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} + engines: {node: '>=0.10.0'} + hasBin: true + requiresBuild: true + dev: true optional: true - immutable@4.3.6: {} + /immutable@4.3.6: + resolution: {integrity: sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==} + dev: true - import-cwd@2.1.0: + /import-cwd@2.1.0: + resolution: {integrity: sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==} + engines: {node: '>=4'} dependencies: import-from: 2.1.0 - import-cwd@3.0.0: + /import-cwd@3.0.0: + resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} + engines: {node: '>=8'} dependencies: import-from: 3.0.0 + dev: true - import-fresh@2.0.0: + /import-fresh@2.0.0: + resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} + engines: {node: '>=4'} dependencies: caller-path: 2.0.0 resolve-from: 3.0.0 - import-fresh@3.3.0: + /import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 - import-from@2.1.0: + /import-from@2.1.0: + resolution: {integrity: sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==} + engines: {node: '>=4'} dependencies: resolve-from: 3.0.0 - import-from@3.0.0: + /import-from@3.0.0: + resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==} + engines: {node: '>=8'} dependencies: resolve-from: 5.0.0 + dev: true - import-lazy@2.1.0: {} + /import-lazy@2.1.0: + resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==} + engines: {node: '>=4'} + dev: false - import-local@2.0.0: + /import-local@2.0.0: + resolution: {integrity: sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==} + engines: {node: '>=6'} + hasBin: true dependencies: pkg-dir: 3.0.0 resolve-cwd: 2.0.0 - import-local@3.1.0: + /import-local@3.1.0: + resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} + engines: {node: '>=8'} + hasBin: true dependencies: pkg-dir: 4.2.0 resolve-cwd: 3.0.0 - imurmurhash@0.1.4: {} + /imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} - indent-string@2.1.0: + /indent-string@2.1.0: + resolution: {integrity: sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: repeating: 2.0.1 + dev: false optional: true - indent-string@4.0.0: {} + /indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} - infer-owner@1.0.4: {} + /infer-owner@1.0.4: + resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} - inflight@1.0.6: + /inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. dependencies: once: 1.4.0 wrappy: 1.0.2 - inherits@2.0.3: {} + /inherits@2.0.3: + resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} - inherits@2.0.4: {} + /inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - ini@1.3.8: {} + /ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - ini@2.0.0: {} + /ini@2.0.0: + resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} + engines: {node: '>=10'} - init-package-json@3.0.2: + /init-package-json@3.0.2: + resolution: {integrity: sha512-YhlQPEjNFqlGdzrBfDNRLhvoSgX7iQRgSxgsNknRQ9ITXFT7UMfVMWhBTOh2Y+25lRnGrv5Xz8yZwQ3ACR6T3A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: npm-package-arg: 9.1.2 promzard: 0.3.0 @@ -47316,12 +37433,14 @@ snapshots: semver: 7.6.2 validate-npm-package-license: 3.0.4 validate-npm-package-name: 4.0.0 + dev: true - inline-style-parser@0.1.1: {} - - inline-style-parser@0.2.3: {} + /inline-style-parser@0.1.1: + resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} - inquirer@8.2.6: + /inquirer@8.2.6: + resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} + engines: {node: '>=12.0.0'} dependencies: ansi-escapes: 4.3.2 chalk: 4.1.1 @@ -47338,132 +37457,193 @@ snapshots: strip-ansi: 6.0.1 through: 2.3.8 wrap-ansi: 6.2.0 + dev: true - internal-ip@4.3.0: + /internal-ip@4.3.0: + resolution: {integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==} + engines: {node: '>=6'} dependencies: default-gateway: 4.2.0 ipaddr.js: 1.9.1 - internal-slot@1.0.7: + /internal-slot@1.0.7: + resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} + engines: {node: '>= 0.4'} dependencies: es-errors: 1.3.0 hasown: 2.0.2 side-channel: 1.0.6 - internmap@2.0.3: {} + /internmap@2.0.3: + resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} + engines: {node: '>=12'} + dev: false - interpret@1.4.0: {} + /interpret@1.4.0: + resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} + engines: {node: '>= 0.10'} + dev: false - interpret@2.2.0: {} + /interpret@2.2.0: + resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==} + engines: {node: '>= 0.10'} - invariant@2.2.4: + /invariant@2.2.4: + resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} dependencies: loose-envify: 1.4.0 - ip-address@9.0.5: + /ip-address@9.0.5: + resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} + engines: {node: '>= 12'} dependencies: jsbn: 1.1.0 sprintf-js: 1.1.3 + dev: true - ip-regex@2.1.0: {} + /ip-regex@2.1.0: + resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==} + engines: {node: '>=4'} - ip@1.1.9: {} + /ip@1.1.9: + resolution: {integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==} /ip@2.0.1: resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==} - ipaddr.js@1.9.1: {} + /ipaddr.js@1.9.1: + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + engines: {node: '>= 0.10'} - ipaddr.js@2.2.0: {} + /ipaddr.js@2.2.0: + resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==} + engines: {node: '>= 10'} + dev: true - is-absolute-url@3.0.3: {} + /is-absolute-url@3.0.3: + resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==} + engines: {node: '>=8'} - is-accessor-descriptor@1.0.1: + /is-accessor-descriptor@1.0.1: + resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==} + engines: {node: '>= 0.10'} dependencies: hasown: 2.0.2 - is-alphabetical@1.0.4: {} - - is-alphabetical@2.0.1: {} + /is-alphabetical@1.0.4: + resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} - is-alphanumerical@1.0.4: + /is-alphanumerical@1.0.4: + resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} dependencies: is-alphabetical: 1.0.4 is-decimal: 1.0.4 - is-alphanumerical@2.0.1: - dependencies: - is-alphabetical: 2.0.1 - is-decimal: 2.0.1 - - is-arguments@1.1.1: + /is-arguments@1.1.1: + resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 has-tostringtag: 1.0.2 - is-array-buffer@3.0.4: + /is-array-buffer@3.0.4: + resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 - is-arrayish@0.2.1: {} + /is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - is-async-function@2.0.0: + /is-async-function@2.0.0: + resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.2 + dev: true - is-bigint@1.0.4: + /is-bigint@1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} dependencies: has-bigints: 1.0.2 - is-binary-path@1.0.1: + /is-binary-path@1.0.1: + resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==} + engines: {node: '>=0.10.0'} dependencies: binary-extensions: 1.13.1 - is-binary-path@2.1.0: + /is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} dependencies: binary-extensions: 2.3.0 - is-boolean-object@1.1.2: + /is-boolean-object@1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 has-tostringtag: 1.0.2 - is-buffer@1.1.6: {} + /is-buffer@1.1.6: + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} - is-buffer@2.0.5: {} + /is-buffer@2.0.5: + resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} + engines: {node: '>=4'} - is-builtin-module@3.2.1: + /is-builtin-module@3.2.1: + resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} + engines: {node: '>=6'} dependencies: builtin-modules: 3.3.0 + dev: true - is-callable@1.2.7: {} + /is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} - is-ci@2.0.0: + /is-ci@2.0.0: + resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} + hasBin: true dependencies: ci-info: 2.0.0 - is-ci@3.0.1: + /is-ci@3.0.1: + resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} + hasBin: true dependencies: ci-info: 3.9.0 + dev: true - is-core-module@2.14.0: + /is-core-module@2.14.0: + resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==} + engines: {node: '>= 0.4'} dependencies: hasown: 2.0.2 - is-data-descriptor@1.0.1: + /is-data-descriptor@1.0.1: + resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==} + engines: {node: '>= 0.4'} dependencies: hasown: 2.0.2 - is-data-view@1.0.1: + /is-data-view@1.0.1: + resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} + engines: {node: '>= 0.4'} dependencies: is-typed-array: 1.1.13 - is-date-object@1.0.5: + /is-date-object@1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.2 - is-decimal@1.0.4: {} + /is-decimal@1.0.4: + resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} /is-deflate@1.0.0: resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==} @@ -47476,52 +37656,85 @@ snapshots: is-accessor-descriptor: 1.0.1 is-data-descriptor: 1.0.1 - is-descriptor@1.0.3: + /is-descriptor@1.0.3: + resolution: {integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==} + engines: {node: '>= 0.4'} dependencies: is-accessor-descriptor: 1.0.1 is-data-descriptor: 1.0.1 - is-directory@0.3.1: {} + /is-directory@0.3.1: + resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} + engines: {node: '>=0.10.0'} - is-docker@2.2.1: {} + /is-docker@2.2.1: + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} + hasBin: true - is-dom@1.1.0: + /is-dom@1.1.0: + resolution: {integrity: sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==} dependencies: is-object: 1.0.2 is-window: 1.0.2 + dev: true - is-extendable@0.1.1: {} + /is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} - is-extendable@1.0.1: + /is-extendable@1.0.1: + resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} + engines: {node: '>=0.10.0'} dependencies: is-plain-object: 2.0.4 - is-extglob@2.1.1: {} + /is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} - is-finalizationregistry@1.0.2: + /is-finalizationregistry@1.0.2: + resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} dependencies: call-bind: 1.0.7 + dev: true - is-finite@1.1.0: - optional: true + /is-finite@1.1.0: + resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==} + engines: {node: '>=0.10.0'} + requiresBuild: true - is-fullwidth-code-point@2.0.0: {} + /is-fullwidth-code-point@2.0.0: + resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} + engines: {node: '>=4'} - is-fullwidth-code-point@3.0.0: {} + /is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} - is-function@1.0.2: {} + /is-function@1.0.2: + resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==} - is-generator-fn@2.1.0: {} + /is-generator-fn@2.1.0: + resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} + engines: {node: '>=6'} - is-generator-function@1.0.10: + /is-generator-function@1.0.10: + resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.2 + dev: true - is-glob@3.1.0: + /is-glob@3.1.0: + resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==} + engines: {node: '>=0.10.0'} dependencies: is-extglob: 2.1.1 - is-glob@4.0.3: + /is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} dependencies: is-extglob: 2.1.1 @@ -47533,24 +37746,37 @@ snapshots: /is-hexadecimal@1.0.4: resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} - is-hexadecimal@2.0.1: {} - - is-installed-globally@0.4.0: + /is-installed-globally@0.4.0: + resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} + engines: {node: '>=10'} dependencies: global-dirs: 3.0.1 is-path-inside: 3.0.3 - is-interactive@1.0.0: {} + /is-interactive@1.0.0: + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + engines: {node: '>=8'} + dev: true - is-lambda@1.0.1: {} + /is-lambda@1.0.1: + resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} + dev: true - is-lite@0.8.2: {} + /is-lite@0.8.2: + resolution: {integrity: sha512-JZfH47qTsslwaAsqbMI3Q6HNNjUuq6Cmzzww50TdP5Esb6e1y2sK2UAaZZuzfAzpoI2AkxoPQapZdlDuP6Vlsw==} + dev: false - is-lite@1.2.1: {} + /is-lite@1.2.1: + resolution: {integrity: sha512-pgF+L5bxC+10hLBgf6R2P4ZZUBOQIIacbdo8YvuCP8/JvsWxG7aZ9p10DYuLtifFci4l3VITphhMlMV4Y+urPw==} + dev: false - is-map@2.0.3: {} + /is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} - is-module@1.0.0: {} + /is-module@1.0.0: + resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + dev: true /is-nan@1.3.2: resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} @@ -47564,11 +37790,18 @@ snapshots: resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} engines: {node: '>= 0.4'} - is-node-process@1.2.0: {} + /is-node-process@1.2.0: + resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==} + dev: true - is-npm@5.0.0: {} + /is-npm@5.0.0: + resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==} + engines: {node: '>=10'} + dev: false - is-number-object@1.0.7: + /is-number-object@1.0.7: + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.2 @@ -47594,64 +37827,106 @@ snapshots: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} - is-obj@2.0.0: {} + /is-obj@2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} - is-object@1.0.2: {} + /is-object@1.0.2: + resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==} + dev: true - is-path-cwd@2.2.0: {} + /is-path-cwd@2.2.0: + resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} + engines: {node: '>=6'} - is-path-in-cwd@2.1.0: + /is-path-in-cwd@2.1.0: + resolution: {integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==} + engines: {node: '>=6'} dependencies: is-path-inside: 2.1.0 - is-path-inside@2.1.0: + /is-path-inside@2.1.0: + resolution: {integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==} + engines: {node: '>=6'} dependencies: path-is-inside: 1.0.2 - is-path-inside@3.0.3: {} - - is-plain-obj@1.1.0: {} + /is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} - is-plain-obj@2.1.0: {} + /is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} - is-plain-obj@3.0.0: {} + /is-plain-obj@2.1.0: + resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} + engines: {node: '>=8'} - is-plain-obj@4.1.0: {} + /is-plain-obj@3.0.0: + resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} + engines: {node: '>=10'} + dev: true - is-plain-object@2.0.4: + /is-plain-object@2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 - is-plain-object@3.0.1: {} + /is-plain-object@3.0.1: + resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==} + engines: {node: '>=0.10.0'} + dev: true - is-plain-object@5.0.0: {} + /is-plain-object@5.0.0: + resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + engines: {node: '>=0.10.0'} - is-potential-custom-element-name@1.0.1: {} + /is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + dev: true - is-promise@2.2.2: {} + /is-promise@2.2.2: + resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + dev: false - is-reference@1.2.1: + /is-reference@1.2.1: + resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} dependencies: '@types/estree': 1.0.5 + dev: true - is-regex@1.1.4: + /is-regex@1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 has-tostringtag: 1.0.2 - is-set@2.0.3: {} + /is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} - is-shared-array-buffer@1.0.3: + /is-shared-array-buffer@1.0.3: + resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 - is-ssh@1.4.0: + /is-ssh@1.4.0: + resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} dependencies: protocols: 2.0.1 + dev: true - is-stream@1.1.0: {} + /is-stream@1.1.0: + resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} + engines: {node: '>=0.10.0'} - is-stream@2.0.1: {} + /is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} /is-stream@3.0.0: resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} @@ -47664,90 +37939,147 @@ snapshots: dependencies: has-tostringtag: 1.0.2 - is-subdir@1.2.0: + /is-subdir@1.2.0: + resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} + engines: {node: '>=4'} dependencies: better-path-resolve: 1.0.0 + dev: true - is-symbol@1.0.4: + /is-symbol@1.0.4: + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 - is-text-path@1.0.1: + /is-text-path@1.0.1: + resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} + engines: {node: '>=0.10.0'} dependencies: text-extensions: 1.9.0 + dev: true - is-typed-array@1.1.13: + /is-typed-array@1.1.13: + resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} + engines: {node: '>= 0.4'} dependencies: which-typed-array: 1.1.15 - is-typedarray@1.0.0: {} + /is-typedarray@1.0.0: + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} - is-unicode-supported@0.1.0: {} + /is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + dev: true - is-utf8@0.2.1: + /is-utf8@0.2.1: + resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} + requiresBuild: true + dev: false optional: true - is-weakmap@2.0.2: {} + /is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} - is-weakref@1.0.2: + /is-weakref@1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: call-bind: 1.0.7 - is-weakset@2.0.3: + /is-weakset@2.0.3: + resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 - is-what@3.14.1: {} + /is-what@3.14.1: + resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} - is-whitespace-character@1.0.4: {} + /is-whitespace-character@1.0.4: + resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==} - is-window@1.0.2: {} + /is-window@1.0.2: + resolution: {integrity: sha512-uj00kdXyZb9t9RcAUAwMZAnkBUwdYGhYlt7djMXhfyhUCzwNba50tIiBKR7q0l7tdoBtFVw/3JmLY6fI3rmZmg==} + dev: true - is-windows@1.0.2: {} + /is-windows@1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} - is-word-character@1.0.4: {} + /is-word-character@1.0.4: + resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==} - is-wsl@1.1.0: {} + /is-wsl@1.1.0: + resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} + engines: {node: '>=4'} - is-wsl@2.2.0: + /is-wsl@2.2.0: + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} dependencies: is-docker: 2.2.1 - is-yarn-global@0.3.0: {} + /is-yarn-global@0.3.0: + resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==} + dev: false - isarray@0.0.1: {} + /isarray@0.0.1: + resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} + dev: false - isarray@1.0.0: {} + /isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} - isarray@2.0.5: {} + /isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} - isexe@2.0.0: {} + /isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - isobject@2.1.0: + /isobject@2.1.0: + resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} + engines: {node: '>=0.10.0'} dependencies: isarray: 1.0.0 - isobject@3.0.1: {} + /isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} - isobject@4.0.0: {} + /isobject@4.0.0: + resolution: {integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==} + engines: {node: '>=0.10.0'} - isomorphic-unfetch@3.1.0(encoding@0.1.13): + /isomorphic-unfetch@3.1.0: + resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==} dependencies: - node-fetch: 2.7.0(encoding@0.1.13) + node-fetch: 2.7.0 unfetch: 4.2.0 transitivePeerDependencies: - encoding + dev: false - isstream@0.1.2: {} + /isstream@0.1.2: + resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} + dev: true - istanbul-lib-coverage@3.2.2: {} + /istanbul-lib-coverage@3.2.2: + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} + engines: {node: '>=8'} - istanbul-lib-hook@3.0.0: + /istanbul-lib-hook@3.0.0: + resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==} + engines: {node: '>=8'} dependencies: append-transform: 2.0.0 + dev: true - istanbul-lib-instrument@4.0.3: + /istanbul-lib-instrument@4.0.3: + resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} + engines: {node: '>=8'} dependencies: '@babel/core': 7.24.7 '@istanbuljs/schema': 0.1.3 @@ -47755,8 +38087,11 @@ snapshots: semver: 6.3.1 transitivePeerDependencies: - supports-color + dev: true - istanbul-lib-instrument@5.2.1: + /istanbul-lib-instrument@5.2.1: + resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} + engines: {node: '>=8'} dependencies: '@babel/core': 7.24.7 '@babel/parser': 7.24.7 @@ -47778,7 +38113,9 @@ snapshots: transitivePeerDependencies: - supports-color - istanbul-lib-processinfo@2.0.3: + /istanbul-lib-processinfo@2.0.3: + resolution: {integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==} + engines: {node: '>=8'} dependencies: archy: 1.0.0 cross-spawn: 7.0.3 @@ -47786,22 +38123,29 @@ snapshots: p-map: 3.0.0 rimraf: 3.0.2 uuid: 8.3.2 + dev: true - istanbul-lib-report@3.0.1: + /istanbul-lib-report@3.0.1: + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} dependencies: istanbul-lib-coverage: 3.2.2 make-dir: 4.0.0 supports-color: 7.2.0 - istanbul-lib-source-maps@4.0.1: + /istanbul-lib-source-maps@4.0.1: + resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} + engines: {node: '>=10'} dependencies: - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) istanbul-lib-coverage: 3.2.2 source-map: 0.6.1 transitivePeerDependencies: - supports-color - istanbul-reports@3.1.7: + /istanbul-reports@3.1.7: + resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} + engines: {node: '>=8'} dependencies: html-escaper: 2.0.2 istanbul-lib-report: 3.0.1 @@ -47810,40 +38154,54 @@ snapshots: resolution: {integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==} dev: false - iterate-value@1.0.2: + /iterate-value@1.0.2: + resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==} dependencies: es-get-iterator: 1.1.3 iterate-iterator: 1.0.2 dev: false - iterator.prototype@1.1.2: + /iterator.prototype@1.1.2: + resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} dependencies: define-properties: 1.2.1 get-intrinsic: 1.2.4 has-symbols: 1.0.3 reflect.getprototypeof: 1.0.6 set-function-name: 2.0.2 + dev: true - jackspeak@3.4.0: + /jackspeak@3.4.0: + resolution: {integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==} + engines: {node: '>=14'} dependencies: '@isaacs/cliui': 8.0.2 optionalDependencies: '@pkgjs/parseargs': 0.11.0 - jake@10.9.1: + /jake@10.9.1: + resolution: {integrity: sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==} + engines: {node: '>=10'} + hasBin: true dependencies: async: 3.2.5 chalk: 4.1.2 filelist: 1.0.4 minimatch: 3.1.2 + dev: true - jest-changed-files@26.6.2: + /jest-changed-files@26.6.2: + resolution: {integrity: sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 execa: 4.1.0 throat: 5.0.0 + dev: true - jest-changed-files@29.7.0: + /jest-changed-files@29.7.0: + resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: execa: 5.1.1 jest-util: 29.7.0 @@ -47860,7 +38218,7 @@ snapshots: '@types/node': 13.13.52 chalk: 4.1.2 co: 4.6.0 - dedent: 1.5.3(babel-plugin-macros@3.1.0) + dedent: 1.5.3 is-generator-fn: 2.1.0 jest-each: 29.7.0 jest-matcher-utils: 29.7.0 @@ -47877,9 +38235,12 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@26.6.3(ts-node@8.10.2(typescript@4.9.5)): + /jest-cli@26.6.3: + resolution: {integrity: sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==} + engines: {node: '>= 10.14.2'} + hasBin: true dependencies: - '@jest/core': 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + '@jest/core': 26.6.3 '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 chalk: 4.1.2 @@ -47887,7 +38248,7 @@ snapshots: graceful-fs: 4.2.11 import-local: 3.1.0 is-ci: 2.0.0 - jest-config: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-config: 26.6.3 jest-util: 26.6.2 jest-validate: 26.6.2 prompts: 2.4.2 @@ -47898,22 +38259,29 @@ snapshots: - supports-color - ts-node - utf-8-validate + dev: true - jest-cli@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)): + /jest-cli@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): + resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + '@jest/core': 29.7.0(ts-node@8.10.2) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)) + create-jest: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)) + jest-config: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 - optionalDependencies: - node-notifier: 8.0.2 transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -47957,7 +38325,7 @@ snapshots: optional: true dependencies: '@babel/core': 7.24.7 - '@jest/test-sequencer': 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + '@jest/test-sequencer': 26.6.3 '@jest/types': 26.6.2 babel-jest: 26.6.3(@babel/core@7.24.7) chalk: 4.1.2 @@ -47967,20 +38335,19 @@ snapshots: jest-environment-jsdom: 26.6.2 jest-environment-node: 26.6.2 jest-get-type: 26.3.0 - jest-jasmine2: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-jasmine2: 26.6.3 jest-regex-util: 26.0.0 jest-resolve: 26.6.2 jest-util: 26.6.2 jest-validate: 26.6.2 micromatch: 4.0.7 pretty-format: 26.6.2 - optionalDependencies: - ts-node: 8.10.2(typescript@4.9.5) transitivePeerDependencies: - bufferutil - canvas - supports-color - utf-8-validate + dev: true /jest-config@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} @@ -47997,13 +38364,14 @@ snapshots: '@babel/core': 7.24.7 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 + '@types/node': 13.13.52 babel-jest: 29.7.0(@babel/core@7.24.7) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 - jest-circus: 29.7.0(babel-plugin-macros@3.1.0) + jest-circus: 29.7.0 jest-environment-node: 29.7.0 jest-get-type: 29.6.3 jest-regex-util: 29.6.3 @@ -48016,8 +38384,6 @@ snapshots: pretty-format: 29.7.0 slash: 3.0.0 strip-json-comments: 3.1.1 - optionalDependencies: - '@types/node': 13.13.52 ts-node: 8.10.2(typescript@4.9.5) transitivePeerDependencies: - babel-plugin-macros @@ -48070,6 +38436,7 @@ snapshots: diff-sequences: 26.6.2 jest-get-type: 26.3.0 pretty-format: 26.6.2 + dev: true /jest-diff@29.7.0: resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} @@ -48093,21 +38460,16 @@ snapshots: dependencies: detect-newline: 3.1.0 - jest-docblock@28.1.1: - dependencies: - detect-newline: 3.1.0 - - jest-docblock@29.7.0: - dependencies: - detect-newline: 3.1.0 - - jest-each@26.6.2: + /jest-each@26.6.2: + resolution: {integrity: sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 chalk: 4.1.2 jest-get-type: 26.3.0 jest-util: 26.6.2 pretty-format: 26.6.2 + dev: true /jest-each@29.7.0: resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} @@ -48119,19 +38481,35 @@ snapshots: jest-util: 29.7.0 pretty-format: 29.7.0 - jest-environment-jsdom-global@2.0.4(jest-environment-jsdom@26.6.2): + /jest-environment-jsdom-global@2.0.4(jest-environment-jsdom@26.6.2): + resolution: {integrity: sha512-1vB8q+PrszXW4Pf7Zgp3eQ4oNVbA7GY6+jmrg1qi6RtYRWDJ60/xdkhjqAbQpX8BRyvqQJYQi66LXER5YNeHXg==} + peerDependencies: + jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x dependencies: jest-environment-jsdom: 26.6.2 + dev: true - jest-environment-jsdom-global@4.0.0(jest-environment-jsdom@26.6.2): + /jest-environment-jsdom-global@4.0.0(jest-environment-jsdom@26.6.2): + resolution: {integrity: sha512-qEV8j61oV5XhOBUQbrld2nMYKnp/AGINUaoYTtkwJ9rjvMNRN7ZaZ/dgoPpW83oFtrSiVM1gie6ajdsKFBUlLA==} + engines: {node: '>= 14'} + peerDependencies: + jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x || 27.x || 28.x || 29.x dependencies: jest-environment-jsdom: 26.6.2 + dev: true - jest-environment-jsdom-global@4.0.0(jest-environment-jsdom@29.7.0): + /jest-environment-jsdom-global@4.0.0(jest-environment-jsdom@29.7.0): + resolution: {integrity: sha512-qEV8j61oV5XhOBUQbrld2nMYKnp/AGINUaoYTtkwJ9rjvMNRN7ZaZ/dgoPpW83oFtrSiVM1gie6ajdsKFBUlLA==} + engines: {node: '>= 14'} + peerDependencies: + jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x || 27.x || 28.x || 29.x dependencies: jest-environment-jsdom: 29.7.0 + dev: true - jest-environment-jsdom@26.6.2: + /jest-environment-jsdom@26.6.2: + resolution: {integrity: sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/environment': 26.6.2 '@jest/fake-timers': 26.6.2 @@ -48145,8 +38523,16 @@ snapshots: - canvas - supports-color - utf-8-validate + dev: true - jest-environment-jsdom@29.7.0: + /jest-environment-jsdom@29.7.0: + resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true dependencies: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 @@ -48160,8 +38546,11 @@ snapshots: - bufferutil - supports-color - utf-8-validate + dev: true - jest-environment-node@26.6.2: + /jest-environment-node@26.6.2: + resolution: {integrity: sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/environment': 26.6.2 '@jest/fake-timers': 26.6.2 @@ -48169,6 +38558,7 @@ snapshots: '@types/node': 13.13.52 jest-mock: 26.6.2 jest-util: 26.6.2 + dev: true /jest-environment-node@29.7.0: resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} @@ -48181,13 +38571,18 @@ snapshots: jest-mock: 29.7.0 jest-util: 29.7.0 - jest-get-type@26.3.0: {} + /jest-get-type@26.3.0: + resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==} + engines: {node: '>= 10.14.2'} + dev: true /jest-get-type@29.6.3: resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - jest-haste-map@26.6.2: + /jest-haste-map@26.6.2: + resolution: {integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.9 @@ -48225,7 +38620,9 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - jest-jasmine2@26.6.3(ts-node@8.10.2(typescript@4.9.5)): + /jest-jasmine2@26.6.3: + resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==} + engines: {node: '>= 10.14.2'} dependencies: '@babel/traverse': 7.24.7 '@jest/environment': 26.6.2 @@ -48240,7 +38637,7 @@ snapshots: jest-each: 26.6.2 jest-matcher-utils: 26.6.2 jest-message-util: 26.6.2 - jest-runtime: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-runtime: 26.6.3 jest-snapshot: 26.6.2 jest-util: 26.6.2 pretty-format: 26.6.2 @@ -48251,11 +38648,15 @@ snapshots: - supports-color - ts-node - utf-8-validate + dev: true - jest-leak-detector@26.6.2: + /jest-leak-detector@26.6.2: + resolution: {integrity: sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==} + engines: {node: '>= 10.14.2'} dependencies: jest-get-type: 26.3.0 pretty-format: 26.6.2 + dev: true /jest-leak-detector@29.7.0: resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} @@ -48264,12 +38665,15 @@ snapshots: jest-get-type: 29.6.3 pretty-format: 29.7.0 - jest-matcher-utils@26.6.2: + /jest-matcher-utils@26.6.2: + resolution: {integrity: sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==} + engines: {node: '>= 10.14.2'} dependencies: chalk: 4.1.2 jest-diff: 26.6.2 jest-get-type: 26.3.0 pretty-format: 26.6.2 + dev: true /jest-matcher-utils@29.7.0: resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} @@ -48280,7 +38684,9 @@ snapshots: jest-get-type: 29.6.3 pretty-format: 29.7.0 - jest-message-util@26.6.2: + /jest-message-util@26.6.2: + resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==} + engines: {node: '>= 10.14.2'} dependencies: '@babel/code-frame': 7.24.7 '@jest/types': 26.6.2 @@ -48291,6 +38697,7 @@ snapshots: pretty-format: 26.6.2 slash: 3.0.0 stack-utils: 2.0.6 + dev: true /jest-message-util@29.7.0: resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} @@ -48306,10 +38713,13 @@ snapshots: slash: 3.0.0 stack-utils: 2.0.6 - jest-mock@26.6.2: + /jest-mock@26.6.2: + resolution: {integrity: sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 '@types/node': 13.13.52 + dev: true /jest-mock@29.7.0: resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} @@ -48319,9 +38729,17 @@ snapshots: '@types/node': 13.13.52 jest-util: 29.7.0 - jest-pnp-resolver@1.2.3(jest-resolve@26.6.2): - optionalDependencies: + /jest-pnp-resolver@1.2.3(jest-resolve@26.6.2): + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + dependencies: jest-resolve: 26.6.2 + dev: true /jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} @@ -48334,28 +38752,37 @@ snapshots: dependencies: jest-resolve: 29.7.0 - jest-regex-util@26.0.0: {} + /jest-regex-util@26.0.0: + resolution: {integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==} + engines: {node: '>= 10.14.2'} /jest-regex-util@29.6.3: resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - jest-resolve-dependencies@26.6.3: + /jest-resolve-dependencies@26.6.3: + resolution: {integrity: sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 jest-regex-util: 26.0.0 jest-snapshot: 26.6.2 transitivePeerDependencies: - supports-color + dev: true - jest-resolve-dependencies@29.7.0: + /jest-resolve-dependencies@29.7.0: + resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: jest-regex-util: 29.6.3 jest-snapshot: 29.7.0 transitivePeerDependencies: - supports-color - jest-resolve@26.6.2: + /jest-resolve@26.6.2: + resolution: {integrity: sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 chalk: 4.1.2 @@ -48365,6 +38792,7 @@ snapshots: read-pkg-up: 7.0.1 resolve: 1.22.8 slash: 3.0.0 + dev: true /jest-resolve@29.7.0: resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} @@ -48380,7 +38808,9 @@ snapshots: resolve.exports: 2.0.2 slash: 3.0.0 - jest-runner@26.6.3(ts-node@8.10.2(typescript@4.9.5)): + /jest-runner@26.6.3: + resolution: {integrity: sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/console': 26.6.2 '@jest/environment': 26.6.2 @@ -48391,13 +38821,13 @@ snapshots: emittery: 0.7.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-config: 26.6.3 jest-docblock: 26.0.0 jest-haste-map: 26.6.2 jest-leak-detector: 26.6.2 jest-message-util: 26.6.2 jest-resolve: 26.6.2 - jest-runtime: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-runtime: 26.6.3 jest-util: 26.6.2 jest-worker: 26.6.2 source-map-support: 0.5.21 @@ -48408,6 +38838,7 @@ snapshots: - supports-color - ts-node - utf-8-validate + dev: true /jest-runner@29.7.0: resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} @@ -48437,7 +38868,10 @@ snapshots: transitivePeerDependencies: - supports-color - jest-runtime@26.6.3(ts-node@8.10.2(typescript@4.9.5)): + /jest-runtime@26.6.3: + resolution: {integrity: sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==} + engines: {node: '>= 10.14.2'} + hasBin: true dependencies: '@jest/console': 26.6.2 '@jest/environment': 26.6.2 @@ -48454,7 +38888,7 @@ snapshots: exit: 0.1.2 glob: 7.2.3 graceful-fs: 4.2.11 - jest-config: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-config: 26.6.3 jest-haste-map: 26.6.2 jest-message-util: 26.6.2 jest-mock: 26.6.2 @@ -48472,6 +38906,7 @@ snapshots: - supports-color - ts-node - utf-8-validate + dev: true /jest-runtime@29.7.0: resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} @@ -48502,12 +38937,16 @@ snapshots: transitivePeerDependencies: - supports-color - jest-serializer@26.6.2: + /jest-serializer@26.6.2: + resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} + engines: {node: '>= 10.14.2'} dependencies: '@types/node': 13.13.52 graceful-fs: 4.2.11 - jest-snapshot@26.6.2: + /jest-snapshot@26.6.2: + resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==} + engines: {node: '>= 10.14.2'} dependencies: '@babel/types': 7.24.7 '@jest/types': 26.6.2 @@ -48527,6 +38966,7 @@ snapshots: semver: 7.6.2 transitivePeerDependencies: - supports-color + dev: true /jest-snapshot@29.7.0: resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} @@ -48555,7 +38995,9 @@ snapshots: transitivePeerDependencies: - supports-color - jest-util@26.6.2: + /jest-util@26.6.2: + resolution: {integrity: sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 '@types/node': 13.13.52 @@ -48575,7 +39017,9 @@ snapshots: graceful-fs: 4.2.11 picomatch: 2.3.1 - jest-validate@26.6.2: + /jest-validate@26.6.2: + resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 camelcase: 6.3.0 @@ -48583,6 +39027,7 @@ snapshots: jest-get-type: 26.3.0 leven: 3.1.0 pretty-format: 26.6.2 + dev: true /jest-validate@29.7.0: resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} @@ -48595,7 +39040,9 @@ snapshots: leven: 3.1.0 pretty-format: 29.7.0 - jest-watcher@26.6.2: + /jest-watcher@26.6.2: + resolution: {integrity: sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 @@ -48604,6 +39051,7 @@ snapshots: chalk: 4.1.2 jest-util: 26.6.2 string-length: 4.0.2 + dev: true /jest-watcher@29.7.0: resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} @@ -48618,42 +39066,55 @@ snapshots: jest-util: 29.7.0 string-length: 4.0.2 - jest-worker@26.6.2: + /jest-worker@26.6.2: + resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} + engines: {node: '>= 10.13.0'} dependencies: '@types/node': 13.13.52 merge-stream: 2.0.0 supports-color: 7.2.0 - jest-worker@27.5.1: + /jest-worker@27.5.1: + resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} + engines: {node: '>= 10.13.0'} dependencies: '@types/node': 13.13.52 merge-stream: 2.0.0 supports-color: 8.1.1 - jest-worker@28.1.3: + /jest-worker@28.1.3: + resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@types/node': 13.13.52 merge-stream: 2.0.0 supports-color: 8.1.1 + dev: true - jest-worker@29.7.0: + /jest-worker@29.7.0: + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@types/node': 13.13.52 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)): + /jest@26.6.3: + resolution: {integrity: sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==} + engines: {node: '>= 10.14.2'} + hasBin: true dependencies: - '@jest/core': 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + '@jest/core': 26.6.3 import-local: 3.1.0 - jest-cli: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-cli: 26.6.3 transitivePeerDependencies: - bufferutil - canvas - supports-color - ts-node - utf-8-validate + dev: true /jest@29.4.3(@types/node@18.11.9): resolution: {integrity: sha512-XvK65feuEFGZT8OO0fB/QAQS+LGHvQpaadkH5p47/j3Ocqq3xf2pK9R+G0GzgfuhXVxEv76qCOOcMb5efLk6PA==} @@ -48686,12 +39147,10 @@ snapshots: node-notifier: optional: true dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + '@jest/core': 29.7.0(ts-node@8.10.2) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) - optionalDependencies: - node-notifier: 8.0.2 + jest-cli: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -48722,51 +39181,83 @@ snapshots: resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} dev: true - joi@17.13.3: + /joi@17.13.3: + resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} dependencies: '@hapi/hoek': 9.3.0 '@hapi/topo': 5.1.0 '@sideway/address': 4.1.5 '@sideway/formula': 3.0.1 '@sideway/pinpoint': 2.0.0 + dev: false /jose@4.15.7: resolution: {integrity: sha512-L7ioP+JAuZe8v+T5+zVI9Tx8LtU8BL7NxkyDFVMv+Qr3JW0jSoYDedLtodaXwfqMpeCyx4WXFNyu9tJt4WvC1A==} - jquery@3.7.1: {} + /jquery@3.7.1: + resolution: {integrity: sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==} + dev: true - js-beautify@1.15.1: + /js-beautify@1.15.1: + resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==} + engines: {node: '>=14'} + hasBin: true dependencies: config-chain: 1.1.13 editorconfig: 1.0.4 glob: 10.4.2 js-cookie: 3.0.5 nopt: 7.2.1 + dev: false - js-cookie@3.0.5: {} + /js-cookie@3.0.5: + resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} + engines: {node: '>=14'} + dev: false - js-levenshtein@1.1.6: {} + /js-levenshtein@1.1.6: + resolution: {integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==} + engines: {node: '>=0.10.0'} + dev: true - js-string-escape@1.0.1: {} + /js-string-escape@1.0.1: + resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} + engines: {node: '>= 0.8'} - js-tokens@3.0.2: {} + /js-tokens@3.0.2: + resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==} + dev: true - js-tokens@4.0.0: {} + /js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - js-yaml@3.13.1: + /js-yaml@3.13.1: + resolution: {integrity: sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==} + hasBin: true dependencies: argparse: 1.0.10 esprima: 4.0.1 - js-yaml@4.1.0: + /js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true dependencies: argparse: 2.0.1 + dev: true - jsbn@0.1.1: {} + /jsbn@0.1.1: + resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + dev: true - jsbn@1.1.0: {} + /jsbn@1.1.0: + resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} + dev: true - jscodeshift@0.13.1(@babel/preset-env@7.24.7(@babel/core@7.24.7)): + /jscodeshift@0.13.1(@babel/preset-env@7.24.7): + resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==} + hasBin: true + peerDependencies: + '@babel/preset-env': ^7.1.6 dependencies: '@babel/core': 7.24.7 '@babel/parser': 7.24.7 @@ -48790,6 +39281,7 @@ snapshots: write-file-atomic: 2.4.3 transitivePeerDependencies: - supports-color + dev: false /jscodeshift@0.15.2(@babel/preset-env@7.24.7): resolution: {integrity: sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==} @@ -48865,8 +39357,16 @@ snapshots: - bufferutil - supports-color - utf-8-validate + dev: true - jsdom@20.0.3: + /jsdom@20.0.3: + resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} + engines: {node: '>=14'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true dependencies: abab: 2.0.6 acorn: 8.12.0 @@ -48898,12 +39398,25 @@ snapshots: - bufferutil - supports-color - utf-8-validate + dev: true - jsesc@0.5.0: {} + /jsesc@0.5.0: + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} + hasBin: true - jsesc@2.5.2: {} + /jsesc@1.3.0: + resolution: {integrity: sha512-Mke0DA0QjUWuJlhsE0ZPPhYiJkRap642SmI/4ztCFaUs6V2AiH1sfecc+57NgaryfAA2VR3v6O+CSjC1jZJKOA==} + hasBin: true + dev: true + + /jsesc@2.5.2: + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} + hasBin: true - jshint@2.13.6: + /jshint@2.13.6: + resolution: {integrity: sha512-IVdB4G0NTTeQZrBoM8C5JFVLjV2KtZ9APgybDA1MK73xb09qFs0jCXyQLnCOp1cSZZZbvhq/6mfXHUTaDkffuQ==} + hasBin: true dependencies: cli: 1.0.1 console-browserify: 1.1.0 @@ -48912,140 +39425,230 @@ snapshots: lodash: 4.17.21 minimatch: 3.0.8 strip-json-comments: 1.0.4 + dev: false - json-buffer@3.0.0: {} + /json-buffer@3.0.0: + resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} + dev: false - json-buffer@3.0.1: {} + /json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - json-minimizer-webpack-plugin@4.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /json-minimizer-webpack-plugin@4.0.0(webpack@5.84.1): + resolution: {integrity: sha512-PJaNiSeZlZStdyLtJo/QOOC7uHRW9qvc//7F8M0ZH1huPSvmX5kR2qrq2Tn1ODYLi128bTkKepqtgYmtEOkPzQ==} + engines: {node: '>= 14.15.0'} + peerDependencies: + webpack: 5.84.1 dependencies: schema-utils: 4.2.0 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - json-minimizer-webpack-plugin@5.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /json-minimizer-webpack-plugin@5.0.0(webpack@5.84.1): + resolution: {integrity: sha512-GT/SZolN2p405EMGjMTBvAVi2+y035p1tSOuLpWbp5QTMl080OHx4DEGXfUH6vbnGw5Z/QKfBe+KpP9Dj0qLmA==} + engines: {node: '>= 18.12.0'} + peerDependencies: + webpack: 5.84.1 dependencies: schema-utils: 4.2.0 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - json-parse-better-errors@1.0.2: {} + /json-parse-better-errors@1.0.2: + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} - json-parse-even-better-errors@2.3.1: {} + /json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - json-schema-traverse@0.4.1: {} + /json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} - json-schema-traverse@1.0.0: {} + /json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} - json-schema@0.4.0: {} + /json-schema@0.4.0: + resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + dev: true - json-stable-stringify-without-jsonify@1.0.1: {} + /json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - json-stringify-nice@1.1.4: {} + /json-stringify-nice@1.1.4: + resolution: {integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==} + dev: true - json-stringify-safe@5.0.1: {} + /json-stringify-safe@5.0.1: + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + dev: true - json5@1.0.2: + /json5@0.5.1: + resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==} + hasBin: true + dev: true + + /json5@1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true dependencies: minimist: 1.2.8 - json5@2.2.3: {} + /json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true - jsonc-eslint-parser@2.4.0: + /jsonc-eslint-parser@2.4.0: + resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.12.0 eslint-visitor-keys: 3.4.3 espree: 9.6.1 semver: 7.6.2 + dev: true - jsonc-parser@3.2.0: {} + /jsonc-parser@3.2.0: + resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} + dev: true - jsonfile@4.0.0: + /jsonfile@4.0.0: + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} optionalDependencies: graceful-fs: 4.2.11 + dev: true - jsonfile@6.1.0: + /jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} dependencies: universalify: 2.0.1 optionalDependencies: graceful-fs: 4.2.11 - jsonparse@1.3.1: {} + /jsonparse@1.3.1: + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} + dev: true - jsprim@2.0.2: + /jsprim@2.0.2: + resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==} + engines: {'0': node >=0.6.0} dependencies: assert-plus: 1.0.0 extsprintf: 1.3.0 json-schema: 0.4.0 verror: 1.10.0 + dev: true - jsrsasign@10.9.0: {} + /jsrsasign@10.9.0: + resolution: {integrity: sha512-QWLUikj1SBJGuyGK8tjKSx3K7Y69KYJnrs/pQ1KZ6wvZIkHkWjZ1PJDpuvc1/28c1uP0KW9qn1eI1LzHQqDOwQ==} + dev: false - jsx-ast-utils@3.3.5: + /jsx-ast-utils@3.3.5: + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} + engines: {node: '>=4.0'} dependencies: array-includes: 3.1.8 array.prototype.flat: 1.3.2 object.assign: 4.1.5 object.values: 1.2.0 + dev: true /junk@3.1.0: resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==} engines: {node: '>=8'} dev: false - just-diff-apply@5.5.0: {} + /just-diff-apply@5.5.0: + resolution: {integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==} + dev: true - just-diff@5.2.0: {} + /just-diff@5.2.0: + resolution: {integrity: sha512-6ufhP9SHjb7jibNFrNxyFZ6od3g+An6Ai9mhGRvcYe8UJlH0prseN64M+6ZBBUoKYHZsitDP42gAJ8+eVWr3lw==} + dev: true - keyboard-key@1.1.0: {} + /keyboard-key@1.1.0: + resolution: {integrity: sha512-qkBzPTi3rlAKvX7k0/ub44sqOfXeLc/jcnGGmj5c7BJpU8eDrEVPyhCvNYAaoubbsLm9uGWwQJO1ytQK1a9/dQ==} + dev: false - keyv@3.1.0: + /keyv@3.1.0: + resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} dependencies: json-buffer: 3.0.0 + dev: false - keyv@4.5.4: + /keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} dependencies: json-buffer: 3.0.1 - killable@1.0.1: {} + /killable@1.0.1: + resolution: {integrity: sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==} - kind-of@2.0.1: + /kind-of@2.0.1: + resolution: {integrity: sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==} + engines: {node: '>=0.10.0'} dependencies: is-buffer: 1.1.6 dev: true - kind-of@3.2.2: + /kind-of@3.2.2: + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} + engines: {node: '>=0.10.0'} dependencies: is-buffer: 1.1.6 - kind-of@4.0.0: + /kind-of@4.0.0: + resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} + engines: {node: '>=0.10.0'} dependencies: is-buffer: 1.1.6 - kind-of@6.0.3: {} + /kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} - kleur@3.0.3: {} + /kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} - kleur@4.1.5: {} + /kleur@4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + dev: true - klona@2.0.6: {} + /klona@2.0.6: + resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} + engines: {node: '>= 8'} - language-subtag-registry@0.3.23: {} + /language-subtag-registry@0.3.23: + resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} + dev: true - language-tags@1.0.9: + /language-tags@1.0.9: + resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} + engines: {node: '>=0.10'} dependencies: language-subtag-registry: 0.3.23 + dev: true - latest-version@5.1.0: + /latest-version@5.1.0: + resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==} + engines: {node: '>=8'} dependencies: package-json: 6.5.0 + dev: false - launch-editor@2.8.0: + /launch-editor@2.8.0: + resolution: {integrity: sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==} dependencies: picocolors: 1.0.1 shell-quote: 1.8.1 + dev: true - lazy-ass@1.6.0: {} + /lazy-ass@1.6.0: + resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==} + engines: {node: '> 0.8'} + dev: true /lazy-cache@0.2.7: resolution: {integrity: sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==} @@ -49064,7 +39667,9 @@ snapshots: set-getter: 0.1.1 dev: true - lazy-universal-dotenv@3.0.1: + /lazy-universal-dotenv@3.0.1: + resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==} + engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'} dependencies: '@babel/runtime': 7.24.7 app-root-dir: 1.0.2 @@ -49116,6 +39721,7 @@ snapshots: - debug - encoding - supports-color + dev: true /less-loader@11.1.0(less@4.1.3)(webpack@5.84.1): resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==} @@ -49129,27 +39735,45 @@ snapshots: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - less-loader@5.0.0(less@3.12.2)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /less-loader@5.0.0(less@3.13.1)(webpack@5.84.1): + resolution: {integrity: sha512-bquCU89mO/yWLaUq0Clk7qCsKhsF/TZpJUzETRvJa9KSVEL9SO3ovCvdEHISBhrC81OwC8QSVX7E0bzElZj9cg==} + engines: {node: '>= 4.8.0'} + peerDependencies: + less: ^2.3.1 || ^3.0.0 + webpack: 5.84.1 dependencies: clone: 2.1.2 - less: 3.12.2 + less: 3.13.1 loader-utils: 1.4.2 pify: 4.0.1 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - less-plugin-inline-urls@1.2.0: {} + /less-plugin-inline-urls@1.2.0: + resolution: {integrity: sha512-QS9MLcg8Lo6ZHVS+9kncmHeLypIdnFgG/neqV3RPkXfiiSCJHn/jTQHKnXfDEL/F/JM+z6MQ6ukWr/xsOChHTA==} + engines: {node: '>=0.4.2'} + dev: true - less-plugin-npm-import@2.1.0: + /less-plugin-npm-import@2.1.0: + resolution: {integrity: sha512-f7pVkEooRq2/jge/M/Y+spoPXj5rRIY30q1as+3kZsDG8Rs+loNJUCVQjzXB9Ao/9FeIJULiq2zrXymv+OMTbw==} + engines: {node: '>=0.4.2'} dependencies: promise: 7.0.4 resolve: 1.1.7 + dev: true - less-plugin-rewrite-import@0.1.1: {} + /less-plugin-rewrite-import@0.1.1: + resolution: {integrity: sha512-8FnuGhF0rS6P9DkaEH2+6pphx7pJ9hV4mHF2MhsXKSXNvwTVX9YCt5HnX99mhTOyQzc+2hu5JPPoRl/b9DAwuQ==} + dev: true - less-plugin-rewrite-variable@0.1.0: {} + /less-plugin-rewrite-variable@0.1.0: + resolution: {integrity: sha512-cpIa1+wHssZRt2aUnoWODfDB0z0QM8ir9ZS/18802bX9S4+6s+/HXaK92C3VznniPjviKhA3u8o4/0K9HK0nEw==} + engines: {node: '>=0.4.2'} + dev: true - less-to-json@1.2.0: + /less-to-json@1.2.0: + resolution: {integrity: sha512-1ItmxVFw76yiQgr2MUTGy7bTHT2tT6CcZ28grgw/gWNy2Q3WwFfSHL88sWUBpTXGFonlKd2yCDhtJFJdGjzqHA==} + hasBin: true dependencies: commander: 2.20.3 fs: 0.0.1-security @@ -49158,10 +39782,14 @@ snapshots: path: 0.12.7 transitivePeerDependencies: - supports-color + dev: true - less-vars-to-js@1.3.0: + /less-vars-to-js@1.3.0: + resolution: {integrity: sha512-xeiLLn/IMCGtdyCkYQnW8UuzoW2oYMCKg9boZRaGI58fLz5r90bNJDlqGzmVt/1Uqk75/DxIVtQSNCMkE5fRZQ==} + engines: {node: '>=8'} dependencies: strip-json-comments: 2.0.1 + dev: true /less@3.13.1: resolution: {integrity: sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==} @@ -49178,6 +39806,7 @@ snapshots: mime: 1.6.0 native-request: 1.1.0 source-map: 0.6.1 + dev: true /less@4.1.3: resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==} @@ -49201,12 +39830,16 @@ snapshots: resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} engines: {node: '>=6'} - levn@0.4.1: + /levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 - libnpmaccess@6.0.4: + /libnpmaccess@6.0.4: + resolution: {integrity: sha512-qZ3wcfIyUoW0+qSFkMBovcTrSGJ3ZeyvpR7d5N9pEYv/kXs8sHP2wiqEIXBKLFrZlmM0kR0RJD7mtfLngtlLag==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: aproba: 2.0.0 minipass: 3.3.6 @@ -49215,8 +39848,11 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - libnpmpublish@6.0.5: + /libnpmpublish@6.0.5: + resolution: {integrity: sha512-LUR08JKSviZiqrYTDfywvtnsnxr+tOvBU0BF8H+9frt7HMvc6Qn6F8Ubm72g5hDTHbq8qupKfDvDAln2TVPvFg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: normalize-package-data: 4.0.1 npm-package-arg: 9.1.2 @@ -49226,15 +39862,26 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - license-webpack-plugin@4.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /license-webpack-plugin@4.0.2(webpack@5.84.1): + resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==} + peerDependencies: + webpack: '*' + peerDependenciesMeta: + webpack: + optional: true + webpack-sources: + optional: true dependencies: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-sources: 3.2.3 - optionalDependencies: - webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + dev: true - lilconfig@2.1.0: {} + /lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + dev: true /lilconfig@3.1.2: resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} @@ -49270,48 +39917,66 @@ snapshots: dependencies: cli-truncate: 2.1.0 colorette: 2.0.20 + enquirer: 2.4.1 log-update: 4.0.0 p-map: 4.0.0 rfdc: 1.4.1 rxjs: 7.8.1 through: 2.3.8 wrap-ansi: 7.0.0 - optionalDependencies: - enquirer: 2.4.1 + dev: true - load-json-file@1.1.0: + /load-json-file@1.1.0: + resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: graceful-fs: 4.2.11 parse-json: 2.2.0 pify: 2.3.0 pinkie-promise: 2.0.1 strip-bom: 2.0.0 + dev: false optional: true - load-json-file@4.0.0: + /load-json-file@4.0.0: + resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} + engines: {node: '>=4'} dependencies: graceful-fs: 4.2.11 parse-json: 4.0.0 pify: 3.0.0 strip-bom: 3.0.0 + dev: true - load-json-file@6.2.0: + /load-json-file@6.2.0: + resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==} + engines: {node: '>=8'} dependencies: graceful-fs: 4.2.11 parse-json: 5.2.0 strip-bom: 4.0.0 type-fest: 0.6.0 + dev: true - load-yaml-file@0.2.0: + /load-yaml-file@0.2.0: + resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} + engines: {node: '>=6'} dependencies: graceful-fs: 4.2.11 js-yaml: 3.13.1 pify: 4.0.1 strip-bom: 3.0.0 + dev: true - loader-runner@2.4.0: {} + /loader-runner@2.4.0: + resolution: {integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==} + engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} + dev: true - loader-runner@4.3.0: {} + /loader-runner@4.3.0: + resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} + engines: {node: '>=6.11.5'} /loader-utils@1.4.2: resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} @@ -49321,29 +39986,43 @@ snapshots: emojis-list: 3.0.0 json5: 1.0.2 - loader-utils@2.0.4: + /loader-utils@2.0.4: + resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} + engines: {node: '>=8.9.0'} dependencies: big.js: 5.2.2 emojis-list: 3.0.0 json5: 2.2.3 - loader-utils@3.3.1: {} + /loader-utils@3.3.1: + resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} + engines: {node: '>= 12.13.0'} + dev: true - locate-path@2.0.0: + /locate-path@2.0.0: + resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} + engines: {node: '>=4'} dependencies: p-locate: 2.0.0 path-exists: 3.0.0 + dev: true - locate-path@3.0.0: + /locate-path@3.0.0: + resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} + engines: {node: '>=6'} dependencies: p-locate: 3.0.0 path-exists: 3.0.0 - locate-path@5.0.0: + /locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} dependencies: p-locate: 4.1.0 - locate-path@6.0.0: + /locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} dependencies: p-locate: 5.0.0 @@ -49365,22 +40044,33 @@ snapshots: /lodash.camelcase@4.3.0: resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} - lodash.debounce@4.0.8: {} + /lodash.debounce@4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - lodash.flattendeep@4.4.0: {} + /lodash.flattendeep@4.4.0: + resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} + dev: true - lodash.ismatch@4.4.0: {} + /lodash.ismatch@4.4.0: + resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} + dev: true /lodash.isplainobject@4.0.6: resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} - lodash.memoize@4.1.2: {} + /lodash.memoize@4.1.2: + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} - lodash.merge@4.6.2: {} + /lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - lodash.once@4.1.1: {} + /lodash.once@4.1.1: + resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} + dev: true - lodash.startcase@4.4.0: {} + /lodash.startcase@4.4.0: + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + dev: true /lodash.template@4.5.0: resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==} @@ -49398,108 +40088,161 @@ snapshots: /lodash.truncate@4.4.2: resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} - lodash.uniq@4.5.0: {} + /lodash.uniq@4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} - lodash@4.17.21: {} + /lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - log-symbols@2.2.0: + /log-symbols@2.2.0: + resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==} + engines: {node: '>=4'} dependencies: chalk: 2.4.2 + dev: true - log-symbols@4.1.0: + /log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} dependencies: chalk: 4.1.2 is-unicode-supported: 0.1.0 + dev: true - log-update@4.0.0: + /log-update@4.0.0: + resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} + engines: {node: '>=10'} dependencies: ansi-escapes: 4.3.2 cli-cursor: 3.1.0 slice-ansi: 4.0.0 wrap-ansi: 6.2.0 + dev: true - log4js@4.5.1: + /log4js@4.5.1: + resolution: {integrity: sha512-EEEgFcE9bLgaYUKuozyFfytQM2wDHtXn4tAN41pkaxpNjAykv11GVdeI4tHtmPWW4Xrgh9R/2d7XYghDVjbKKw==} + engines: {node: '>=6.0'} + deprecated: 4.x is no longer supported. Please upgrade to 6.x or higher. dependencies: date-format: 2.1.0 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) flatted: 2.0.2 rfdc: 1.4.1 streamroller: 1.0.6 transitivePeerDependencies: - supports-color + dev: true - loglevel@1.9.1: {} + /loglevel@1.9.1: + resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==} + engines: {node: '>= 0.6.0'} - loglevelnext@1.0.5: + /loglevelnext@1.0.5: + resolution: {integrity: sha512-V/73qkPuJmx4BcBF19xPBr+0ZRVBhc4POxvZTZdMeXpJ4NItXSJ/MSwuFT0kQJlCbXvdlZoQQ/418bS1y9Jh6A==} + engines: {node: '>= 6'} dependencies: es6-symbol: 3.1.4 object.assign: 4.1.5 + dev: true - longest-streak@3.1.0: {} - - loose-envify@1.4.0: + /loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true dependencies: js-tokens: 4.0.0 - loud-rejection@1.6.0: + /loud-rejection@1.6.0: + resolution: {integrity: sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: currently-unhandled: 0.4.1 signal-exit: 3.0.7 + dev: false optional: true - lower-case@2.0.2: + /lower-case@2.0.2: + resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} dependencies: tslib: 2.6.3 - lowercase-keys@1.0.1: {} + /lowercase-keys@1.0.1: + resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} + engines: {node: '>=0.10.0'} + dev: false - lowercase-keys@2.0.0: {} + /lowercase-keys@2.0.0: + resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} + engines: {node: '>=8'} /lru-cache@10.4.3: resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} - lru-cache@4.1.5: + /lru-cache@4.1.5: + resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} dependencies: pseudomap: 1.0.2 yallist: 2.1.2 + dev: true - lru-cache@5.1.1: + /lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} dependencies: yallist: 3.1.1 - lru-cache@6.0.0: + /lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} dependencies: yallist: 4.0.0 - lru-cache@7.18.3: {} + /lru-cache@7.18.3: + resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} + engines: {node: '>=12'} + dev: true - lz-string@1.5.0: {} + /lz-string@1.5.0: + resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} + hasBin: true + dev: true - magic-string@0.25.9: + /magic-string@0.25.9: + resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} dependencies: sourcemap-codec: 1.4.8 + dev: true - magic-string@0.30.10: + /magic-string@0.30.10: + resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} dependencies: '@jridgewell/sourcemap-codec': 1.5.0 dev: true - make-dir@2.1.0: + /make-dir@2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} dependencies: pify: 4.0.1 semver: 5.7.2 - make-dir@3.1.0: + /make-dir@3.1.0: + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} dependencies: semver: 6.3.1 - make-dir@4.0.0: + /make-dir@4.0.0: + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} dependencies: semver: 7.6.2 - make-error@1.3.6: {} + /make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - make-fetch-happen@10.2.1: + /make-fetch-happen@10.2.1: + resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: agentkeepalive: 4.5.0 cacache: 16.1.3 @@ -49520,29 +40263,44 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - makeerror@1.0.12: + /makeerror@1.0.12: + resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} dependencies: tmpl: 1.0.5 - map-age-cleaner@0.1.3: + /map-age-cleaner@0.1.3: + resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==} + engines: {node: '>=6'} dependencies: p-defer: 1.0.0 dev: false - map-cache@0.2.2: {} + /map-cache@0.2.2: + resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} + engines: {node: '>=0.10.0'} - map-obj@1.0.1: {} + /map-obj@1.0.1: + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} - map-obj@4.3.0: {} + /map-obj@4.3.0: + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} + dev: true - map-or-similar@1.5.0: {} + /map-or-similar@1.5.0: + resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} - map-visit@1.0.0: + /map-visit@1.0.0: + resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} + engines: {node: '>=0.10.0'} dependencies: object-visit: 1.0.1 - markdown-escapes@1.0.4: {} + /markdown-escapes@1.0.4: + resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==} /markdown-link@0.1.1: resolution: {integrity: sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==} @@ -49568,7 +40326,9 @@ snapshots: strip-color: 0.1.0 dev: true - material-colors@1.2.6: {} + /material-colors@1.2.6: + resolution: {integrity: sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==} + dev: false /math-random@1.0.4: resolution: {integrity: sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==} @@ -49585,73 +40345,13 @@ snapshots: dependencies: unist-util-remove: 2.1.0 - mdast-util-definitions@4.0.0: + /mdast-util-definitions@4.0.0: + resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==} dependencies: unist-util-visit: 2.0.3 - mdast-util-from-markdown@2.0.1: - dependencies: - '@types/mdast': 4.0.4 - '@types/unist': 3.0.2 - decode-named-character-reference: 1.0.2 - devlop: 1.1.0 - mdast-util-to-string: 4.0.0 - micromark: 4.0.0 - micromark-util-decode-numeric-character-reference: 2.0.1 - micromark-util-decode-string: 2.0.0 - micromark-util-normalize-identifier: 2.0.0 - micromark-util-symbol: 2.0.0 - micromark-util-types: 2.0.0 - unist-util-stringify-position: 4.0.0 - transitivePeerDependencies: - - supports-color - - mdast-util-mdx-expression@2.0.0: - dependencies: - '@types/estree-jsx': 1.0.5 - '@types/hast': 3.0.4 - '@types/mdast': 4.0.4 - devlop: 1.1.0 - mdast-util-from-markdown: 2.0.1 - mdast-util-to-markdown: 2.1.0 - transitivePeerDependencies: - - supports-color - - mdast-util-mdx-jsx@3.1.2: - dependencies: - '@types/estree-jsx': 1.0.5 - '@types/hast': 3.0.4 - '@types/mdast': 4.0.4 - '@types/unist': 3.0.2 - ccount: 2.0.1 - devlop: 1.1.0 - mdast-util-from-markdown: 2.0.1 - mdast-util-to-markdown: 2.1.0 - parse-entities: 4.0.1 - stringify-entities: 4.0.4 - unist-util-remove-position: 5.0.0 - unist-util-stringify-position: 4.0.0 - vfile-message: 4.0.2 - transitivePeerDependencies: - - supports-color - - mdast-util-mdxjs-esm@2.0.1: - dependencies: - '@types/estree-jsx': 1.0.5 - '@types/hast': 3.0.4 - '@types/mdast': 4.0.4 - devlop: 1.1.0 - mdast-util-from-markdown: 2.0.1 - mdast-util-to-markdown: 2.1.0 - transitivePeerDependencies: - - supports-color - - mdast-util-phrasing@4.1.0: - dependencies: - '@types/mdast': 4.0.4 - unist-util-is: 6.0.0 - - mdast-util-to-hast@10.0.1: + /mdast-util-to-hast@10.0.1: + resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==} dependencies: '@types/mdast': 3.0.15 '@types/unist': 2.0.10 @@ -49662,28 +40362,12 @@ snapshots: unist-util-position: 3.1.0 unist-util-visit: 2.0.3 - mdast-util-to-hast@13.2.0: - dependencies: - '@types/hast': 3.0.4 - '@types/mdast': 4.0.4 - '@ungap/structured-clone': 1.2.0 - devlop: 1.1.0 - micromark-util-sanitize-uri: 2.0.0 - trim-lines: 3.0.1 - unist-util-position: 5.0.0 - unist-util-visit: 5.0.0 - vfile: 6.0.1 - - mdast-util-to-markdown@2.1.0: - dependencies: - '@types/mdast': 4.0.4 - '@types/unist': 3.0.2 - longest-streak: 3.1.0 - mdast-util-phrasing: 4.1.0 - mdast-util-to-string: 4.0.0 - micromark-util-decode-string: 2.0.0 - unist-util-visit: 5.0.0 - zwitch: 2.0.4 + /mdast-util-to-string@1.1.0: + resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==} + dev: true + + /mdn-data@2.0.14: + resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} /mdn-data@2.0.28: resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} @@ -49695,43 +40379,54 @@ snapshots: resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} dev: true - mdn-data@2.0.28: {} - - mdn-data@2.0.30: {} - - mdn-data@2.0.4: {} - - mdurl@1.0.1: {} + /mdurl@1.0.1: + resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} - media-typer@0.3.0: {} + /media-typer@0.3.0: + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} - mem@8.1.1: + /mem@8.1.1: + resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==} + engines: {node: '>=10'} dependencies: map-age-cleaner: 0.1.3 mimic-fn: 3.1.0 dev: false - memfs@3.5.3: + /memfs@3.5.3: + resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} + engines: {node: '>= 4.0.0'} dependencies: fs-monkey: 1.0.6 - memoize-one@5.2.1: {} + /memoize-one@5.2.1: + resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} + dev: false - memoizerific@1.11.3: + /memoizerific@1.11.3: + resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==} dependencies: map-or-similar: 1.5.0 - memory-fs@0.4.1: + /memory-fs@0.4.1: + resolution: {integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==} dependencies: errno: 0.1.8 readable-stream: 2.3.8 - memory-fs@0.5.0: + /memory-fs@0.5.0: + resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==} + engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} dependencies: errno: 0.1.8 readable-stream: 2.3.8 + dev: true - meow@3.7.0: + /meow@3.7.0: + resolution: {integrity: sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: camelcase-keys: 2.1.0 decamelize: 1.2.0 @@ -49743,9 +40438,12 @@ snapshots: read-pkg-up: 1.0.1 redent: 1.0.0 trim-newlines: 1.0.0 + dev: false optional: true - meow@6.1.1: + /meow@6.1.1: + resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} + engines: {node: '>=8'} dependencies: '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 @@ -49758,8 +40456,11 @@ snapshots: trim-newlines: 3.0.1 type-fest: 0.13.1 yargs-parser: 18.1.3 + dev: true - meow@8.1.2: + /meow@8.1.2: + resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} + engines: {node: '>=10'} dependencies: '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 @@ -49772,170 +40473,54 @@ snapshots: trim-newlines: 3.0.1 type-fest: 0.18.1 yargs-parser: 20.2.9 + dev: true - merge-anything@2.4.4: + /merge-anything@2.4.4: + resolution: {integrity: sha512-l5XlriUDJKQT12bH+rVhAHjwIuXWdAIecGwsYjv2LJo+dA1AeRTmeQS+3QBpO6lEthBMDi2IUMpLC1yyRvGlwQ==} dependencies: is-what: 3.14.1 + dev: false - merge-deep@3.0.3: + /merge-deep@3.0.3: + resolution: {integrity: sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==} + engines: {node: '>=0.10.0'} dependencies: arr-union: 3.1.0 clone-deep: 0.2.4 kind-of: 3.2.2 dev: true - merge-descriptors@1.0.1: {} + /merge-descriptors@1.0.1: + resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} - merge-files@0.1.2: + /merge-files@0.1.2: + resolution: {integrity: sha512-WTvtH6ZwVy1/scvp1M+Re6PVni87QTjpSLAwxh0L+PlYIxc4VGFFpLjvP7jdJ43gaJ5n+RUIriJ6wKqmqvVVmg==} dependencies: multistream: 2.1.1 + dev: true - merge-stream@2.0.0: {} + /merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} - merge2@1.4.1: {} + /merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} - merge@1.2.1: {} + /merge@1.2.1: + resolution: {integrity: sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==} + dev: true - methods@1.1.2: {} + /methods@1.1.2: + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} + engines: {node: '>= 0.6'} /microevent.ts@0.1.1: resolution: {integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==} dev: false - micromark-core-commonmark@2.0.1: - dependencies: - decode-named-character-reference: 1.0.2 - devlop: 1.1.0 - micromark-factory-destination: 2.0.0 - micromark-factory-label: 2.0.0 - micromark-factory-space: 2.0.0 - micromark-factory-title: 2.0.0 - micromark-factory-whitespace: 2.0.0 - micromark-util-character: 2.1.0 - micromark-util-chunked: 2.0.0 - micromark-util-classify-character: 2.0.0 - micromark-util-html-tag-name: 2.0.0 - micromark-util-normalize-identifier: 2.0.0 - micromark-util-resolve-all: 2.0.0 - micromark-util-subtokenize: 2.0.1 - micromark-util-symbol: 2.0.0 - micromark-util-types: 2.0.0 - - micromark-factory-destination@2.0.0: - dependencies: - micromark-util-character: 2.1.0 - micromark-util-symbol: 2.0.0 - micromark-util-types: 2.0.0 - - micromark-factory-label@2.0.0: - dependencies: - devlop: 1.1.0 - micromark-util-character: 2.1.0 - micromark-util-symbol: 2.0.0 - micromark-util-types: 2.0.0 - - micromark-factory-space@2.0.0: - dependencies: - micromark-util-character: 2.1.0 - micromark-util-types: 2.0.0 - - micromark-factory-title@2.0.0: - dependencies: - micromark-factory-space: 2.0.0 - micromark-util-character: 2.1.0 - micromark-util-symbol: 2.0.0 - micromark-util-types: 2.0.0 - - micromark-factory-whitespace@2.0.0: - dependencies: - micromark-factory-space: 2.0.0 - micromark-util-character: 2.1.0 - micromark-util-symbol: 2.0.0 - micromark-util-types: 2.0.0 - - micromark-util-character@2.1.0: - dependencies: - micromark-util-symbol: 2.0.0 - micromark-util-types: 2.0.0 - - micromark-util-chunked@2.0.0: - dependencies: - micromark-util-symbol: 2.0.0 - - micromark-util-classify-character@2.0.0: - dependencies: - micromark-util-character: 2.1.0 - micromark-util-symbol: 2.0.0 - micromark-util-types: 2.0.0 - - micromark-util-combine-extensions@2.0.0: - dependencies: - micromark-util-chunked: 2.0.0 - micromark-util-types: 2.0.0 - - micromark-util-decode-numeric-character-reference@2.0.1: - dependencies: - micromark-util-symbol: 2.0.0 - - micromark-util-decode-string@2.0.0: - dependencies: - decode-named-character-reference: 1.0.2 - micromark-util-character: 2.1.0 - micromark-util-decode-numeric-character-reference: 2.0.1 - micromark-util-symbol: 2.0.0 - - micromark-util-encode@2.0.0: {} - - micromark-util-html-tag-name@2.0.0: {} - - micromark-util-normalize-identifier@2.0.0: - dependencies: - micromark-util-symbol: 2.0.0 - - micromark-util-resolve-all@2.0.0: - dependencies: - micromark-util-types: 2.0.0 - - micromark-util-sanitize-uri@2.0.0: - dependencies: - micromark-util-character: 2.1.0 - micromark-util-encode: 2.0.0 - micromark-util-symbol: 2.0.0 - - micromark-util-subtokenize@2.0.1: - dependencies: - devlop: 1.1.0 - micromark-util-chunked: 2.0.0 - micromark-util-symbol: 2.0.0 - micromark-util-types: 2.0.0 - - micromark-util-symbol@2.0.0: {} - - micromark-util-types@2.0.0: {} - - micromark@4.0.0: - dependencies: - '@types/debug': 4.1.12 - debug: 4.3.5(supports-color@8.1.1) - decode-named-character-reference: 1.0.2 - devlop: 1.1.0 - micromark-core-commonmark: 2.0.1 - micromark-factory-space: 2.0.0 - micromark-util-character: 2.1.0 - micromark-util-chunked: 2.0.0 - micromark-util-combine-extensions: 2.0.0 - micromark-util-decode-numeric-character-reference: 2.0.1 - micromark-util-encode: 2.0.0 - micromark-util-normalize-identifier: 2.0.0 - micromark-util-resolve-all: 2.0.0 - micromark-util-sanitize-uri: 2.0.0 - micromark-util-subtokenize: 2.0.1 - micromark-util-symbol: 2.0.0 - micromark-util-types: 2.0.0 - transitivePeerDependencies: - - supports-color - - micromatch@3.1.10(supports-color@6.1.0): + /micromatch@3.1.10(supports-color@6.1.0): + resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} + engines: {node: '>=0.10.0'} dependencies: arr-diff: 4.0.0 array-unique: 0.3.2 @@ -49953,22 +40538,36 @@ snapshots: transitivePeerDependencies: - supports-color - micromatch@4.0.7: + /micromatch@4.0.7: + resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} + engines: {node: '>=8.6'} dependencies: braces: 3.0.3 picomatch: 2.3.1 - mime-db@1.52.0: {} + /mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} - mime-types@2.1.35: + /mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} dependencies: mime-db: 1.52.0 - mime@1.6.0: {} + /mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true - mime@2.6.0: {} + /mime@2.6.0: + resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} + engines: {node: '>=4.0.0'} + hasBin: true - mimic-fn@2.1.0: {} + /mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} /mimic-fn@3.1.0: resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} @@ -49980,123 +40579,186 @@ snapshots: engines: {node: '>=12'} dev: true - mimic-response@1.0.1: {} + /mimic-response@1.0.1: + resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} + engines: {node: '>=4'} - mimic-response@3.1.0: {} + /mimic-response@3.1.0: + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} + engines: {node: '>=10'} + dev: true - min-document@2.19.0: + /min-document@2.19.0: + resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==} dependencies: dom-walk: 0.1.2 - min-indent@1.0.1: {} + /min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} - mini-css-extract-plugin@0.4.5(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /mini-css-extract-plugin@0.4.5(webpack@5.84.1): + resolution: {integrity: sha512-dqBanNfktnp2hwL2YguV9Jh91PFX7gu7nRLs4TGsbAfAG6WOtlynFRYzwDwmmeSb5uIwHo9nx1ta0f7vAZVp2w==} + engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 dependencies: loader-utils: 1.4.2 schema-utils: 1.0.0 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-sources: 1.4.3 + dev: true - mini-css-extract-plugin@2.4.7(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /mini-css-extract-plugin@2.4.7(webpack@5.84.1): + resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: schema-utils: 4.2.0 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - mini-svg-data-uri@1.4.4: {} + /mini-svg-data-uri@1.4.4: + resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} + hasBin: true + dev: true - minimalistic-assert@1.0.1: {} + /minimalistic-assert@1.0.1: + resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} - minimatch@3.0.5: + /minimatch@3.0.5: + resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} dependencies: brace-expansion: 1.1.11 + dev: true - minimatch@3.0.8: + /minimatch@3.0.8: + resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==} dependencies: brace-expansion: 1.1.11 + dev: false - minimatch@3.1.2: + /minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} dependencies: brace-expansion: 1.1.11 - /minimatch@9.0.5: - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} - engines: {node: '>=16 || 14 >=14.17'} + /minimatch@5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 + dev: true - minimatch@9.0.1: + /minimatch@9.0.1: + resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} + engines: {node: '>=16 || 14 >=14.17'} dependencies: brace-expansion: 2.0.1 + dev: false - minimatch@9.0.4: + /minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} dependencies: brace-expansion: 2.0.1 - minimist-options@4.1.0: + /minimist-options@4.1.0: + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} dependencies: arrify: 1.0.1 is-plain-obj: 1.1.0 kind-of: 6.0.3 + dev: true - minimist@1.2.8: {} + /minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - minipass-collect@1.0.2: + /minipass-collect@1.0.2: + resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} + engines: {node: '>= 8'} dependencies: minipass: 3.3.6 - minipass-fetch@2.1.2: + /minipass-fetch@2.1.2: + resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: minipass: 3.3.6 minipass-sized: 1.0.3 minizlib: 2.1.2 optionalDependencies: encoding: 0.1.13 + dev: true - minipass-flush@1.0.5: + /minipass-flush@1.0.5: + resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} + engines: {node: '>= 8'} dependencies: minipass: 3.3.6 - minipass-json-stream@1.0.1: + /minipass-json-stream@1.0.1: + resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==} dependencies: jsonparse: 1.3.1 minipass: 3.3.6 + dev: true - minipass-pipeline@1.2.4: + /minipass-pipeline@1.2.4: + resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} + engines: {node: '>=8'} dependencies: minipass: 3.3.6 - minipass-sized@1.0.3: + /minipass-sized@1.0.3: + resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} + engines: {node: '>=8'} dependencies: minipass: 3.3.6 + dev: true - minipass@3.3.6: + /minipass@3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} dependencies: yallist: 4.0.0 - minipass@5.0.0: {} + /minipass@5.0.0: + resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} + engines: {node: '>=8'} /minipass@7.1.2: resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} engines: {node: '>=16 || 14 >=14.17'} - minizlib@2.1.2: + /minizlib@2.1.2: + resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} + engines: {node: '>= 8'} dependencies: minipass: 3.3.6 yallist: 4.0.0 - mixin-deep@1.3.2: + /mixin-deep@1.3.2: + resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} + engines: {node: '>=0.10.0'} dependencies: for-in: 1.0.2 is-extendable: 1.0.1 - mixin-object@2.0.1: + /mixin-object@2.0.1: + resolution: {integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==} + engines: {node: '>=0.10.0'} dependencies: for-in: 0.1.8 is-extendable: 0.1.1 dev: true - mixme@0.5.10: {} + /mixme@0.5.10: + resolution: {integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==} + engines: {node: '>= 8.0.0'} + dev: true /mkdirp-classic@0.5.3: resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} @@ -50109,12 +40771,18 @@ snapshots: chownr: 2.0.0 infer-owner: 1.0.4 mkdirp: 1.0.4 + dev: true - mkdirp@0.5.6: + /mkdirp@0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true dependencies: minimist: 1.2.8 - mkdirp@1.0.4: {} + /mkdirp@1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true /mlly@1.7.1: resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==} @@ -50130,9 +40798,12 @@ snapshots: engines: {node: '>=0.10.0'} dev: true - moment@2.30.1: {} + /moment@2.30.1: + resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==} - monaco-editor@0.50.0: {} + /monaco-editor@0.50.0: + resolution: {integrity: sha512-8CclLCmrRRh+sul7C08BmPBP3P8wVWfBHomsTcndxg5NRCEPfu/mc2AGU8k37ajjDVXcXFc12ORAMUkmk+lkFA==} + dev: false /mri@1.2.0: resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} @@ -50143,17 +40814,23 @@ snapshots: resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} engines: {node: '>=10'} - ms@2.0.0: {} + /ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} /ms@2.1.1: resolution: {integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==} dev: false - ms@2.1.2: {} + /ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} - ms@2.1.3: {} + /ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - msw@0.36.8(encoding@0.1.13): + /msw@0.36.8: + resolution: {integrity: sha512-K7lOQoYqhGhTSChsmHMQbf/SDCsxh/m0uhN6Ipt206lGoe81fpTmaGD0KLh4jUxCONMOUnwCSj0jtX2CM4pEdw==} + hasBin: true + requiresBuild: true dependencies: '@mswjs/cookies': 0.1.7 '@mswjs/interceptors': 0.12.7 @@ -50169,7 +40846,7 @@ snapshots: inquirer: 8.2.6 is-node-process: 1.2.0 js-levenshtein: 1.1.6 - node-fetch: 2.7.0(encoding@0.1.13) + node-fetch: 2.7.0 path-to-regexp: 6.2.2 statuses: 2.0.1 strict-event-emitter: 0.2.8 @@ -50178,42 +40855,66 @@ snapshots: transitivePeerDependencies: - encoding - supports-color + dev: true - multicast-dns-service-types@1.1.0: {} + /multicast-dns-service-types@1.1.0: + resolution: {integrity: sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==} - multicast-dns@6.2.3: + /multicast-dns@6.2.3: + resolution: {integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==} + hasBin: true dependencies: dns-packet: 1.3.4 thunky: 1.1.0 - multicast-dns@7.2.5: + /multicast-dns@7.2.5: + resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} + hasBin: true dependencies: dns-packet: 5.6.1 thunky: 1.1.0 + dev: true - multimatch@5.0.0: + /multimatch@5.0.0: + resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} + engines: {node: '>=10'} dependencies: '@types/minimatch': 3.0.5 array-differ: 3.0.0 array-union: 2.1.0 arrify: 2.0.1 minimatch: 3.1.2 + dev: true - multistream@2.1.1: + /multistream@2.1.1: + resolution: {integrity: sha512-xasv76hl6nr1dEy3lPvy7Ej7K/Lx3O/FCvwge8PeVJpciPPoNCbaANcNiBug3IpdvTveZUcAV0DJzdnUDMesNQ==} dependencies: inherits: 2.0.4 readable-stream: 2.3.8 + dev: true - mustache@4.2.0: {} + /mustache@4.2.0: + resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} + hasBin: true + dev: false - mute-stream@0.0.8: {} + /mute-stream@0.0.8: + resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + dev: true - nan@2.20.0: + /nan@2.20.0: + resolution: {integrity: sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==} + requiresBuild: true optional: true - nanoid@3.3.7: {} + /nanoid@3.3.7: + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true - nanomatch@1.2.13(supports-color@6.1.0): + /nanomatch@1.2.13(supports-color@6.1.0): + resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} + engines: {node: '>=0.10.0'} dependencies: arr-diff: 4.0.0 array-unique: 0.3.2 @@ -50229,12 +40930,17 @@ snapshots: transitivePeerDependencies: - supports-color - native-request@1.1.0: + /native-request@1.1.0: + resolution: {integrity: sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==} + requiresBuild: true + dev: true optional: true - native-url@0.2.6: + /native-url@0.2.6: + resolution: {integrity: sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==} dependencies: querystring: 0.2.1 + dev: true /natural-compare-lite@1.4.0: resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} @@ -50258,26 +40964,37 @@ snapshots: resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} engines: {node: '>= 0.6'} - neo-async@2.6.2: {} + /neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} /nested-error-stacks@2.1.1: resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==} dev: false - next-tick@1.1.0: {} + /next-tick@1.1.0: + resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} + dev: true - nice-try@1.0.5: {} + /nice-try@1.0.5: + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} - no-case@3.0.4: + /no-case@3.0.4: + resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} dependencies: lower-case: 2.0.2 tslib: 2.6.3 - node-abort-controller@3.1.1: {} + /node-abort-controller@3.1.1: + resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} + dev: true - node-addon-api@3.2.1: {} + /node-addon-api@3.2.1: + resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} + dev: true - node-dir@0.1.17: + /node-dir@0.1.17: + resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} + engines: {node: '>= 0.10.5'} dependencies: minimatch: 3.1.2 @@ -50295,16 +41012,25 @@ snapshots: optional: true dependencies: whatwg-url: 5.0.0 - optionalDependencies: - encoding: 0.1.13 - node-forge@0.10.0: {} + /node-forge@0.10.0: + resolution: {integrity: sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==} + engines: {node: '>= 6.0.0'} - node-forge@1.3.1: {} + /node-forge@1.3.1: + resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} + engines: {node: '>= 6.13.0'} + dev: true - node-gyp-build@4.8.1: {} + /node-gyp-build@4.8.1: + resolution: {integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==} + hasBin: true + dev: true - node-gyp@9.4.1: + /node-gyp@9.4.1: + resolution: {integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==} + engines: {node: ^12.13 || ^14.13 || >=16} + hasBin: true dependencies: env-paths: 2.2.1 exponential-backoff: 3.1.1 @@ -50320,8 +41046,10 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - node-int64@0.4.0: {} + /node-int64@0.4.0: + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} /node-machine-id@1.1.12: resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} @@ -50337,74 +41065,123 @@ snapshots: shellwords: 0.1.1 uuid: 8.3.2 which: 2.0.2 + dev: true optional: true - node-preload@0.2.1: + /node-preload@0.2.1: + resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} + engines: {node: '>=8'} dependencies: process-on-spawn: 1.0.0 + dev: true - node-releases@2.0.14: {} + /node-releases@2.0.14: + resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} - nopt@5.0.0: + /nopt@5.0.0: + resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} + engines: {node: '>=6'} + hasBin: true dependencies: abbrev: 1.1.1 + dev: true - nopt@6.0.0: + /nopt@6.0.0: + resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true dependencies: abbrev: 1.1.1 + dev: true - nopt@7.2.1: + /nopt@7.2.1: + resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true dependencies: abbrev: 2.0.0 + dev: false - normalize-package-data@2.5.0: + /normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: hosted-git-info: 2.8.9 resolve: 1.22.8 semver: 5.7.2 validate-npm-package-license: 3.0.4 - normalize-package-data@3.0.3: + /normalize-package-data@3.0.3: + resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} + engines: {node: '>=10'} dependencies: hosted-git-info: 4.1.0 is-core-module: 2.14.0 semver: 7.6.2 validate-npm-package-license: 3.0.4 + dev: true - normalize-package-data@4.0.1: + /normalize-package-data@4.0.1: + resolution: {integrity: sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: hosted-git-info: 5.2.1 is-core-module: 2.14.0 semver: 7.6.2 validate-npm-package-license: 3.0.4 + dev: true - normalize-path@2.1.1: + /normalize-path@2.1.1: + resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} + engines: {node: '>=0.10.0'} dependencies: remove-trailing-separator: 1.1.0 - normalize-path@3.0.0: {} + /normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} - normalize-range@0.1.2: {} + /normalize-range@0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} - normalize-url@4.5.1: {} + /normalize-url@4.5.1: + resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} + engines: {node: '>=8'} + dev: false - normalize-url@6.1.0: {} + /normalize-url@6.1.0: + resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} + engines: {node: '>=10'} + dev: true - npm-bundled@1.1.2: + /npm-bundled@1.1.2: + resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==} dependencies: npm-normalize-package-bin: 1.0.1 + dev: true - npm-bundled@2.0.1: + /npm-bundled@2.0.1: + resolution: {integrity: sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: npm-normalize-package-bin: 2.0.0 + dev: true - npm-install-checks@5.0.0: + /npm-install-checks@5.0.0: + resolution: {integrity: sha512-65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: semver: 7.6.2 + dev: true - npm-normalize-package-bin@1.0.1: {} + /npm-normalize-package-bin@1.0.1: + resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} + dev: true - npm-normalize-package-bin@2.0.0: {} + /npm-normalize-package-bin@2.0.0: + resolution: {integrity: sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dev: true /npm-package-arg@11.0.1: resolution: {integrity: sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==} @@ -50423,29 +41200,42 @@ snapshots: hosted-git-info: 3.0.8 semver: 7.6.2 validate-npm-package-name: 3.0.0 + dev: true - npm-package-arg@9.1.2: + /npm-package-arg@9.1.2: + resolution: {integrity: sha512-pzd9rLEx4TfNJkovvlBSLGhq31gGu2QDexFPWT19yCDh0JgnRhlBLNo5759N0AJmBk+kQ9Y/hXoLnlgFD+ukmg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: hosted-git-info: 5.2.1 proc-log: 2.0.1 semver: 7.6.2 validate-npm-package-name: 4.0.0 + dev: true - npm-packlist@5.1.3: + /npm-packlist@5.1.3: + resolution: {integrity: sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true dependencies: glob: 8.1.0 ignore-walk: 5.0.1 npm-bundled: 2.0.1 npm-normalize-package-bin: 2.0.0 + dev: true - npm-pick-manifest@7.0.2: + /npm-pick-manifest@7.0.2: + resolution: {integrity: sha512-gk37SyRmlIjvTfcYl6RzDbSmS9Y4TOBXfsPnoYqTHARNgWbyDiCSMLUpmALDj4jjcTZpURiEfsSHJj9k7EV4Rw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: npm-install-checks: 5.0.0 npm-normalize-package-bin: 2.0.0 npm-package-arg: 9.1.2 semver: 7.6.2 + dev: true - npm-registry-fetch@13.3.1: + /npm-registry-fetch@13.3.1: + resolution: {integrity: sha512-eukJPi++DKRTjSBRcDZSDDsGqRK3ehbxfFUcgaRd0Yp6kRwOwh2WVn0r+8rMB4nnuzvAk6rQVzl6K5CkYOmnvw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: make-fetch-happen: 10.2.1 minipass: 3.3.6 @@ -50457,12 +41247,17 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - npm-run-path@2.0.2: + /npm-run-path@2.0.2: + resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} + engines: {node: '>=4'} dependencies: path-key: 2.0.1 - npm-run-path@4.0.1: + /npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} dependencies: path-key: 3.1.1 @@ -50482,19 +41277,25 @@ snapshots: gauge: 3.0.2 set-blocking: 2.0.0 - npmlog@6.0.2: + /npmlog@6.0.2: + resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. dependencies: are-we-there-yet: 3.0.1 console-control-strings: 1.1.0 gauge: 4.0.4 set-blocking: 2.0.0 + dev: true - nth-check@1.0.2: + /nth-check@1.0.2: + resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} dependencies: boolbase: 1.0.0 dev: true - nth-check@2.1.1: + /nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} dependencies: boolbase: 1.0.0 @@ -50634,8 +41435,12 @@ snapshots: '@nx/nx-win32-x64-msvc': 17.0.0 transitivePeerDependencies: - debug + dev: true - nyc@15.1.0: + /nyc@15.1.0: + resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} + engines: {node: '>=8.9'} + hasBin: true dependencies: '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.3 @@ -50666,6 +41471,7 @@ snapshots: yargs: 15.4.1 transitivePeerDependencies: - supports-color + dev: true /nypm@0.3.9: resolution: {integrity: sha512-BI2SdqqTHg2d4wJh8P9A1W+bslg33vOE9IZDY6eR2QC+Pu1iNBVZUqczrd43rJb+fMzHU7ltAYKsEFY/kHMFcw==} @@ -50684,46 +41490,64 @@ snapshots: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} - object-copy@0.1.0: + /object-copy@0.1.0: + resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} + engines: {node: '>=0.10.0'} dependencies: copy-descriptor: 0.1.1 define-property: 0.2.5 kind-of: 3.2.2 - object-inspect@1.13.2: {} + /object-inspect@1.13.2: + resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} + engines: {node: '>= 0.4'} - object-is@1.1.6: + /object-is@1.1.6: + resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - object-keys@1.1.1: {} + /object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} - object-visit@1.0.1: + /object-visit@1.0.1: + resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} + engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 - object.assign@4.1.5: + /object.assign@4.1.5: + resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 - object.entries@1.1.8: + /object.entries@1.1.8: + resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - object.fromentries@2.0.8: + /object.fromentries@2.0.8: + resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 - object.getownpropertydescriptors@2.1.8: + /object.getownpropertydescriptors@2.1.8: + resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==} + engines: {node: '>= 0.8'} dependencies: array.prototype.reduce: 1.0.7 call-bind: 1.0.7 @@ -50733,31 +41557,43 @@ snapshots: gopd: 1.0.1 safe-array-concat: 1.1.2 - object.groupby@1.0.3: + /object.groupby@1.0.3: + resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 + dev: true - object.hasown@1.1.4: + /object.hasown@1.1.4: + resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} + engines: {node: '>= 0.4'} dependencies: define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 + dev: true - object.pick@1.3.0: + /object.pick@1.3.0: + resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} + engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 - object.values@1.2.0: + /object.values@1.2.0: + resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - objectorarray@1.0.5: {} + /objectorarray@1.0.5: + resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==} - obuf@1.1.2: {} + /obuf@1.1.2: + resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} /ohash@1.1.3: resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} @@ -50769,13 +41605,18 @@ snapshots: dependencies: ee-first: 1.1.1 - on-headers@1.0.2: {} + /on-headers@1.0.2: + resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} + engines: {node: '>= 0.8'} - once@1.4.0: + /once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: wrappy: 1.0.2 - onetime@5.1.2: + /onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} dependencies: mimic-fn: 2.1.0 @@ -50794,19 +41635,27 @@ snapshots: is-wsl: 2.2.0 dev: false - open@8.4.2: + /open@8.4.2: + resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} + engines: {node: '>=12'} dependencies: define-lazy-prop: 2.0.0 is-docker: 2.2.1 is-wsl: 2.2.0 - opener@1.5.2: {} + /opener@1.5.2: + resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} + hasBin: true - opn@5.5.0: + /opn@5.5.0: + resolution: {integrity: sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==} + engines: {node: '>=4'} dependencies: is-wsl: 1.1.0 - optionator@0.9.4: + /optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} dependencies: deep-is: 0.1.4 fast-levenshtein: 2.0.6 @@ -50834,7 +41683,7 @@ snapshots: engines: {node: '>=10'} dependencies: bl: 4.1.0 - chalk: 4.1.2 + chalk: 4.1.1 cli-cursor: 3.1.0 cli-spinners: 2.9.2 is-interactive: 1.0.0 @@ -50842,21 +41691,35 @@ snapshots: log-symbols: 4.1.0 strip-ansi: 6.0.1 wcwidth: 1.0.1 + dev: true - os-filter-obj@2.0.0: + /os-filter-obj@2.0.0: + resolution: {integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==} + engines: {node: '>=4'} dependencies: arch: 2.2.0 + dev: true - os-homedir@1.0.2: - optional: true + /os-homedir@1.0.2: + resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} + engines: {node: '>=0.10.0'} - os-tmpdir@1.0.2: {} + /os-tmpdir@1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} + dev: true - ospath@1.2.2: {} + /ospath@1.2.2: + resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==} + dev: true - outdent@0.5.0: {} + /outdent@0.5.0: + resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} + dev: true - outvariant@1.4.2: {} + /outvariant@1.4.2: + resolution: {integrity: sha512-Ou3dJ6bA/UJ5GVHxah4LnqDwZRwAmWxrG3wtrHrbGnP4RnLCtA64A4F+ae7Y8ww660JaddSoArUR5HjipWSHAQ==} + dev: true /p-all@2.1.0: resolution: {integrity: sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==} @@ -50865,37 +41728,59 @@ snapshots: p-map: 2.1.0 dev: false - p-cancelable@1.1.0: {} + /p-cancelable@1.1.0: + resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} + engines: {node: '>=6'} + dev: false - p-cancelable@2.1.1: {} + /p-cancelable@2.1.1: + resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} + engines: {node: '>=8'} + dev: true /p-defer@1.0.0: resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} engines: {node: '>=4'} dev: false - p-each-series@2.2.0: {} + /p-each-series@2.2.0: + resolution: {integrity: sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==} + engines: {node: '>=8'} + dev: true - p-event@4.2.0: + /p-event@4.2.0: + resolution: {integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==} + engines: {node: '>=8'} dependencies: p-timeout: 3.2.0 dev: false - p-filter@2.1.0: + /p-filter@2.1.0: + resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} + engines: {node: '>=8'} dependencies: p-map: 2.1.0 - p-finally@1.0.0: {} + /p-finally@1.0.0: + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} - p-limit@1.3.0: + /p-limit@1.3.0: + resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} + engines: {node: '>=4'} dependencies: p-try: 1.0.0 + dev: true - p-limit@2.3.0: + /p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} dependencies: p-try: 2.2.0 - p-limit@3.1.0: + /p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} dependencies: yocto-queue: 0.1.0 @@ -50911,16 +41796,23 @@ snapshots: engines: {node: '>=4'} dependencies: p-limit: 1.3.0 + dev: true - p-locate@3.0.0: + /p-locate@3.0.0: + resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} + engines: {node: '>=6'} dependencies: p-limit: 2.3.0 - p-locate@4.1.0: + /p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} dependencies: p-limit: 2.3.0 - p-locate@5.0.0: + /p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} dependencies: p-limit: 3.1.0 @@ -50936,64 +41828,103 @@ snapshots: engines: {node: '>=8'} dev: true - p-map@2.1.0: {} + /p-map@2.1.0: + resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} + engines: {node: '>=6'} - p-map@3.0.0: + /p-map@3.0.0: + resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} + engines: {node: '>=8'} dependencies: aggregate-error: 3.1.0 - p-map@4.0.0: + /p-map@4.0.0: + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} + engines: {node: '>=10'} dependencies: aggregate-error: 3.1.0 - p-pipe@3.1.0: {} + /p-pipe@3.1.0: + resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==} + engines: {node: '>=8'} + dev: true - p-queue@6.6.2: + /p-queue@6.6.2: + resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} + engines: {node: '>=8'} dependencies: eventemitter3: 4.0.7 p-timeout: 3.2.0 + dev: true - p-reduce@2.1.0: {} + /p-reduce@2.1.0: + resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} + engines: {node: '>=8'} + dev: true - p-retry@3.0.1: + /p-retry@3.0.1: + resolution: {integrity: sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==} + engines: {node: '>=6'} dependencies: retry: 0.12.0 - p-retry@4.6.2: + /p-retry@4.6.2: + resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} + engines: {node: '>=8'} dependencies: '@types/retry': 0.12.0 retry: 0.13.1 + dev: true - p-timeout@3.2.0: + /p-timeout@3.2.0: + resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} + engines: {node: '>=8'} dependencies: p-finally: 1.0.0 - p-try@1.0.0: {} + /p-try@1.0.0: + resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} + engines: {node: '>=4'} + dev: true - p-try@2.2.0: {} + /p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} - p-waterfall@2.1.1: + /p-waterfall@2.1.1: + resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==} + engines: {node: '>=8'} dependencies: p-reduce: 2.1.0 + dev: true - package-hash@4.0.0: + /package-hash@4.0.0: + resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} + engines: {node: '>=8'} dependencies: graceful-fs: 4.2.11 hasha: 5.2.2 lodash.flattendeep: 4.4.0 release-zalgo: 1.0.0 + dev: true /package-json-from-dist@1.0.0: resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} - package-json@6.5.0: + /package-json@6.5.0: + resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} + engines: {node: '>=8'} dependencies: got: 9.6.0 registry-auth-token: 4.2.2 registry-url: 5.1.0 semver: 6.3.1 + dev: false - pacote@13.6.2: + /pacote@13.6.2: + resolution: {integrity: sha512-Gu8fU3GsvOPkak2CkbojR7vjs3k3P9cA6uazKTHdsdV0gpCEQq2opelnEv30KRQWgVzP5Vd/5umjcedma3MKtg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true dependencies: '@npmcli/git': 3.0.2 '@npmcli/installed-package-contents': 1.0.7 @@ -51019,6 +41950,7 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true /pako@0.2.9: resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} @@ -51030,17 +41962,23 @@ snapshots: dot-case: 3.0.4 tslib: 2.6.3 - parent-module@1.0.1: + /parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} dependencies: callsites: 3.1.0 - parse-conflict-json@2.0.2: + /parse-conflict-json@2.0.2: + resolution: {integrity: sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: json-parse-even-better-errors: 2.3.1 just-diff: 5.2.0 just-diff-apply: 5.5.0 + dev: true - parse-entities@2.0.0: + /parse-entities@1.2.2: + resolution: {integrity: sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==} dependencies: character-entities: 1.2.4 character-entities-legacy: 1.1.4 @@ -51048,29 +41986,37 @@ snapshots: is-alphanumerical: 1.0.4 is-decimal: 1.0.4 is-hexadecimal: 1.0.4 + dev: false - parse-entities@4.0.1: + /parse-entities@2.0.0: + resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} dependencies: - '@types/unist': 2.0.10 - character-entities: 2.0.2 - character-entities-legacy: 3.0.0 - character-reference-invalid: 2.0.1 - decode-named-character-reference: 1.0.2 - is-alphanumerical: 2.0.1 - is-decimal: 2.0.1 - is-hexadecimal: 2.0.1 + character-entities: 1.2.4 + character-entities-legacy: 1.1.4 + character-reference-invalid: 1.1.4 + is-alphanumerical: 1.0.4 + is-decimal: 1.0.4 + is-hexadecimal: 1.0.4 - parse-json@2.2.0: + /parse-json@2.2.0: + resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: error-ex: 1.3.2 + dev: false optional: true - parse-json@4.0.0: + /parse-json@4.0.0: + resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} + engines: {node: '>=4'} dependencies: error-ex: 1.3.2 json-parse-better-errors: 1.0.2 - parse-json@5.2.0: + /parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} dependencies: '@babel/code-frame': 7.24.7 error-ex: 1.3.2 @@ -51086,42 +42032,63 @@ snapshots: resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} dependencies: protocols: 2.0.1 + dev: true - parse-url@8.1.0: + /parse-url@8.1.0: + resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} dependencies: parse-path: 7.0.0 + dev: true /parse5@4.0.0: resolution: {integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==} dev: true - parse5@6.0.1: {} + /parse5@6.0.1: + resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} - parse5@7.1.2: + /parse5@7.1.2: + resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} dependencies: entities: 4.5.0 + dev: true - parseurl@1.3.3: {} + /parseurl@1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} - pascal-case@3.1.2: + /pascal-case@3.1.2: + resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} dependencies: no-case: 3.0.4 tslib: 2.6.3 - pascalcase@0.1.1: {} + /pascalcase@0.1.1: + resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} + engines: {node: '>=0.10.0'} - path-browserify@1.0.1: {} + /path-browserify@1.0.1: + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} - path-dirname@1.0.2: {} + /path-dirname@1.0.2: + resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==} - path-exists@2.1.0: + /path-exists@2.1.0: + resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: pinkie-promise: 2.0.1 + dev: false optional: true - path-exists@3.0.0: {} + /path-exists@3.0.0: + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} - path-exists@4.0.0: {} + /path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} /path-exists@5.0.0: resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} @@ -51132,13 +42099,16 @@ snapshots: resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} engines: {node: '>=0.10.0'} - path-is-inside@1.0.2: {} + /path-is-inside@1.0.2: + resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==} /path-key@2.0.1: resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} engines: {node: '>=4'} - path-key@3.1.1: {} + /path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} /path-key@4.0.0: resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} @@ -51148,38 +42118,58 @@ snapshots: /path-parse@1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - path-scurry@1.11.1: + /path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} dependencies: lru-cache: 10.4.3 minipass: 7.1.2 - path-to-regexp@0.1.7: {} + /path-to-regexp@0.1.7: + resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} - path-to-regexp@1.8.0: + /path-to-regexp@1.8.0: + resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==} dependencies: isarray: 0.0.1 + dev: false - path-to-regexp@6.2.2: {} + /path-to-regexp@6.2.2: + resolution: {integrity: sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==} + dev: true - path-type@1.1.0: + /path-type@1.1.0: + resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: graceful-fs: 4.2.11 pify: 2.3.0 pinkie-promise: 2.0.1 + dev: false optional: true - path-type@3.0.0: + /path-type@3.0.0: + resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} + engines: {node: '>=4'} dependencies: pify: 3.0.0 - path-type@4.0.0: {} + /path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} - path-type@5.0.0: {} + /path-type@5.0.0: + resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} + engines: {node: '>=12'} + dev: true - path@0.12.7: + /path@0.12.7: + resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} dependencies: process: 0.11.10 util: 0.10.4 + dev: true /pathe@1.1.2: resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} @@ -51201,39 +42191,65 @@ snapshots: /pend@1.2.0: resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} - performance-now@2.1.0: {} + /performance-now@2.1.0: + resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} - picocolors@0.2.1: {} + /picocolors@0.2.1: + resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==} - picocolors@1.0.1: {} + /picocolors@1.0.1: + resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} - picomatch@2.3.1: {} + /picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} - pify@2.3.0: {} + /pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} - pify@3.0.0: {} + /pify@3.0.0: + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} - pify@4.0.1: {} + /pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} - pify@5.0.0: {} + /pify@5.0.0: + resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} + engines: {node: '>=10'} + dev: true - pinkie-promise@2.0.1: + /pinkie-promise@2.0.1: + resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==} + engines: {node: '>=0.10.0'} dependencies: pinkie: 2.0.4 - pinkie@2.0.4: {} + /pinkie@2.0.4: + resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==} + engines: {node: '>=0.10.0'} - pirates@4.0.6: {} + /pirates@4.0.6: + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + engines: {node: '>= 6'} - pkg-dir@3.0.0: + /pkg-dir@3.0.0: + resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} + engines: {node: '>=6'} dependencies: find-up: 3.0.0 - pkg-dir@4.2.0: + /pkg-dir@4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} dependencies: find-up: 4.1.0 - pkg-dir@5.0.0: + /pkg-dir@5.0.0: + resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} + engines: {node: '>=10'} dependencies: find-up: 5.0.0 @@ -51261,21 +42277,21 @@ snapshots: - typescript dev: false - polished@4.3.1: + /polished@4.3.1: + resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==} + engines: {node: '>=10'} dependencies: '@babel/runtime': 7.24.7 + dev: true - popper.js@1.16.1: {} - - portfinder@1.0.32: - dependencies: - async: 2.6.4 - debug: 3.2.7(supports-color@8.1.1) - mkdirp: 0.5.6 - transitivePeerDependencies: - - supports-color + /popper.js@1.16.1: + resolution: {integrity: sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==} + deprecated: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1 + dev: false - portfinder@1.0.32(supports-color@6.1.0): + /portfinder@1.0.32(supports-color@6.1.0): + resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} + engines: {node: '>= 0.12.0'} dependencies: async: 2.6.4 debug: 3.2.7(supports-color@6.1.0) @@ -51283,9 +42299,13 @@ snapshots: transitivePeerDependencies: - supports-color - posix-character-classes@0.1.1: {} + /posix-character-classes@0.1.1: + resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} + engines: {node: '>=0.10.0'} - possible-typed-array-names@1.0.0: {} + /possible-typed-array-names@1.0.0: + resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} + engines: {node: '>= 0.4'} /postcss-calc@8.2.4(postcss@8.4.39): resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} @@ -51295,6 +42315,7 @@ snapshots: postcss: 8.4.39 postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 + dev: true /postcss-calc@9.0.1(postcss@8.4.39): resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==} @@ -51318,6 +42339,7 @@ snapshots: colord: 2.9.3 postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true /postcss-colormin@6.1.0(postcss@8.4.39): resolution: {integrity: sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==} @@ -51341,6 +42363,7 @@ snapshots: browserslist: 4.23.1 postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true /postcss-convert-values@6.1.0(postcss@8.4.39): resolution: {integrity: sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==} @@ -51425,7 +42448,8 @@ snapshots: postcss: 8.4.39 dev: true - postcss-flexbugs-fixes@4.2.1: + /postcss-flexbugs-fixes@4.2.1: + resolution: {integrity: sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==} dependencies: postcss: 7.0.39 dev: false @@ -51439,6 +42463,7 @@ snapshots: fast-sort: 3.4.0 postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true /postcss-import@14.1.0(postcss@8.4.39): resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} @@ -51450,8 +42475,11 @@ snapshots: postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 + dev: true - postcss-load-config@2.1.2: + /postcss-load-config@2.1.2: + resolution: {integrity: sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==} + engines: {node: '>= 4'} dependencies: cosmiconfig: 5.2.1 import-cwd: 2.1.0 @@ -51471,18 +42499,23 @@ snapshots: lilconfig: 2.1.0 postcss: 8.4.39 yaml: 1.10.2 - optionalDependencies: - postcss: 8.4.38 - ts-node: 8.10.2(typescript@4.9.5) + dev: true - postcss-loader@3.0.0: + /postcss-loader@3.0.0: + resolution: {integrity: sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==} + engines: {node: '>= 6'} dependencies: loader-utils: 1.4.2 postcss: 7.0.39 postcss-load-config: 2.1.2 schema-utils: 1.0.0 - postcss-loader@4.3.0(postcss@7.0.39)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /postcss-loader@4.3.0(postcss@7.0.39)(webpack@5.84.1): + resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} + engines: {node: '>= 10.13.0'} + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: 5.84.1 dependencies: cosmiconfig: 7.1.0 klona: 2.0.6 @@ -51540,6 +42573,7 @@ snapshots: cssnano-utils: 3.1.0(postcss@8.4.39) postcss: 8.4.39 postcss-selector-parser: 6.1.0 + dev: true /postcss-merge-rules@6.1.1(postcss@8.4.39): resolution: {integrity: sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==} @@ -51562,6 +42596,7 @@ snapshots: dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true /postcss-minify-font-values@6.1.0(postcss@8.4.39): resolution: {integrity: sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==} @@ -51583,6 +42618,7 @@ snapshots: cssnano-utils: 3.1.0(postcss@8.4.39) postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true /postcss-minify-gradients@6.0.3(postcss@8.4.39): resolution: {integrity: sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==} @@ -51606,6 +42642,7 @@ snapshots: cssnano-utils: 3.1.0(postcss@8.4.39) postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true /postcss-minify-params@6.1.0(postcss@8.4.39): resolution: {integrity: sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==} @@ -51637,12 +42674,17 @@ snapshots: dependencies: postcss: 8.4.39 postcss-selector-parser: 6.1.0 + dev: true - postcss-modules-extract-imports@1.2.1: + /postcss-modules-extract-imports@1.2.1: + resolution: {integrity: sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==} dependencies: postcss: 6.0.23 + dev: true - postcss-modules-extract-imports@2.0.0: + /postcss-modules-extract-imports@2.0.0: + resolution: {integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==} + engines: {node: '>= 6'} dependencies: postcss: 7.0.39 dev: false @@ -51655,12 +42697,16 @@ snapshots: dependencies: postcss: 8.4.39 - postcss-modules-local-by-default@1.2.0: + /postcss-modules-local-by-default@1.2.0: + resolution: {integrity: sha512-X4cquUPIaAd86raVrBwO8fwRfkIdbwFu7CTfEOjiZQHVQwlHRSkTgH5NLDmMm5+1hQO8u6dZ+TOOJDbay1hYpA==} dependencies: css-selector-tokenizer: 0.7.3 postcss: 6.0.23 + dev: true - postcss-modules-local-by-default@3.0.3: + /postcss-modules-local-by-default@3.0.3: + resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==} + engines: {node: '>= 6'} dependencies: icss-utils: 4.1.1 postcss: 7.0.39 @@ -51679,12 +42725,16 @@ snapshots: postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 - postcss-modules-scope@1.1.0: + /postcss-modules-scope@1.1.0: + resolution: {integrity: sha512-LTYwnA4C1He1BKZXIx1CYiHixdSe9LWYVKadq9lK5aCCMkoOkFyZ7aigt+srfjlRplJY3gIol6KUNefdMQJdlw==} dependencies: css-selector-tokenizer: 0.7.3 postcss: 6.0.23 + dev: true - postcss-modules-scope@2.2.0: + /postcss-modules-scope@2.2.0: + resolution: {integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==} + engines: {node: '>= 6'} dependencies: postcss: 7.0.39 postcss-selector-parser: 6.1.0 @@ -51699,12 +42749,15 @@ snapshots: postcss: 8.4.39 postcss-selector-parser: 6.1.0 - postcss-modules-values@1.3.0: + /postcss-modules-values@1.3.0: + resolution: {integrity: sha512-i7IFaR9hlQ6/0UgFuqM6YWaCfA1Ej8WMg8A5DggnH1UGKJvTV/ugqq/KaULixzzOi3T/tF6ClBXcHGCzdd5unA==} dependencies: icss-replace-symbols: 1.1.0 postcss: 6.0.23 + dev: true - postcss-modules-values@3.0.0: + /postcss-modules-values@3.0.0: + resolution: {integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==} dependencies: icss-utils: 4.1.1 postcss: 7.0.39 @@ -51733,6 +42786,7 @@ snapshots: postcss-modules-scope: 3.2.0(postcss@8.4.39) postcss-modules-values: 4.0.0(postcss@8.4.39) string-hash: 1.1.3 + dev: true /postcss-normalize-charset@5.1.0(postcss@8.4.39): resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} @@ -51760,6 +42814,7 @@ snapshots: dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true /postcss-normalize-display-values@6.0.2(postcss@8.4.39): resolution: {integrity: sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==} @@ -51779,6 +42834,7 @@ snapshots: dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true /postcss-normalize-positions@6.0.2(postcss@8.4.39): resolution: {integrity: sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==} @@ -51798,6 +42854,7 @@ snapshots: dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true /postcss-normalize-repeat-style@6.0.2(postcss@8.4.39): resolution: {integrity: sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==} @@ -51817,6 +42874,7 @@ snapshots: dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true /postcss-normalize-string@6.0.2(postcss@8.4.39): resolution: {integrity: sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==} @@ -51836,6 +42894,7 @@ snapshots: dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true /postcss-normalize-timing-functions@6.0.2(postcss@8.4.39): resolution: {integrity: sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==} @@ -51856,6 +42915,7 @@ snapshots: browserslist: 4.23.1 postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true /postcss-normalize-unicode@6.1.0(postcss@8.4.39): resolution: {integrity: sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==} @@ -51877,6 +42937,7 @@ snapshots: normalize-url: 6.1.0 postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true /postcss-normalize-url@6.0.2(postcss@8.4.39): resolution: {integrity: sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==} @@ -51896,6 +42957,7 @@ snapshots: dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true /postcss-normalize-whitespace@6.0.2(postcss@8.4.39): resolution: {integrity: sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==} @@ -51916,6 +42978,7 @@ snapshots: cssnano-utils: 3.1.0(postcss@8.4.39) postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true /postcss-ordered-values@6.0.2(postcss@8.4.39): resolution: {integrity: sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==} @@ -51968,8 +43031,11 @@ snapshots: dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-selector-parser@6.1.0: + /postcss-selector-parser@6.1.0: + resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==} + engines: {node: '>=4'} dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 @@ -51983,6 +43049,7 @@ snapshots: postcss: 8.4.39 postcss-value-parser: 4.2.0 svgo: 2.8.0 + dev: true /postcss-svgo@6.0.3(postcss@8.4.39): resolution: {integrity: sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==} @@ -52013,18 +43080,26 @@ snapshots: dependencies: postcss: 8.4.39 postcss-selector-parser: 6.1.0 + dev: true - postcss-value-parser@3.3.1: {} + /postcss-value-parser@3.3.1: + resolution: {integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==} - postcss-value-parser@4.2.0: {} + /postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - postcss@6.0.23: + /postcss@6.0.23: + resolution: {integrity: sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==} + engines: {node: '>=4.0.0'} dependencies: chalk: 2.4.2 source-map: 0.6.1 supports-color: 5.5.0 + dev: true - postcss@7.0.39: + /postcss@7.0.39: + resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==} + engines: {node: '>=6.0.0'} dependencies: picocolors: 0.2.1 source-map: 0.6.1 @@ -52047,41 +43122,68 @@ snapshots: which-pm: 2.2.0 dev: true - prelude-ls@1.2.1: {} + /prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} - prepend-http@2.0.0: {} + /prepend-http@2.0.0: + resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} + engines: {node: '>=4'} + dev: false - prettier@1.19.1: {} + /prettier@1.19.1: + resolution: {integrity: sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==} + engines: {node: '>=4'} + hasBin: true + dev: true - prettier@2.3.0: {} + /prettier@2.3.0: + resolution: {integrity: sha512-kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w==} + engines: {node: '>=10.13.0'} + hasBin: true - prettier@2.8.8: {} + /prettier@2.8.8: + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} + engines: {node: '>=10.13.0'} + hasBin: true + dev: true - pretty-bytes@5.6.0: {} + /pretty-bytes@5.6.0: + resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} + engines: {node: '>=6'} + dev: true - pretty-error@2.1.2: + /pretty-error@2.1.2: + resolution: {integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==} dependencies: lodash: 4.17.21 renderkid: 2.0.7 dev: false - pretty-error@4.0.0: + /pretty-error@4.0.0: + resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} dependencies: lodash: 4.17.21 renderkid: 3.0.0 - pretty-format@26.6.2: + /pretty-format@26.6.2: + resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} + engines: {node: '>= 10'} dependencies: '@jest/types': 26.6.2 ansi-regex: 5.0.1 ansi-styles: 4.3.0 react-is: 17.0.2 + dev: true - pretty-format@27.5.1: + /pretty-format@27.5.1: + resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: ansi-regex: 5.0.1 ansi-styles: 5.2.0 react-is: 17.0.2 + dev: true /pretty-format@29.7.0: resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} @@ -52091,13 +43193,18 @@ snapshots: ansi-styles: 5.2.0 react-is: 18.3.1 - pretty-hrtime@1.0.3: {} + /pretty-hrtime@1.0.3: + resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} + engines: {node: '>= 0.8'} /private@0.1.8: resolution: {integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==} engines: {node: '>= 0.6'} - proc-log@2.0.1: {} + /proc-log@2.0.1: + resolution: {integrity: sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dev: true /proc-log@3.0.0: resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} @@ -52107,26 +43214,48 @@ snapshots: /process-nextick-args@2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - process-on-spawn@1.0.0: + /process-on-spawn@1.0.0: + resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==} + engines: {node: '>=8'} dependencies: fromentries: 1.3.2 + dev: true - process@0.11.10: {} + /process@0.11.10: + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} + engines: {node: '>= 0.6.0'} - progress@2.0.3: {} + /progress@2.0.3: + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + engines: {node: '>=0.4.0'} - promise-all-reject-late@1.0.1: {} + /promise-all-reject-late@1.0.1: + resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==} + dev: true - promise-call-limit@1.0.2: {} + /promise-call-limit@1.0.2: + resolution: {integrity: sha512-1vTUnfI2hzui8AEIixbdAJlFY4LFDXqQswy/2eOlThAscXCY4It8FdVuI0fMJGAB2aWGbdQf/gv0skKYXmdrHA==} + dev: true - promise-inflight@1.0.1: {} + /promise-inflight@1.0.1: + resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} + peerDependencies: + bluebird: '*' + peerDependenciesMeta: + bluebird: + optional: true - promise-retry@2.0.1: + /promise-retry@2.0.1: + resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} + engines: {node: '>=10'} dependencies: err-code: 2.0.3 retry: 0.12.0 + dev: true - promise.allsettled@1.0.7: + /promise.allsettled@1.0.7: + resolution: {integrity: sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==} + engines: {node: '>= 0.4'} dependencies: array.prototype.map: 1.0.7 call-bind: 1.0.7 @@ -52136,7 +43265,9 @@ snapshots: iterate-value: 1.0.2 dev: false - promise.prototype.finally@3.1.8: + /promise.prototype.finally@3.1.8: + resolution: {integrity: sha512-aVDtsXOml9iuMJzUco9J1je/UrIT3oMYfWkCTiUhkt+AvZw72q4dUZnR/R/eB3h5GeAagQVXvM1ApoYniJiwoA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -52145,55 +43276,80 @@ snapshots: set-function-name: 2.0.2 dev: false - promise.series@0.2.0: {} + /promise.series@0.2.0: + resolution: {integrity: sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==} + engines: {node: '>=0.12'} + dev: true - promise@7.0.4: + /promise@7.0.4: + resolution: {integrity: sha512-8z1gTSL9cMgqCx8zvMYhzT0eQURAQNSQqR8B2hGfCYkAzt1vjReVdKBv4YwGw3OXAPaxfm4aR0gLoBUon4VmmA==} dependencies: asap: 2.0.6 + dev: true - promise@8.3.0: + /promise@8.3.0: + resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} dependencies: asap: 2.0.6 + dev: false - prompts@2.4.2: + /prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} dependencies: kleur: 3.0.3 sisteransi: 1.0.5 - promzard@0.3.0: + /promzard@0.3.0: + resolution: {integrity: sha512-JZeYqd7UAcHCwI+sTOeUDYkvEU+1bQ7iE0UT1MgB/tERkAPkesW46MrpIySzODi+owTjZtiF8Ay5j9m60KmMBw==} dependencies: read: 1.0.7 + dev: true - prop-types@15.8.1: + /prop-types@15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 react-is: 16.13.1 - property-information@5.6.0: + /property-information@5.6.0: + resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} dependencies: xtend: 4.0.2 - property-information@6.5.0: {} - - proto-list@1.2.4: {} + /proto-list@1.2.4: + resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} - protocols@2.0.1: {} + /protocols@2.0.1: + resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} + dev: true - proxy-addr@2.0.7: + /proxy-addr@2.0.7: + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + engines: {node: '>= 0.10'} dependencies: forwarded: 0.2.0 ipaddr.js: 1.9.1 - proxy-from-env@1.0.0: {} + /proxy-from-env@1.0.0: + resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==} + dev: true - proxy-from-env@1.1.0: {} + /proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} - prr@1.0.1: {} + /prr@1.0.1: + resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} + requiresBuild: true - pseudomap@1.0.2: {} + /pseudomap@1.0.2: + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} + dev: true - psl@1.9.0: {} + /psl@1.9.0: + resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + dev: true /pump@2.0.1: resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} @@ -52219,16 +43375,23 @@ snapshots: /punycode@1.4.1: resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} - punycode@2.3.1: {} + /punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} - pupa@2.1.1: + /pupa@2.1.1: + resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==} + engines: {node: '>=8'} dependencies: escape-goat: 2.1.1 + dev: false - puppeteer-core@2.1.1: + /puppeteer-core@2.1.1: + resolution: {integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==} + engines: {node: '>=8.16.0'} dependencies: '@types/mime-types': 2.1.4 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) extract-zip: 1.7.0 https-proxy-agent: 4.0.0 mime: 2.6.0 @@ -52242,56 +43405,92 @@ snapshots: - supports-color - utf-8-validate - pure-rand@6.1.0: {} + /pure-rand@6.1.0: + resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} - q@1.5.1: {} + /q@1.5.1: + resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} + engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + deprecated: |- + You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) dev: true - qrcode.react@1.0.1(react@18.3.1): + /qr.js@0.0.0: + resolution: {integrity: sha512-c4iYnWb+k2E+vYpRimHqSu575b1/wKl4XFeJGpFmrJQz5I88v9aY2czh7s0w36srfCM1sXgC/xpoJz5dJfq+OQ==} + dev: false + + /qrcode.react@1.0.1(react@18.3.1): + resolution: {integrity: sha512-8d3Tackk8IRLXTo67Y+c1rpaiXjoz/Dd2HpcMdW//62/x8J1Nbho14Kh8x974t9prsLHN6XqVgcnRiBGFptQmg==} + peerDependencies: + react: ^15.5.3 || ^16.0.0 || ^17.0.0 dependencies: loose-envify: 1.4.0 prop-types: 15.8.1 qr.js: 0.0.0 react: 18.3.1 + dev: false - qs@6.10.4: + /qs@6.10.4: + resolution: {integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==} + engines: {node: '>=0.6'} dependencies: side-channel: 1.0.6 + dev: true - /qs@6.12.3: - resolution: {integrity: sha512-AWJm14H1vVaO/iNZ4/hO+HyaTehuy9nRqVdkTqlJt0HWvBiBIEXFmb4C0DGeYo3Xes9rrEW+TxHsaigCbN5ICQ==} + /qs@6.11.0: + resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} engines: {node: '>=0.6'} dependencies: side-channel: 1.0.6 - qs@6.12.1: + /qs@6.12.3: + resolution: {integrity: sha512-AWJm14H1vVaO/iNZ4/hO+HyaTehuy9nRqVdkTqlJt0HWvBiBIEXFmb4C0DGeYo3Xes9rrEW+TxHsaigCbN5ICQ==} + engines: {node: '>=0.6'} dependencies: side-channel: 1.0.6 - query-string@7.1.3: + /query-string@7.1.3: + resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} + engines: {node: '>=6'} dependencies: decode-uri-component: 0.2.2 filter-obj: 1.1.0 split-on-first: 1.1.0 strict-uri-encode: 2.0.0 + dev: true - querystring@0.2.1: {} + /querystring@0.2.1: + resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} + engines: {node: '>=0.4.x'} + deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. + dev: true - querystringify@2.2.0: {} + /querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} - queue-microtask@1.2.3: {} + /queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - quick-lru@4.0.1: {} + /quick-lru@4.0.1: + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} + dev: true - quick-lru@5.1.1: {} + /quick-lru@5.1.1: + resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} + engines: {node: '>=10'} + dev: true - raf@3.4.1: + /raf@3.4.1: + resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} dependencies: performance-now: 2.1.0 + dev: false - ramda@0.28.0: {} + /ramda@0.28.0: + resolution: {integrity: sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA==} /ramda@0.29.0: resolution: {integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==} @@ -52311,72 +43510,107 @@ snapshots: dependencies: safe-buffer: 5.2.1 - range-parser@1.2.1: {} + /range-parser@1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} - raw-body@2.5.2: + /raw-body@2.5.2: + resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} + engines: {node: '>= 0.8'} dependencies: bytes: 3.1.2 http-errors: 2.0.0 iconv-lite: 0.4.24 unpipe: 1.0.0 - raw-loader@4.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /raw-loader@4.0.2(webpack@5.84.1): + resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - rc-motion@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /rc-motion@2.9.2(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-fUAhHKLDdkAXIDLH0GYwof3raS58dtNUmzLF2MeiR8o6n4thNpSDQhOqQzWE4WfFZDCi9VEN8n7tiB7czREcyw==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' dependencies: '@babel/runtime': 7.24.7 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - rc-resize-observer@1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /rc-resize-observer@1.4.0(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-PnMVyRid9JLxFavTjeDXEXo65HCRqbmLBw9xX9gfC4BZiSzbLXKzW3jPz+J0P71pLbD5tBMTT+mkstV5gD0c9Q==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' dependencies: '@babel/runtime': 7.24.7 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) resize-observer-polyfill: 1.5.1 - rc-tree@4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /rc-tree@4.2.2(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-V1hkJt092VrOVjNyfj5IYbZKRMHxWihZarvA5hPL/eqm7o2+0SNkeidFYm7LVVBrAKBpOpa0l8xt04uiqOd+6w==} + engines: {node: '>=10.x'} + peerDependencies: + react: '*' + react-dom: '*' dependencies: '@babel/runtime': 7.24.7 classnames: 2.5.1 - rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - rc-virtual-list: 3.14.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-virtual-list: 3.14.3(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - rc-util@5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /rc-util@5.43.0(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-AzC7KKOXFqAdIBqdGWepL9Xn7cm3vnAmjlHqUnoQaTMZYhM4VlXGLkkHHxj/BZ7Td0+SOPKB4RGPboBVKT9htw==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' dependencies: '@babel/runtime': 7.24.7 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - rc-virtual-list@3.14.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /rc-virtual-list@3.14.3(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-6+6wiEhdqakNBnbRJymgMlh+90qpkgqherTRo1l1cX7mK6F9hWsazPczmP0lA+64yhC9/t+M9Dh5pjvDWimn8A==} + engines: {node: '>=8.x'} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' dependencies: '@babel/runtime': 7.24.7 classnames: 2.5.1 - rc-resize-observer: 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-resize-observer: 1.4.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - rc@1.2.8: + /rc@1.2.8: + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + hasBin: true dependencies: deep-extend: 0.6.0 ini: 1.3.8 minimist: 1.2.8 strip-json-comments: 2.0.1 + dev: false - react-app-polyfill@1.0.6: + /react-app-polyfill@1.0.6: + resolution: {integrity: sha512-OfBnObtnGgLGfweORmdZbyEz+3dgVePQBb3zipiaDsMHV1NpWm0rDFYIVXFV/AK+x4VIIfWHhrdMIeoTLyRr2g==} + engines: {node: '>=6'} dependencies: core-js: 3.37.1 object-assign: 4.1.1 @@ -52384,13 +43618,22 @@ snapshots: raf: 3.4.1 regenerator-runtime: 0.13.11 whatwg-fetch: 3.6.20 + dev: false - react-codemirror2@6.0.1(codemirror@5.65.16)(react@18.3.1): + /react-codemirror2@6.0.1(codemirror@5.65.16)(react@18.3.1): + resolution: {integrity: sha512-rutEKVgvFhWcy/GeVA1hFbqrO89qLqgqdhUr7YhYgIzdyICdlRQv+ztuNvOFQMXrO0fLt0VkaYOdMdYdQgsSUA==} + peerDependencies: + codemirror: 5.x + react: '>=15.5 <=16.x' dependencies: codemirror: 5.65.16 react: 18.3.1 + dev: false - react-color@2.19.3(react@18.3.1): + /react-color@2.19.3(react@18.3.1): + resolution: {integrity: sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==} + peerDependencies: + react: '*' dependencies: '@icons/material': 0.2.4(react@18.3.1) lodash: 4.17.21 @@ -52400,20 +43643,33 @@ snapshots: react: 18.3.1 reactcss: 1.2.3(react@18.3.1) tinycolor2: 1.6.0 + dev: false /react-docgen-typescript-loader@3.7.2(typescript@4.9.5)(webpack@5.84.1): resolution: {integrity: sha512-fNzUayyUGzSyoOl7E89VaPKJk9dpvdSgyXg81cUkwy0u+NBvkzQG3FC5WBIlXda0k/iaxS+PWi+OC+tUiGxzPA==} peerDependencies: typescript: '*' dependencies: - '@webpack-contrib/schema-utils': 1.0.0-beta.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@webpack-contrib/schema-utils': 1.0.0-beta.0(webpack@5.84.1) loader-utils: 1.4.2 react-docgen-typescript: 1.22.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - webpack + dev: true + + /react-docgen-typescript@1.22.0(typescript@4.9.5): + resolution: {integrity: sha512-MPLbF8vzRwAG3GcjdL+OHQlhgtWsLTXs+7uJiHfEeT3Ur7IsZaNYqRTLQ9sj2nB6M6jylcPCeCmH7qbszJmecg==} + peerDependencies: + typescript: '>= 3.x' + dependencies: + typescript: 4.9.5 + dev: true - react-docgen-typescript@1.22.0(typescript@4.9.5): + /react-docgen-typescript@2.2.2(typescript@4.9.5): + resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} + peerDependencies: + typescript: '>= 4.3.x' dependencies: typescript: 4.9.5 dev: false @@ -52426,11 +43682,10 @@ snapshots: typescript: 5.1.6 dev: true - react-docgen-typescript@2.2.2(typescript@4.9.5): - dependencies: - typescript: 4.9.5 - - react-docgen@5.4.3: + /react-docgen@5.4.3: + resolution: {integrity: sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA==} + engines: {node: '>=8.10.0'} + hasBin: true dependencies: '@babel/core': 7.24.7 '@babel/generator': 7.24.7 @@ -52485,7 +43740,11 @@ snapshots: react: 18.3.1 scheduler: 0.23.2 - react-draggable@4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-draggable@4.4.6(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-LtY5Xw1zTPqHkVmtM3X8MUOxNDOUhv/khTgBgrUvwaS064bwVvxT+q5El0uUFNx5IEPKXuRejr7UqLwBIg5pdw==} + peerDependencies: + react: '>= 16.3.0' + react-dom: '>= 16.3.0' dependencies: clsx: 1.2.1 prop-types: 15.8.1 @@ -52493,13 +43752,18 @@ snapshots: react-dom: 18.3.1(react@18.3.1) dev: false - react-element-to-jsx-string@14.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-element-to-jsx-string@14.3.4(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} + peerDependencies: + react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 + react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 dependencies: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 17.0.2 + dev: false /react-element-to-jsx-string@15.0.0: resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==} @@ -52520,13 +43784,22 @@ snapshots: resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} dev: false - react-final-form@6.5.9(final-form@4.20.10)(react@18.3.1): + /react-final-form@6.5.9(final-form@4.20.10)(react@18.3.1): + resolution: {integrity: sha512-x3XYvozolECp3nIjly+4QqxdjSSWfcnpGEL5K8OBT6xmGrq5kBqbA6+/tOqoom9NwqIPPbxPNsOViFlbKgowbA==} + peerDependencies: + final-form: ^4.20.4 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@babel/runtime': 7.24.7 final-form: 4.20.10 react: 18.3.1 + dev: false - react-floater@0.7.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-floater@0.7.9(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-NXqyp9o8FAXOATOEo0ZpyaQ2KPb4cmPMXGWkx377QtJkIXHlHRAGer7ai0r0C1kG5gf+KJ6Gy+gdNIiosvSicg==} + peerDependencies: + react: 15 - 18 + react-dom: 15 - 18 dependencies: deepmerge: 4.3.1 is-lite: 0.8.2 @@ -52535,10 +43808,16 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) tree-changes: 0.9.3 + dev: false - react-head@3.4.2: + /react-head@3.4.2: + resolution: {integrity: sha512-mnl6u7E0SSzY9w+mExKGVz8vW/oObUTnj+vpRaZF6jcdjFcCGs0vl8MRwlRws56dye3f1CpzU7C/hz3b3S2BBA==} + peerDependencies: + react: '>=16.3' + react-dom: '>=16.3' dependencies: '@babel/runtime': 7.24.7 + dev: false /react-helmet@5.2.1(react@18.3.1): resolution: {integrity: sha512-CnwD822LU8NDBnjCpZ4ySh8L6HYyngViTZLfBBb3NjtrpN8m49clH8hidHouq20I51Y6TpCTISCBbqiY5GamwA==} @@ -52550,8 +43829,18 @@ snapshots: react: 18.3.1 react-fast-compare: 2.0.4 react-side-effect: 1.2.0(react@18.3.1) + dev: false - react-hot-loader@4.13.1(@types/react@18.0.18): + /react-hot-loader@4.13.1: + resolution: {integrity: sha512-ZlqCfVRqDJmMXTulUGic4lN7Ic1SXgHAFw7y/Jb7t25GBgTR0fYAJ8uY4mrpxjRyWGWmqw77qJQGnYbzCvBU7g==} + engines: {node: '>= 6'} + peerDependencies: + '@types/react': 18.0.18 + react: ^15.0.0 || ^16.0.0 || ^17.0.0 + react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 + peerDependenciesMeta: + '@types/react': + optional: true dependencies: fast-levenshtein: 2.0.6 global: 4.4.0 @@ -52561,33 +43850,54 @@ snapshots: react-lifecycles-compat: 3.0.4 shallowequal: 1.1.0 source-map: 0.7.4 - optionalDependencies: - '@types/react': 18.0.18 + dev: true - react-i18next@11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-i18next@11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-yHb2F9BiT0lqoQDt8loZ5gWP331GwctHz9tYQ8A2EIEUu+CcEdjBLQWli1USG3RdWQt3W+jqQLg/d4rrQR96LA==} + peerDependencies: + i18next: '>= 19.0.0' + react: '>= 16.8.0' + react-dom: '*' + react-native: '*' + peerDependenciesMeta: + react-dom: + optional: true + react-native: + optional: true dependencies: '@babel/runtime': 7.24.7 html-parse-stringify: 3.0.1 i18next: 21.10.0 react: 18.3.1 - optionalDependencies: react-dom: 18.3.1(react@18.3.1) + dev: false - react-innertext@1.1.5(@types/react@18.0.18)(react@18.3.1): + /react-innertext@1.1.5(@types/react@18.0.18)(react@18.3.1): + resolution: {integrity: sha512-PWAqdqhxhHIv80dT9znP2KvS+hfkbRovFp4zFYHFFlOoQLRiawIic81gKb3U1wEyJZgMwgs3JoLtwryASRWP3Q==} + peerDependencies: + '@types/react': 18.0.18 + react: '>=0.0.0 <=99' dependencies: '@types/react': 18.0.18 react: 18.3.1 + dev: false - react-inspector@5.1.1(react@18.3.1): + /react-inspector@5.1.1(react@18.3.1): + resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==} + peerDependencies: + react: ^16.8.4 || ^17.0.0 dependencies: '@babel/runtime': 7.24.7 is-dom: 1.1.0 prop-types: 15.8.1 react: 18.3.1 + dev: true - react-is@16.13.1: {} + /react-is@16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} - react-is@17.0.2: {} + /react-is@17.0.2: + resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} /react-is@18.1.0: resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==} @@ -52596,7 +43906,11 @@ snapshots: /react-is@18.3.1: resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} - react-joyride@2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-joyride@2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-2QY8HB1G0I2OT0PKMUz7gg2HAjdkG2Bqi13r0Bb1V16PAwfb9khn4wWBTOJsGsjulbAWiQ3/0YrgNUHGFmuifw==} + peerDependencies: + react: 15 - 18 + react-dom: 15 - 18 dependencies: '@gilbarbara/deep-equal': 0.3.1 deep-diff: 1.0.2 @@ -52604,7 +43918,7 @@ snapshots: is-lite: 1.2.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-floater: 0.7.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-floater: 0.7.9(react-dom@18.3.1)(react@18.3.1) react-innertext: 1.1.5(@types/react@18.0.18)(react@18.3.1) react-is: 16.13.1 scroll: 3.0.1 @@ -52613,32 +43927,51 @@ snapshots: type-fest: 4.20.1 transitivePeerDependencies: - '@types/react' + dev: false - react-lifecycles-compat@3.0.4: {} + /react-lifecycles-compat@3.0.4: + resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} + dev: true - react-markdown@9.0.1(@types/react@18.0.18)(react@18.3.1): + /react-markdown@4.3.1(react@18.3.1): + resolution: {integrity: sha512-HQlWFTbDxTtNY6bjgp3C3uv1h2xcjCSi1zAEzfBW9OwJJvENSYiLXWNXN5hHLsoqai7RnZiiHzcnWdXk2Splzw==} + peerDependencies: + react: ^15.0.0 || ^16.0.0 dependencies: - '@types/hast': 3.0.4 - '@types/react': 18.0.18 - devlop: 1.1.0 - hast-util-to-jsx-runtime: 2.3.0 - html-url-attributes: 3.0.0 - mdast-util-to-hast: 13.2.0 + html-to-react: 1.7.0(react@18.3.1) + mdast-add-list-metadata: 1.0.1 + prop-types: 15.8.1 react: 18.3.1 - remark-parse: 11.0.0 - remark-rehype: 11.1.0 - unified: 11.0.5 - unist-util-visit: 5.0.0 - vfile: 6.0.1 - transitivePeerDependencies: - - supports-color + react-is: 16.13.1 + remark-parse: 5.0.0 + unified: 6.2.0 + unist-util-visit: 1.4.1 + xtend: 4.0.2 + dev: false - react-notification-system@0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-notification-system@0.4.0(react-dom@16.14.0)(react@16.14.0): + resolution: {integrity: sha512-5WhXnjkYC07zqXruCiUXDU9iHjVxZlL1zgHpNgXk91A5ghV1AHrWVrJYo1XM4SnwlKy5NLdftkaTl+pTuVFAqw==} + peerDependencies: + react: "0.14.x || ^15.0.0 ||\_^16.0.0" + react-dom: 0.14.x || ^15.0.0 || ^16.0.0 + dependencies: + object-assign: 4.1.1 + prop-types: 15.8.1 + react: 16.14.0 + react-dom: 16.14.0(react@16.14.0) + dev: false + + /react-notification-system@0.4.0(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-5WhXnjkYC07zqXruCiUXDU9iHjVxZlL1zgHpNgXk91A5ghV1AHrWVrJYo1XM4SnwlKy5NLdftkaTl+pTuVFAqw==} + peerDependencies: + react: "0.14.x || ^15.0.0 ||\_^16.0.0" + react-dom: 0.14.x || ^15.0.0 || ^16.0.0 dependencies: object-assign: 4.1.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + dev: false /react-popper@2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==} @@ -52654,9 +43987,21 @@ snapshots: warning: 4.0.3 dev: false - react-property@2.0.0: {} + /react-property@2.0.0: + resolution: {integrity: sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw==} + dev: false - react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-redux@7.2.9(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==} + peerDependencies: + react: ^16.8.3 || ^17 || ^18 + react-dom: '*' + react-native: '*' + peerDependenciesMeta: + react-dom: + optional: true + react-native: + optional: true dependencies: '@babel/runtime': 7.24.7 '@types/react-redux': 7.1.33 @@ -52664,11 +44009,14 @@ snapshots: loose-envify: 1.4.0 prop-types: 15.8.1 react: 18.3.1 - react-is: 17.0.2 - optionalDependencies: react-dom: 18.3.1(react@18.3.1) + react-is: 17.0.2 + dev: false - react-refresh@0.10.0: {} + /react-refresh@0.10.0: + resolution: {integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==} + engines: {node: '>=0.10.0'} + dev: true /react-refresh@0.11.0: resolution: {integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==} @@ -52680,9 +44028,15 @@ snapshots: engines: {node: '>=0.10.0'} dev: true - react-refresh@0.9.0: {} + /react-refresh@0.9.0: + resolution: {integrity: sha512-Gvzk7OZpiqKSkxsQvO/mbTN1poglhmAV7gR/DdIrRrSMXraRQQlfikRJOr3Nb9GTMPC5kof948Zy6jJZIFtDvQ==} + engines: {node: '>=0.10.0'} + dev: true - react-router-dom@4.3.1(react@18.3.1): + /react-router-dom@4.3.1(react@18.3.1): + resolution: {integrity: sha512-c/MlywfxDdCp7EnB7YfPMOfMD3tOtIjrQlj/CKfNMBxdmpJP8xcz5P/UAFn3JbnQCNUxsHyVVqllF9LhgVyFCA==} + peerDependencies: + react: '>=15' dependencies: history: 4.10.1 invariant: 2.2.4 @@ -52691,6 +44045,7 @@ snapshots: react: 18.3.1 react-router: 4.3.1(react@18.3.1) warning: 4.0.3 + dev: false /react-router-dom@6.24.1(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-U19KtXqooqw967Vw0Qcn5cOvrX5Ejo9ORmOtJMzYWtCT4/WOfFLIZGGsVLxcd9UkBO0mSTZtXqhZBsWlHr7+Sg==} @@ -52718,7 +44073,10 @@ snapshots: react-router: 6.24.1(react@18.3.1) dev: true - react-router@4.3.1(react@18.3.1): + /react-router@4.3.1(react@18.3.1): + resolution: {integrity: sha512-yrvL8AogDh2X42Dt9iknk4wF4V8bWREPirFfS9gLU1huk6qK41sg7Z/1S81jjTrGHxa3B8R3J6xIkDAA6CVarg==} + peerDependencies: + react: '>=15' dependencies: history: 4.10.1 hoist-non-react-statics: 2.5.5 @@ -52728,6 +44086,7 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 warning: 4.0.3 + dev: false /react-router@6.24.1(react@16.14.0): resolution: {integrity: sha512-PTXFXGK2pyXpHzVo3rR9H7ip4lSPZZc0bHG5CARmj65fTT6qG7sTngmb6lcYu1gf3y/8KxORoy9yn59pGpCnpg==} @@ -52749,10 +44108,14 @@ snapshots: react: 18.3.1 dev: true - react-side-effect@1.2.0(react@18.3.1): + /react-side-effect@1.2.0(react@18.3.1): + resolution: {integrity: sha512-v1ht1aHg5k/thv56DRcjw+WtojuuDHFUgGfc+bFHOWsF4ZK6C2V57DO0Or0GPsg6+LSTE0M6Ry/gfzhzSwbc5w==} + peerDependencies: + react: ^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0 dependencies: react: 18.3.1 shallowequal: 1.1.0 + dev: false /react-smooth@4.0.1(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-OE4hm7XqR0jNOq3Qmk9mFLyd6p2+j6bvbPJ7qlB7+oo0eNcL2l7WQzG6MBnT3EXY6xzkLMUBec3AfewJdA0J8w==} @@ -52764,7 +44127,8 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-transition-group: 4.4.5(react-dom@18.3.1)(react@18.3.1) + dev: false /react-top-loading-bar@1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-5oNdy+DfD5JK06bcc/gsnnXHmml+d8eaBe3C8KQ3eLiH/BD8+FcwsgbAwqgOaRjuSeVQXdYN2JC2G1uVFtCLfA==} @@ -52777,8 +44141,13 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + dev: false - react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-transition-group@4.4.5(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} + peerDependencies: + react: '>=16.6.0' + react-dom: '>=16.6.0' dependencies: '@babel/runtime': 7.24.7 dom-helpers: 5.2.1 @@ -52786,13 +44155,18 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + dev: false - react-world-flags@1.6.0(react@18.3.1): + /react-world-flags@1.6.0(react@18.3.1): + resolution: {integrity: sha512-eutSeAy5YKoVh14js/JUCSlA6EBk1n4k+bDaV+NkNB50VhnG+f4QDTpYycnTUTsZ5cqw/saPmk0Z4Fa0VVZ1Iw==} + peerDependencies: + react: '>=0.14' dependencies: react: 18.3.1 svg-country-flags: 1.2.10 svgo: 3.3.2 world-countries: 5.0.0 + dev: false /react@16.14.0: resolution: {integrity: sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==} @@ -52809,99 +44183,147 @@ snapshots: dependencies: loose-envify: 1.4.0 - reactcss@1.2.3(react@18.3.1): + /reactcss@1.2.3(react@18.3.1): + resolution: {integrity: sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==} + peerDependencies: + react: '*' dependencies: lodash: 4.17.21 react: 18.3.1 + dev: false - reactflow@11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /reactflow@11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-HBudD8BwZacOMqX8fbkiXbeBQs3nRezWVLCDurfc+tTeHsA7988uyaIOhrnKgYCcKtlpJaspsnxDZk+5JmmHxA==} + peerDependencies: + react: '>=17' + react-dom: '>=17' dependencies: - '@reactflow/background': 11.2.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@reactflow/controls': 11.1.13(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@reactflow/minimap': 11.5.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@reactflow/node-resizer': 2.1.0(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@reactflow/node-toolbar': 1.2.1(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/background': 11.2.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/controls': 11.1.13(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/minimap': 11.5.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/node-resizer': 2.1.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/node-toolbar': 1.2.1(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - immer + dev: false - read-cache@1.0.0: + /read-cache@1.0.0: + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} dependencies: pify: 2.3.0 + dev: true - read-cmd-shim@3.0.1: {} + /read-cmd-shim@3.0.1: + resolution: {integrity: sha512-kEmDUoYf/CDy8yZbLTmhB1X9kkjf9Q80PCNsDMb7ufrGd6zZSQA1+UyjrO+pZm5K/S4OXCWJeiIt1JA8kAsa6g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dev: true - read-package-json-fast@2.0.3: + /read-package-json-fast@2.0.3: + resolution: {integrity: sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==} + engines: {node: '>=10'} dependencies: json-parse-even-better-errors: 2.3.1 npm-normalize-package-bin: 1.0.1 + dev: true - read-package-json@5.0.2: + /read-package-json@5.0.2: + resolution: {integrity: sha512-BSzugrt4kQ/Z0krro8zhTwV1Kd79ue25IhNN/VtHFy1mG/6Tluyi+msc0UpwaoQzxSHa28mntAjIZY6kEgfR9Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. Please use @npmcli/package-json instead. dependencies: glob: 8.1.0 json-parse-even-better-errors: 2.3.1 normalize-package-data: 4.0.1 npm-normalize-package-bin: 2.0.0 + dev: true - read-pkg-up@1.0.1: + /read-pkg-up@1.0.1: + resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: find-up: 1.1.2 read-pkg: 1.1.0 + dev: false optional: true - read-pkg-up@3.0.0: + /read-pkg-up@3.0.0: + resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} + engines: {node: '>=4'} dependencies: find-up: 2.1.0 read-pkg: 3.0.0 + dev: true - read-pkg-up@7.0.1: + /read-pkg-up@7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} dependencies: find-up: 4.1.0 read-pkg: 5.2.0 type-fest: 0.8.1 - read-pkg@1.1.0: + /read-pkg@1.1.0: + resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: load-json-file: 1.1.0 normalize-package-data: 2.5.0 path-type: 1.1.0 + dev: false optional: true - read-pkg@3.0.0: + /read-pkg@3.0.0: + resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} + engines: {node: '>=4'} dependencies: load-json-file: 4.0.0 normalize-package-data: 2.5.0 path-type: 3.0.0 + dev: true - read-pkg@5.2.0: + /read-pkg@5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} dependencies: '@types/normalize-package-data': 2.4.4 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 - read-yaml-file@1.1.0: + /read-yaml-file@1.1.0: + resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} + engines: {node: '>=6'} dependencies: graceful-fs: 4.2.11 js-yaml: 3.13.1 pify: 4.0.1 strip-bom: 3.0.0 + dev: true - read@1.0.7: + /read@1.0.7: + resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} + engines: {node: '>=0.8'} dependencies: mute-stream: 0.0.8 + dev: true - readable-stream@1.1.14: + /readable-stream@1.1.14: + resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==} dependencies: core-util-is: 1.0.3 inherits: 2.0.4 isarray: 0.0.1 string_decoder: 0.10.31 + dev: false - readable-stream@2.3.8: + /readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} dependencies: core-util-is: 1.0.3 inherits: 2.0.4 @@ -52911,24 +44333,34 @@ snapshots: string_decoder: 1.1.1 util-deprecate: 1.0.2 - readable-stream@3.6.2: + /readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} dependencies: inherits: 2.0.4 string_decoder: 1.3.0 util-deprecate: 1.0.2 - readable-web-to-node-stream@3.0.2: + /readable-web-to-node-stream@3.0.2: + resolution: {integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==} + engines: {node: '>=8'} dependencies: readable-stream: 3.6.2 + dev: true - readdir-scoped-modules@1.1.0: + /readdir-scoped-modules@1.1.0: + resolution: {integrity: sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==} + deprecated: This functionality has been moved to @npmcli/fs dependencies: debuglog: 1.0.1 dezalgo: 1.0.4 graceful-fs: 4.2.11 once: 1.4.0 + dev: true - readdirp@2.2.1(supports-color@6.1.0): + /readdirp@2.2.1(supports-color@6.1.0): + resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==} + engines: {node: '>=0.10'} dependencies: graceful-fs: 4.2.11 micromatch: 3.1.10(supports-color@6.1.0) @@ -52936,23 +44368,31 @@ snapshots: transitivePeerDependencies: - supports-color - readdirp@3.6.0: + /readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} dependencies: picomatch: 2.3.1 - recast@0.19.1: + /recast@0.19.1: + resolution: {integrity: sha512-8FCjrBxjeEU2O6I+2hyHyBFH1siJbMBLwIRvVr1T3FD2cL754sOaJDsJ/8h3xYltasbJ8jqWRIhMuDGBSiSbjw==} + engines: {node: '>= 4'} dependencies: ast-types: 0.13.3 esprima: 4.0.1 private: 0.1.8 source-map: 0.6.1 + dev: false - recast@0.20.5: + /recast@0.20.5: + resolution: {integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==} + engines: {node: '>= 4'} dependencies: ast-types: 0.14.2 esprima: 4.0.1 source-map: 0.6.1 tslib: 2.6.3 + dev: false /recast@0.23.9: resolution: {integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==} @@ -52969,8 +44409,14 @@ snapshots: resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==} dependencies: decimal.js-light: 2.5.1 + dev: false - recharts@2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /recharts@2.12.7(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-hlLJMhPQfv4/3NBSAyq3gzGg4h2v69RJh6KU7b3pXYNNAELs9kEoXOjbkxdXpALqKBoVmVptGfLpxdaVYqjmXQ==} + engines: {node: '>=14'} + peerDependencies: + react: ^16.0.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 dependencies: clsx: 2.1.1 eventemitter3: 4.0.7 @@ -52978,37 +44424,67 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 16.13.1 - react-smooth: 4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-smooth: 4.0.1(react-dom@18.3.1)(react@18.3.1) recharts-scale: 0.4.5 tiny-invariant: 1.3.3 victory-vendor: 36.9.2 + dev: false - rechoir@0.6.2: + /rechoir@0.6.2: + resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} + engines: {node: '>= 0.10'} dependencies: resolve: 1.22.8 + dev: false - rechoir@0.7.1: + /rechoir@0.7.1: + resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==} + engines: {node: '>= 0.10'} dependencies: resolve: 1.22.8 - redent@1.0.0: + /redent@1.0.0: + resolution: {integrity: sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: indent-string: 2.1.0 strip-indent: 1.0.1 + dev: false optional: true - redent@3.0.0: + /redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} dependencies: indent-string: 4.0.0 strip-indent: 3.0.0 + dev: true - reduce-reducers@1.0.4: {} + /reduce-reducers@1.0.4: + resolution: {integrity: sha512-Mb2WZ2bJF597exiqX7owBzrqJ74DHLK3yOQjCyPAaNifRncE8OD0wFIuoMhXxTnHK07+8zZ2SJEKy/qtiyR7vw==} + dev: false - redux-devtools-extension@2.13.9(redux@4.2.1): + /redux-devtools-extension@2.13.9(redux@4.2.1): + resolution: {integrity: sha512-cNJ8Q/EtjhQaZ71c8I9+BPySIBVEKssbPpskBfsXqb8HJ002A3KRVHfeRzwRo6mGPqsm7XuHTqNSNeS1Khig0A==} + deprecated: Package moved to @redux-devtools/extension. + peerDependencies: + redux: ^3.1.0 || ^4.0.0 dependencies: redux: 4.2.1 + dev: true - redux-form@8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1): + /redux-form@8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1): + resolution: {integrity: sha512-Eeog8dJYUxCSZI/oBoy7VkprvMjj1lpUnHa3LwjVNZvYDNeiRZMoZoaAT+6nlK2YQ4aiBopKUMiLe4ihUOHCGg==} + engines: {node: '>=8.10'} + peerDependencies: + immutable: ^3.8.2 || ^4.0.0 + react: ^16.4.2 || ^17.0.0 || ^18.0.0 + react-redux: ^6.0.1 || ^7.0.0 || ^8.0.0 + redux: ^3.7.2 || ^4.0.0 + peerDependenciesMeta: + immutable: + optional: true dependencies: '@babel/runtime': 7.24.7 es6-error: 4.1.1 @@ -53019,24 +44495,31 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 react-is: 16.13.1 - react-redux: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-redux: 7.2.9(react-dom@18.3.1)(react@18.3.1) redux: 4.2.1 - optionalDependencies: - immutable: 4.3.6 + dev: false - redux-mock-store@1.5.4: + /redux-mock-store@1.5.4: + resolution: {integrity: sha512-xmcA0O/tjCLXhh9Fuiq6pMrJCwFRaouA8436zcikdIpYWWCjU76CRk+i2bHx8EeiSiMGnB85/lZdU3wIJVXHTA==} dependencies: lodash.isplainobject: 4.0.6 - redux-thunk@2.4.2(redux@4.2.1): + /redux-thunk@2.4.2(redux@4.2.1): + resolution: {integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==} + peerDependencies: + redux: ^4 dependencies: redux: 4.2.1 + dev: false - redux@4.2.1: + /redux@4.2.1: + resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} dependencies: '@babel/runtime': 7.24.7 - reflect.getprototypeof@1.0.6: + /reflect.getprototypeof@1.0.6: + resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -53045,6 +44528,7 @@ snapshots: get-intrinsic: 1.2.4 globalthis: 1.0.4 which-builtin-type: 1.1.3 + dev: true /regenerate-unicode-properties@10.1.1: resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} @@ -53052,35 +44536,49 @@ snapshots: dependencies: regenerate: 1.4.2 - regenerate@1.4.2: {} + /regenerate@1.4.2: + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} - regenerator-runtime@0.10.5: {} + /regenerator-runtime@0.10.5: + resolution: {integrity: sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==} - regenerator-runtime@0.11.1: {} + /regenerator-runtime@0.11.1: + resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} - regenerator-runtime@0.13.11: {} + /regenerator-runtime@0.13.11: + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} - regenerator-runtime@0.14.1: {} + /regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} - regenerator-transform@0.15.2: + /regenerator-transform@0.15.2: + resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} dependencies: '@babel/runtime': 7.24.7 - regex-not@1.0.2: + /regex-not@1.0.2: + resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} + engines: {node: '>=0.10.0'} dependencies: extend-shallow: 3.0.2 safe-regex: 1.1.0 - regexp.prototype.flags@1.5.2: + /regexp.prototype.flags@1.5.2: + resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-errors: 1.3.0 set-function-name: 2.0.2 - regexpp@3.2.0: {} + /regexpp@3.2.0: + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} + engines: {node: '>=8'} - regexpu-core@5.3.2: + /regexpu-core@5.3.2: + resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} + engines: {node: '>=4'} dependencies: '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 @@ -53089,40 +44587,52 @@ snapshots: unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.1.0 - registry-auth-token@4.2.2: + /registry-auth-token@4.2.2: + resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==} + engines: {node: '>=6.0.0'} dependencies: rc: 1.2.8 + dev: false - registry-url@5.1.0: + /registry-url@5.1.0: + resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} + engines: {node: '>=8'} dependencies: rc: 1.2.8 + dev: false - regjsparser@0.9.1: + /regjsparser@0.9.1: + resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} + hasBin: true dependencies: jsesc: 0.5.0 - rehype-attr@3.0.3: - dependencies: - unified: 11.0.5 - unist-util-visit: 5.0.0 - - relateurl@0.2.7: {} + /relateurl@0.2.7: + resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} + engines: {node: '>= 0.10'} - release-zalgo@1.0.0: + /release-zalgo@1.0.0: + resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==} + engines: {node: '>=4'} dependencies: es6-error: 4.1.1 + dev: true - remark-external-links@8.0.0: + /remark-external-links@8.0.0: + resolution: {integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==} dependencies: extend: 3.0.2 is-absolute-url: 3.0.3 mdast-util-definitions: 4.0.0 space-separated-tokens: 1.1.5 unist-util-visit: 2.0.3 + dev: true - remark-footnotes@2.0.0: {} + /remark-footnotes@2.0.0: + resolution: {integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==} - remark-mdx@1.6.22: + /remark-mdx@1.6.22: + resolution: {integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==} dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 @@ -53135,16 +44645,28 @@ snapshots: transitivePeerDependencies: - supports-color - remark-parse@11.0.0: + /remark-parse@5.0.0: + resolution: {integrity: sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==} dependencies: - '@types/mdast': 4.0.4 - mdast-util-from-markdown: 2.0.1 - micromark-util-types: 2.0.0 - unified: 11.0.5 - transitivePeerDependencies: - - supports-color + collapse-white-space: 1.0.6 + is-alphabetical: 1.0.4 + is-decimal: 1.0.4 + is-whitespace-character: 1.0.4 + is-word-character: 1.0.4 + markdown-escapes: 1.0.4 + parse-entities: 1.2.2 + repeat-string: 1.6.1 + state-toggle: 1.0.3 + trim: 0.0.1 + trim-trailing-lines: 1.1.4 + unherit: 1.1.3 + unist-util-remove-position: 1.1.4 + vfile-location: 2.0.6 + xtend: 4.0.2 + dev: false - remark-parse@8.0.3: + /remark-parse@8.0.3: + resolution: {integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==} dependencies: ccount: 1.1.0 collapse-white-space: 1.0.6 @@ -53163,21 +44685,16 @@ snapshots: vfile-location: 3.2.0 xtend: 4.0.2 - remark-rehype@11.1.0: - dependencies: - '@types/hast': 3.0.4 - '@types/mdast': 4.0.4 - mdast-util-to-hast: 13.2.0 - unified: 11.0.5 - vfile: 6.0.1 - - remark-slug@6.1.0: + /remark-slug@6.1.0: + resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==} dependencies: github-slugger: 1.5.0 mdast-util-to-string: 1.1.0 unist-util-visit: 2.0.3 + dev: true - remark-squeeze-paragraphs@4.0.0: + /remark-squeeze-paragraphs@4.0.0: + resolution: {integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==} dependencies: mdast-squeeze-paragraphs: 4.0.0 @@ -53193,7 +44710,8 @@ snapshots: /remove-trailing-separator@1.1.0: resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} - renderkid@2.0.7: + /renderkid@2.0.7: + resolution: {integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==} dependencies: css-select: 4.3.0 dom-converter: 0.2.0 @@ -53202,7 +44720,8 @@ snapshots: strip-ansi: 3.0.1 dev: false - renderkid@3.0.0: + /renderkid@3.0.0: + resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} dependencies: css-select: 4.3.0 dom-converter: 0.2.0 @@ -53210,104 +44729,180 @@ snapshots: lodash: 4.17.21 strip-ansi: 6.0.1 - repeat-element@1.1.4: {} + /repeat-element@1.1.4: + resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} + engines: {node: '>=0.10.0'} - repeat-string@1.6.1: {} + /repeat-string@1.6.1: + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} - repeating@2.0.1: + /repeating@2.0.1: + resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==} + engines: {node: '>=0.10.0'} dependencies: is-finite: 1.1.0 - optional: true - replace@1.2.2: + /replace-ext@1.0.0: + resolution: {integrity: sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA==} + engines: {node: '>= 0.10'} + dev: false + + /replace@1.2.2: + resolution: {integrity: sha512-C4EDifm22XZM2b2JOYe6Mhn+lBsLBAvLbK8drfUQLTfD1KYl/n3VaW/CDju0Ny4w3xTtegBpg8YNSpFJPUDSjA==} + engines: {node: '>= 6'} + hasBin: true dependencies: chalk: 2.4.2 minimatch: 3.0.5 yargs: 15.4.1 + dev: true - request-progress@3.0.0: + /request-progress@3.0.0: + resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==} dependencies: throttleit: 1.0.1 + dev: true - require-directory@2.1.1: {} + /require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} - require-from-string@2.0.2: {} + /require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} - require-main-filename@2.0.0: {} + /require-main-filename@2.0.0: + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} - requireindex@1.2.0: {} + /requireindex@1.2.0: + resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==} + engines: {node: '>=0.10.5'} + dev: true - requires-port@1.0.0: {} + /requires-port@1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} - reselect@4.1.8: {} + /reselect@4.1.8: + resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==} + dev: false - resize-observer-polyfill@1.5.1: {} + /resize-observer-polyfill@1.5.1: + resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==} - resolve-alpn@1.2.1: {} + /resolve-alpn@1.2.1: + resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} + dev: true - resolve-cwd@2.0.0: + /resolve-cwd@2.0.0: + resolution: {integrity: sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==} + engines: {node: '>=4'} dependencies: resolve-from: 3.0.0 - resolve-cwd@3.0.0: + /resolve-cwd@3.0.0: + resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + engines: {node: '>=8'} dependencies: resolve-from: 5.0.0 - resolve-from@3.0.0: {} + /resolve-from@3.0.0: + resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} + engines: {node: '>=4'} - resolve-from@4.0.0: {} + /resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} - resolve-from@5.0.0: {} + /resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} - resolve-pathname@3.0.0: {} + /resolve-pathname@3.0.0: + resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==} + dev: false - resolve-url@0.2.1: {} + /resolve-url@0.2.1: + resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} + deprecated: https://github.com/lydell/resolve-url#deprecated - resolve.exports@1.1.0: {} + /resolve.exports@1.1.0: + resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} + engines: {node: '>=10'} + dev: true - resolve.exports@2.0.2: {} + /resolve.exports@2.0.2: + resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} + engines: {node: '>=10'} - resolve@1.1.7: {} + /resolve@1.1.7: + resolution: {integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==} + dev: true - resolve@1.19.0: + /resolve@1.19.0: + resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==} dependencies: is-core-module: 2.14.0 path-parse: 1.0.7 + dev: true - resolve@1.22.8: + /resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + hasBin: true dependencies: is-core-module: 2.14.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - resolve@2.0.0-next.5: + /resolve@2.0.0-next.5: + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} + hasBin: true dependencies: is-core-module: 2.14.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 + dev: true - responselike@1.0.2: + /responselike@1.0.2: + resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} dependencies: lowercase-keys: 1.0.1 + dev: false - responselike@2.0.1: + /responselike@2.0.1: + resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} dependencies: lowercase-keys: 2.0.0 + dev: true - restore-cursor@3.1.0: + /restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} dependencies: onetime: 5.1.2 signal-exit: 3.0.7 + dev: true - ret@0.1.15: {} + /ret@0.1.15: + resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} + engines: {node: '>=0.12'} - retry@0.12.0: {} + /retry@0.12.0: + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} + engines: {node: '>= 4'} - retry@0.13.1: {} + /retry@0.13.1: + resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} + engines: {node: '>= 4'} + dev: true - reusify@1.0.4: {} + /reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - rfdc@1.4.1: {} + /rfdc@1.4.1: + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + dev: true /rimraf@2.6.3: resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} @@ -53323,21 +44918,23 @@ snapshots: dependencies: glob: 7.2.3 - rimraf@2.7.1: - dependencies: - glob: 7.2.3 - - rimraf@3.0.2: + /rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true dependencies: glob: 7.2.3 - rollup-plugin-copy@3.5.0: + /rollup-plugin-copy@3.5.0: + resolution: {integrity: sha512-wI8D5dvYovRMx/YYKtUNt3Yxaw4ORC9xo6Gt9t22kveWz1enG9QrhVlagzwrxSC455xD1dHMKhIJkbsQ7d48BA==} + engines: {node: '>=8.3'} dependencies: '@types/fs-extra': 8.1.5 colorette: 1.4.0 fs-extra: 8.1.0 globby: 10.0.1 is-plain-object: 3.0.1 + dev: true /rollup-plugin-dts@6.1.1(rollup@4.18.1)(typescript@4.9.5): resolution: {integrity: sha512-aSHRcJ6KG2IHIioYlvAOcEq6U99sVtqDDKVhnwt70rW6tsz3tv5OSjEiWcgzfsHdLyGXZ/3b/7b/+Za3Y6r1XA==} @@ -53351,6 +44948,7 @@ snapshots: typescript: 4.9.5 optionalDependencies: '@babel/code-frame': 7.24.7 + dev: true /rollup-plugin-generate-package-json@3.2.0(rollup@4.18.1): resolution: {integrity: sha512-+Kq1kFVr+maxW/mZB+E+XuaieCXVZqjl2tNU9k3TtAMs3NOaeREa5sRHy67qKDmcnFtZZukIQ3dFCcnV+r0xyw==} @@ -53361,10 +44959,15 @@ snapshots: read-pkg: 5.2.0 rollup: 4.18.1 write-pkg: 4.0.0 + dev: true - rollup-plugin-peer-deps-external@2.2.4(rollup@2.79.1): + /rollup-plugin-peer-deps-external@2.2.4(rollup@2.79.1): + resolution: {integrity: sha512-AWdukIM1+k5JDdAqV/Cxd+nejvno2FVLVeZ74NKggm3Q5s9cbbcOgUPGdbxPi4BXu7xGaZ8HG12F+thImYu/0g==} + peerDependencies: + rollup: '*' dependencies: rollup: 2.79.1 + dev: true /rollup-plugin-polyfill-node@0.13.0(rollup@4.18.1): resolution: {integrity: sha512-FYEvpCaD5jGtyBuBFcQImEGmTxDTPbiHjJdrYIp+mFIwgXiXabxvKUK7ZT9P31ozu2Tqm9llYQMRWsfvTMTAOw==} @@ -53397,10 +45000,13 @@ snapshots: style-inject: 0.3.0 transitivePeerDependencies: - ts-node + dev: true - rollup-plugin-scss@4.0.0: + /rollup-plugin-scss@4.0.0: + resolution: {integrity: sha512-wxasNXDYC2m+fDxCMgK00WebVWYmeFvShyNABmjvSJZ6D1/SepwqFeaMFMQromveI79gfvb64yJjiZZxSZxEIA==} dependencies: rollup-pluginutils: 2.8.2 + dev: true /rollup-plugin-styles@4.0.0(rollup@4.18.1): resolution: {integrity: sha512-A2K2sao84OsTmDxXG83JTCdXWrmgvQkkI38XDat46rdtpGMRm9tSYqeCdlwwGDJF4kKIafhV1mUidqu8MxUGig==} @@ -53427,10 +45033,13 @@ snapshots: rollup: 4.18.1 source-map-js: 1.2.0 tslib: 2.6.3 + dev: true - rollup-plugin-svg@2.0.0: + /rollup-plugin-svg@2.0.0: + resolution: {integrity: sha512-DmE7dSQHo1SC5L2uH2qul3Mjyd5oV6U1aVVkyvTLX/mUsRink7f1b1zaIm+32GEBA6EHu8H/JJi3DdWqM53ySQ==} dependencies: rollup-pluginutils: 1.5.2 + dev: true /rollup-plugin-typescript2@0.34.1(rollup@2.79.1)(typescript@5.1.6): resolution: {integrity: sha512-P4cHLtGikESmqi1CA+tdMDUv8WbQV48mzPYt77TSTOPJpERyZ9TXdDgjSDix8Fkqce6soYz3+fa4lrC93IEkcw==} @@ -53447,18 +45056,26 @@ snapshots: typescript: 5.1.6 dev: true - rollup-pluginutils@1.5.2: + /rollup-pluginutils@1.5.2: + resolution: {integrity: sha512-SjdWWWO/CUoMpDy8RUbZ/pSpG68YHmhk5ROKNIoi2En9bJ8bTt3IhYi254RWiTclQmL7Awmrq+rZFOhZkJAHmQ==} dependencies: estree-walker: 0.2.1 minimatch: 3.1.2 + dev: true - rollup-pluginutils@2.8.2: + /rollup-pluginutils@2.8.2: + resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} dependencies: estree-walker: 0.6.1 + dev: true - rollup@2.79.1: + /rollup@2.79.1: + resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} + engines: {node: '>=10.0.0'} + hasBin: true optionalDependencies: fsevents: 2.3.3 + dev: true /rollup@4.18.1: resolution: {integrity: sha512-Elx2UT8lzxxOXMpy5HWQGZqkrQOtrVDDa/bm9l10+U4rQnVzbL/LgZ4NOM1MPIDyHk69W4InuYDF5dzRh4Kw1A==} @@ -53484,12 +45101,19 @@ snapshots: '@rollup/rollup-win32-ia32-msvc': 4.18.1 '@rollup/rollup-win32-x64-msvc': 4.18.1 fsevents: 2.3.3 + dev: true - rsvp@4.8.5: {} + /rsvp@4.8.5: + resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==} + engines: {node: 6.* || >= 7.*} - run-async@2.4.1: {} + /run-async@2.4.1: + resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} + engines: {node: '>=0.12.0'} + dev: true - run-parallel@1.2.0: + /run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} dependencies: queue-microtask: 1.2.3 @@ -53497,8 +45121,11 @@ snapshots: resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} dependencies: tslib: 2.6.3 + dev: true - safe-array-concat@1.1.2: + /safe-array-concat@1.1.2: + resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} + engines: {node: '>=0.4'} dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 @@ -53509,25 +45136,37 @@ snapshots: resolution: {integrity: sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==} dev: false - safe-buffer@5.1.2: {} + /safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} - safe-buffer@5.2.1: {} + /safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - safe-identifier@0.4.2: {} + /safe-identifier@0.4.2: + resolution: {integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==} + dev: true - safe-regex-test@1.0.3: + /safe-regex-test@1.0.3: + resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-regex: 1.1.4 - safe-regex@1.1.0: + /safe-regex@1.1.0: + resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} dependencies: ret: 0.1.15 - safer-buffer@2.1.2: {} + /safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - sane@4.1.0: + /sane@4.1.0: + resolution: {integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==} + engines: {node: 6.* || 8.* || >= 10.*} + deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added + hasBin: true dependencies: '@cnakazawa/watch': 1.0.4 anymatch: 2.0.0(supports-color@6.1.0) @@ -53541,21 +45180,40 @@ snapshots: transitivePeerDependencies: - supports-color - sass-loader@12.6.0(sass@1.77.6)(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /sass-loader@12.6.0(sass@1.77.6)(webpack@5.84.1): + resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} + engines: {node: '>= 12.13.0'} + peerDependencies: + fibers: '>= 3.1.0' + node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 + sass: ^1.3.0 + sass-embedded: '*' + webpack: 5.84.1 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + sass-embedded: + optional: true dependencies: klona: 2.0.6 neo-async: 2.6.2 - webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: sass: 1.77.6 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - sass@1.77.6: + /sass@1.77.6: + resolution: {integrity: sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==} + engines: {node: '>=14.0.0'} + hasBin: true dependencies: chokidar: 3.6.0 immutable: 4.3.6 source-map-js: 1.2.0 + dev: true /sax@1.2.4: resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} @@ -53567,13 +45225,19 @@ snapshots: dev: true optional: true - saxes@5.0.1: + /saxes@5.0.1: + resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} + engines: {node: '>=10'} dependencies: xmlchars: 2.2.0 + dev: true - saxes@6.0.0: + /saxes@6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} dependencies: xmlchars: 2.2.0 + dev: true /scheduler@0.19.1: resolution: {integrity: sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==} @@ -53587,74 +45251,106 @@ snapshots: dependencies: loose-envify: 1.4.0 - schema-utils@0.4.7: + /schema-utils@0.4.7: + resolution: {integrity: sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==} + engines: {node: '>= 4'} dependencies: ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) + dev: true - schema-utils@1.0.0: + /schema-utils@1.0.0: + resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==} + engines: {node: '>= 4'} dependencies: ajv: 6.12.6 ajv-errors: 1.0.1(ajv@6.12.6) ajv-keywords: 3.5.2(ajv@6.12.6) - schema-utils@2.7.0: + /schema-utils@2.7.0: + resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} + engines: {node: '>= 8.9.0'} dependencies: '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - schema-utils@2.7.1: + /schema-utils@2.7.1: + resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} + engines: {node: '>= 8.9.0'} dependencies: '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - schema-utils@3.3.0: + /schema-utils@3.3.0: + resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} + engines: {node: '>= 10.13.0'} dependencies: '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - schema-utils@4.2.0: + /schema-utils@4.2.0: + resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} + engines: {node: '>= 12.13.0'} dependencies: '@types/json-schema': 7.0.15 ajv: 8.16.0 ajv-formats: 2.1.1(ajv@8.16.0) ajv-keywords: 5.1.0(ajv@8.16.0) - scroll@3.0.1: {} + /scroll@3.0.1: + resolution: {integrity: sha512-pz7y517OVls1maEzlirKO5nPYle9AXsFzTMNJrRGmT951mzpIBy7sNHOg5o/0MQd/NqliCiWnAi0kZneMPFLcg==} + dev: false - scrollparent@2.1.0: {} + /scrollparent@2.1.0: + resolution: {integrity: sha512-bnnvJL28/Rtz/kz2+4wpBjHzWoEzXhVg/TE8BeVGJHUqE8THNIRnDxDWMktwM+qahvlRdvlLdsQfYe+cuqfZeA==} + dev: false - secure-compare@3.0.1: {} + /secure-compare@3.0.1: + resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==} + dev: true - select-hose@2.0.0: {} + /select-hose@2.0.0: + resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} - selfsigned@1.10.14: + /selfsigned@1.10.14: + resolution: {integrity: sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==} dependencies: node-forge: 0.10.0 - selfsigned@2.4.1: + /selfsigned@2.4.1: + resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} + engines: {node: '>=10'} dependencies: '@types/node-forge': 1.3.11 node-forge: 1.3.1 + dev: true - semantic-ui-css@2.5.0: + /semantic-ui-css@2.5.0: + resolution: {integrity: sha512-jIWn3WXXE2uSaWCcB+gVJVRG3masIKtTMNEP2X8Aw909H2rHpXGneYOxzO3hT8TpyvB5/dEEo9mBFCitGwoj1A==} dependencies: jquery: 3.7.1 + dev: true - semantic-ui-less@2.5.0: + /semantic-ui-less@2.5.0: + resolution: {integrity: sha512-Nlp8iR0otCQB74Yqob2Dxpsm5H9YAp3NvQ3sWDediwFjrd/l3Leu9md2O82UU5n5hOSqu95xnTok55eIAhlTjg==} dependencies: jquery: 3.7.1 + dev: true - semantic-ui-react@2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /semantic-ui-react@2.1.5(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-nIqmmUNpFHfovEb+RI2w3E2/maZQutd8UIWyRjf1SLse+XF51hI559xbz/sLN3O6RpLjr/echLOOXwKCirPy3Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@babel/runtime': 7.24.7 - '@fluentui/react-component-event-listener': 0.63.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-component-ref': 0.63.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@fluentui/react-component-event-listener': 0.63.1(react-dom@18.3.1)(react@18.3.1) + '@fluentui/react-component-ref': 0.63.1(react-dom@18.3.1)(react@18.3.1) '@popperjs/core': 2.11.8 - '@semantic-ui-react/event-stack': 3.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@semantic-ui-react/event-stack': 3.1.3(react-dom@18.3.1)(react@18.3.1) clsx: 1.2.1 keyboard-key: 1.1.0 lodash: 4.17.21 @@ -53663,26 +45359,44 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - react-popper: 2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-popper: 2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1)(react@18.3.1) shallowequal: 1.1.0 + dev: false - semver-diff@3.1.1: + /semver-diff@3.1.1: + resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==} + engines: {node: '>=8'} dependencies: semver: 6.3.1 + dev: false - semver-regex@4.0.5: {} + /semver-regex@4.0.5: + resolution: {integrity: sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==} + engines: {node: '>=12'} + dev: true - semver-truncate@3.0.0: + /semver-truncate@3.0.0: + resolution: {integrity: sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==} + engines: {node: '>=12'} dependencies: semver: 7.6.2 + dev: true - semver@5.7.2: {} + /semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true - semver@6.3.1: {} + /semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true - semver@7.3.4: + /semver@7.3.4: + resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} + engines: {node: '>=10'} + hasBin: true dependencies: lru-cache: 6.0.0 + dev: true /semver@7.5.3: resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} @@ -53705,7 +45419,9 @@ snapshots: engines: {node: '>=10'} hasBin: true - send@0.18.0(supports-color@6.1.0): + /send@0.18.0(supports-color@6.1.0): + resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} + engines: {node: '>= 0.8.0'} dependencies: debug: 2.6.9(supports-color@6.1.0) depd: 2.0.0 @@ -53723,15 +45439,19 @@ snapshots: transitivePeerDependencies: - supports-color - serialize-javascript@5.0.1: + /serialize-javascript@5.0.1: + resolution: {integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==} dependencies: randombytes: 2.1.0 - serialize-javascript@6.0.2: + /serialize-javascript@6.0.2: + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} dependencies: randombytes: 2.1.0 - serve-favicon@2.5.0: + /serve-favicon@2.5.0: + resolution: {integrity: sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==} + engines: {node: '>= 0.8.0'} dependencies: etag: 1.8.1 fresh: 0.5.2 @@ -53740,7 +45460,9 @@ snapshots: safe-buffer: 5.1.1 dev: false - serve-index@1.9.1(supports-color@6.1.0): + /serve-index@1.9.1(supports-color@6.1.0): + resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} + engines: {node: '>= 0.8.0'} dependencies: accepts: 1.3.8 batch: 0.6.1 @@ -53752,7 +45474,9 @@ snapshots: transitivePeerDependencies: - supports-color - serve-static@1.15.0(supports-color@6.1.0): + /serve-static@1.15.0(supports-color@6.1.0): + resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} + engines: {node: '>= 0.8.0'} dependencies: encodeurl: 1.0.2 escape-html: 1.0.3 @@ -53761,11 +45485,16 @@ snapshots: transitivePeerDependencies: - supports-color - set-blocking@2.0.0: {} + /set-blocking@2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} - set-cookie-parser@2.6.0: {} + /set-cookie-parser@2.6.0: + resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==} + dev: true - set-function-length@1.2.2: + /set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} dependencies: define-data-property: 1.1.4 es-errors: 1.3.0 @@ -53774,7 +45503,9 @@ snapshots: gopd: 1.0.1 has-property-descriptors: 1.0.2 - set-function-name@2.0.2: + /set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} dependencies: define-data-property: 1.1.4 es-errors: 1.3.0 @@ -53797,11 +45528,15 @@ snapshots: is-plain-object: 2.0.4 split-string: 3.1.0 - setprototypeof@1.1.0: {} + /setprototypeof@1.1.0: + resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} - setprototypeof@1.2.0: {} + /setprototypeof@1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} - shallow-clone@0.1.2: + /shallow-clone@0.1.2: + resolution: {integrity: sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==} + engines: {node: '>=0.10.0'} dependencies: is-extendable: 0.1.1 kind-of: 2.0.1 @@ -53809,87 +45544,143 @@ snapshots: mixin-object: 2.0.1 dev: true - shallow-clone@3.0.1: + /shallow-clone@3.0.1: + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} dependencies: kind-of: 6.0.3 - shallowequal@1.1.0: {} + /shallowequal@1.1.0: + resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} - shebang-command@1.2.0: + /shebang-command@1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} dependencies: shebang-regex: 1.0.0 - shebang-command@2.0.0: + /shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} dependencies: shebang-regex: 3.0.0 - shebang-regex@1.0.0: {} + /shebang-regex@1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} - shebang-regex@3.0.0: {} + /shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} - shell-quote@1.8.1: {} + /shell-quote@1.8.1: + resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} + dev: true - shelljs@0.8.5: + /shelljs@0.8.5: + resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} + engines: {node: '>=4'} + hasBin: true dependencies: glob: 7.2.3 interpret: 1.4.0 rechoir: 0.6.2 + dev: false - shellwords@0.1.1: + /shellwords@0.1.1: + resolution: {integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==} + requiresBuild: true + dev: true optional: true - side-channel@1.0.6: + /side-channel@1.0.6: + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 get-intrinsic: 1.2.4 object-inspect: 1.13.2 - signal-exit@3.0.7: {} + /signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} /signal-exit@4.1.0: resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} engines: {node: '>=14'} - simple-git@1.132.0: + /simple-git@1.132.0: + resolution: {integrity: sha512-xauHm1YqCTom1sC9eOjfq3/9RKiUA9iPnxBbrY2DdL8l4ADMu0jjM5l5lphQP5YWNqAL2aXC/OeuQ76vHtW5fg==} dependencies: - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) transitivePeerDependencies: - supports-color + dev: true - sirv@2.0.4: + /sirv@2.0.4: + resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} + engines: {node: '>= 10'} dependencies: '@polka/url': 1.0.0-next.25 mrmime: 2.0.0 totalist: 3.0.1 - sisteransi@1.0.5: {} + /sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - slash@2.0.0: {} + /slash@1.0.0: + resolution: {integrity: sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==} + engines: {node: '>=0.10.0'} + dev: true - slash@3.0.0: {} + /slash@2.0.0: + resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==} + engines: {node: '>=6'} - slash@4.0.0: {} + /slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} - slash@5.1.0: {} + /slash@4.0.0: + resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} + engines: {node: '>=12'} + dev: true - slashes@2.0.2: {} + /slash@5.1.0: + resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} + engines: {node: '>=14.16'} + dev: true - slice-ansi@3.0.0: + /slashes@2.0.2: + resolution: {integrity: sha512-68p+QkFAQQRetIUzNXAdktNJr8AYLxJukjBegYQz8F7VATsBJG621UYtY/vS2j9jerxdJ1k6Tc25K4DXEw1d5w==} + dev: false + + /slice-ansi@3.0.0: + resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} + engines: {node: '>=8'} dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 + dev: true - slice-ansi@4.0.0: + /slice-ansi@4.0.0: + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} + engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - smart-buffer@4.2.0: {} + /smart-buffer@4.2.0: + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + dev: true - smartwrap@2.0.2: + /smartwrap@2.0.2: + resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} + engines: {node: '>=6'} + hasBin: true dependencies: array.prototype.flat: 1.3.2 breakword: 1.0.6 @@ -53897,6 +45688,7 @@ snapshots: strip-ansi: 6.0.1 wcwidth: 1.0.1 yargs: 15.4.1 + dev: true /snake-case@3.0.4: resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} @@ -53913,11 +45705,15 @@ snapshots: isobject: 3.0.1 snapdragon-util: 3.0.1 - snapdragon-util@3.0.1: + /snapdragon-util@3.0.1: + resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} + engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 - snapdragon@0.8.2(supports-color@6.1.0): + /snapdragon@0.8.2(supports-color@6.1.0): + resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} + engines: {node: '>=0.10.0'} dependencies: base: 0.11.2 debug: 2.6.9(supports-color@6.1.0) @@ -53930,18 +45726,9 @@ snapshots: transitivePeerDependencies: - supports-color - sockjs-client@1.6.1: - dependencies: - debug: 3.2.7(supports-color@8.1.1) - eventsource: 2.0.2 - faye-websocket: 0.11.4 - inherits: 2.0.4 - url-parse: 1.5.10 - transitivePeerDependencies: - - supports-color - optional: true - - sockjs-client@1.6.1(supports-color@6.1.0): + /sockjs-client@1.6.1(supports-color@6.1.0): + resolution: {integrity: sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==} + engines: {node: '>=12'} dependencies: debug: 3.2.7(supports-color@6.1.0) eventsource: 2.0.2 @@ -53951,51 +45738,80 @@ snapshots: transitivePeerDependencies: - supports-color - sockjs@0.3.24: + /sockjs@0.3.24: + resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} dependencies: faye-websocket: 0.11.4 uuid: 8.3.2 websocket-driver: 0.7.4 - socks-proxy-agent@7.0.0: + /socks-proxy-agent@7.0.0: + resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} + engines: {node: '>= 10'} dependencies: agent-base: 6.0.2 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) socks: 2.8.3 transitivePeerDependencies: - supports-color + dev: true - socks@2.8.3: + /socks@2.8.3: + resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} + engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} dependencies: ip-address: 9.0.5 smart-buffer: 4.2.0 + dev: true - sort-keys-length@1.0.1: + /sort-keys-length@1.0.1: + resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==} + engines: {node: '>=0.10.0'} dependencies: sort-keys: 1.1.2 + dev: true - sort-keys@1.1.2: + /sort-keys@1.1.2: + resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==} + engines: {node: '>=0.10.0'} dependencies: is-plain-obj: 1.1.0 + dev: true - sort-keys@2.0.0: + /sort-keys@2.0.0: + resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} + engines: {node: '>=4'} dependencies: is-plain-obj: 1.1.0 + dev: true - sort-keys@4.2.0: + /sort-keys@4.2.0: + resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==} + engines: {node: '>=8'} dependencies: is-plain-obj: 2.1.0 + dev: true - source-list-map@2.0.1: {} + /source-list-map@2.0.1: + resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==} - source-map-js@1.2.0: {} + /source-map-js@1.2.0: + resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} + engines: {node: '>=0.10.0'} - source-map-loader@0.2.4: + /source-map-loader@0.2.4: + resolution: {integrity: sha512-OU6UJUty+i2JDpTItnizPrlpOIBLmQbWMuBg9q5bVtnHACqw1tn9nNwqJLbv0/00JjnJb/Ee5g5WS5vrRv7zIQ==} + engines: {node: '>= 6'} dependencies: async: 2.6.4 loader-utils: 1.4.2 + dev: true - source-map-loader@3.0.2(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /source-map-loader@3.0.2(webpack@5.84.1): + resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: abab: 2.0.6 iconv-lite: 0.6.3 @@ -54003,7 +45819,9 @@ snapshots: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - source-map-resolve@0.5.3: + /source-map-resolve@0.5.3: + resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} + deprecated: See https://github.com/lydell/source-map-resolve#deprecated dependencies: atob: 2.1.2 decode-uri-component: 0.2.2 @@ -54023,31 +45841,46 @@ snapshots: buffer-from: 1.1.2 source-map: 0.6.1 - source-map-support@0.5.19: + /source-map-support@0.5.19: + resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} dependencies: buffer-from: 1.1.2 source-map: 0.6.1 + dev: true - source-map-support@0.5.21: + /source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - source-map-url@0.4.1: {} - - source-map@0.5.7: {} + /source-map-url@0.4.1: + resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} + deprecated: See https://github.com/lydell/source-map-url#deprecated - source-map@0.6.1: {} + /source-map@0.5.7: + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} - source-map@0.7.4: {} + /source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} - sourcemap-codec@1.4.8: {} + /source-map@0.7.4: + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} + engines: {node: '>= 8'} - space-separated-tokens@1.1.5: {} + /sourcemap-codec@1.4.8: + resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} + deprecated: Please use @jridgewell/sourcemap-codec instead + dev: true - space-separated-tokens@2.0.2: {} + /space-separated-tokens@1.1.5: + resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} - spawn-wrap@2.0.0: + /spawn-wrap@2.0.0: + resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==} + engines: {node: '>=8'} dependencies: foreground-child: 2.0.0 is-windows: 1.0.2 @@ -54055,38 +45888,35 @@ snapshots: rimraf: 3.0.2 signal-exit: 3.0.7 which: 2.0.2 + dev: true - spawndamnit@2.0.0: + /spawndamnit@2.0.0: + resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} dependencies: cross-spawn: 5.1.0 signal-exit: 3.0.7 + dev: true - spdx-correct@3.2.0: + /spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.18 - spdx-exceptions@2.5.0: {} + /spdx-exceptions@2.5.0: + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} - spdx-expression-parse@3.0.1: + /spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} dependencies: spdx-exceptions: 2.5.0 spdx-license-ids: 3.0.18 - spdx-license-ids@3.0.18: {} - - spdy-transport@3.0.0: - dependencies: - debug: 4.3.5(supports-color@8.1.1) - detect-node: 2.1.0 - hpack.js: 2.1.6 - obuf: 1.1.2 - readable-stream: 3.6.2 - wbuf: 1.7.3 - transitivePeerDependencies: - - supports-color + /spdx-license-ids@3.0.18: + resolution: {integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==} - spdy-transport@3.0.0(supports-color@6.1.0): + /spdy-transport@3.0.0(supports-color@6.1.0): + resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} dependencies: debug: 4.3.5(supports-color@6.1.0) detect-node: 2.1.0 @@ -54097,17 +45927,9 @@ snapshots: transitivePeerDependencies: - supports-color - spdy@4.0.2: - dependencies: - debug: 4.3.5(supports-color@8.1.1) - handle-thing: 2.0.1 - http-deceiver: 1.2.7 - select-hose: 2.0.0 - spdy-transport: 3.0.0 - transitivePeerDependencies: - - supports-color - - spdy@4.0.2(supports-color@6.1.0): + /spdy@4.0.2(supports-color@6.1.0): + resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} + engines: {node: '>=6.0.0'} dependencies: debug: 4.3.5(supports-color@6.1.0) handle-thing: 2.0.1 @@ -54117,25 +45939,40 @@ snapshots: transitivePeerDependencies: - supports-color - split-on-first@1.1.0: {} + /split-on-first@1.1.0: + resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} + engines: {node: '>=6'} + dev: true - split-string@3.1.0: + /split-string@3.1.0: + resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} + engines: {node: '>=0.10.0'} dependencies: extend-shallow: 3.0.2 - split2@3.2.2: + /split2@3.2.2: + resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} dependencies: readable-stream: 3.6.2 + dev: true - split@1.0.1: + /split@1.0.1: + resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} dependencies: through: 2.3.8 + dev: true - sprintf-js@1.0.3: {} + /sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - sprintf-js@1.1.3: {} + /sprintf-js@1.1.3: + resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} + dev: true - sshpk@1.18.0: + /sshpk@1.18.0: + resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} + engines: {node: '>=0.10.0'} + hasBin: true dependencies: asn1: 0.2.6 assert-plus: 1.0.0 @@ -54146,42 +45983,65 @@ snapshots: jsbn: 0.1.1 safer-buffer: 2.1.2 tweetnacl: 0.14.5 + dev: true - ssri@8.0.1: + /ssri@8.0.1: + resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} + engines: {node: '>= 8'} dependencies: minipass: 3.3.6 dev: false - ssri@9.0.1: + /ssri@9.0.1: + resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: minipass: 3.3.6 + dev: true - stable@0.1.8: {} + /stable@0.1.8: + resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} + deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' - stack-utils@2.0.6: + /stack-utils@2.0.6: + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + engines: {node: '>=10'} dependencies: escape-string-regexp: 2.0.0 - stackframe@1.3.4: {} + /stackframe@1.3.4: + resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} - state-local@1.0.7: {} + /state-local@1.0.7: + resolution: {integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==} + dev: false - state-toggle@1.0.3: {} + /state-toggle@1.0.3: + resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==} - static-extend@0.1.2: + /static-extend@0.1.2: + resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} + engines: {node: '>=0.10.0'} dependencies: define-property: 0.2.5 object-copy: 0.1.0 - statuses@1.5.0: {} + /statuses@1.5.0: + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} + engines: {node: '>= 0.6'} - statuses@2.0.1: {} + /statuses@2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} - stop-iteration-iterator@1.0.0: + /stop-iteration-iterator@1.0.0: + resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} + engines: {node: '>= 0.4'} dependencies: internal-slot: 1.0.7 - store2@2.14.3: {} + /store2@2.14.3: + resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==} /storybook@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): resolution: {integrity: sha512-+Ychak5QtcTx8EuQzu7eilw+65sk6q1LdI68vb1VOIYD29PEEC7MsZGKPi6AKYNbdhGp0cGu0j3Bf1TxGOBFEA==} @@ -54203,6 +46063,7 @@ snapshots: - utf-8-validate - vue-template-compiler - webpack-cli + dev: false /storybook@7.6.9: resolution: {integrity: sha512-zsPLvhbEfheqt9bN7X38vgrhLcxSyn7HdWbjZC+02hgNQ0U1jZ4VfrzNbJSqFxzxU+B5gdDZSFMui7OUx9A9Ew==} @@ -54224,49 +46085,71 @@ snapshots: resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} dependencies: mixme: 0.5.10 + dev: true - streamroller@1.0.6: + /streamroller@1.0.6: + resolution: {integrity: sha512-3QC47Mhv3/aZNFpDDVO44qQb9gwB9QggMEE0sQmkTAwBVYdBRWISdsywlkfm5II1Q5y/pmrHflti/IgmIzdDBg==} + engines: {node: '>=6.0'} + deprecated: 1.x is no longer supported. Please upgrade to 3.x or higher. dependencies: async: 2.6.4 date-format: 2.1.0 - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7(supports-color@6.1.0) fs-extra: 7.0.1 lodash: 4.17.21 transitivePeerDependencies: - supports-color + dev: true - strict-event-emitter@0.2.8: + /strict-event-emitter@0.2.8: + resolution: {integrity: sha512-KDf/ujU8Zud3YaLtMCcTI4xkZlZVIYxTLr+XIULexP+77EEVWixeXroLUXQXiVtH4XH2W7jr/3PT1v3zBuvc3A==} dependencies: events: 3.3.0 + dev: true - strict-uri-encode@2.0.0: {} + /strict-uri-encode@2.0.0: + resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} + engines: {node: '>=4'} + dev: true - string-hash@1.1.3: {} + /string-hash@1.1.3: + resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} + dev: true - string-length@4.0.2: + /string-length@4.0.2: + resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} + engines: {node: '>=10'} dependencies: char-regex: 1.0.2 strip-ansi: 6.0.1 - string-width@3.1.0: + /string-width@3.1.0: + resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==} + engines: {node: '>=6'} dependencies: emoji-regex: 7.0.3 is-fullwidth-code-point: 2.0.0 strip-ansi: 5.2.0 - string-width@4.2.3: + /string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - string-width@5.1.2: + /string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 strip-ansi: 7.1.0 - string.prototype.matchall@4.0.11: + /string.prototype.matchall@4.0.11: + resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -54281,7 +46164,9 @@ snapshots: set-function-name: 2.0.2 side-channel: 1.0.6 - string.prototype.padend@3.1.6: + /string.prototype.padend@3.1.6: + resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -54289,7 +46174,9 @@ snapshots: es-object-atoms: 1.0.0 dev: false - string.prototype.padstart@3.1.6: + /string.prototype.padstart@3.1.6: + resolution: {integrity: sha512-1y15lz7otgfRTAVK5qbp3eHIga+w8j7+jIH+7HpUrOfnLVl6n0hbspi4EXf4tR+PNOpBjPstltemkx0SvViOCg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -54297,68 +46184,92 @@ snapshots: es-object-atoms: 1.0.0 dev: false - string.prototype.trim@1.2.9: + /string.prototype.trim@1.2.9: + resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 - string.prototype.trimend@1.0.8: + /string.prototype.trimend@1.0.8: + resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - string.prototype.trimstart@1.0.8: + /string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - string_decoder@0.10.31: {} + /string_decoder@0.10.31: + resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} + dev: false - string_decoder@1.1.1: + /string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} dependencies: safe-buffer: 5.1.2 - string_decoder@1.3.0: + /string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} dependencies: safe-buffer: 5.2.1 - stringify-entities@4.0.4: - dependencies: - character-entities-html4: 2.1.0 - character-entities-legacy: 3.0.0 - - strip-ansi@3.0.1: + /strip-ansi@3.0.1: + resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} + engines: {node: '>=0.10.0'} dependencies: ansi-regex: 2.1.1 - strip-ansi@4.0.0: + /strip-ansi@4.0.0: + resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==} + engines: {node: '>=4'} dependencies: ansi-regex: 3.0.1 + dev: true - strip-ansi@5.2.0: + /strip-ansi@5.2.0: + resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} + engines: {node: '>=6'} dependencies: ansi-regex: 4.1.1 - strip-ansi@6.0.1: + /strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} dependencies: ansi-regex: 5.0.1 - strip-ansi@7.1.0: + /strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} dependencies: ansi-regex: 6.0.1 - strip-bom@2.0.0: + /strip-bom@2.0.0: + resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: is-utf8: 0.2.1 + dev: false optional: true - strip-bom@3.0.0: {} + /strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + dev: true - strip-bom@4.0.0: {} + /strip-bom@4.0.0: + resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + engines: {node: '>=8'} /strip-color@0.1.0: resolution: {integrity: sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==} @@ -54369,7 +46280,9 @@ snapshots: resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} engines: {node: '>=0.10.0'} - strip-final-newline@2.0.0: {} + /strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} /strip-final-newline@3.0.0: resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} @@ -54383,9 +46296,12 @@ snapshots: requiresBuild: true dependencies: get-stdin: 4.0.1 + dev: false optional: true - strip-indent@3.0.0: + /strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} dependencies: min-indent: 1.0.1 @@ -54402,19 +46318,32 @@ snapshots: hasBin: true dev: false - strip-json-comments@2.0.1: {} + /strip-json-comments@2.0.1: + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} + engines: {node: '>=0.10.0'} - strip-json-comments@3.1.1: {} + /strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} - strip-outer@2.0.0: {} + /strip-outer@2.0.0: + resolution: {integrity: sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true - strnum@1.0.5: {} + /strnum@1.0.5: + resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} + dev: true - strong-log-transformer@2.1.0: + /strong-log-transformer@2.1.0: + resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} + engines: {node: '>=4'} + hasBin: true dependencies: duplexer: 0.1.2 minimist: 1.2.8 through: 2.3.8 + dev: true /strtok3@7.1.0: resolution: {integrity: sha512-19dQEwG6Jd+VabjPRyBhymIF069vZiqWSZa2jJBoKJTsqGKnTxowGoQaLnz+yLARfDI041IUQekyPUMWElOgsQ==} @@ -54424,51 +46353,72 @@ snapshots: peek-readable: 5.1.1 dev: true - style-inject@0.3.0: {} + /style-inject@0.3.0: + resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==} + dev: true - style-loader@0.23.1: + /style-loader@0.23.1: + resolution: {integrity: sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==} + engines: {node: '>= 0.12.0'} dependencies: loader-utils: 1.4.2 schema-utils: 1.0.0 + dev: true - style-loader@1.3.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /style-loader@1.3.0(webpack@5.84.1): + resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==} + engines: {node: '>= 8.9.0'} + peerDependencies: + webpack: 5.84.1 dependencies: loader-utils: 2.0.4 schema-utils: 2.7.1 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: false - style-loader@2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /style-loader@2.0.0(webpack@5.84.1): + resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: false - style-loader@3.3.4(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /style-loader@3.3.4(webpack@5.84.1): + resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - style-to-js@1.1.1: + /style-to-js@1.1.1: + resolution: {integrity: sha512-RJ18Z9t2B02sYhZtfWKQq5uplVctgvjTfLWT7+Eb1zjUjIrWzX5SdlkwLGQozrqarTmEzJJ/YmdNJCUNI47elg==} dependencies: style-to-object: 0.3.0 + dev: false - style-to-object@0.3.0: + /style-to-object@0.3.0: + resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==} dependencies: inline-style-parser: 0.1.1 - style-to-object@1.0.6: - dependencies: - inline-style-parser: 0.2.3 - - styled-components@4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /styled-components@4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-RNqj14kYzw++6Sr38n7197xG33ipEOktGElty4I70IKzQF1jzaD1U4xQ+Ny/i03UUhHlC5NWEO+d8olRCDji6g==} + requiresBuild: true + peerDependencies: + react: '>= 16.3.0' + react-dom: '>= 16.3.0' dependencies: '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0) '@babel/traverse': 7.24.7(supports-color@5.5.0) '@emotion/is-prop-valid': 0.8.8 '@emotion/unitless': 0.7.5 - babel-plugin-styled-components: 2.1.4(@babel/core@7.24.7)(styled-components@4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(supports-color@5.5.0) + babel-plugin-styled-components: 2.1.4(@babel/core@7.24.7)(styled-components@4.4.1)(supports-color@5.5.0) css-to-react-native: 2.3.2 memoize-one: 5.2.1 merge-anything: 2.4.4 @@ -54481,6 +46431,7 @@ snapshots: supports-color: 5.5.0 transitivePeerDependencies: - '@babel/core' + dev: false /stylehacks@5.1.1(postcss@8.4.39): resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} @@ -54502,14 +46453,23 @@ snapshots: browserslist: 4.23.1 postcss: 8.4.39 postcss-selector-parser: 6.1.0 + dev: true - stylis-rule-sheet@0.0.10(stylis@3.5.4): + /stylis-rule-sheet@0.0.10(stylis@3.5.4): + resolution: {integrity: sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==} + peerDependencies: + stylis: ^3.5.0 dependencies: stylis: 3.5.4 + dev: false - stylis@3.5.4: {} + /stylis@3.5.4: + resolution: {integrity: sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==} + dev: false - stylis@4.2.0: {} + /stylis@4.2.0: + resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} + dev: false /stylus-loader@7.1.3(stylus@0.59.0)(webpack@5.84.1): resolution: {integrity: sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==} @@ -54535,37 +46495,61 @@ snapshots: source-map: 0.7.4 transitivePeerDependencies: - supports-color + dev: true - supports-color@2.0.0: {} + /supports-color@2.0.0: + resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} + engines: {node: '>=0.8.0'} + dev: true - supports-color@5.5.0: + /supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} dependencies: has-flag: 3.0.0 - supports-color@6.1.0: + /supports-color@6.1.0: + resolution: {integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==} + engines: {node: '>=6'} dependencies: has-flag: 3.0.0 - supports-color@7.2.0: + /supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} dependencies: has-flag: 4.0.0 - supports-color@8.1.1: + /supports-color@8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} dependencies: has-flag: 4.0.0 - supports-hyperlinks@2.3.0: + /supports-hyperlinks@2.3.0: + resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} + engines: {node: '>=8'} dependencies: has-flag: 4.0.0 supports-color: 7.2.0 + dev: true - supports-preserve-symlinks-flag@1.0.0: {} + /supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} - svg-country-flags@1.2.10: {} + /svg-country-flags@1.2.10: + resolution: {integrity: sha512-xrqwo0TYf/h2cfPvGpjdSuSguUbri4vNNizBnwzoZnX0xGo3O5nGJMlbYEp7NOYcnPGBm6LE2axqDWSB847bLw==} + dev: false - svg-parser@2.0.4: {} + /svg-parser@2.0.4: + resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} - svgo@1.3.2: + /svgo@1.3.2: + resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} + engines: {node: '>=4.0.0'} + deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. + hasBin: true dependencies: chalk: 2.4.2 coa: 2.0.2 @@ -54582,7 +46566,10 @@ snapshots: util.promisify: 1.0.1 dev: true - svgo@2.8.0: + /svgo@2.8.0: + resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} + engines: {node: '>=10.13.0'} + hasBin: true dependencies: '@trysound/sax': 0.2.0 commander: 7.2.0 @@ -54592,7 +46579,10 @@ snapshots: picocolors: 1.0.1 stable: 0.1.8 - svgo@3.3.2: + /svgo@3.3.2: + resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} + engines: {node: '>=14.0.0'} + hasBin: true dependencies: '@trysound/sax': 0.2.0 commander: 7.2.0 @@ -54613,15 +46603,23 @@ snapshots: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - swr@2.2.5(react@18.3.1): + /swr@2.2.5(react@18.3.1): + resolution: {integrity: sha512-QtxqyclFeAsxEUeZIYmsaQ0UjimSq1RZ9Un7I68/0ClKK/U3LoyQunwkQfJZr2fc22DfIXLNDc2wFyTEikCUpg==} + peerDependencies: + react: ^16.11.0 || ^17.0.0 || ^18.0.0 dependencies: client-only: 0.0.1 react: 18.3.1 use-sync-external-store: 1.2.2(react@18.3.1) + dev: false - symbol-tree@3.2.4: {} + /symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + dev: true - symbol.prototype.description@1.0.6: + /symbol.prototype.description@1.0.6: + resolution: {integrity: sha512-VgVgtEabORsQtmuindtO7v8fF+bsKxUkvEMFj+ecBK6bomrwv5JUSWdMoC3ypa9+Jaqp/wOzkWk4f6I+p5GzyA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 @@ -54630,13 +46628,19 @@ snapshots: object.getownpropertydescriptors: 2.1.8 dev: false - synchronous-promise@2.0.17: {} + /synchronous-promise@2.0.17: + resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==} - synckit@0.6.2: + /synckit@0.6.2: + resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==} + engines: {node: '>=12.20'} dependencies: tslib: 2.6.3 + dev: true - table@6.8.2: + /table@6.8.2: + resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==} + engines: {node: '>=10.0.0'} dependencies: ajv: 8.16.0 lodash.truncate: 4.4.2 @@ -54644,9 +46648,13 @@ snapshots: string-width: 4.2.3 strip-ansi: 6.0.1 - tapable@1.1.3: {} + /tapable@1.1.3: + resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} + engines: {node: '>=6'} - tapable@2.2.1: {} + /tapable@2.2.1: + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} /tar-fs@2.1.1: resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} @@ -54666,8 +46674,11 @@ snapshots: fs-constants: 1.0.0 inherits: 2.0.4 readable-stream: 3.6.2 + dev: true - tar@6.2.1: + /tar@6.2.1: + resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} + engines: {node: '>=10'} dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 @@ -54721,14 +46732,24 @@ snapshots: unique-string: 2.0.0 dev: true - term-size@2.2.1: {} + /term-size@2.2.1: + resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} + engines: {node: '>=8'} + dev: true - terminal-link@2.1.1: + /terminal-link@2.1.1: + resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} + engines: {node: '>=8'} dependencies: ansi-escapes: 4.3.2 supports-hyperlinks: 2.3.0 + dev: true - terser-webpack-plugin@4.2.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /terser-webpack-plugin@4.2.3(webpack@5.84.1): + resolution: {integrity: sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: cacache: 15.3.0 find-cache-dir: 3.3.2 @@ -54769,7 +46790,10 @@ snapshots: terser: 5.31.1 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - terser@4.8.1: + /terser@4.8.1: + resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} + engines: {node: '>=6.0.0'} + hasBin: true dependencies: acorn: 8.12.0 commander: 2.20.3 @@ -54777,24 +46801,37 @@ snapshots: source-map-support: 0.5.21 dev: false - terser@5.31.1: + /terser@5.31.1: + resolution: {integrity: sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==} + engines: {node: '>=10'} + hasBin: true dependencies: '@jridgewell/source-map': 0.3.6 acorn: 8.12.0 commander: 2.20.3 source-map-support: 0.5.21 - test-exclude@6.0.0: + /test-exclude@6.0.0: + resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} + engines: {node: '>=8'} dependencies: '@istanbuljs/schema': 0.1.3 glob: 7.2.3 minimatch: 3.1.2 - text-extensions@1.9.0: {} + /text-extensions@1.9.0: + resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} + engines: {node: '>=0.10'} + dev: true - text-table@0.2.0: {} + /text-table@0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - thread-loader@2.1.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /thread-loader@2.1.3(webpack@5.84.1): + resolution: {integrity: sha512-wNrVKH2Lcf8ZrWxDF/khdlLlsTMczdcwPA9VEK4c2exlEPynYWxi9op3nPTo5lAnDIkE0rQEB3VBP+4Zncc9Hg==} + engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 dependencies: loader-runner: 2.4.0 loader-utils: 1.4.2 @@ -54802,62 +46839,101 @@ snapshots: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - throat@5.0.0: {} + /throat@5.0.0: + resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} + dev: true /throttleit@1.0.1: resolution: {integrity: sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==} dev: true - through2@2.0.5: + /through2@2.0.5: + resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} dependencies: readable-stream: 2.3.8 xtend: 4.0.2 + dev: true - through2@4.0.2: + /through2@4.0.2: + resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} dependencies: readable-stream: 3.6.2 + dev: true - through@2.3.8: {} + /through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + dev: true - thunky@1.1.0: {} + /thunky@1.1.0: + resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} /tiny-invariant@1.3.3: resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} - tiny-warning@1.0.3: {} + /tiny-warning@1.0.3: + resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} + dev: false - tinycolor2@1.6.0: {} + /tinycolor2@1.6.0: + resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} + dev: false - tinycolor@0.0.1: {} + /tinycolor@0.0.1: + resolution: {integrity: sha512-+CorETse1kl98xg0WAzii8DTT4ABF4R3nquhrkIbVGcw1T8JYs5Gfx9xEfGINPUZGDj9C4BmOtuKeaTtuuRolg==} + engines: {node: '>=0.4.0'} + dev: false - tmp@0.0.33: + /tmp@0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} dependencies: os-tmpdir: 1.0.2 + dev: true - tmp@0.2.3: {} + /tmp@0.2.3: + resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} + engines: {node: '>=14.14'} + dev: true - tmpl@1.0.5: {} + /tmpl@1.0.5: + resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} - to-fast-properties@1.0.3: {} + /to-fast-properties@1.0.3: + resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==} + engines: {node: '>=0.10.0'} + dev: true - to-fast-properties@2.0.0: {} + /to-fast-properties@2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} - to-object-path@0.3.0: + /to-object-path@0.3.0: + resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} + engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 - to-readable-stream@1.0.0: {} + /to-readable-stream@1.0.0: + resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} + engines: {node: '>=6'} + dev: false - to-regex-range@2.1.1: + /to-regex-range@2.1.1: + resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} + engines: {node: '>=0.10.0'} dependencies: is-number: 3.0.0 repeat-string: 1.6.1 - to-regex-range@5.0.1: + /to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} dependencies: is-number: 7.0.0 - to-regex@3.0.2: + /to-regex@3.0.2: + resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} + engines: {node: '>=0.10.0'} dependencies: define-property: 2.0.2 extend-shallow: 3.0.2 @@ -54868,10 +46944,13 @@ snapshots: resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} engines: {node: '>=0.6'} - token-types@5.0.1: + /token-types@5.0.1: + resolution: {integrity: sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==} + engines: {node: '>=14.16'} dependencies: '@tokenizer/token': 0.3.0 ieee754: 1.2.1 + dev: true /toml@2.3.6: resolution: {integrity: sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==} @@ -54881,65 +46960,102 @@ snapshots: resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} engines: {node: '>=6'} - tough-cookie@4.1.4: + /tough-cookie@4.1.4: + resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} + engines: {node: '>=6'} dependencies: psl: 1.9.0 punycode: 2.3.1 universalify: 0.2.0 url-parse: 1.5.10 + dev: true - tr46@0.0.3: {} + /tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - tr46@2.1.0: + /tr46@2.1.0: + resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} + engines: {node: '>=8'} dependencies: punycode: 2.3.1 + dev: true - tr46@3.0.0: + /tr46@3.0.0: + resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} + engines: {node: '>=12'} dependencies: punycode: 2.3.1 + dev: true - tree-changes@0.11.2: + /tree-changes@0.11.2: + resolution: {integrity: sha512-4gXlUthrl+RabZw6lLvcCDl6KfJOCmrC16BC5CRdut1EAH509Omgg0BfKLY+ViRlzrvYOTWR0FMS2SQTwzumrw==} dependencies: '@gilbarbara/deep-equal': 0.3.1 is-lite: 1.2.1 + dev: false - tree-changes@0.9.3: + /tree-changes@0.9.3: + resolution: {integrity: sha512-vvvS+O6kEeGRzMglTKbc19ltLWNtmNt1cpBoSYLj/iEcPVvpJasemKOlxBrmZaCtDJoF+4bwv3m01UKYi8mukQ==} dependencies: '@gilbarbara/deep-equal': 0.1.2 is-lite: 0.8.2 + dev: false /treeverse@2.0.0: resolution: {integrity: sha512-N5gJCkLu1aXccpOTtqV6ddSEi6ZmGkh3hjmbu1IjcavJK4qyOVQmi0myQKM7z5jVGmD68SJoliaVrMmVObhj6A==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dev: true - trim-lines@3.0.1: {} - - trim-newlines@1.0.0: + /trim-newlines@1.0.0: + resolution: {integrity: sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==} + engines: {node: '>=0.10.0'} + requiresBuild: true + dev: false optional: true - trim-newlines@3.0.1: {} + /trim-newlines@3.0.1: + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} + dev: true - trim-repeated@2.0.0: + /trim-repeated@2.0.0: + resolution: {integrity: sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==} + engines: {node: '>=12'} dependencies: escape-string-regexp: 5.0.0 + dev: true - trim-trailing-lines@1.1.4: {} + /trim-right@1.0.1: + resolution: {integrity: sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==} + engines: {node: '>=0.10.0'} + dev: true - trim@0.0.1: {} + /trim-trailing-lines@1.1.4: + resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==} - trough@1.0.5: {} + /trim@0.0.1: + resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==} + deprecated: Use String.prototype.trim() instead - trough@2.2.0: {} + /trough@1.0.5: + resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} - ts-dedent@2.2.0: {} + /ts-dedent@2.2.0: + resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} + engines: {node: '>=6.10'} - ts-jest@26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5): + /ts-jest@26.5.6(jest@26.6.3)(typescript@4.9.5): + resolution: {integrity: sha512-rua+rCP8DxpA8b4DQD/6X2HQS8Zy/xzViVYfEs2OQu68tkCuKLV0Md8pmX55+W24uRIyAsf/BajRfxOs+R2MKA==} + engines: {node: '>= 10'} + hasBin: true + peerDependencies: + jest: '>=26 <27' + typescript: '>=3.8 <5.0' dependencies: bs-logger: 0.2.6 buffer-from: 1.1.2 fast-json-stable-stringify: 2.1.0 - jest: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest: 26.6.3 jest-util: 26.6.2 json5: 2.2.3 lodash: 4.17.21 @@ -54948,6 +47064,7 @@ snapshots: semver: 7.6.2 typescript: 4.9.5 yargs-parser: 20.2.9 + dev: true /ts-jest@29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.4.3)(typescript@5.1.6): resolution: {integrity: sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg==} @@ -54973,6 +47090,8 @@ snapshots: esbuild: optional: true dependencies: + '@babel/core': 7.24.7 + babel-jest: 26.6.3(@babel/core@7.24.7) bs-logger: 0.2.6 esbuild: 0.18.20 fast-json-stable-stringify: 2.1.0 @@ -55015,7 +47134,7 @@ snapshots: bs-logger: 0.2.6 esbuild: 0.18.20 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + jest: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -55023,11 +47142,6 @@ snapshots: semver: 7.6.2 typescript: 4.9.5 yargs-parser: 21.1.1 - optionalDependencies: - '@babel/core': 7.24.7 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - babel-jest: 26.6.3(@babel/core@7.24.7) /ts-loader@6.2.2(typescript@5.1.6): resolution: {integrity: sha512-HDo5kXZCBml3EUPcc7RlZOV/JGlLHwppTLEHb3SHnr5V7NXD4klMEkrhJe5wgRbaWsSXi+Y1SIBN/K9B6zWGWQ==} @@ -55089,10 +47203,14 @@ snapshots: typescript: 5.1.6 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - optionalDependencies: - '@swc/core': 1.6.5(@swc/helpers@0.3.17) + dev: true - ts-node@8.10.2(typescript@4.9.5): + /ts-node@8.10.2(typescript@4.9.5): + resolution: {integrity: sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA==} + engines: {node: '>=6.0.0'} + hasBin: true + peerDependencies: + typescript: '>=2.7' dependencies: arg: 4.1.3 diff: 4.0.2 @@ -55101,16 +47219,25 @@ snapshots: typescript: 4.9.5 yn: 3.1.1 - ts-pnp@1.2.0(typescript@4.9.5): - optionalDependencies: + /ts-pnp@1.2.0(typescript@4.9.5): + resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} + engines: {node: '>=6'} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: typescript: 4.9.5 dev: false - tsconfig-paths-webpack-plugin@3.5.2: + /tsconfig-paths-webpack-plugin@3.5.2: + resolution: {integrity: sha512-EhnfjHbzm5IYI9YPNVIxx1moxMI4bpHD2e0zTXeDNQcwjjRaGepP7IhTHJkyDBG0CAOoxRfe7jCG630Ou+C6Pw==} dependencies: chalk: 4.1.2 enhanced-resolve: 5.17.0 tsconfig-paths: 3.15.0 + dev: true /tsconfig-paths-webpack-plugin@4.0.0: resolution: {integrity: sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==} @@ -55128,6 +47255,7 @@ snapshots: json5: 1.0.2 minimist: 1.2.8 strip-bom: 3.0.0 + dev: true /tsconfig-paths@4.2.0: resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} @@ -55142,12 +47270,18 @@ snapshots: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} dev: true - tslib@2.6.3: {} + /tslib@2.6.3: + resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} - tsutils@3.21.0(typescript@4.9.5): + /tsutils@3.21.0(typescript@4.9.5): + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} + peerDependencies: + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 typescript: 4.9.5 + dev: true /tsutils@3.21.0(typescript@5.1.6): resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} @@ -55171,20 +47305,32 @@ snapshots: strip-ansi: 6.0.1 wcwidth: 1.0.1 yargs: 17.7.2 + dev: true - tunnel-agent@0.6.0: + /tunnel-agent@0.6.0: + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} dependencies: safe-buffer: 5.2.1 + dev: true - tweetnacl@0.14.5: {} + /tweetnacl@0.14.5: + resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + dev: true - type-check@0.4.0: + /type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 - type-detect@4.0.8: {} + /type-detect@4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} - type-fest@0.13.1: {} + /type-fest@0.13.1: + resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} + engines: {node: '>=10'} + dev: true /type-fest@0.16.0: resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} @@ -55196,17 +47342,31 @@ snapshots: engines: {node: '>=10'} dev: true - type-fest@0.20.2: {} + /type-fest@0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} - type-fest@0.21.3: {} + /type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} - type-fest@0.4.1: {} + /type-fest@0.4.1: + resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==} + engines: {node: '>=6'} + dev: true - type-fest@0.6.0: {} + /type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} - type-fest@0.8.1: {} + /type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} - type-fest@1.4.0: {} + /type-fest@1.4.0: + resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} + engines: {node: '>=10'} + dev: true /type-fest@2.19.0: resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} @@ -55218,20 +47378,28 @@ snapshots: engines: {node: '>=16'} dev: false - type-is@1.6.18: + /type-is@1.6.18: + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + engines: {node: '>= 0.6'} dependencies: media-typer: 0.3.0 mime-types: 2.1.35 - type@2.7.3: {} + /type@2.7.3: + resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==} + dev: true - typed-array-buffer@1.0.2: + /typed-array-buffer@1.0.2: + resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-typed-array: 1.1.13 - typed-array-byte-length@1.0.1: + /typed-array-byte-length@1.0.1: + resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 for-each: 0.3.3 @@ -55239,7 +47407,9 @@ snapshots: has-proto: 1.0.3 is-typed-array: 1.1.13 - typed-array-byte-offset@1.0.2: + /typed-array-byte-offset@1.0.2: + resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} + engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.7 call-bind: 1.0.7 @@ -55248,7 +47418,9 @@ snapshots: has-proto: 1.0.3 is-typed-array: 1.1.13 - typed-array-length@1.0.6: + /typed-array-length@1.0.6: + resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 for-each: 0.3.3 @@ -55257,15 +47429,22 @@ snapshots: is-typed-array: 1.1.13 possible-typed-array-names: 1.0.0 - typed-assert@1.0.9: {} + /typed-assert@1.0.9: + resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==} + dev: true - typedarray-to-buffer@3.1.5: + /typedarray-to-buffer@3.1.5: + resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} dependencies: is-typedarray: 1.0.0 - typedarray@0.0.6: {} + /typedarray@0.0.6: + resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - typescript@4.9.5: {} + /typescript@4.9.5: + resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} + engines: {node: '>=4.2.0'} + hasBin: true /typescript@5.1.6: resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==} @@ -55288,50 +47467,74 @@ snapshots: requiresBuild: true optional: true - unbox-primitive@1.0.2: + /unbox-primitive@1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: call-bind: 1.0.7 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 - underscore.deep@0.5.3(underscore@1.7.0): + /underscore.deep@0.5.3(underscore@1.7.0): + resolution: {integrity: sha512-4OuSOlFNkiVFVc3khkeG112Pdu1gbitMj7t9B9ENb61uFmN70Jq7Iluhi3oflcSgexkKfDdJ5XAJET2gEq6ikA==} + engines: {node: '>=0.10.x'} + peerDependencies: + underscore: 1.x dependencies: underscore: 1.7.0 + dev: false - underscore@1.7.0: {} + /underscore@1.7.0: + resolution: {integrity: sha512-cp0oQQyZhUM1kpJDLdGO1jPZHgS/MpzoWYfe9+CM2h/QGDZlqwT2T3YGukuBdaNJ/CAPoeyAZRRHz8JFo176vA==} + dev: false - unfetch@4.2.0: {} + /unfetch@4.2.0: + resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==} - unherit@1.1.3: + /unherit@1.1.3: + resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==} dependencies: inherits: 2.0.4 xtend: 4.0.2 - unicode-canonical-property-names-ecmascript@2.0.0: {} + /unicode-canonical-property-names-ecmascript@2.0.0: + resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} + engines: {node: '>=4'} - unicode-match-property-ecmascript@2.0.0: + /unicode-match-property-ecmascript@2.0.0: + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} dependencies: unicode-canonical-property-names-ecmascript: 2.0.0 unicode-property-aliases-ecmascript: 2.1.0 - unicode-match-property-value-ecmascript@2.1.0: {} + /unicode-match-property-value-ecmascript@2.1.0: + resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} + engines: {node: '>=4'} - unicode-property-aliases-ecmascript@2.1.0: {} + /unicode-property-aliases-ecmascript@2.1.0: + resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} + engines: {node: '>=4'} - unicorn-magic@0.1.0: {} + /unicorn-magic@0.1.0: + resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} + engines: {node: '>=18'} + dev: true - unified@11.0.5: + /unified@6.2.0: + resolution: {integrity: sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==} dependencies: - '@types/unist': 3.0.2 - bail: 2.0.2 - devlop: 1.1.0 + '@types/unist': 2.0.10 + bail: 1.0.5 extend: 3.0.2 - is-plain-obj: 4.1.0 - trough: 2.2.0 - vfile: 6.0.1 + is-plain-obj: 1.1.0 + trough: 1.0.5 + vfile: 2.3.0 + x-is-string: 0.1.0 + dev: false - unified@9.2.0: + /unified@9.2.0: + resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==} dependencies: '@types/unist': 2.0.10 bail: 1.0.5 @@ -55341,138 +47544,193 @@ snapshots: trough: 1.0.5 vfile: 4.2.1 - union-value@1.0.1: + /union-value@1.0.1: + resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} + engines: {node: '>=0.10.0'} dependencies: arr-union: 3.1.0 get-value: 2.0.6 is-extendable: 0.1.1 set-value: 2.0.1 - union@0.5.0: + /union@0.5.0: + resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} + engines: {node: '>= 0.8.0'} dependencies: qs: 6.12.3 dev: true - unique-filename@1.1.1: + /unique-filename@1.1.1: + resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} dependencies: unique-slug: 2.0.2 dev: false - unique-filename@2.0.1: + /unique-filename@2.0.1: + resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: unique-slug: 3.0.0 + dev: true - unique-slug@2.0.2: + /unique-slug@2.0.2: + resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} dependencies: imurmurhash: 0.1.4 dev: false - unique-slug@3.0.0: + /unique-slug@3.0.0: + resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: imurmurhash: 0.1.4 + dev: true - unique-string@2.0.0: + /unique-string@2.0.0: + resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} + engines: {node: '>=8'} dependencies: crypto-random-string: 2.0.0 - unist-builder@2.0.3: {} + /unist-builder@2.0.3: + resolution: {integrity: sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==} - unist-util-generated@1.1.6: {} + /unist-util-generated@1.1.6: + resolution: {integrity: sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==} - unist-util-is@4.1.0: {} + /unist-util-is@3.0.0: + resolution: {integrity: sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==} + dev: false - unist-util-is@6.0.0: - dependencies: - '@types/unist': 3.0.2 + /unist-util-is@4.1.0: + resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} - unist-util-position@3.1.0: {} + /unist-util-position@3.1.0: + resolution: {integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==} - unist-util-position@5.0.0: + /unist-util-remove-position@1.1.4: + resolution: {integrity: sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==} dependencies: - '@types/unist': 3.0.2 + unist-util-visit: 1.4.1 + dev: false - unist-util-remove-position@2.0.1: + /unist-util-remove-position@2.0.1: + resolution: {integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==} dependencies: unist-util-visit: 2.0.3 - unist-util-remove-position@5.0.0: - dependencies: - '@types/unist': 3.0.2 - unist-util-visit: 5.0.0 - - unist-util-remove@2.1.0: + /unist-util-remove@2.1.0: + resolution: {integrity: sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==} dependencies: unist-util-is: 4.1.0 - unist-util-stringify-position@2.0.3: + /unist-util-stringify-position@1.1.2: + resolution: {integrity: sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==} + dev: false + + /unist-util-stringify-position@2.0.3: + resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} dependencies: '@types/unist': 2.0.10 - unist-util-stringify-position@4.0.0: + /unist-util-visit-parents@1.1.2: + resolution: {integrity: sha512-yvo+MMLjEwdc3RhhPYSximset7rwjMrdt9E41Smmvg25UQIenzrN83cRnF1JMzoMi9zZOQeYXHSDf7p+IQkW3Q==} + dev: false + + /unist-util-visit-parents@2.1.2: + resolution: {integrity: sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==} dependencies: - '@types/unist': 3.0.2 + unist-util-is: 3.0.0 + dev: false - unist-util-visit-parents@3.1.1: + /unist-util-visit-parents@3.1.1: + resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} dependencies: '@types/unist': 2.0.10 unist-util-is: 4.1.0 - unist-util-visit-parents@6.0.1: + /unist-util-visit@1.4.1: + resolution: {integrity: sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==} dependencies: - '@types/unist': 3.0.2 - unist-util-is: 6.0.0 + unist-util-visit-parents: 2.1.2 + dev: false - unist-util-visit@2.0.3: + /unist-util-visit@2.0.3: + resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} dependencies: '@types/unist': 2.0.10 unist-util-is: 4.1.0 unist-util-visit-parents: 3.1.1 - unist-util-visit@5.0.0: - dependencies: - '@types/unist': 3.0.2 - unist-util-is: 6.0.0 - unist-util-visit-parents: 6.0.1 + /universal-user-agent@6.0.1: + resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} + dev: true - universal-user-agent@6.0.1: {} + /universalify@0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} + dev: true - universalify@0.1.2: {} + /universalify@0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + dev: true - universalify@0.2.0: {} + /universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} - universalify@2.0.1: {} + /unpipe@1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} /unquote@1.1.1: resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} dev: true - unquote@1.1.1: {} - - unset-value@1.0.0: + /unset-value@1.0.0: + resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} + engines: {node: '>=0.10.0'} dependencies: has-value: 0.3.1 isobject: 3.0.1 - untildify@2.1.0: + /untildify@2.1.0: + resolution: {integrity: sha512-sJjbDp2GodvkB0FZZcn7k6afVisqX5BZD7Yq3xp4nN2O15BBK0cLm3Vwn2vQaF7UDS0UUsrQMkkplmDI5fskig==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: os-homedir: 1.0.2 + dev: false optional: true - untildify@4.0.0: {} + /untildify@4.0.0: + resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} + engines: {node: '>=8'} + dev: true /upath@1.2.0: resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} engines: {node: '>=4'} - upath@2.0.1: {} + /upath@2.0.1: + resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} + engines: {node: '>=4'} + dev: true - update-browserslist-db@1.0.16(browserslist@4.23.1): + /update-browserslist-db@1.0.16(browserslist@4.23.1): + resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' dependencies: browserslist: 4.23.1 escalade: 3.1.2 picocolors: 1.0.1 - update-notifier@5.1.0: + /update-notifier@5.1.0: + resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==} + engines: {node: '>=10'} dependencies: boxen: 5.1.2 chalk: 4.1.2 @@ -55488,14 +47746,20 @@ snapshots: semver: 7.6.2 semver-diff: 3.1.1 xdg-basedir: 4.0.0 + dev: false - uri-js@4.4.1: + /uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: punycode: 2.3.1 - urix@0.1.0: {} + /urix@0.1.0: + resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} + deprecated: Please see https://github.com/lydell/urix#deprecated - url-join@4.0.1: {} + /url-join@4.0.1: + resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} + dev: true /url-loader@4.1.1(file-loader@2.0.0)(webpack@5.84.1): resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} @@ -55507,53 +47771,81 @@ snapshots: file-loader: optional: true dependencies: + file-loader: 2.0.0(webpack@5.84.1) loader-utils: 2.0.4 mime-types: 2.1.35 schema-utils: 3.3.0 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - url-loader@4.1.1(file-loader@6.2.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /url-loader@4.1.1(file-loader@6.2.0)(webpack@5.84.1): + resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + file-loader: '*' + webpack: 5.84.1 + peerDependenciesMeta: + file-loader: + optional: true dependencies: + file-loader: 6.2.0(webpack@5.84.1) loader-utils: 2.0.4 mime-types: 2.1.35 schema-utils: 3.3.0 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: false - url-parse-lax@3.0.0: + /url-parse-lax@3.0.0: + resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} + engines: {node: '>=4'} dependencies: prepend-http: 2.0.0 + dev: false - url-parse@1.5.10: + /url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} dependencies: querystringify: 2.2.0 requires-port: 1.0.0 - url@0.11.3: + /url@0.11.3: + resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==} dependencies: punycode: 1.4.1 qs: 6.12.3 - use-sync-external-store@1.2.0(react@18.3.1): + /use-sync-external-store@1.2.0(react@18.3.1): + resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: react: 18.3.1 + dev: false - use-sync-external-store@1.2.2(react@18.3.1): + /use-sync-external-store@1.2.2(react@18.3.1): + resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: react: 18.3.1 + dev: false - use@3.1.1: {} + /use@3.1.1: + resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} + engines: {node: '>=0.10.0'} - util-deprecate@1.0.2: {} + /util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - util.promisify@1.0.0: + /util.promisify@1.0.0: + resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==} dependencies: define-properties: 1.2.1 object.getownpropertydescriptors: 2.1.8 dev: false - util.promisify@1.0.1: + /util.promisify@1.0.1: + resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} dependencies: define-properties: 1.2.1 es-abstract: 1.23.3 @@ -55561,9 +47853,11 @@ snapshots: object.getownpropertydescriptors: 2.1.8 dev: true - util@0.10.4: + /util@0.10.4: + resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} dependencies: inherits: 2.0.3 + dev: true /util@0.12.5: resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} @@ -55578,44 +47872,70 @@ snapshots: /utila@0.4.0: resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} - utils-merge@1.0.1: {} + /utils-merge@1.0.1: + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} - uuid-browser@3.1.0: {} + /uuid-browser@3.1.0: + resolution: {integrity: sha512-dsNgbLaTrd6l3MMxTtouOCFw4CBFc/3a+GgYA2YyrJvyQ1u6q4pcu3ktLoUZ/VN/Aw9WsauazbgsgdfVWgAKQg==} + deprecated: Package no longer supported and required. Use the uuid package or crypto.randomUUID instead + dev: true - uuid@3.4.0: {} + /uuid@3.4.0: + resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} + deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. + hasBin: true - uuid@8.3.2: {} + /uuid@8.3.2: + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + hasBin: true - v8-compile-cache-lib@3.0.1: {} + /v8-compile-cache-lib@3.0.1: + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + dev: true - v8-compile-cache@2.3.0: {} + /v8-compile-cache@2.3.0: + resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} + dev: true - v8-compile-cache@2.4.0: {} + /v8-compile-cache@2.4.0: + resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} - v8-to-istanbul@7.1.2: + /v8-to-istanbul@7.1.2: + resolution: {integrity: sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==} + engines: {node: '>=10.10.0'} dependencies: '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 1.9.0 source-map: 0.7.4 + dev: true - v8-to-istanbul@9.3.0: + /v8-to-istanbul@9.3.0: + resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} + engines: {node: '>=10.12.0'} dependencies: '@jridgewell/trace-mapping': 0.3.25 '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 2.0.0 - validate-npm-package-license@3.0.4: + /validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} dependencies: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 - validate-npm-package-name@3.0.0: + /validate-npm-package-name@3.0.0: + resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==} dependencies: builtins: 1.0.3 + dev: true - validate-npm-package-name@4.0.0: + /validate-npm-package-name@4.0.0: + resolution: {integrity: sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: builtins: 5.1.0 + dev: true /validate-npm-package-name@5.0.1: resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} @@ -55626,40 +47946,57 @@ snapshots: resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==} dev: false - vary@1.1.2: {} + /vary@1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} - verror@1.10.0: + /verror@1.10.0: + resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} + engines: {'0': node >=0.6.0} dependencies: assert-plus: 1.0.0 core-util-is: 1.0.2 extsprintf: 1.3.0 + dev: true + + /vfile-location@2.0.6: + resolution: {integrity: sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==} + dev: false + + /vfile-location@3.2.0: + resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==} - vfile-location@3.2.0: {} + /vfile-message@1.1.1: + resolution: {integrity: sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==} + dependencies: + unist-util-stringify-position: 1.1.2 + dev: false - vfile-message@2.0.4: + /vfile-message@2.0.4: + resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==} dependencies: '@types/unist': 2.0.10 unist-util-stringify-position: 2.0.3 - vfile-message@4.0.2: + /vfile@2.3.0: + resolution: {integrity: sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==} dependencies: - '@types/unist': 3.0.2 - unist-util-stringify-position: 4.0.0 + is-buffer: 1.1.6 + replace-ext: 1.0.0 + unist-util-stringify-position: 1.1.2 + vfile-message: 1.1.1 + dev: false - vfile@4.2.1: + /vfile@4.2.1: + resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==} dependencies: '@types/unist': 2.0.10 is-buffer: 2.0.5 unist-util-stringify-position: 2.0.3 vfile-message: 2.0.4 - vfile@6.0.1: - dependencies: - '@types/unist': 3.0.2 - unist-util-stringify-position: 4.0.0 - vfile-message: 4.0.2 - - victory-vendor@36.9.2: + /victory-vendor@36.9.2: + resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==} dependencies: '@types/d3-array': 3.2.1 '@types/d3-ease': 3.0.2 @@ -55675,61 +48012,101 @@ snapshots: d3-shape: 3.2.0 d3-time: 3.1.0 d3-timer: 3.0.1 + dev: false - void-elements@3.1.0: {} + /void-elements@3.1.0: + resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} + engines: {node: '>=0.10.0'} + dev: false - w3c-hr-time@1.0.2: + /w3c-hr-time@1.0.2: + resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} + deprecated: Use your platform's native performance.now() and performance.timeOrigin. dependencies: browser-process-hrtime: 1.0.0 + dev: true - w3c-xmlserializer@2.0.0: + /w3c-xmlserializer@2.0.0: + resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} + engines: {node: '>=10'} dependencies: xml-name-validator: 3.0.0 + dev: true - w3c-xmlserializer@4.0.0: + /w3c-xmlserializer@4.0.0: + resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} + engines: {node: '>=14'} dependencies: xml-name-validator: 4.0.0 + dev: true - walk-up-path@1.0.0: {} + /walk-up-path@1.0.0: + resolution: {integrity: sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg==} + dev: true - walker@1.0.8: + /walker@1.0.8: + resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} dependencies: makeerror: 1.0.12 - warning@4.0.3: + /warning@4.0.3: + resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==} dependencies: loose-envify: 1.4.0 dev: false - watch@1.0.2: + /watch@1.0.2: + resolution: {integrity: sha512-1u+Z5n9Jc1E2c7qDO8SinPoZuHj7FgbgU1olSFoyaklduDvvtX7GMMtlE6OC9FTXq4KvNAOfj6Zu4vI1e9bAKA==} + engines: {node: '>=0.1.95'} + hasBin: true dependencies: exec-sh: 0.2.2 minimist: 1.2.8 + dev: true - watchpack@2.4.1: + /watchpack@2.4.1: + resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==} + engines: {node: '>=10.13.0'} dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 - wbuf@1.7.3: + /wbuf@1.7.3: + resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} dependencies: minimalistic-assert: 1.0.1 - wcwidth@1.0.1: + /wcwidth@1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} dependencies: defaults: 1.0.4 + dev: true - web-namespaces@1.1.4: {} + /web-namespaces@1.1.4: + resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==} - webidl-conversions@3.0.1: {} + /webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} - webidl-conversions@5.0.0: {} + /webidl-conversions@5.0.0: + resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} + engines: {node: '>=8'} + dev: true - webidl-conversions@6.1.0: {} + /webidl-conversions@6.1.0: + resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} + engines: {node: '>=10.4'} + dev: true - webidl-conversions@7.0.0: {} + /webidl-conversions@7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} + dev: true - webpack-bundle-analyzer@4.10.2: + /webpack-bundle-analyzer@4.10.2: + resolution: {integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==} + engines: {node: '>= 10.13.0'} + hasBin: true dependencies: '@discoveryjs/json-ext': 0.5.7 acorn: 8.12.0 @@ -55747,12 +48124,30 @@ snapshots: - bufferutil - utf-8-validate - webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1): + /webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1): + resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + '@webpack-cli/generators': '*' + '@webpack-cli/migrate': '*' + webpack: 5.84.1 + webpack-bundle-analyzer: '*' + webpack-dev-server: '*' + peerDependenciesMeta: + '@webpack-cli/generators': + optional: true + '@webpack-cli/migrate': + optional: true + webpack-bundle-analyzer: + optional: true + webpack-dev-server: + optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - '@webpack-cli/info': 1.5.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - '@webpack-cli/serve': 1.7.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1)) + '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0)(webpack@5.84.1) + '@webpack-cli/info': 1.5.0(webpack-cli@4.10.0) + '@webpack-cli/serve': 1.7.0(webpack-cli@4.10.0)(webpack-dev-server@3.11.3) colorette: 2.0.20 commander: 7.2.0 cross-spawn: 7.0.3 @@ -55764,11 +48159,12 @@ snapshots: webpack-bundle-analyzer: 4.10.2 webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) webpack-merge: 5.10.0 - optionalDependencies: - webpack-bundle-analyzer: 4.10.2 - webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - webpack-dev-middleware@3.7.3(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /webpack-dev-middleware@3.7.3(webpack@5.84.1): + resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==} + engines: {node: '>= 6'} + peerDependencies: + webpack: 5.84.1 dependencies: memory-fs: 0.4.1 mime: 2.6.0 @@ -55777,7 +48173,11 @@ snapshots: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-log: 2.0.0 - webpack-dev-middleware@4.3.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /webpack-dev-middleware@4.3.0(webpack@5.84.1): + resolution: {integrity: sha512-PjwyVY95/bhBh6VUqt6z4THplYcsvQ8YNNBTBM873xLVmw8FLeALn0qurHbs9EmcfhzQis/eoqypSnZeuUz26w==} + engines: {node: '>= v10.23.3'} + peerDependencies: + webpack: 5.84.1 dependencies: colorette: 1.4.0 mem: 8.1.1 @@ -55788,7 +48188,11 @@ snapshots: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: false - webpack-dev-middleware@5.3.4(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /webpack-dev-middleware@5.3.4(webpack@5.84.1): + resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: colorette: 2.0.20 memfs: 3.5.3 @@ -55815,7 +48219,16 @@ snapshots: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1): + resolution: {integrity: sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==} + engines: {node: '>= 6.11.5'} + hasBin: true + peerDependencies: + webpack: 5.84.1 + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true dependencies: ansi-html-community: 0.0.8 bonjour: 3.5.0 @@ -55826,7 +48239,7 @@ snapshots: del: 4.1.1 express: 4.19.2(supports-color@6.1.0) html-entities: 1.4.0 - http-proxy-middleware: 0.19.1(debug@4.3.5(supports-color@6.1.0))(supports-color@6.1.0) + http-proxy-middleware: 0.19.1(debug@4.3.5)(supports-color@6.1.0) import-local: 2.0.0 internal-ip: 4.3.0 ip: 1.1.9 @@ -55852,13 +48265,22 @@ snapshots: webpack-log: 2.0.0 ws: 6.2.3 yargs: 13.3.2 - optionalDependencies: - webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) transitivePeerDependencies: - bufferutil - utf-8-validate - webpack-dev-server@4.15.2(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.84.1): + resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==} + engines: {node: '>= 12.13.0'} + hasBin: true + peerDependencies: + webpack: 5.84.1 + webpack-cli: '*' + peerDependenciesMeta: + webpack: + optional: true + webpack-cli: + optional: true dependencies: '@types/bonjour': 3.5.13 '@types/connect-history-api-fallback': 1.5.4 @@ -55892,62 +48314,88 @@ snapshots: webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) webpack-dev-middleware: 5.3.4(webpack@5.84.1) ws: 8.17.1 - optionalDependencies: - webpack: 5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) transitivePeerDependencies: - bufferutil - debug - supports-color - utf-8-validate + dev: true - webpack-filter-warnings-plugin@1.2.1(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /webpack-filter-warnings-plugin@1.2.1(webpack@5.84.1): + resolution: {integrity: sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==} + engines: {node: '>= 4.3 < 5.0.0 || >= 5.10'} + peerDependencies: + webpack: 5.84.1 dependencies: webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: false - webpack-hot-middleware@2.26.1: + /webpack-hot-middleware@2.26.1: + resolution: {integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==} dependencies: ansi-html-community: 0.0.8 html-entities: 2.5.2 strip-ansi: 6.0.1 - webpack-log@1.2.0: + /webpack-log@1.2.0: + resolution: {integrity: sha512-U9AnICnu50HXtiqiDxuli5gLB5PGBo7VvcHx36jRZHwK4vzOYLbImqT4lwWwoMHdQWwEKw736fCHEekokTEKHA==} + engines: {node: '>=6'} dependencies: chalk: 2.4.2 log-symbols: 2.2.0 loglevelnext: 1.0.5 uuid: 3.4.0 + dev: true - webpack-log@2.0.0: + /webpack-log@2.0.0: + resolution: {integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==} + engines: {node: '>= 6'} dependencies: ansi-colors: 3.2.4 uuid: 3.4.0 - webpack-merge@5.10.0: + /webpack-merge@5.10.0: + resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} + engines: {node: '>=10.0.0'} dependencies: clone-deep: 4.0.1 flat: 5.0.2 wildcard: 2.0.1 - webpack-node-externals@3.0.0: {} + /webpack-node-externals@3.0.0: + resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==} + engines: {node: '>=6'} + dev: true - webpack-sources@1.4.3: + /webpack-sources@1.4.3: + resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==} dependencies: source-list-map: 2.0.1 source-map: 0.6.1 - webpack-sources@3.2.3: {} + /webpack-sources@3.2.3: + resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} + engines: {node: '>=10.13.0'} - webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.0)(webpack@5.84.1): + resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==} + engines: {node: '>= 12'} + peerDependencies: + html-webpack-plugin: '>= 5.0.0-beta.1 < 6' + webpack: 5.84.1 + peerDependenciesMeta: + html-webpack-plugin: + optional: true dependencies: + html-webpack-plugin: 5.6.0(webpack@5.84.1) typed-assert: 1.0.9 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - webpack-virtual-modules@0.2.2: + /webpack-virtual-modules@0.2.2: + resolution: {integrity: sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==} dependencies: - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7(supports-color@6.1.0) transitivePeerDependencies: - supports-color dev: false @@ -55993,53 +48441,76 @@ snapshots: tapable: 2.2.1 terser-webpack-plugin: 5.3.10(@swc/core@1.3.99)(esbuild@0.18.20)(webpack@5.84.1) watchpack: 2.4.1 - webpack-sources: 3.2.3 - optionalDependencies: webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) + webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' - esbuild - uglify-js - websocket-driver@0.7.4: + /websocket-driver@0.7.4: + resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} + engines: {node: '>=0.8.0'} dependencies: http-parser-js: 0.5.8 safe-buffer: 5.2.1 websocket-extensions: 0.1.4 - websocket-extensions@0.1.4: {} + /websocket-extensions@0.1.4: + resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} + engines: {node: '>=0.8.0'} - whatwg-encoding@1.0.5: + /whatwg-encoding@1.0.5: + resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} dependencies: iconv-lite: 0.4.24 + dev: true - whatwg-encoding@2.0.0: + /whatwg-encoding@2.0.0: + resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + engines: {node: '>=12'} dependencies: iconv-lite: 0.6.3 + dev: true - whatwg-fetch@3.6.20: {} + /whatwg-fetch@3.6.20: + resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} + dev: false - whatwg-mimetype@2.3.0: {} + /whatwg-mimetype@2.3.0: + resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} + dev: true - whatwg-mimetype@3.0.0: {} + /whatwg-mimetype@3.0.0: + resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} + engines: {node: '>=12'} + dev: true - whatwg-url@11.0.0: + /whatwg-url@11.0.0: + resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} + engines: {node: '>=12'} dependencies: tr46: 3.0.0 webidl-conversions: 7.0.0 + dev: true - whatwg-url@5.0.0: + /whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 - whatwg-url@8.7.0: + /whatwg-url@8.7.0: + resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} + engines: {node: '>=10'} dependencies: lodash: 4.17.21 tr46: 2.1.0 webidl-conversions: 6.1.0 + dev: true - which-boxed-primitive@1.0.2: + /which-boxed-primitive@1.0.2: + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} dependencies: is-bigint: 1.0.4 is-boolean-object: 1.1.2 @@ -56047,7 +48518,9 @@ snapshots: is-string: 1.0.7 is-symbol: 1.0.4 - which-builtin-type@1.1.3: + /which-builtin-type@1.1.3: + resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} + engines: {node: '>= 0.4'} dependencies: function.prototype.name: 1.1.6 has-tostringtag: 1.0.2 @@ -56061,15 +48534,19 @@ snapshots: which-boxed-primitive: 1.0.2 which-collection: 1.0.2 which-typed-array: 1.1.15 + dev: true - which-collection@1.0.2: + /which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} dependencies: is-map: 2.0.3 is-set: 2.0.3 is-weakmap: 2.0.2 is-weakset: 2.0.3 - which-module@2.0.1: {} + /which-module@2.0.1: + resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} /which-pm@2.2.0: resolution: {integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==} @@ -56077,8 +48554,11 @@ snapshots: dependencies: load-yaml-file: 0.2.0 path-exists: 4.0.0 + dev: true - which-typed-array@1.1.15: + /which-typed-array@1.1.15: + resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} + engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.7 call-bind: 1.0.7 @@ -56086,91 +48566,126 @@ snapshots: gopd: 1.0.1 has-tostringtag: 1.0.2 - which@1.3.1: + /which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true dependencies: isexe: 2.0.0 - which@2.0.2: + /which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true dependencies: isexe: 2.0.0 - wide-align@1.1.5: + /wide-align@1.1.5: + resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} dependencies: string-width: 4.2.3 - widest-line@3.1.0: + /widest-line@3.1.0: + resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} + engines: {node: '>=8'} dependencies: string-width: 4.2.3 dev: false - wildcard@2.0.1: {} + /wildcard@2.0.1: + resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} - word-wrap@1.2.5: {} + /word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} - wordwrap@1.0.0: {} + /wordwrap@1.0.0: + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} - worker-loader@2.0.0(webpack@5.84.1(@swc/core@1.6.5(@swc/helpers@0.3.17))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /worker-loader@2.0.0(webpack@5.84.1): + resolution: {integrity: sha512-tnvNp4K3KQOpfRnD20m8xltE3eWh89Ye+5oj7wXEEHKac1P4oZ6p9oTj8/8ExqoSBnk9nu5Pr4nKfQ1hn2APJw==} + engines: {node: '>= 6.9.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 dependencies: loader-utils: 1.4.2 schema-utils: 0.4.7 webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) dev: true - worker-rpc@0.1.1: + /worker-rpc@0.1.1: + resolution: {integrity: sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==} dependencies: microevent.ts: 0.1.1 dev: false - world-countries@5.0.0: {} + /world-countries@5.0.0: + resolution: {integrity: sha512-wAfOT9Y5i/xnxNOdKJKXdOCw9Q3yQLahBUeuRol+s+o20F6h2a4tLEbJ1lBCYwEQ30Sf9Meqeipk1gib3YwF5w==} + dev: false - wrap-ansi@5.1.0: + /wrap-ansi@5.1.0: + resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==} + engines: {node: '>=6'} dependencies: ansi-styles: 3.2.1 string-width: 3.1.0 strip-ansi: 5.2.0 - wrap-ansi@6.2.0: + /wrap-ansi@6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 + dev: true - wrap-ansi@7.0.0: + /wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - wrap-ansi@8.1.0: + /wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} dependencies: ansi-styles: 6.2.1 string-width: 5.1.2 strip-ansi: 7.1.0 - wrappy@1.0.2: {} + /wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - write-file-atomic@2.4.3: + /write-file-atomic@2.4.3: + resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} dependencies: graceful-fs: 4.2.11 imurmurhash: 0.1.4 signal-exit: 3.0.7 - write-file-atomic@3.0.3: + /write-file-atomic@3.0.3: + resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} dependencies: imurmurhash: 0.1.4 is-typedarray: 1.0.0 signal-exit: 3.0.7 typedarray-to-buffer: 3.1.5 - write-file-atomic@4.0.2: + /write-file-atomic@4.0.2: + resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: imurmurhash: 0.1.4 signal-exit: 3.0.7 - write-file-webpack-plugin@4.5.1: + /write-file-webpack-plugin@4.5.1: + resolution: {integrity: sha512-AZ7qJUvhTCBiOtG21aFJUcNuLVo2FFM6JMGKvaUGAH+QDqQAp2iG0nq3GcuXmJOFQR2JjpjhyYkyPrbFKhdjNQ==} + engines: {node: '>=4'} dependencies: chalk: 2.4.2 - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7(supports-color@6.1.0) filesize: 3.6.1 lodash: 4.17.21 mkdirp: 0.5.6 @@ -56178,8 +48693,11 @@ snapshots: write-file-atomic: 2.4.3 transitivePeerDependencies: - supports-color + dev: true - write-json-file@3.2.0: + /write-json-file@3.2.0: + resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==} + engines: {node: '>=6'} dependencies: detect-indent: 5.0.0 graceful-fs: 4.2.11 @@ -56187,8 +48705,11 @@ snapshots: pify: 4.0.1 sort-keys: 2.0.0 write-file-atomic: 2.4.3 + dev: true - write-json-file@4.3.0: + /write-json-file@4.3.0: + resolution: {integrity: sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ==} + engines: {node: '>=8.3'} dependencies: detect-indent: 6.1.0 graceful-fs: 4.2.11 @@ -56196,66 +48717,137 @@ snapshots: make-dir: 3.1.0 sort-keys: 4.2.0 write-file-atomic: 3.0.3 + dev: true - write-pkg@4.0.0: + /write-pkg@4.0.0: + resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==} + engines: {node: '>=8'} dependencies: sort-keys: 2.0.0 type-fest: 0.4.1 write-json-file: 3.2.0 + dev: true - ws@6.2.3: + /ws@6.2.3: + resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true dependencies: async-limiter: 1.0.1 - ws@7.5.10: {} + /ws@7.5.10: + resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} + engines: {node: '>=8.3.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true - ws@8.17.1: {} + /ws@8.17.1: + resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true - x-default-browser@0.4.0: + /x-default-browser@0.4.0: + resolution: {integrity: sha512-7LKo7RtWfoFN/rHx1UELv/2zHGMx8MkZKDq1xENmOCTkfIqZJ0zZ26NEJX8czhnPXVcqS0ARjjfJB+eJ0/5Cvw==} + hasBin: true optionalDependencies: default-browser-id: 1.0.4 + dev: false + + /x-is-string@0.1.0: + resolution: {integrity: sha512-GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w==} + dev: false - xdg-basedir@4.0.0: {} + /xdg-basedir@4.0.0: + resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} + engines: {node: '>=8'} + dev: false - xml-name-validator@3.0.0: {} + /xml-name-validator@3.0.0: + resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} + dev: true - xml-name-validator@4.0.0: {} + /xml-name-validator@4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} + dev: true - xmlchars@2.2.0: {} + /xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + dev: true - xtend@4.0.2: {} + /xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} - y18n@4.0.3: {} + /y18n@4.0.3: + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} - y18n@5.0.8: {} + /y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} - yallist@2.1.2: {} + /yallist@2.1.2: + resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} + dev: true - yallist@3.1.1: {} + /yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - yallist@4.0.0: {} + /yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - yaml@1.10.2: {} + /yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} - yargs-parser@13.1.2: + /yargs-parser@13.1.2: + resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==} dependencies: camelcase: 5.3.1 decamelize: 1.2.0 - yargs-parser@18.1.3: + /yargs-parser@18.1.3: + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} dependencies: camelcase: 5.3.1 decamelize: 1.2.0 + dev: true - yargs-parser@20.2.4: {} + /yargs-parser@20.2.4: + resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} + engines: {node: '>=10'} + dev: true - yargs-parser@20.2.9: {} + /yargs-parser@20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} /yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} - yargs@13.3.2: + /yargs@13.3.2: + resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==} dependencies: cliui: 5.0.0 find-up: 3.0.0 @@ -56268,7 +48860,9 @@ snapshots: y18n: 4.0.3 yargs-parser: 13.1.2 - yargs@15.4.1: + /yargs@15.4.1: + resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} + engines: {node: '>=8'} dependencies: cliui: 6.0.0 decamelize: 1.2.0 @@ -56281,8 +48875,11 @@ snapshots: which-module: 2.0.1 y18n: 4.0.3 yargs-parser: 18.1.3 + dev: true - yargs@16.2.0: + /yargs@16.2.0: + resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} + engines: {node: '>=10'} dependencies: cliui: 7.0.4 escalade: 3.1.2 @@ -56292,7 +48889,9 @@ snapshots: y18n: 5.0.8 yargs-parser: 20.2.9 - yargs@17.7.2: + /yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} dependencies: cliui: 8.0.1 escalade: 3.1.2 @@ -56302,14 +48901,19 @@ snapshots: y18n: 5.0.8 yargs-parser: 21.1.1 - yauzl@2.10.0: + /yauzl@2.10.0: + resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} dependencies: buffer-crc32: 0.2.13 fd-slicer: 1.1.0 - yn@3.1.1: {} + /yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} - yocto-queue@0.1.0: {} + /yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} /yocto-queue@1.1.1: resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} @@ -56331,12 +48935,13 @@ snapshots: react: optional: true dependencies: - use-sync-external-store: 1.2.0(react@18.3.1) - optionalDependencies: '@types/react': 18.0.18 react: 18.3.1 + use-sync-external-store: 1.2.0(react@18.3.1) + dev: false - zwitch@1.0.5: {} + /zwitch@1.0.5: + resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==} github.com/jeradrutnam/eslint-plugin-header/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3(eslint@8.46.0): resolution: {tarball: https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3} From 8ce2b474fae84a812d990ab35690217083b0e37d Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Sun, 14 Jul 2024 19:18:17 +0530 Subject: [PATCH 067/114] fix the import issue in unit test --- modules/unit-testing/utils.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/unit-testing/utils.tsx b/modules/unit-testing/utils.tsx index d06c9b24f14..0910d7a0a9a 100644 --- a/modules/unit-testing/utils.tsx +++ b/modules/unit-testing/utils.tsx @@ -19,13 +19,13 @@ // import { AuthProvider } from "@asgardeo/auth-react"; import { RenderResult, render as rtlRender } from "@testing-library/react"; import { AccessControlProvider } from "@wso2is/access-control"; +import { AppConfigProvider } from "@wso2is/admin.core.v1/providers/app-config-provider"; +import GlobalVariablesProvider from "@wso2is/admin.core.v1/providers/global-variables-provider"; import UIConfigProvider from "@wso2is/admin.core.v1/providers/ui-config-provider"; import React, { PropsWithChildren, ReactElement } from "react"; import { Provider } from "react-redux"; import { mockStore } from "./__mocks__/redux/redux-store"; import ReduxStoreStateMock from "./__mocks__/redux/redux-store-state"; -import { AppConfigProvider } from "../admin.core.v1/providers/app-config-provider"; -import GlobalVariablesProvider from "../admin.core.v1/providers/global-variables-provider"; // import { AuthenticateUtils } from "../src/features/authentication/utils/authenticate-utils"; // import { PreLoader } from "../src/features/core/components/pre-loader/pre-loader"; From 126a8ff5c7cf793f4e0d830a50850b87000255f2 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Sun, 14 Jul 2024 19:21:35 +0530 Subject: [PATCH 068/114] add pnpm lock changes --- pnpm-lock.yaml | 37460 +++++++++++++++++++++++++++-------------------- 1 file changed, 21325 insertions(+), 16135 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8a456a421ad..1deeb914cdf 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: '6.0' +lockfileVersion: '9.0' settings: autoInstallPeers: true @@ -69,7 +69,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-app-polyfill: specifier: ^1.0.4 version: 1.0.6 @@ -82,21 +82,18 @@ importers: react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) - react-markdown: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@16.14.0)(react@16.14.0) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) react-top-loading-bar: specifier: ^1.2.0 - version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1) + version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 @@ -139,76 +136,76 @@ importers: version: 7.24.7 '@changesets/changelog-github': specifier: ^0.4.8 - version: 0.4.8 + version: 0.4.8(encoding@0.1.13) '@changesets/cli': specifier: ^2.26.1 version: 2.27.5 '@nx/cypress': specifier: 17.0.0 - version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6) + version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) '@nx/devkit': specifier: 17.0.0 - version: 17.0.0(nx@17.0.0) + version: 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) '@nx/eslint': specifier: 17.0.0 - version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0) + version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) '@nx/eslint-plugin': specifier: 17.0.0 - version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0)(eslint-config-prettier@9.1.0)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6) + version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint-config-prettier@9.1.0(eslint@8.46.0))(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) '@nx/jest': specifier: 17.0.0 - version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) '@nx/js': specifier: 17.0.0 - version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) '@nx/plugin': specifier: 17.0.0 - version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6) + version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(eslint@8.46.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) '@nx/react': specifier: 17.0.0 - version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6)(webpack@5.84.1) + version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@nx/rollup': specifier: 17.0.0 - version: 17.0.0(@babel/core@7.24.7)(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + version: 17.0.0(@babel/core@7.24.7)(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/babel__core@7.20.5)(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) '@nx/storybook': specifier: 17.0.0 - version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6) + version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) '@nx/web': specifier: 17.0.0 - version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) '@nx/webpack': specifier: 17.0.0 - version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0)(nx@17.0.0)(typescript@5.1.6)(webpack-cli@4.10.0) + version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@nx/workspace': specifier: 17.0.0 - version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) + version: 17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.5.7 - version: 0.5.15(react-refresh@0.10.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.5.15(@types/webpack@4.41.38)(react-refresh@0.10.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@storybook/core-server': specifier: 7.6.9 - version: 7.6.9 + version: 7.6.9(encoding@0.1.13) '@storybook/react': specifier: 7.6.9 - version: 7.6.9(typescript@5.1.6) + version: 7.6.9(encoding@0.1.13)(typescript@5.1.6) '@storybook/react-webpack5': specifier: 7.6.9 - version: 7.6.9(@babel/core@7.24.7)(@swc/core@1.3.99)(@swc/helpers@0.5.9)(esbuild@0.18.20)(typescript@5.1.6)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3) + version: 7.6.9(@babel/core@7.24.7)(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)(@types/webpack@4.41.38)(encoding@0.1.13)(esbuild@0.18.20)(sockjs-client@1.6.1)(type-fest@4.20.1)(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1) '@swc-node/register': specifier: 1.6.8 - version: 1.6.8(@swc/core@1.3.99)(@swc/types@0.1.9)(typescript@5.1.6) + version: 1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6) '@swc/cli': specifier: 0.1.65 - version: 0.1.65(@swc/core@1.3.99) + version: 0.1.65(@swc/core@1.3.99(@swc/helpers@0.5.9))(chokidar@3.6.0) '@swc/core': specifier: 1.3.99 version: 1.3.99(@swc/helpers@0.5.9) '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@types/jest@29.4.4)(jest@29.4.3) + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.4.4)(jest@29.4.3(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6))) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1)(react@18.3.1) + version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/user-event': specifier: ^14.5.2 version: 14.5.2(@testing-library/dom@9.3.4) @@ -259,7 +256,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: 5.62.0 - version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.46.0)(typescript@5.1.6) + version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint@8.46.0)(typescript@5.1.6) '@typescript-eslint/parser': specifier: 5.62.0 version: 5.62.0(eslint@8.46.0)(typescript@5.1.6) @@ -268,25 +265,25 @@ importers: version: 10.4.13(postcss@8.4.39) babel-loader: specifier: ^8.1.0 - version: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + version: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) babel-plugin-rename-jsx-attribute: specifier: ^0.2.4 - version: 0.2.4(babel-core@6.26.3) + version: 0.2.4(babel-core@7.0.0-bridge.0(@babel/core@7.24.7)) child_process: specifier: ^1.0.2 version: 1.0.2 compression-webpack-plugin: specifier: ^7.1.2 - version: 7.1.2(webpack@5.84.1) + version: 7.1.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) core-js: specifier: ^3.6.5 version: 3.37.1 css-loader: specifier: ^6.4.0 - version: 6.11.0(webpack@5.84.1) + version: 6.11.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) cypress: specifier: ^9.1.0 version: 9.7.0 @@ -304,10 +301,10 @@ importers: version: 2.15.2(eslint@8.46.0) eslint-plugin-header: specifier: jeradrutnam/eslint-plugin-header#main - version: github.com/jeradrutnam/eslint-plugin-header/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3(eslint@8.46.0) + version: https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3(eslint@8.46.0) eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.46.0) + version: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint@8.46.0) eslint-plugin-jsx-a11y: specifier: 6.5.1 version: 6.5.1(eslint@8.46.0) @@ -322,19 +319,19 @@ importers: version: 0.2.17 eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@8.46.0)(webpack@5.84.1) + version: 2.7.0(eslint@8.46.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) extract-text-webpack-plugin: specifier: ^4.0.0-beta.0 - version: 4.0.0-beta.0(webpack@5.84.1) + version: 4.0.0-beta.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fast-xml-parser: specifier: ^3.15.0 version: 3.21.1 file-loader: specifier: ^2.0.0 - version: 2.0.0(webpack@5.84.1) + version: 2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@8.46.0)(typescript@5.1.6)(webpack@5.84.1) + version: 6.5.3(eslint@8.46.0)(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fs-extra: specifier: ^9.0.1 version: 9.1.0 @@ -343,22 +340,22 @@ importers: version: 7.2.3 html-webpack-plugin: specifier: ^5.2.0 - version: 5.6.0(webpack@5.84.1) + version: 5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) identity-obj-proxy: specifier: ^3.0.0 version: 3.0.0 jest: specifier: 29.4.3 - version: 29.4.3(@types/node@18.11.9) + version: 29.4.3(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) jsonc-eslint-parser: specifier: ^2.1.0 version: 2.4.0 lerna: specifier: ^5.1.2 - version: 5.6.2(@swc-node/register@1.6.8)(@swc/core@1.3.99) + version: 5.6.2(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13) less-loader: specifier: ^5.0.0 - version: 5.0.0(less@3.13.1)(webpack@5.84.1) + version: 5.0.0(less@4.1.3)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) less-plugin-inline-urls: specifier: ^1.2.0 version: 1.2.0 @@ -379,10 +376,10 @@ importers: version: 1.2.0 mini-css-extract-plugin: specifier: ^0.4.3 - version: 0.4.5(webpack@5.84.1) + version: 0.4.5(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) nx: specifier: 17.0.0 - version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) + version: 17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) nyc: specifier: ^15.1.0 version: 15.1.0 @@ -400,10 +397,10 @@ importers: version: 15.8.1 raw-loader: specifier: ^4.0.2 - version: 4.0.2(webpack@5.84.1) + version: 4.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) react-hot-loader: specifier: ^4.13.0 - version: 4.13.1 + version: 4.13.1(@types/react@18.0.18) react-refresh: specifier: ^0.10.0 version: 0.10.0 @@ -421,25 +418,25 @@ importers: version: 0.2.4 storybook: specifier: 7.6.9 - version: 7.6.9 + version: 7.6.9(encoding@0.1.13) style-loader: specifier: ^3.3.0 - version: 3.3.4(webpack@5.84.1) + version: 3.3.4(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) stylus: specifier: 0.59.0 version: 0.59.0 stylus-loader: specifier: ^7.1.0 - version: 7.1.3(stylus@0.59.0)(webpack@5.84.1) + version: 7.1.3(stylus@0.59.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) terser-webpack-plugin: specifier: ^5.1.1 - version: 5.3.10(@swc/core@1.3.99)(esbuild@0.18.20)(webpack@5.84.1) + version: 5.3.10(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: 29.1.5 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.4.3)(typescript@5.1.6) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.4.3(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)))(typescript@5.1.6) ts-loader: specifier: ^6.0.1 version: 6.2.2(typescript@5.1.6) @@ -448,13 +445,13 @@ importers: version: 5.1.6 url-loader: specifier: ^4.1.1 - version: 4.1.1(file-loader@2.0.0)(webpack@5.84.1) + version: 4.1.1(file-loader@2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) watch: specifier: ^1.0.2 version: 1.0.2 webpack: specifier: 5.84.1 - version: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + version: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) webpack-bundle-analyzer: specifier: ^4.4.0 version: 4.10.2 @@ -463,13 +460,13 @@ importers: version: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) webpack-dev-server: specifier: ^3.11.2 - version: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) + version: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) webpack-merge: specifier: ^5.8.0 version: 5.10.0 worker-loader: specifier: ^2.0.0 - version: 2.0.0(webpack@5.84.1) + version: 2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) write-file-webpack-plugin: specifier: ^4.5.1 version: 4.5.1 @@ -478,37 +475,37 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -518,6 +515,9 @@ importers: '@wso2is/admin.api-resources.v2': specifier: ^2.20.60 version: link:../../features/admin.api-resources.v2 + '@wso2is/admin.application-templates.v1': + specifier: ^1.0.0 + version: link:../../features/admin.application-templates.v1 '@wso2is/admin.applications.v1': specifier: ^2.21.30 version: link:../../features/admin.applications.v1 @@ -691,7 +691,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -700,31 +700,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: 11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -733,7 +733,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -745,13 +745,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -761,7 +761,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@svgr/webpack': specifier: 4.3.2 version: 4.3.2 @@ -770,10 +770,10 @@ importers: version: 9.3.4 '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1)(react@18.3.1) + version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/user-event': specifier: ^14.5.2 version: 14.5.2(@testing-library/dom@9.3.4) @@ -830,7 +830,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -839,16 +839,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -866,13 +866,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^29.7.0 version: 29.7.0 @@ -881,10 +881,10 @@ importers: version: 4.0.0(jest-environment-jsdom@29.7.0) json-minimizer-webpack-plugin: specifier: ^5.0.0 - version: 5.0.0(webpack@5.84.1) + version: 5.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -902,10 +902,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -914,22 +914,22 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@babel/polyfill': specifier: ^7.0.0 version: 7.12.1 '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -998,19 +998,19 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) react-top-loading-bar: specifier: ^1.2.0 - version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1) + version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 @@ -1022,7 +1022,7 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -1032,7 +1032,7 @@ importers: devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) '@types/history': specifier: ^4.7.3 version: 4.7.11 @@ -1074,7 +1074,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -1083,16 +1083,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -1110,10 +1110,10 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^3.1.1 - version: 3.2.0(eslint@7.32.0)(webpack@5.84.1) + version: 3.2.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -1122,10 +1122,10 @@ importers: version: 4.0.0(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^5.0.0 - version: 5.0.0(webpack@5.84.1) + version: 5.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -1143,10 +1143,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -1155,37 +1155,37 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../modules/access-control @@ -1230,7 +1230,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -1263,7 +1263,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -1272,31 +1272,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: 11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -1305,7 +1305,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -1317,13 +1317,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -1333,7 +1333,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -1420,7 +1420,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -1432,16 +1432,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -1456,13 +1456,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -1471,10 +1471,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -1513,10 +1513,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -1525,31 +1525,31 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -1588,10 +1588,10 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) @@ -1600,7 +1600,7 @@ importers: version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@rollup/plugin-commonjs': specifier: ^25.0.7 @@ -1658,34 +1658,34 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -1724,10 +1724,10 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) @@ -1736,7 +1736,7 @@ importers: version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@rollup/plugin-commonjs': specifier: ^25.0.7 @@ -1845,16 +1845,16 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@rollup/plugin-commonjs': specifier: ^25.0.7 @@ -1914,44 +1914,114 @@ importers: specifier: ^4.6.4 version: 4.9.5 + features/admin.application-templates.v1: + dependencies: + '@wso2is/admin.applications.v1': + specifier: ^2.21.11 + version: link:../admin.applications.v1 + '@wso2is/admin.core.v1': + specifier: ^2.21.11 + version: link:../admin.core.v1 + '@wso2is/admin.template-core.v1': + specifier: ^1.0.0 + version: link:../admin.template-core.v1 + react: + specifier: ^18.2.0 + version: 18.3.1 + react-dom: + specifier: ^18.2.0 + version: 18.3.1(react@18.3.1) + react-router-dom: + specifier: ^4.3.1 + version: 4.3.1(react@18.3.1) + devDependencies: + '@rollup/plugin-commonjs': + specifier: ^25.0.7 + version: 25.0.8(rollup@4.18.1) + '@rollup/plugin-dynamic-import-vars': + specifier: ^2.1.2 + version: 2.1.2(rollup@4.18.1) + '@rollup/plugin-image': + specifier: ^3.0.3 + version: 3.0.3(rollup@4.18.1) + '@rollup/plugin-json': + specifier: ^6.1.0 + version: 6.1.0(rollup@4.18.1) + '@rollup/plugin-node-resolve': + specifier: ^15.2.3 + version: 15.2.3(rollup@4.18.1) + '@rollup/plugin-typescript': + specifier: ^11.1.6 + version: 11.1.6(rollup@4.18.1)(tslib@2.6.3)(typescript@4.9.5) + '@svgr/rollup': + specifier: ^6.2.1 + version: 6.5.1 + rollup: + specifier: ^4.17.2 + version: 4.18.1 + rollup-plugin-dts: + specifier: ^6.1.1 + version: 6.1.1(rollup@4.18.1)(typescript@4.9.5) + rollup-plugin-generate-package-json: + specifier: ^3.2.0 + version: 3.2.0(rollup@4.18.1) + rollup-plugin-polyfill-node: + specifier: ^0.13.0 + version: 0.13.0(rollup@4.18.1) + rollup-plugin-scss: + specifier: ^4.0.0 + version: 4.0.0 + rollup-plugin-styles: + specifier: ^4.0.0 + version: 4.0.0(rollup@4.18.1) + rollup-plugin-svg: + specifier: ^2.0.0 + version: 2.0.0 + typescript: + specifier: ^4.6.4 + version: 4.9.5 + features/admin.applications.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control '@wso2is/admin.api-resources.v2': specifier: ^2.20.60 version: link:../admin.api-resources.v2 + '@wso2is/admin.application-templates.v1': + specifier: ^1.0.0 + version: link:../admin.application-templates.v1 '@wso2is/admin.authentication-flow-builder.v1': specifier: ^2.20.60 version: link:../admin.authentication-flow-builder.v1 @@ -2000,6 +2070,9 @@ importers: '@wso2is/admin.server-configurations.v1': specifier: ^2.21.2 version: link:../admin.server-configurations.v1 + '@wso2is/admin.template-core.v1': + specifier: ^1.0.0 + version: link:../admin.template-core.v1 '@wso2is/admin.userstores.v1': specifier: ^2.20.60 version: link:../admin.userstores.v1 @@ -2062,13 +2135,13 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) @@ -2077,7 +2150,7 @@ importers: version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 @@ -2153,31 +2226,31 @@ importers: version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.applications.v1': specifier: ^2.21.30 version: link:../admin.applications.v1 @@ -2237,19 +2310,19 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@rollup/plugin-commonjs': specifier: ^25.0.7 @@ -2316,7 +2389,7 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@wso2is/admin.authorization.v1': specifier: ^2.20.22 version: link:../admin.authorization.v1 @@ -2352,7 +2425,7 @@ importers: version: 18.3.1(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) @@ -2380,7 +2453,7 @@ importers: version: 15.2.3(rollup@4.18.1) '@rollup/plugin-typescript': specifier: ^11.1.6 - version: 11.1.6(rollup@4.18.1)(tslib@2.6.3)(typescript@4.9.5) + version: 11.1.6(rollup@4.18.1)(tslib@2.6.3)(typescript@5.1.6) '@svgr/rollup': specifier: ^6.2.1 version: 6.5.1 @@ -2398,7 +2471,7 @@ importers: version: 4.18.1 rollup-plugin-dts: specifier: ^6.1.1 - version: 6.1.1(rollup@4.18.1)(typescript@4.9.5) + version: 6.1.1(rollup@4.18.1)(typescript@5.1.6) rollup-plugin-generate-package-json: specifier: ^3.2.0 version: 3.2.0(rollup@4.18.1) @@ -2419,13 +2492,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -2437,28 +2510,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -2503,7 +2576,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -2536,7 +2609,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -2545,31 +2618,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -2578,7 +2651,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -2590,13 +2663,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -2606,7 +2679,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -2693,7 +2766,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -2702,16 +2775,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -2726,13 +2799,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -2741,10 +2814,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -2783,10 +2856,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -2853,13 +2926,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -2871,28 +2944,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -2952,7 +3025,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -2985,7 +3058,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -2994,31 +3067,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -3027,7 +3100,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -3039,13 +3112,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -3055,7 +3128,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -3142,7 +3215,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -3151,16 +3224,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -3175,13 +3248,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -3190,10 +3263,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -3232,10 +3305,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -3244,13 +3317,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -3262,28 +3335,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -3349,7 +3422,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -3382,7 +3455,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -3391,31 +3464,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -3424,7 +3497,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -3436,13 +3509,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -3452,7 +3525,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -3539,7 +3612,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -3548,16 +3621,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -3572,13 +3645,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -3587,10 +3660,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -3629,10 +3702,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -3641,13 +3714,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -3659,28 +3732,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -3728,7 +3801,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -3764,7 +3837,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -3773,31 +3846,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -3806,7 +3879,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -3818,13 +3891,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -3834,7 +3907,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -3921,7 +3994,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -3930,16 +4003,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -3954,13 +4027,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -3969,10 +4042,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -4011,10 +4084,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -4023,13 +4096,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -4041,28 +4114,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -4128,7 +4201,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -4161,7 +4234,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -4170,31 +4243,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -4203,7 +4276,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -4215,13 +4288,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -4231,7 +4304,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -4318,7 +4391,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -4327,16 +4400,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -4351,13 +4424,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -4366,10 +4439,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -4408,10 +4481,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -4420,13 +4493,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -4438,28 +4511,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -4490,6 +4563,9 @@ importers: '@wso2is/admin.roles.v2': specifier: ^2.20.60 version: link:../admin.roles.v2 + '@wso2is/admin.template-core.v1': + specifier: ^1.0.0 + version: link:../admin.template-core.v1 '@wso2is/admin.userstores.v1': specifier: ^2.20.60 version: link:../admin.userstores.v1 @@ -4534,7 +4610,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -4567,7 +4643,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -4576,31 +4652,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -4609,7 +4685,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -4621,13 +4697,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -4637,7 +4713,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -4724,7 +4800,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -4733,16 +4809,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -4757,13 +4833,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -4772,10 +4848,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -4814,10 +4890,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -4826,13 +4902,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -4844,28 +4920,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -4943,7 +5019,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -4976,7 +5052,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -4985,31 +5061,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -5018,7 +5094,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -5030,13 +5106,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -5046,7 +5122,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -5133,7 +5209,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -5142,16 +5218,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -5166,13 +5242,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -5181,10 +5257,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -5223,10 +5299,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -5235,34 +5311,34 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -5272,6 +5348,9 @@ importers: '@wso2is/admin.api-resources.v2': specifier: ^2.20.60 version: link:../admin.api-resources.v2 + '@wso2is/admin.application-templates.v1': + specifier: ^1.0.0 + version: link:../admin.application-templates.v1 '@wso2is/admin.applications.v1': specifier: ^2.21.30 version: link:../admin.applications.v1 @@ -5368,6 +5447,9 @@ importers: '@wso2is/admin.sms-providers.v1': specifier: ^2.20.60 version: link:../admin.sms-providers.v1 + '@wso2is/admin.template-core.v1': + specifier: ^1.0.0 + version: link:../admin.template-core.v1 '@wso2is/admin.tenants.v1': specifier: ^2.20.60 version: link:../admin.tenants.v1 @@ -5424,7 +5506,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -5433,31 +5515,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -5466,7 +5548,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -5478,20 +5560,20 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -5578,7 +5660,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -5587,16 +5669,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -5611,13 +5693,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -5626,10 +5708,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -5668,10 +5750,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -5680,13 +5762,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -5698,28 +5780,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -5770,7 +5852,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -5803,7 +5885,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -5812,31 +5894,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -5845,7 +5927,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -5857,13 +5939,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -5873,7 +5955,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -5960,7 +6042,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -5969,16 +6051,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -5993,13 +6075,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -6008,10 +6090,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -6050,10 +6132,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -6062,13 +6144,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -6080,28 +6162,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -6155,7 +6237,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -6188,7 +6270,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -6197,31 +6279,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -6230,7 +6312,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -6242,13 +6324,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -6258,7 +6340,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -6345,7 +6427,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -6354,16 +6436,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -6378,13 +6460,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -6393,10 +6475,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -6435,10 +6517,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -6447,13 +6529,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -6465,28 +6547,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -6534,7 +6616,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -6567,7 +6649,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -6576,31 +6658,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -6609,7 +6691,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -6621,13 +6703,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -6637,7 +6719,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -6724,7 +6806,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -6733,16 +6815,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -6757,13 +6839,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -6772,10 +6854,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -6814,10 +6896,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -6826,13 +6908,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -6844,28 +6926,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -6916,7 +6998,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -6949,7 +7031,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -6958,31 +7040,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -6991,7 +7073,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -7003,13 +7085,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -7019,7 +7101,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -7106,7 +7188,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -7115,16 +7197,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -7139,13 +7221,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -7154,10 +7236,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -7196,10 +7278,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -7208,13 +7290,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -7226,28 +7308,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -7349,7 +7431,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -7382,7 +7464,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -7391,31 +7473,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -7424,7 +7506,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -7436,13 +7518,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -7452,7 +7534,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -7539,7 +7621,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -7548,16 +7630,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -7572,13 +7654,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -7587,10 +7669,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -7629,10 +7711,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -7641,13 +7723,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -7659,28 +7741,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -7731,7 +7813,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -7764,7 +7846,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -7773,31 +7855,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -7806,7 +7888,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -7818,13 +7900,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -7834,7 +7916,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -7921,7 +8003,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -7930,16 +8012,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -7954,13 +8036,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -7969,10 +8051,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -8011,10 +8093,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -8023,13 +8105,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -8041,28 +8123,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -8128,7 +8210,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -8161,7 +8243,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -8170,31 +8252,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -8203,7 +8285,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -8215,13 +8297,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -8231,7 +8313,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -8318,7 +8400,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -8327,16 +8409,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -8351,13 +8433,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -8366,10 +8448,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -8408,10 +8490,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -8420,13 +8502,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -8438,28 +8520,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -8534,7 +8616,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -8567,7 +8649,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -8576,31 +8658,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -8609,7 +8691,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -8621,13 +8703,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -8637,7 +8719,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -8724,7 +8806,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -8733,16 +8815,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -8757,13 +8839,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -8772,10 +8854,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -8814,10 +8896,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -8826,13 +8908,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -8844,28 +8926,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -8916,7 +8998,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -8949,7 +9031,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -8958,31 +9040,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -8991,7 +9073,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -9003,13 +9085,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -9019,7 +9101,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -9106,7 +9188,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -9115,16 +9197,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -9139,13 +9221,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -9154,10 +9236,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -9196,10 +9278,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -9208,13 +9290,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -9226,28 +9308,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -9292,7 +9374,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -9325,7 +9407,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -9334,22 +9416,22 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) @@ -9361,7 +9443,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -9373,13 +9455,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -9389,7 +9471,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -9476,7 +9558,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -9485,16 +9567,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -9509,13 +9591,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -9524,10 +9606,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -9566,10 +9648,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -9578,13 +9660,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -9596,28 +9678,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -9680,7 +9762,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -9713,7 +9795,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -9722,31 +9804,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -9755,7 +9837,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -9767,13 +9849,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -9783,7 +9865,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -9870,7 +9952,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -9879,16 +9961,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -9903,13 +9985,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -9918,10 +10000,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -9960,10 +10042,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -9972,13 +10054,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -9990,28 +10072,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -10065,7 +10147,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -10098,7 +10180,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -10107,31 +10189,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -10140,7 +10222,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -10152,13 +10234,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -10168,7 +10250,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -10255,7 +10337,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -10264,16 +10346,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -10288,13 +10370,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -10303,10 +10385,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -10345,10 +10427,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -10357,13 +10439,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -10375,28 +10457,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -10444,7 +10526,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -10477,7 +10559,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -10486,31 +10568,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -10519,7 +10601,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -10531,13 +10613,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -10547,7 +10629,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -10634,7 +10716,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -10643,16 +10725,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -10667,13 +10749,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -10682,10 +10764,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -10724,10 +10806,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -10736,13 +10818,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -10754,28 +10836,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -10826,7 +10908,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -10859,7 +10941,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -10868,31 +10950,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -10901,7 +10983,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -10913,13 +10995,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -10929,7 +11011,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -11016,7 +11098,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -11025,16 +11107,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -11049,13 +11131,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -11064,10 +11146,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -11106,10 +11188,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -11118,13 +11200,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -11136,28 +11218,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -11238,7 +11320,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -11271,7 +11353,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -11280,31 +11362,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -11313,7 +11395,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -11325,13 +11407,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -11341,7 +11423,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -11428,7 +11510,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -11437,16 +11519,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -11461,13 +11543,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -11476,10 +11558,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -11518,10 +11600,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -11530,13 +11612,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -11548,28 +11630,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -11620,7 +11702,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -11653,7 +11735,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -11662,31 +11744,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -11695,7 +11777,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -11707,13 +11789,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -11723,7 +11805,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -11810,7 +11892,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -11819,16 +11901,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -11843,13 +11925,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -11858,10 +11940,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -11900,10 +11982,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -11912,13 +11994,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -11930,28 +12012,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -12002,7 +12084,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -12035,7 +12117,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -12044,31 +12126,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -12077,7 +12159,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -12089,13 +12171,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -12105,7 +12187,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -12192,7 +12274,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -12201,16 +12283,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -12225,13 +12307,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -12240,10 +12322,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -12282,10 +12364,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -12294,13 +12376,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -12312,28 +12394,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -12390,7 +12472,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -12423,7 +12505,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -12432,31 +12514,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -12465,7 +12547,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -12477,13 +12559,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -12493,7 +12575,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -12580,7 +12662,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -12589,16 +12671,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -12613,13 +12695,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -12628,10 +12710,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -12670,10 +12752,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -12682,13 +12764,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -12700,28 +12782,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -12769,7 +12851,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -12802,7 +12884,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -12811,31 +12893,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -12844,7 +12926,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -12856,13 +12938,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -12872,7 +12954,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -12959,7 +13041,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -12968,16 +13050,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -12992,13 +13074,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -13007,10 +13089,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -13049,10 +13131,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -13061,13 +13143,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -13079,28 +13161,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -13163,7 +13245,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -13196,7 +13278,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -13205,31 +13287,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -13238,7 +13320,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -13250,13 +13332,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -13266,7 +13348,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -13353,7 +13435,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -13362,16 +13444,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -13386,13 +13468,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -13401,10 +13483,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -13443,10 +13525,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -13455,13 +13537,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -13473,28 +13555,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -13575,7 +13657,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -13608,7 +13690,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -13617,31 +13699,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -13650,7 +13732,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -13662,13 +13744,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -13678,7 +13760,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -13765,7 +13847,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -13774,16 +13856,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -13798,13 +13880,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -13813,10 +13895,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -13855,10 +13937,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -13867,13 +13949,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -13885,28 +13967,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -13954,7 +14036,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -13987,7 +14069,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -13996,31 +14078,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -14029,7 +14111,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -14041,13 +14123,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -14057,7 +14139,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -14144,7 +14226,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -14153,16 +14235,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -14177,13 +14259,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -14192,10 +14274,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -14234,10 +14316,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -14246,13 +14328,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -14264,28 +14346,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -14333,7 +14415,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -14366,7 +14448,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -14375,31 +14457,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -14408,7 +14490,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -14420,13 +14502,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -14436,7 +14518,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -14523,7 +14605,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -14532,16 +14614,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -14556,13 +14638,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -14571,10 +14653,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -14613,10 +14695,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -14625,13 +14707,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -14643,28 +14725,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -14727,7 +14809,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -14760,7 +14842,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -14769,31 +14851,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -14802,7 +14884,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -14814,13 +14896,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -14830,7 +14912,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -14917,7 +14999,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -14926,16 +15008,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -14950,13 +15032,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -14965,10 +15047,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -15007,10 +15089,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -15019,13 +15101,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -15037,28 +15119,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -15109,7 +15191,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -15142,7 +15224,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -15151,31 +15233,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -15184,7 +15266,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -15196,13 +15278,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -15212,7 +15294,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -15299,7 +15381,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -15308,16 +15390,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -15332,13 +15414,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -15347,10 +15429,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -15389,10 +15471,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -15401,13 +15483,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -15419,28 +15501,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -15488,7 +15570,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -15521,7 +15603,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -15530,31 +15612,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -15563,7 +15645,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -15575,13 +15657,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -15591,7 +15673,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -15678,7 +15760,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -15687,16 +15769,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -15711,13 +15793,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -15726,10 +15808,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -15768,10 +15850,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -15780,13 +15862,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -15798,28 +15880,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -15873,7 +15955,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -15906,7 +15988,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -15915,31 +15997,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -15948,7 +16030,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -15960,13 +16042,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -15976,7 +16058,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -16063,7 +16145,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -16072,16 +16154,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -16096,13 +16178,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -16111,10 +16193,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -16153,215 +16235,47 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.tenants.v1: + features/admin.template-core.v1: dependencies: - '@asgardeo/auth-react': - specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) - '@emotion/react': - specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': - specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) - '@microsoft/applicationinsights-core-js': - specifier: ^3.0.0 - version: 3.2.1(tslib@2.6.3) - '@microsoft/applicationinsights-react-js': - specifier: ^3.4.2 - version: 3.4.3(history@4.10.1)(react@18.3.1)(tslib@2.6.3) - '@microsoft/applicationinsights-web': - specifier: ^3.0.0 - version: 3.2.1(tslib@2.6.3) - '@monaco-editor/react': - specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) - '@mui/icons-material': - specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) - '@mui/lab': - specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/system': - specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) - '@mui/utils': - specifier: ^5.12.3 - version: 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@oxygen-ui/react': - specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) - '@oxygen-ui/react-icons': - specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) - '@wso2is/access-control': - specifier: ^3.0.11 - version: link:../../modules/access-control + '@wso2is/admin.application-templates.v1': + specifier: ^1.0.0 + version: link:../admin.application-templates.v1 + '@wso2is/admin.applications.v1': + specifier: ^2.21.11 + version: link:../admin.applications.v1 '@wso2is/admin.core.v1': - specifier: ^2.22.2 + specifier: ^2.21.11 version: link:../admin.core.v1 - '@wso2is/admin.extensions.v1': - specifier: ^2.21.30 - version: link:../admin.extensions.v1 - '@wso2is/admin.organizations.v1': - specifier: ^2.20.60 - version: link:../admin.organizations.v1 '@wso2is/core': - specifier: ^2.0.51 + specifier: ^2.0.50 version: link:../../modules/core - '@wso2is/dynamic-forms': - specifier: ^2.0.72 - version: link:../../modules/dynamic-forms - '@wso2is/form': - specifier: ^2.0.73 - version: link:../../modules/form - '@wso2is/forms': - specifier: ^2.0.41 - version: link:../../modules/forms - '@wso2is/i18n': - specifier: ^2.5.1 - version: link:../../modules/i18n - '@wso2is/react-components': - specifier: ^2.2.14 - version: link:../../modules/react-components - '@wso2is/theme': - specifier: ^2.0.89 - version: link:../../modules/theme - '@wso2is/validation': - specifier: ^2.0.6 - version: link:../../modules/validation - axios: - specifier: ^0.19.2 - version: 0.19.2 - codemirror: - specifier: ^5.52.0 - version: 5.65.16 - country-language: - specifier: ^0.1.7 - version: 0.1.7 - deep-equal: - specifier: ^2.2.2 - version: 2.2.3 - file-saver: - specifier: ^2.0.5 - version: 2.0.5 - framer-motion: - specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 - html-react-parser: - specifier: ^2.0.0 - version: 2.0.0(react@18.3.1) i18next: specifier: ^21.9.1 version: 21.10.0 - i18next-browser-languagedetector: - specifier: ^6.1.5 - version: 6.1.8 - i18next-xhr-backend: - specifier: ^3.2.2 - version: 3.2.2 - js-beautify: - specifier: ^1.13.0 - version: 1.15.1 - lodash-es: - specifier: ^4.17.21 - version: 4.17.21 - moment: - specifier: ^2.24.0 - version: 2.30.1 - mustache: - specifier: ^4.2.0 - version: 4.2.0 - node-forge: - specifier: ^0.10.0 - version: 0.10.0 - rc-tree: - specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 react-dom: specifier: ^18.2.0 version: 18.3.1(react@18.3.1) - react-draggable: - specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) - react-helmet: - specifier: ^5.2.1 - version: 5.2.1(react@18.3.1) - react-i18next: - specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) - react-joyride: - specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - react-notification-system: - specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) - reactflow: - specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - recharts: - specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) - reduce-reducers: - specifier: ^1.0.4 - version: 1.0.4 redux: specifier: ^4.0.4 version: 4.2.1 - redux-form: - specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) - redux-mock-store: - specifier: ^1.5.4 - version: 1.5.4 - redux-thunk: - specifier: ^2.3.0 - version: 2.4.2(redux@4.2.1) - regenerator-runtime: - specifier: ^0.13.9 - version: 0.13.11 - semantic-ui-react: - specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) - slashes: - specifier: ^2.0.2 - version: 2.0.2 - styled-components: - specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) - swr: - specifier: ^2.0.0 - version: 2.2.5(react@18.3.1) - uuid: - specifier: ^8.3.0 - version: 8.3.2 devDependencies: - '@pmmmwh/react-refresh-webpack-plugin': - specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -16383,135 +16297,382 @@ importers: '@svgr/rollup': specifier: ^6.2.1 version: 6.5.1 - '@svgr/webpack': - specifier: 4.3.2 - version: 4.3.2 - '@testing-library/dom': - specifier: ^7.24.3 - version: 7.31.2 - '@testing-library/jest-dom': - specifier: ^5.11.9 - version: 5.17.0 - '@testing-library/user-event': - specifier: ^12.7.3 - version: 12.8.3(@testing-library/dom@7.31.2) - '@types/file-saver': - specifier: ^2.0.1 - version: 2.0.7 - '@types/history': - specifier: ^4.7.3 - version: 4.7.11 - '@types/jest': - specifier: ^26.0.14 - version: 26.0.24 - '@types/lodash-es': - specifier: ^4.17.4 - version: 4.17.12 - '@types/node': - specifier: ^13.9.2 - version: 13.13.52 - '@types/node-forge': - specifier: ^0.9.3 - version: 0.9.10 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 - '@types/react-notification-system': - specifier: 0.2.39 - version: 0.2.39 - '@types/react-redux': - specifier: ^7.1.25 - version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 - '@types/reactour': - specifier: ^1.18.1 - version: 1.18.5 - '@types/redux-mock-store': - specifier: ^1.0.2 - version: 1.0.6 - '@types/testing-library__jest-dom': - specifier: ^5.14.3 - version: 5.14.9 - '@types/uuid': - specifier: ^9.0.1 - version: 9.0.8 - '@types/webpack-env': - specifier: ^1.16.0 - version: 1.18.5 - '@typescript-eslint/eslint-plugin': - specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) - '@typescript-eslint/parser': - specifier: ^4.32.0 - version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) - connect-history-api-fallback: - specifier: ^2.0.0 - version: 2.0.0 - copy-webpack-plugin: - specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) - css-loader: - specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) - eslint: - specifier: ^7.20.0 - version: 7.32.0 - eslint-plugin-import: - specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) - eslint-plugin-jest-dom: - specifier: ^4.0.1 - version: 4.0.3(eslint@7.32.0) - eslint-plugin-react: - specifier: ^7.18.3 - version: 7.34.3(eslint@7.32.0) - eslint-plugin-react-hooks: - specifier: ^4.0.0 - version: 4.6.2(eslint@7.32.0) - eslint-plugin-testing-library: - specifier: ^5.0.5 - version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) - eslint-webpack-plugin: - specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) - fork-ts-checker-webpack-plugin: - specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) - jest: - specifier: ^26.4.2 - version: 26.6.3 - jest-environment-jsdom: - specifier: ^26.3.0 - version: 26.6.2 - jest-environment-jsdom-global: - specifier: ^2.0.4 - version: 2.0.4(jest-environment-jsdom@26.6.2) - json-minimizer-webpack-plugin: - specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) - msw: - specifier: ^0.36.8 - version: 0.36.8 - process: - specifier: ^0.11.10 - version: 0.11.10 - react-refresh: - specifier: ^0.9.0 - version: 0.9.0 - redux-devtools-extension: - specifier: ^2.13.8 - version: 2.13.9(redux@4.2.1) - rimraf: - specifier: ^3.0.2 - version: 3.0.2 + rollup: + specifier: ^4.17.2 + version: 4.18.1 + rollup-plugin-dts: + specifier: ^6.1.1 + version: 6.1.1(rollup@4.18.1)(typescript@4.9.5) + rollup-plugin-generate-package-json: + specifier: ^3.2.0 + version: 3.2.0(rollup@4.18.1) + rollup-plugin-polyfill-node: + specifier: ^0.13.0 + version: 0.13.0(rollup@4.18.1) + rollup-plugin-scss: + specifier: ^4.0.0 + version: 4.0.0 + rollup-plugin-styles: + specifier: ^4.0.0 + version: 4.0.0(rollup@4.18.1) + rollup-plugin-svg: + specifier: ^2.0.0 + version: 2.0.0 + typescript: + specifier: ^4.6.4 + version: 4.9.5 + + features/admin.tenants.v1: + dependencies: + '@asgardeo/auth-react': + specifier: ^4.0.4 + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + '@emotion/react': + specifier: ^11.11.0 + version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': + specifier: ^11.11.0 + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + '@microsoft/applicationinsights-core-js': + specifier: ^3.0.0 + version: 3.2.1(tslib@2.6.3) + '@microsoft/applicationinsights-react-js': + specifier: ^3.4.2 + version: 3.4.3(history@4.10.1)(react@18.3.1)(tslib@2.6.3) + '@microsoft/applicationinsights-web': + specifier: ^3.0.0 + version: 3.2.1(tslib@2.6.3) + '@monaco-editor/react': + specifier: ^4.5.1 + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/icons-material': + specifier: ^5.11.16 + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + '@mui/lab': + specifier: 5.0.0-alpha.129 + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/material': + specifier: 5.13.0 + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/system': + specifier: ^5.12.3 + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + '@mui/utils': + specifier: ^5.12.3 + version: 5.15.20(@types/react@18.0.18)(react@18.3.1) + '@oxygen-ui/react': + specifier: ^1.11.0 + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + '@oxygen-ui/react-icons': + specifier: ^1.11.0 + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + '@wso2is/access-control': + specifier: ^3.0.11 + version: link:../../modules/access-control + '@wso2is/admin.core.v1': + specifier: ^2.22.2 + version: link:../admin.core.v1 + '@wso2is/admin.extensions.v1': + specifier: ^2.21.30 + version: link:../admin.extensions.v1 + '@wso2is/admin.organizations.v1': + specifier: ^2.20.60 + version: link:../admin.organizations.v1 + '@wso2is/core': + specifier: ^2.0.51 + version: link:../../modules/core + '@wso2is/dynamic-forms': + specifier: ^2.0.72 + version: link:../../modules/dynamic-forms + '@wso2is/form': + specifier: ^2.0.73 + version: link:../../modules/form + '@wso2is/forms': + specifier: ^2.0.41 + version: link:../../modules/forms + '@wso2is/i18n': + specifier: ^2.5.1 + version: link:../../modules/i18n + '@wso2is/react-components': + specifier: ^2.2.14 + version: link:../../modules/react-components + '@wso2is/theme': + specifier: ^2.0.89 + version: link:../../modules/theme + '@wso2is/validation': + specifier: ^2.0.6 + version: link:../../modules/validation + axios: + specifier: ^0.19.2 + version: 0.19.2 + codemirror: + specifier: ^5.52.0 + version: 5.65.16 + country-language: + specifier: ^0.1.7 + version: 0.1.7 + deep-equal: + specifier: ^2.2.2 + version: 2.2.3 + file-saver: + specifier: ^2.0.5 + version: 2.0.5 + framer-motion: + specifier: ^11.1.9 + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + history: + specifier: ^4.9.0 + version: 4.10.1 + html-react-parser: + specifier: ^2.0.0 + version: 2.0.0(react@18.3.1) + i18next: + specifier: ^21.9.1 + version: 21.10.0 + i18next-browser-languagedetector: + specifier: ^6.1.5 + version: 6.1.8 + i18next-xhr-backend: + specifier: ^3.2.2 + version: 3.2.2 + js-beautify: + specifier: ^1.13.0 + version: 1.15.1 + lodash-es: + specifier: ^4.17.21 + version: 4.17.21 + moment: + specifier: ^2.24.0 + version: 2.30.1 + mustache: + specifier: ^4.2.0 + version: 4.2.0 + node-forge: + specifier: ^0.10.0 + version: 0.10.0 + rc-tree: + specifier: ^4.0.0-beta.2 + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: + specifier: ^18.2.0 + version: 18.3.1 + react-dom: + specifier: ^18.2.0 + version: 18.3.1(react@18.3.1) + react-draggable: + specifier: ^4.2.0 + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-helmet: + specifier: ^5.2.1 + version: 5.2.1(react@18.3.1) + react-i18next: + specifier: ^11.18.5 + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-joyride: + specifier: ^2.3.0 + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-notification-system: + specifier: ^0.4.0 + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-redux: + specifier: ^7.2.9 + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-router-dom: + specifier: ^4.3.1 + version: 4.3.1(react@18.3.1) + reactflow: + specifier: ^11.7.2 + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + recharts: + specifier: ^2.6.2 + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + reduce-reducers: + specifier: ^1.0.4 + version: 1.0.4 + redux: + specifier: ^4.0.4 + version: 4.2.1 + redux-form: + specifier: ^8.3.7 + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + redux-mock-store: + specifier: ^1.5.4 + version: 1.5.4 + redux-thunk: + specifier: ^2.3.0 + version: 2.4.2(redux@4.2.1) + regenerator-runtime: + specifier: ^0.13.9 + version: 0.13.11 + semantic-ui-react: + specifier: ^2.1.3 + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + slashes: + specifier: ^2.0.2 + version: 2.0.2 + styled-components: + specifier: ^4.4.1 + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + swr: + specifier: ^2.0.0 + version: 2.2.5(react@18.3.1) + uuid: + specifier: ^8.3.0 + version: 8.3.2 + devDependencies: + '@pmmmwh/react-refresh-webpack-plugin': + specifier: ^0.4.3 + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@rollup/plugin-commonjs': + specifier: ^25.0.7 + version: 25.0.8(rollup@4.18.1) + '@rollup/plugin-dynamic-import-vars': + specifier: ^2.1.2 + version: 2.1.2(rollup@4.18.1) + '@rollup/plugin-image': + specifier: ^3.0.3 + version: 3.0.3(rollup@4.18.1) + '@rollup/plugin-json': + specifier: ^6.1.0 + version: 6.1.0(rollup@4.18.1) + '@rollup/plugin-node-resolve': + specifier: ^15.2.3 + version: 15.2.3(rollup@4.18.1) + '@rollup/plugin-typescript': + specifier: ^11.1.6 + version: 11.1.6(rollup@4.18.1)(tslib@2.6.3)(typescript@4.9.5) + '@svgr/rollup': + specifier: ^6.2.1 + version: 6.5.1 + '@svgr/webpack': + specifier: 4.3.2 + version: 4.3.2 + '@testing-library/dom': + specifier: ^7.24.3 + version: 7.31.2 + '@testing-library/jest-dom': + specifier: ^5.11.9 + version: 5.17.0 + '@testing-library/user-event': + specifier: ^12.7.3 + version: 12.8.3(@testing-library/dom@7.31.2) + '@types/file-saver': + specifier: ^2.0.1 + version: 2.0.7 + '@types/history': + specifier: ^4.7.3 + version: 4.7.11 + '@types/jest': + specifier: ^26.0.14 + version: 26.0.24 + '@types/lodash-es': + specifier: ^4.17.4 + version: 4.17.12 + '@types/node': + specifier: ^13.9.2 + version: 13.13.52 + '@types/node-forge': + specifier: ^0.9.3 + version: 0.9.10 + '@types/react': + specifier: 18.0.18 + version: 18.0.18 + '@types/react-dom': + specifier: ^18.0.6 + version: 18.3.0 + '@types/react-notification-system': + specifier: 0.2.39 + version: 0.2.39 + '@types/react-redux': + specifier: ^7.1.25 + version: 7.1.33 + '@types/react-router': + specifier: ^5.1.18 + version: 5.1.20 + '@types/react-router-dom': + specifier: ^5.1.3 + version: 5.3.3 + '@types/reactour': + specifier: ^1.18.1 + version: 1.18.5 + '@types/redux-mock-store': + specifier: ^1.0.2 + version: 1.0.6 + '@types/testing-library__jest-dom': + specifier: ^5.14.3 + version: 5.14.9 + '@types/uuid': + specifier: ^9.0.1 + version: 9.0.8 + '@types/webpack-env': + specifier: ^1.16.0 + version: 1.18.5 + '@typescript-eslint/eslint-plugin': + specifier: ^4.32.0 + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + '@typescript-eslint/parser': + specifier: ^4.32.0 + version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) + connect-history-api-fallback: + specifier: ^2.0.0 + version: 2.0.0 + copy-webpack-plugin: + specifier: ^12.0.2 + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + css-loader: + specifier: ^1.0.0 + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + eslint: + specifier: ^7.20.0 + version: 7.32.0 + eslint-plugin-import: + specifier: ^2.20.2 + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + eslint-plugin-jest-dom: + specifier: ^4.0.1 + version: 4.0.3(eslint@7.32.0) + eslint-plugin-react: + specifier: ^7.18.3 + version: 7.34.3(eslint@7.32.0) + eslint-plugin-react-hooks: + specifier: ^4.0.0 + version: 4.6.2(eslint@7.32.0) + eslint-plugin-testing-library: + specifier: ^5.0.5 + version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) + eslint-webpack-plugin: + specifier: ^2.5.3 + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + fork-ts-checker-webpack-plugin: + specifier: ^6.1.0 + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + jest: + specifier: ^26.4.2 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-environment-jsdom: + specifier: ^26.3.0 + version: 26.6.2 + jest-environment-jsdom-global: + specifier: ^2.0.4 + version: 2.0.4(jest-environment-jsdom@26.6.2) + json-minimizer-webpack-plugin: + specifier: ^4.0.0 + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + msw: + specifier: ^0.36.8 + version: 0.36.8(encoding@0.1.13) + process: + specifier: ^0.11.10 + version: 0.11.10 + react-refresh: + specifier: ^0.9.0 + version: 0.9.0 + redux-devtools-extension: + specifier: ^2.13.8 + version: 2.13.9(redux@4.2.1) + rimraf: + specifier: ^3.0.2 + version: 3.0.2 rollup: specifier: ^4.17.2 version: 4.18.1 @@ -16538,10 +16699,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -16550,13 +16711,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -16568,28 +16729,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -16673,7 +16834,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -16706,7 +16867,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -16715,31 +16876,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -16748,7 +16909,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -16760,13 +16921,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -16776,7 +16937,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -16863,7 +17024,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -16872,16 +17033,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -16896,13 +17057,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -16911,10 +17072,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -16953,10 +17114,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -16965,13 +17126,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -16983,28 +17144,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -17055,7 +17216,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -17088,7 +17249,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -17097,31 +17258,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -17130,7 +17291,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -17142,13 +17303,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -17158,7 +17319,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -17245,7 +17406,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -17254,16 +17415,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -17278,13 +17439,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -17293,10 +17454,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -17335,10 +17496,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -17347,13 +17508,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -17365,28 +17526,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -17446,7 +17607,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -17479,7 +17640,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -17488,31 +17649,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -17521,7 +17682,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -17533,13 +17694,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -17549,7 +17710,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -17636,7 +17797,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -17645,16 +17806,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -17669,13 +17830,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -17684,10 +17845,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -17726,10 +17887,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -17738,13 +17899,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -17756,28 +17917,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -17825,7 +17986,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -17858,7 +18019,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -17867,31 +18028,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -17900,7 +18061,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -17912,13 +18073,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -17928,7 +18089,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -18015,7 +18176,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -18024,16 +18185,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -18048,13 +18209,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -18063,10 +18224,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -18105,10 +18266,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -18117,13 +18278,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -18135,28 +18296,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -18204,7 +18365,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -18237,7 +18398,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -18246,31 +18407,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -18279,7 +18440,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -18291,13 +18452,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -18307,7 +18468,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -18394,7 +18555,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -18403,16 +18564,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -18427,13 +18588,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -18442,10 +18603,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -18484,10 +18645,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -18496,13 +18657,13 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -18514,28 +18675,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -18583,7 +18744,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -18616,7 +18777,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -18625,31 +18786,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -18658,7 +18819,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -18670,13 +18831,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -18686,7 +18847,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -18773,7 +18934,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -18782,16 +18943,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1) + version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -18806,13 +18967,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) jest: specifier: ^26.4.2 - version: 26.6.3 + version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -18821,10 +18982,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1) + version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) process: specifier: ^0.11.10 version: 0.11.10 @@ -18863,10 +19024,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1) + version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -18878,25 +19039,25 @@ importers: version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 @@ -18990,7 +19151,7 @@ importers: version: link:../core jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@18.11.9) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) react: specifier: '*' version: 18.3.1 @@ -18999,14 +19160,14 @@ importers: version: 18.3.1(react@18.3.1) ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) devDependencies: '@types/react': specifier: 18.0.18 version: 18.0.18 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19015,7 +19176,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19033,7 +19194,7 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@16.14.0)(react-router-dom@6.24.1)(react@16.14.0) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.24.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) '@braintree/sanitize-url': specifier: ^5.0.0 version: 5.0.2 @@ -19057,7 +19218,7 @@ importers: version: 2.0.5 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) js-yaml: specifier: 3.13.1 version: 3.13.1 @@ -19072,10 +19233,10 @@ importers: version: 0.10.0 react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@16.14.0)(react@16.14.0) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) ua-parser-js: specifier: 0.7.28 version: 0.7.28 @@ -19106,7 +19267,7 @@ importers: version: 0.7.36 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19115,7 +19276,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19133,10 +19294,10 @@ importers: dependencies: '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/core': specifier: ^2.0.51 version: link:../core @@ -19163,14 +19324,14 @@ importers: version: 6.5.9(final-form@4.20.10)(react@18.3.1) semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1)(react@18.3.1) + version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/jest': specifier: ^29.5.12 version: 29.5.12 @@ -19185,7 +19346,7 @@ importers: version: 5.14.9 '@typescript-eslint/eslint-plugin': specifier: ^4.17.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.17.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19197,7 +19358,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19206,13 +19367,13 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@18.11.9) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19221,7 +19382,7 @@ importers: dependencies: '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@wso2is/core': specifier: ^2.0.51 version: link:../core @@ -19245,14 +19406,14 @@ importers: version: 6.5.9(final-form@4.20.10)(react@18.3.1) semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1)(react@18.3.1) + version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/jest': specifier: ^29.5.12 version: 29.5.12 @@ -19264,7 +19425,7 @@ importers: version: 18.0.18 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19273,7 +19434,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19282,13 +19443,13 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@18.11.9) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19306,14 +19467,14 @@ importers: version: 4.17.21 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) + version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1)(react@18.3.1) + version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/jest': specifier: ^29.5.12 version: 29.5.12 @@ -19328,7 +19489,7 @@ importers: version: 5.14.9 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19340,7 +19501,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19349,13 +19510,13 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@18.11.9) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19385,7 +19546,7 @@ importers: version: 4.17.21 react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@types/i18next': specifier: 8.4.3 @@ -19401,7 +19562,7 @@ importers: version: 13.13.52 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19410,7 +19571,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19419,13 +19580,13 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19437,28 +19598,28 @@ importers: version: 6.2.1(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@storybook/addons': specifier: ^6.5.9 - version: 6.5.16(react-dom@18.3.1)(react@18.3.1) + version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/builder-webpack5': specifier: ^6.5.9 - version: 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/core-server': specifier: ^6.5.9 - version: 6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/manager-webpack5': specifier: ^6.5.9 - version: 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/react': specifier: ^6.5.9 - version: 6.5.16(@babel/core@7.24.7)(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(require-from-string@2.0.2)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3) + version: 6.5.16(@babel/core@7.24.7)(@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/webpack@4.41.38)(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(require-from-string@2.0.2)(sockjs-client@1.6.1)(type-fest@4.20.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1) '@storybook/theming': specifier: ^6.5.9 - version: 6.5.16(react-dom@18.3.1)(react@18.3.1) + version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@wso2is/core': specifier: ^2.0.51 version: link:../core @@ -19471,6 +19632,9 @@ importers: codemirror: specifier: ^5.52.0 version: 5.65.16 + file-saver: + specifier: ^2.0.5 + version: 2.0.5 i18next: specifier: ^21.9.1 version: 21.10.0 @@ -19500,28 +19664,31 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-markdown: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) + specifier: ^9.0.1 + version: 9.0.1(@types/react@18.0.18)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) react-top-loading-bar: specifier: ^1.2.0 - version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1) + version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-transition-group: specifier: ^4.4.1 - version: 4.4.5(react-dom@18.3.1)(react@18.3.1) + version: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rehype-attr: + specifier: ^3.0.3 + version: 3.0.3 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) storybook: specifier: ^6.5.9 - version: 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) tinycolor: specifier: 0.0.1 version: 0.0.1 @@ -19534,34 +19701,34 @@ importers: version: 7.24.7 '@rollup/plugin-url': specifier: ^7.0.0 - version: 7.0.0(rollup@2.79.1) + version: 7.0.0(rollup@4.18.1) '@storybook/addon-actions': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1)(react@18.3.1) + version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-backgrounds': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1)(react@18.3.1) + version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-controls': specifier: ^6.5.12 - version: 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + version: 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/addon-docs': specifier: ^6.5.12 - version: 6.5.16(@babel/core@7.24.7)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1) + version: 6.5.16(@babel/core@7.24.7)(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@storybook/addon-links': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1)(react@18.3.1) + version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-measure': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1)(react@18.3.1) + version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-outline': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1)(react@18.3.1) + version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-toolbars': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1)(react@18.3.1) + version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-viewport': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1)(react@18.3.1) + version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@svgr/rollup': specifier: ^6.2.1 version: 6.5.1 @@ -19600,25 +19767,25 @@ importers: version: 5.3.3 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) babel-loader: specifier: ^8.1.0 - version: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + version: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) babel-plugin-rename-jsx-attribute: specifier: ^0.2.4 - version: 0.2.4(babel-core@6.26.3) + version: 0.2.4(babel-core@7.0.0-bridge.0(@babel/core@7.24.7)) copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1) + version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19627,16 +19794,16 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) postcss-import: specifier: ^14.1.0 - version: 14.1.0(postcss@8.4.39) + version: 14.1.0(postcss@7.0.39) postcss-import-ext-glob: specifier: ^2.0.1 - version: 2.1.1(postcss@8.4.39) + version: 2.1.1(postcss@7.0.39) react-docgen-typescript-loader: specifier: ^3.6.0 - version: 3.7.2(typescript@4.9.5)(webpack@5.84.1) + version: 3.7.2(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) react-dom: specifier: ^18.2.0 version: 18.3.1(react@18.3.1) @@ -19645,7 +19812,7 @@ importers: version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^8.5.4 version: 8.10.2(typescript@4.9.5) @@ -19669,10 +19836,10 @@ importers: version: 29.5.12 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.1.6))(eslint@7.32.0)(typescript@5.1.6) '@typescript-eslint/parser': specifier: ^4.32.0 - version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(eslint@7.32.0)(typescript@5.1.6) babel-plugin-transform-es2015-modules-commonjs: specifier: ^6.26.2 version: 6.26.2 @@ -19684,7 +19851,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.1.6))(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19696,7 +19863,7 @@ importers: version: 9.1.0 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@18.11.9) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) less: specifier: ^3.10.3 version: 3.13.1 @@ -19711,7 +19878,7 @@ importers: version: 0.1.2 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) replace: specifier: ^1.1.5 version: 1.2.2 @@ -19726,7 +19893,7 @@ importers: version: 2.5.0 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)))(typescript@5.1.6) watch: specifier: ^1.0.2 version: 1.0.2 @@ -19735,7 +19902,7 @@ importers: devDependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@6.24.1)(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.24.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) '@wso2is/access-control': specifier: workspace:* version: link:../access-control @@ -19747,7 +19914,7 @@ importers: version: link:../../features/admin.extensions.v1 msw: specifier: ^0.36.8 - version: 0.36.8 + version: 0.36.8(encoding@0.1.13) react: specifier: ^18.2.0 version: 18.3.1 @@ -19775,7 +19942,7 @@ importers: version: 29.5.12 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19784,7 +19951,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19793,1103 +19960,14948 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@18.11.9) + version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 packages: - /@adobe/css-tools@4.4.0: + '@adobe/css-tools@4.4.0': resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==} - dev: true - /@ampproject/remapping@2.3.0: + '@ampproject/remapping@2.3.0': resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - /@artsy/fresnel@6.2.1(react@18.3.1): + '@artsy/fresnel@6.2.1': resolution: {integrity: sha512-UAyHZU64Vie3sLDdL3qD+7pODGzKNu9pSpxGKpDOCaiBvCDZnFXIfJEEfV9v9i+QiJJwzO+lqsFwvw6YiJeXFQ==} engines: {node: '>=12.20.2', yarn: 1.x.x} peerDependencies: react: '>=16.3.0' - dependencies: - react: 18.3.1 - dev: false - /@asgardeo/auth-js@5.0.1: + '@asgardeo/auth-js@5.0.1': resolution: {integrity: sha512-XTb/+jPPBAnNGlZYeHVz2Ut5hI8DeJiMmX5YcAijiAvtW4Ove82lT4aLXm+FL8XmCYc+61hFNG1QLf8q2nMfSQ==} - /@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@16.14.0)(react-router-dom@6.24.1)(react@16.14.0): - resolution: {integrity: sha512-PltiGPAUVyekEOun9BMte3H2AmFsihiLisobjax5NxdkpDurvrgUR9xCUh7qKkoQQHq4N1Y5crc8UpCg+hkLmQ==} - peerDependencies: - '@babel/runtime-corejs3': ^7.11.2 - react: '>=16.8' - react-dom: '>=16.8' - react-router-dom: ^6.3.0 - dependencies: - '@asgardeo/auth-spa': 3.0.3 - '@babel/runtime-corejs3': 7.24.7 - react: 16.14.0 - react-dom: 16.14.0(react@16.14.0) - react-router-dom: 6.24.1(react-dom@16.14.0)(react@16.14.0) - transitivePeerDependencies: - - debug - dev: false - - /@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1): - resolution: {integrity: sha512-PltiGPAUVyekEOun9BMte3H2AmFsihiLisobjax5NxdkpDurvrgUR9xCUh7qKkoQQHq4N1Y5crc8UpCg+hkLmQ==} - peerDependencies: - '@babel/runtime-corejs3': ^7.11.2 - react: '>=16.8' - react-dom: '>=16.8' - react-router-dom: ^6.3.0 - dependencies: - '@asgardeo/auth-spa': 3.0.3 - '@babel/runtime-corejs3': 7.24.7 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-router-dom: 4.3.1(react@18.3.1) - transitivePeerDependencies: - - debug - dev: false - - /@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@6.24.1)(react@18.3.1): + '@asgardeo/auth-react@4.0.4': resolution: {integrity: sha512-PltiGPAUVyekEOun9BMte3H2AmFsihiLisobjax5NxdkpDurvrgUR9xCUh7qKkoQQHq4N1Y5crc8UpCg+hkLmQ==} peerDependencies: '@babel/runtime-corejs3': ^7.11.2 react: '>=16.8' react-dom: '>=16.8' react-router-dom: ^6.3.0 - dependencies: - '@asgardeo/auth-spa': 3.0.3 - '@babel/runtime-corejs3': 7.24.7 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-router-dom: 6.24.1(react-dom@18.3.1)(react@18.3.1) - transitivePeerDependencies: - - debug - dev: true - /@asgardeo/auth-spa@3.0.3: + '@asgardeo/auth-spa@3.0.3': resolution: {integrity: sha512-2iRy6Si/xl68EsUV92IuMz0s9/8nFq/a+63Ui0Xr2Ysjc3YsWIO0zVmdpqevZ1J9yzGb9Fyy7uqlKE0QY7m8pA==} - dependencies: - '@asgardeo/auth-js': 5.0.1 - await-semaphore: 0.1.3 - axios: 0.26.1 - base64url: 3.0.1 - buffer: 6.0.3 - fast-sha256: 1.3.0 - jose: 4.15.7 - randombytes: 2.1.0 - transitivePeerDependencies: - - debug - /@aw-web-design/x-default-browser@1.4.126: + '@aw-web-design/x-default-browser@1.4.126': resolution: {integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==} hasBin: true - dependencies: - default-browser-id: 3.0.0 - dev: true - /@babel/cli@7.24.7(@babel/core@7.24.7): + '@babel/cli@7.24.7': resolution: {integrity: sha512-8dfPprJgV4O14WTx+AQyEA+opgUKPrsIXX/MdL50J1n06EQJ6m1T+CdsJe0qEC0B/Xl85i+Un5KVAxd/PACX9A==} engines: {node: '>=6.9.0'} hasBin: true peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@jridgewell/trace-mapping': 0.3.25 - commander: 6.2.1 - convert-source-map: 2.0.0 - fs-readdir-recursive: 1.1.0 - glob: 7.2.3 - make-dir: 2.1.0 - slash: 2.0.0 - optionalDependencies: - '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3 - chokidar: 3.6.0 - dev: true - /@babel/code-frame@7.12.11: + '@babel/code-frame@7.12.11': resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} - dependencies: - '@babel/highlight': 7.24.7 - /@babel/code-frame@7.24.7: + '@babel/code-frame@7.24.7': resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/highlight': 7.24.7 - picocolors: 1.0.1 - /@babel/compat-data@7.24.7: + '@babel/compat-data@7.24.7': resolution: {integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==} engines: {node: '>=6.9.0'} - /@babel/core@7.12.9: + '@babel/core@7.12.9': resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.24.7 - '@babel/generator': 7.24.7 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.12.9) - '@babel/helpers': 7.24.7 - '@babel/parser': 7.24.7 - '@babel/template': 7.24.7 - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - convert-source-map: 1.9.0 - debug: 4.3.5(supports-color@6.1.0) - gensync: 1.0.0-beta.2 - json5: 2.2.3 - lodash: 4.17.21 - resolve: 1.22.8 - semver: 5.7.2 - source-map: 0.5.7 - transitivePeerDependencies: - - supports-color - /@babel/core@7.24.7: + '@babel/core@7.24.7': resolution: {integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==} engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.24.7 - '@babel/generator': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) - '@babel/helpers': 7.24.7 - '@babel/parser': 7.24.7 - '@babel/template': 7.24.7 - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - convert-source-map: 2.0.0 - debug: 4.3.5(supports-color@6.1.0) - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - /@babel/generator@7.24.7: + '@babel/generator@7.24.7': resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.24.7 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 2.5.2 - /@babel/helper-annotate-as-pure@7.24.7: + '@babel/helper-annotate-as-pure@7.24.7': resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.24.7 - /@babel/helper-builder-binary-assignment-operator-visitor@7.24.7: + '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7': resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-compilation-targets@7.24.7: + '@babel/helper-compilation-targets@7.24.7': resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/compat-data': 7.24.7 - '@babel/helper-validator-option': 7.24.7 - browserslist: 4.23.1 - lru-cache: 5.1.1 - semver: 6.3.1 - /@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.7): + '@babel/helper-create-class-features-plugin@7.24.7': resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.24.7 - '@babel/helper-optimise-call-expression': 7.24.7 - '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7) - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - /@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.7): + '@babel/helper-create-regexp-features-plugin@7.24.7': resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - regexpu-core: 5.3.2 - semver: 6.3.1 - /@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.24.7): + '@babel/helper-define-polyfill-provider@0.1.5': resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: '@babel/core': ^7.4.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/traverse': 7.24.7 - debug: 4.3.5(supports-color@6.1.0) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - /@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.7): + '@babel/helper-define-polyfill-provider@0.6.2': resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - debug: 4.3.5(supports-color@6.1.0) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - /@babel/helper-environment-visitor@7.24.7: + '@babel/helper-environment-visitor@7.24.7': resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.24.7 - /@babel/helper-function-name@7.24.7: + '@babel/helper-function-name@7.24.7': resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.24.7 - '@babel/types': 7.24.7 - /@babel/helper-hoist-variables@7.24.7: + '@babel/helper-hoist-variables@7.24.7': resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.24.7 - /@babel/helper-member-expression-to-functions@7.24.7: + '@babel/helper-member-expression-to-functions@7.24.7': resolution: {integrity: sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - - /@babel/helper-module-imports@7.24.7: - resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-module-imports@7.24.7(supports-color@5.5.0): + '@babel/helper-module-imports@7.24.7': resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.24.7(supports-color@5.5.0) - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/helper-module-transforms@7.24.7(@babel/core@7.12.9): - resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-simple-access': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/helper-validator-identifier': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7): + '@babel/helper-module-transforms@7.24.7': resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-simple-access': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/helper-validator-identifier': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-optimise-call-expression@7.24.7: + '@babel/helper-optimise-call-expression@7.24.7': resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.24.7 - /@babel/helper-plugin-utils@7.10.4: + '@babel/helper-plugin-utils@7.10.4': resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} - /@babel/helper-plugin-utils@7.24.7: + '@babel/helper-plugin-utils@7.24.7': resolution: {integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==} engines: {node: '>=6.9.0'} - /@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.7): + '@babel/helper-remap-async-to-generator@7.24.7': resolution: {integrity: sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-wrap-function': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-replace-supers@7.24.7(@babel/core@7.24.7): + '@babel/helper-replace-supers@7.24.7': resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.24.7 - '@babel/helper-optimise-call-expression': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-simple-access@7.24.7: + '@babel/helper-simple-access@7.24.7': resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-skip-transparent-expression-wrappers@7.24.7: + '@babel/helper-skip-transparent-expression-wrappers@7.24.7': resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-split-export-declaration@7.24.7: + '@babel/helper-split-export-declaration@7.24.7': resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.24.7 - /@babel/helper-string-parser@7.24.7: + '@babel/helper-string-parser@7.24.7': resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-identifier@7.24.7: + '@babel/helper-validator-identifier@7.24.7': resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-option@7.24.7: + '@babel/helper-validator-option@7.24.7': resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==} engines: {node: '>=6.9.0'} - /@babel/helper-wrap-function@7.24.7: + '@babel/helper-wrap-function@7.24.7': resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-function-name': 7.24.7 - '@babel/template': 7.24.7 - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helpers@7.24.7: + '@babel/helpers@7.24.7': resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.24.7 - '@babel/types': 7.24.7 - /@babel/highlight@7.24.7: + '@babel/highlight@7.24.7': resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.24.7 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.0.1 - /@babel/parser@7.24.7: + '@babel/parser@7.24.7': resolution: {integrity: sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==} engines: {node: '>=6.0.0'} hasBin: true - dependencies: - '@babel/types': 7.24.7 - /@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.7): + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7': resolution: {integrity: sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.7): + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7': resolution: {integrity: sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.7): + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7': resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.7): + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7': resolution: {integrity: sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.7): + '@babel/plugin-proposal-class-properties@7.18.6': 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: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.24.7): + '@babel/plugin-proposal-decorators@7.24.7': resolution: {integrity: sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - /@babel/plugin-proposal-export-default-from@7.24.7(@babel/core@7.24.7): + '@babel/plugin-proposal-export-default-from@7.24.7': resolution: {integrity: sha512-CcmFwUJ3tKhLjPdt4NP+SHMshebytF8ZTYOv5ZDpkzq2sin80Wb5vJrGt8fhPrORQCfoSa0LAxC/DW+GAC5+Hw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.24.7) - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.7): + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6': resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} 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-nullish-coalescing-operator instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) - /@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9): + '@babel/plugin-proposal-object-rest-spread@7.12.1': resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.12.9) - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.7): + '@babel/plugin-proposal-object-rest-spread@7.20.7': resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} 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-object-rest-spread instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.24.7 - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7) - /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.7): + '@babel/plugin-proposal-optional-chaining@7.21.0': resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} 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-optional-chaining instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.24.7): + '@babel/plugin-proposal-private-methods@7.18.6': resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} 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-private-methods instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7): + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.24.7): + '@babel/plugin-proposal-private-property-in-object@7.21.11': resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} 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-private-property-in-object instead. peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7): + '@babel/plugin-syntax-async-generators@7.8.4': resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.7): + '@babel/plugin-syntax-bigint@7.8.3': resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.7): + '@babel/plugin-syntax-class-properties@7.12.13': resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.7): + '@babel/plugin-syntax-class-static-block@7.14.5': resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.24.7): + '@babel/plugin-syntax-decorators@7.24.7': resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.7): + '@babel/plugin-syntax-dynamic-import@7.8.3': resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-export-default-from@7.24.7(@babel/core@7.24.7): + '@babel/plugin-syntax-export-default-from@7.24.7': resolution: {integrity: sha512-bTPz4/635WQ9WhwsyPdxUJDVpsi/X9BMmy/8Rf/UAlOO4jSql4CxUCjWI5PiM+jG+c4LVPTScoTw80geFj9+Bw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.7): + '@babel/plugin-syntax-export-namespace-from@7.8.3': resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-flow@7.24.7(@babel/core@7.24.7): + '@babel/plugin-syntax-flow@7.24.7': resolution: {integrity: sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.7): + '@babel/plugin-syntax-import-assertions@7.24.7': resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.7): + '@babel/plugin-syntax-import-attributes@7.24.7': resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7): + '@babel/plugin-syntax-import-meta@7.10.4': resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7): + '@babel/plugin-syntax-json-strings@7.8.3': resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9): + '@babel/plugin-syntax-jsx@7.12.1': resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7): + '@babel/plugin-syntax-jsx@7.24.7': resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.7): + '@babel/plugin-syntax-logical-assignment-operators@7.10.4': resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7): + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7): + '@babel/plugin-syntax-numeric-separator@7.10.4': resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7): + '@babel/plugin-syntax-object-rest-spread@7.8.3': resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7): + '@babel/plugin-syntax-optional-catch-binding@7.8.3': resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7): + '@babel/plugin-syntax-optional-chaining@7.8.3': resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.7): + '@babel/plugin-syntax-private-property-in-object@7.14.5': resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7): + '@babel/plugin-syntax-top-level-await@7.14.5': resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7): + '@babel/plugin-syntax-typescript@7.24.7': resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.7): + '@babel/plugin-syntax-unicode-sets-regex@7.18.6': resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-arrow-functions@7.24.7': resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-async-generator-functions@7.24.7': resolution: {integrity: sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-async-to-generator@7.24.7': resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-block-scoped-functions@7.24.7': resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-block-scoping@7.24.7': resolution: {integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-class-properties@7.24.7': resolution: {integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-class-static-block@7.24.7': resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-classes@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-classes@7.24.7': resolution: {integrity: sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7) - '@babel/helper-split-export-declaration': 7.24.7 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-computed-properties@7.24.7': resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/template': 7.24.7 - /@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-destructuring@7.24.7': resolution: {integrity: sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-dotall-regex@7.24.7': resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-duplicate-keys@7.24.7': resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-dynamic-import@7.24.7': resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7) - /@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-exponentiation-operator@7.24.7': resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-export-namespace-from@7.24.7': resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7) - /@babel/plugin-transform-flow-strip-types@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-flow-strip-types@7.24.7': resolution: {integrity: sha512-cjRKJ7FobOH2eakx7Ja+KpJRj8+y+/SiB3ooYm/n2UJfxu0oEaOoxOinitkJcPqv9KxS0kxTGPUaR7L2XcXDXA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.7) - /@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-for-of@7.24.7': resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.7): + '@babel/plugin-transform-function-name@7.24.7': resolution: {integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-function-name': 7.24.7 + + '@babel/plugin-transform-json-strings@7.24.7': + resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-literals@7.24.7': + resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-logical-assignment-operators@7.24.7': + resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-member-expression-literals@7.24.7': + resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-amd@7.24.7': + resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-commonjs@7.24.7': + resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-systemjs@7.24.7': + resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-umd@7.24.7': + resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-named-capturing-groups-regex@7.24.7': + resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-new-target@7.24.7': + resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-nullish-coalescing-operator@7.24.7': + resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-numeric-separator@7.24.7': + resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-object-rest-spread@7.24.7': + resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-object-super@7.24.7': + resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-optional-catch-binding@7.24.7': + resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-optional-chaining@7.24.7': + resolution: {integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-parameters@7.24.7': + resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-private-methods@7.24.7': + resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-private-property-in-object@7.24.7': + resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-property-literals@7.24.7': + resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-constant-elements@7.24.7': + resolution: {integrity: sha512-7LidzZfUXyfZ8/buRW6qIIHBY8wAZ1OrY9c/wTr8YhZ6vMPo+Uc/CVFLYY1spZrEQlD4w5u8wjqk5NQ3OVqQKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-display-name@7.24.7': + resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-development@7.24.7': + resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx@7.24.7': + resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-pure-annotations@7.24.7': + resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-regenerator@7.24.7': + resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-reserved-words@7.24.7': + resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-runtime@7.24.7': + resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-shorthand-properties@7.24.7': + resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-spread@7.24.7': + resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-sticky-regex@7.24.7': + resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-template-literals@7.24.7': + resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typeof-symbol@7.24.7': + resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typescript@7.24.7': + resolution: {integrity: sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-escapes@7.24.7': + resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-property-regex@7.24.7': + resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-regex@7.24.7': + resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-sets-regex@7.24.7': + resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/polyfill@7.12.1': + resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==} + deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information. + + '@babel/preset-env@7.24.7': + resolution: {integrity: sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-flow@7.24.7': + resolution: {integrity: sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-modules@0.1.6-no-external-plugins': + resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 + + '@babel/preset-react@7.24.7': + resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-typescript@7.24.7': + resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/register@7.24.6': + resolution: {integrity: sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/regjsgen@0.8.0': + resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} + + '@babel/runtime-corejs3@7.24.7': + resolution: {integrity: sha512-eytSX6JLBY6PVAeQa2bFlDx/7Mmln/gaEpsit5a3WEvjGfiIytEsgAwuIXCPM0xvw0v0cJn3ilq0/TvXrW0kgA==} + engines: {node: '>=6.9.0'} + + '@babel/runtime@7.24.7': + resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==} + engines: {node: '>=6.9.0'} + + '@babel/template@7.24.7': + resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.24.7': + resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.24.7': + resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==} + engines: {node: '>=6.9.0'} + + '@base2/pretty-print-object@1.0.1': + resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} + + '@bcoe/v8-coverage@0.2.3': + resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + + '@braintree/sanitize-url@5.0.2': + resolution: {integrity: sha512-NBEJlHWrhQucLhZGHtSxM2loSaNUMajC7KOYJLyfcdW/6goVoff2HoYI3bz8YCDN0wKGbxtUL0gx2dvHpvnWlw==} + deprecated: Potential XSS vulnerability patched in v6.0.0. + + '@changesets/apply-release-plan@7.0.3': + resolution: {integrity: sha512-klL6LCdmfbEe9oyfLxnidIf/stFXmrbFO/3gT5LU5pcyoZytzJe4gWpTBx3BPmyNPl16dZ1xrkcW7b98e3tYkA==} + + '@changesets/assemble-release-plan@6.0.2': + resolution: {integrity: sha512-n9/Tdq+ze+iUtjmq0mZO3pEhJTKkku9hUxtUadW30jlN7kONqJG3O6ALeXrmc6gsi/nvoCuKjqEJ68Hk8RbMTQ==} + + '@changesets/changelog-git@0.2.0': + resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} + + '@changesets/changelog-github@0.4.8': + resolution: {integrity: sha512-jR1DHibkMAb5v/8ym77E4AMNWZKB5NPzw5a5Wtqm1JepAuIF+hrKp2u04NKM14oBZhHglkCfrla9uq8ORnK/dw==} + + '@changesets/cli@2.27.5': + resolution: {integrity: sha512-UVppOvzCjjylBenFcwcZNG5IaZ8jsIaEVraV/pbXgukYNb0Oqa0d8UWb0LkYzA1Bf1HmUrOfccFcRLheRuA7pA==} + hasBin: true + + '@changesets/config@3.0.1': + resolution: {integrity: sha512-nCr8pOemUjvGJ8aUu8TYVjqnUL+++bFOQHBVmtNbLvKzIDkN/uiP/Z4RKmr7NNaiujIURHySDEGFPftR4GbTUA==} + + '@changesets/errors@0.2.0': + resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} + + '@changesets/get-dependents-graph@2.1.0': + resolution: {integrity: sha512-QOt6pQq9RVXKGHPVvyKimJDYJumx7p4DO5MO9AhRJYgAPgv0emhNqAqqysSVKHBm4sxKlGN4S1zXOIb5yCFuhQ==} + + '@changesets/get-github-info@0.5.2': + resolution: {integrity: sha512-JppheLu7S114aEs157fOZDjFqUDpm7eHdq5E8SSR0gUBTEK0cNSHsrSR5a66xs0z3RWuo46QvA3vawp8BxDHvg==} + + '@changesets/get-release-plan@4.0.2': + resolution: {integrity: sha512-rOalz7nMuMV2vyeP7KBeAhqEB7FM2GFPO5RQSoOoUKKH9L6wW3QyPA2K+/rG9kBrWl2HckPVES73/AuwPvbH3w==} + + '@changesets/get-version-range-type@0.4.0': + resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} + + '@changesets/git@3.0.0': + resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} + + '@changesets/logger@0.1.0': + resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} + + '@changesets/parse@0.4.0': + resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} + + '@changesets/pre@2.0.0': + resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} + + '@changesets/read@0.6.0': + resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} + + '@changesets/should-skip-package@0.1.0': + resolution: {integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==} + + '@changesets/types@4.1.0': + resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} + + '@changesets/types@5.2.1': + resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==} + + '@changesets/types@6.0.0': + resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} + + '@changesets/write@0.3.1': + resolution: {integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==} + + '@cnakazawa/watch@1.0.4': + resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==} + engines: {node: '>=0.1.95'} + hasBin: true + + '@colors/colors@1.5.0': + resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} + engines: {node: '>=0.1.90'} + + '@cspotcode/source-map-support@0.8.1': + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} + + '@cypress/request@2.88.12': + resolution: {integrity: sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==} + engines: {node: '>= 6'} + + '@cypress/xvfb@1.2.4': + resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} + + '@discoveryjs/json-ext@0.5.7': + resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} + engines: {node: '>=10.0.0'} + + '@emotion/babel-plugin@11.11.0': + resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} + + '@emotion/cache@11.11.0': + resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==} + + '@emotion/hash@0.9.1': + resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==} + + '@emotion/is-prop-valid@0.8.8': + resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} + + '@emotion/is-prop-valid@1.2.2': + resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==} + + '@emotion/memoize@0.7.4': + resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} + + '@emotion/memoize@0.8.1': + resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} + + '@emotion/react@11.11.4': + resolution: {integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==} + peerDependencies: + '@types/react': '*' + react: '>=16.8.0' + peerDependenciesMeta: + '@types/react': + optional: true + + '@emotion/serialize@1.1.4': + resolution: {integrity: sha512-RIN04MBT8g+FnDwgvIUi8czvr1LU1alUMI05LekWB5DGyTm8cCBMCRpq3GqaiyEDRptEXOyXnvZ58GZYu4kBxQ==} + + '@emotion/sheet@1.2.2': + resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} + + '@emotion/styled@11.11.5': + resolution: {integrity: sha512-/ZjjnaNKvuMPxcIiUkf/9SHoG4Q196DRl1w82hQ3WCsjo1IUR8uaGWrC6a87CrYAW0Kb/pK7hk8BnLgLRi9KoQ==} + peerDependencies: + '@emotion/react': ^11.0.0-rc.0 + '@types/react': '*' + react: '>=16.8.0' + peerDependenciesMeta: + '@types/react': + optional: true + + '@emotion/unitless@0.7.5': + resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==} + + '@emotion/unitless@0.8.1': + resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} + + '@emotion/use-insertion-effect-with-fallbacks@1.0.1': + resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} + peerDependencies: + react: '>=16.8.0' + + '@emotion/utils@1.2.1': + resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} + + '@emotion/weak-memoize@0.3.1': + resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==} + + '@esbuild/android-arm64@0.18.20': + resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.18.20': + resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.18.20': + resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.18.20': + resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.18.20': + resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.18.20': + resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.18.20': + resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.18.20': + resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.18.20': + resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.18.20': + resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.18.20': + resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.18.20': + resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.18.20': + resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.18.20': + resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.18.20': + resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.18.20': + resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-x64@0.18.20': + resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-x64@0.18.20': + resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/sunos-x64@0.18.20': + resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.18.20': + resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.18.20': + resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.18.20': + resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@eslint-community/eslint-utils@4.4.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 + + '@eslint-community/regexpp@4.11.0': + resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/eslintrc@0.4.3': + resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} + engines: {node: ^10.12.0 || >=12.0.0} + + '@eslint/eslintrc@2.1.4': + resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@eslint/js@8.57.0': + resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@fal-works/esbuild-plugin-global-externals@2.1.2': + resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} + + '@fluentui/react-component-event-listener@0.63.1': + resolution: {integrity: sha512-gSMdOh6tI3IJKZFqxfQwbTpskpME0CvxdxGM2tdglmf6ZPVDi0L4+KKIm+2dN8nzb8Ya1A8ZT+Ddq0KmZtwVQg==} + peerDependencies: + react: ^16.8.0 || ^17 || ^18 + react-dom: ^16.8.0 || ^17 || ^18 + + '@fluentui/react-component-ref@0.63.1': + resolution: {integrity: sha512-8MkXX4+R3i80msdbD4rFpEB4WWq2UDvGwG386g3ckIWbekdvN9z2kWAd9OXhRGqB7QeOsoAGWocp6gAMCivRlw==} + peerDependencies: + react: ^16.8.0 || ^17 || ^18 + react-dom: ^16.8.0 || ^17 || ^18 + + '@gar/promisify@1.1.3': + resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} + + '@gilbarbara/deep-equal@0.1.2': + resolution: {integrity: sha512-jk+qzItoEb0D0xSSmrKDDzf9sheQj/BAPxlgNxgmOaA3mxpUa6ndJLYGZKsJnIVEQSD8zcTbyILz7I0HcnBCRA==} + + '@gilbarbara/deep-equal@0.3.1': + resolution: {integrity: sha512-I7xWjLs2YSVMc5gGx1Z3ZG1lgFpITPndpi8Ku55GeEIKpACCPQNS/OTqQbxgTCfq0Ncvcc+CrFov96itVh6Qvw==} + + '@hapi/hoek@9.3.0': + resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} + + '@hapi/topo@5.1.0': + resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} + + '@humanwhocodes/config-array@0.11.14': + resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} + engines: {node: '>=10.10.0'} + deprecated: Use @eslint/config-array instead + + '@humanwhocodes/config-array@0.5.0': + resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} + engines: {node: '>=10.10.0'} + deprecated: Use @eslint/config-array instead + + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/object-schema@1.2.1': + resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + deprecated: Use @eslint/object-schema instead + + '@humanwhocodes/object-schema@2.0.3': + resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} + deprecated: Use @eslint/object-schema instead + + '@hutson/parse-repository-url@3.0.2': + resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} + engines: {node: '>=6.9.0'} + + '@icons/material@0.2.4': + resolution: {integrity: sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==} + peerDependencies: + react: '*' + + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + + '@isaacs/string-locale-compare@1.1.0': + resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==} + + '@istanbuljs/load-nyc-config@1.1.0': + resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} + engines: {node: '>=8'} + + '@istanbuljs/schema@0.1.3': + resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + engines: {node: '>=8'} + + '@jest/console@26.6.2': + resolution: {integrity: sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==} + engines: {node: '>= 10.14.2'} + + '@jest/console@29.7.0': + resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/core@26.6.3': + resolution: {integrity: sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==} + engines: {node: '>= 10.14.2'} + + '@jest/core@29.7.0': + resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + '@jest/environment@26.6.2': + resolution: {integrity: sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==} + engines: {node: '>= 10.14.2'} + + '@jest/environment@29.7.0': + resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/expect-utils@29.7.0': + resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/expect@29.7.0': + resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/fake-timers@26.6.2': + resolution: {integrity: sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==} + engines: {node: '>= 10.14.2'} + + '@jest/fake-timers@29.7.0': + resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/globals@26.6.2': + resolution: {integrity: sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==} + engines: {node: '>= 10.14.2'} + + '@jest/globals@29.7.0': + resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/reporters@26.6.2': + resolution: {integrity: sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==} + engines: {node: '>= 10.14.2'} + + '@jest/reporters@29.7.0': + resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + '@jest/schemas@29.6.3': + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/source-map@26.6.2': + resolution: {integrity: sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==} + engines: {node: '>= 10.14.2'} + + '@jest/source-map@29.6.3': + resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/test-result@26.6.2': + resolution: {integrity: sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==} + engines: {node: '>= 10.14.2'} + + '@jest/test-result@29.7.0': + resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/test-sequencer@26.6.3': + resolution: {integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==} + engines: {node: '>= 10.14.2'} + + '@jest/test-sequencer@29.7.0': + resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/transform@26.6.2': + resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} + engines: {node: '>= 10.14.2'} + + '@jest/transform@29.7.0': + resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/types@26.6.2': + resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} + engines: {node: '>= 10.14.2'} + + '@jest/types@29.6.3': + resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jridgewell/gen-mapping@0.3.5': + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} + engines: {node: '>=6.0.0'} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + + '@jridgewell/source-map@0.3.6': + resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} + + '@jridgewell/sourcemap-codec@1.5.0': + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + + '@jridgewell/trace-mapping@0.3.9': + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + + '@leichtgewicht/ip-codec@2.0.5': + resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} + + '@lerna/add@5.6.2': + resolution: {integrity: sha512-NHrm7kYiqP+EviguY7/NltJ3G9vGmJW6v2BASUOhP9FZDhYbq3O+rCDlFdoVRNtcyrSg90rZFMOWHph4KOoCQQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/bootstrap@5.6.2': + resolution: {integrity: sha512-S2fMOEXbef7nrybQhzBywIGSLhuiQ5huPp1sU+v9Y6XEBsy/2IA+lb0gsZosvPqlRfMtiaFstL+QunaBhlWECA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/changed@5.6.2': + resolution: {integrity: sha512-uUgrkdj1eYJHQGsXXlpH5oEAfu3x0qzeTjgvpdNrxHEdQWi7zWiW59hRadmiImc14uJJYIwVK5q/QLugrsdGFQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/check-working-tree@5.6.2': + resolution: {integrity: sha512-6Vf3IB6p+iNIubwVgr8A/KOmGh5xb4SyRmhFtAVqe33yWl2p3yc+mU5nGoz4ET3JLF1T9MhsePj0hNt6qyOTLQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/child-process@5.6.2': + resolution: {integrity: sha512-QIOQ3jIbWdduHd5892fbo3u7/dQgbhzEBB7cvf+Ys/iCPP8UQrBECi1lfRgA4kcTKC2MyMz0SoyXZz/lFcXc3A==} + engines: {node: ^14.15.0 || >=16.0.0} + + '@lerna/clean@5.6.2': + resolution: {integrity: sha512-A7j8r0Hk2pGyLUyaCmx4keNHen1L/KdcOjb4nR6X8GtTJR5AeA47a8rRKOCz9wwdyMPlo2Dau7d3RV9viv7a5g==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/cli@5.6.2': + resolution: {integrity: sha512-w0NRIEqDOmYKlA5t0iyqx0hbY7zcozvApmfvwF0lhkuhf3k6LRAFSamtimGQWicC779a7J2NXw4ASuBV47Fs1Q==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/collect-uncommitted@5.6.2': + resolution: {integrity: sha512-i0jhxpypyOsW2PpPwIw4xg6EPh7/N3YuiI6P2yL7PynZ8nOv8DkIdoyMkhUP4gALjBfckH8Bj94eIaKMviqW4w==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/collect-updates@5.6.2': + resolution: {integrity: sha512-DdTK13X6PIsh9HINiMniFeiivAizR/1FBB+hDVe6tOhsXFBfjHMw1xZhXlE+mYIoFmDm1UFK7zvQSexoaxRqFA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/command@5.6.2': + resolution: {integrity: sha512-eLVGI9TmxcaGt1M7TXGhhBZoeWOtOedMiH7NuCGHtL6TMJ9k+SCExyx+KpNmE6ImyNOzws6EvYLPLjftiqmoaA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/conventional-commits@5.6.2': + resolution: {integrity: sha512-fPrJpYJhxCgY2uyOCTcAAC6+T6lUAtpEGxLbjWHWTb13oKKEygp9THoFpe6SbAD0fYMb3jeZCZCqNofM62rmuA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/create-symlink@5.6.2': + resolution: {integrity: sha512-0WIs3P6ohPVh2+t5axrLZDE5Dt7fe3Kv0Auj0sBiBd6MmKZ2oS76apIl0Bspdbv8jX8+TRKGv6ib0280D0dtEw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/create@5.6.2': + resolution: {integrity: sha512-+Y5cMUxMNXjTTU9IHpgRYIwKo39w+blui1P+s+qYlZUSCUAew0xNpOBG8iN0Nc5X9op4U094oIdHxv7Dyz6tWQ==} + engines: {node: ^14.15.0 || >=16.0.0} + + '@lerna/describe-ref@5.6.2': + resolution: {integrity: sha512-UqU0N77aT1W8duYGir7R+Sk3jsY/c4lhcCEcnayMpFScMbAp0ETGsW04cYsHK29sgg+ZCc5zEwebBqabWhMhnA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/diff@5.6.2': + resolution: {integrity: sha512-aHKzKvUvUI8vOcshC2Za/bdz+plM3r/ycqUrPqaERzp+kc1pYHyPeXezydVdEmgmmwmyKI5hx4+2QNnzOnun2A==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/exec@5.6.2': + resolution: {integrity: sha512-meZozok5stK7S0oAVn+kdbTmU+kHj9GTXjW7V8kgwG9ld+JJMTH3nKK1L3mEKyk9TFu9vFWyEOF7HNK6yEOoVg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/filter-options@5.6.2': + resolution: {integrity: sha512-4Z0HIhPak2TabTsUqEBQaQeOqgqEt0qyskvsY0oviYvqP/nrJfJBZh4H93jIiNQF59LJCn5Ce3KJJrLExxjlzw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/filter-packages@5.6.2': + resolution: {integrity: sha512-el9V2lTEG0Bbz+Omo45hATkRVnChCTJhcTpth19cMJ6mQ4M5H4IgbWCJdFMBi/RpTnOhz9BhJxDbj95kuIvvzw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/get-npm-exec-opts@5.6.2': + resolution: {integrity: sha512-0RbSDJ+QC9D5UWZJh3DN7mBIU1NhBmdHOE289oHSkjDY+uEjdzMPkEUy+wZ8fCzMLFnnNQkAEqNaOAzZ7dmFLA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/get-packed@5.6.2': + resolution: {integrity: sha512-pp5nNDmtrtd21aKHjwwOY5CS7XNIHxINzGa+Jholn1jMDYUtdskpN++ZqYbATGpW831++NJuiuBVyqAWi9xbXg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/github-client@5.6.2': + resolution: {integrity: sha512-pjALazZoRZtKqfwLBwmW3HPptVhQm54PvA8s3qhCQ+3JkqrZiIFwkkxNZxs3jwzr+aaSOzfhSzCndg0urb0GXA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/gitlab-client@5.6.2': + resolution: {integrity: sha512-TInJmbrsmYIwUyrRxytjO82KjJbRwm67F7LoZs1shAq6rMvNqi4NxSY9j+hT/939alFmEq1zssoy/caeLXHRfQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/global-options@5.6.2': + resolution: {integrity: sha512-kaKELURXTlczthNJskdOvh6GGMyt24qat0xMoJZ8plYMdofJfhz24h1OFcvB/EwCUwP/XV1+ohE5P+vdktbrEg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/has-npm-version@5.6.2': + resolution: {integrity: sha512-kXCnSzffmTWsaK0ol30coyCfO8WH26HFbmJjRBzKv7VGkuAIcB6gX2gqRRgNLLlvI+Yrp+JSlpVNVnu15SEH2g==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/import@5.6.2': + resolution: {integrity: sha512-xQUE49mtcP0z3KUdXBsyvp8rGDz6phuYUoQbhcFRJ7WPcQKzMvtm0XYrER6c2YWEX7QOuDac6tU82P8zTrTBaA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/info@5.6.2': + resolution: {integrity: sha512-MPjY5Olj+fiZHgfEdwXUFRKamdEuLr9Ob/qut8JsB/oQSQ4ALdQfnrOcMT8lJIcC2R67EA5yav2lHPBIkezm8A==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/init@5.6.2': + resolution: {integrity: sha512-ahU3/lgF+J8kdJAQysihFJROHthkIDXfHmvhw7AYnzf94HjxGNXj7nz6i3At1/dM/1nQhR+4/uNR1/OU4tTYYQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/link@5.6.2': + resolution: {integrity: sha512-hXxQ4R3z6rUF1v2x62oIzLyeHL96u7ZBhxqYMJrm763D1VMSDcHKF9CjJfc6J9vH5Z2ZbL6CQg50Hw5mUpJbjg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/list@5.6.2': + resolution: {integrity: sha512-WjE5O2tQ3TcS+8LqXUaxi0YdldhxUhNihT5+Gg4vzGdIlrPDioO50Zjo9d8jOU7i3LMIk6EzCma0sZr2CVfEGg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/listable@5.6.2': + resolution: {integrity: sha512-8Yp49BwkY/5XqVru38Zko+6Wj/sgbwzJfIGEPy3Qu575r1NA/b9eI1gX22aMsEeXUeGOybR7nWT5ewnPQHjqvA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/log-packed@5.6.2': + resolution: {integrity: sha512-O9GODG7tMtWk+2fufn2MOkIDBYMRoKBhYMHshO5Aw/VIsH76DIxpX1koMzWfUngM/C70R4uNAKcVWineX4qzIw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/npm-conf@5.6.2': + resolution: {integrity: sha512-gWDPhw1wjXYXphk/PAghTLexO5T6abVFhXb+KOMCeem366mY0F5bM88PiorL73aErTNUoR8n+V4X29NTZzDZpQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/npm-dist-tag@5.6.2': + resolution: {integrity: sha512-t2RmxV6Eog4acXkUI+EzWuYVbeVVY139pANIWS9qtdajfgp4GVXZi1S8mAIb70yeHdNpCp1mhK0xpCrFH9LvGQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/npm-install@5.6.2': + resolution: {integrity: sha512-AT226zdEo+uGENd37jwYgdALKJAIJK4pNOfmXWZWzVb9oMOr8I2YSjPYvSYUNG7gOo2YJQU8x5Zd7OShv2924Q==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/npm-publish@5.6.2': + resolution: {integrity: sha512-ldSyewCfv9fAeC5xNjL0HKGSUxcC048EJoe/B+KRUmd+IPidvZxMEzRu08lSC/q3V9YeUv9ZvRnxATXOM8CffA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/npm-run-script@5.6.2': + resolution: {integrity: sha512-MOQoWNcAyJivM8SYp0zELM7vg/Dj07j4YMdxZkey+S1UO0T4/vKBxb575o16hH4WeNzC3Pd7WBlb7C8dLOfNwQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/otplease@5.6.2': + resolution: {integrity: sha512-dGS4lzkEQVTMAgji82jp8RK6UK32wlzrBAO4P4iiVHCUTuwNLsY9oeBXvVXSMrosJnl6Hbe0NOvi43mqSucGoA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/output@5.6.2': + resolution: {integrity: sha512-++d+bfOQwY66yo7q1XuAvRcqtRHCG45e/awP5xQomTZ6R1rhWiZ3whWdc9Z6lF7+UtBB9toSYYffKU/xc3L0yQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/pack-directory@5.6.2': + resolution: {integrity: sha512-w5Jk5fo+HkN4Le7WMOudTcmAymcf0xPd302TqAQncjXpk0cb8tZbj+5bbNHsGb58GRjOIm5icQbHXooQUxbHhA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/package-graph@5.6.2': + resolution: {integrity: sha512-TmL61qBBvA3Tc4qICDirZzdFFwWOA6qicIXUruLiE2PblRowRmCO1bKrrP6XbDOspzwrkPef6N2F2/5gHQAnkQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/package@5.6.2': + resolution: {integrity: sha512-LaOC8moyM5J9WnRiWZkedjOninSclBOJyPqhif6mHb2kCFX6jAroNYzE8KM4cphu8CunHuhI6Ixzswtv+Dultw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/prerelease-id-from-version@5.6.2': + resolution: {integrity: sha512-7gIm9fecWFVNy2kpj/KbH11bRcpyANAwpsft3X5m6J7y7A6FTUscCbEvl3ZNdpQKHNuvnHgCtkm3A5PMSCEgkA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/profiler@5.6.2': + resolution: {integrity: sha512-okwkagP5zyRIOYTceu/9/esW7UZFt7lyL6q6ZgpSG3TYC5Ay+FXLtS6Xiha/FQdVdumFqKULDWTGovzUlxcwaw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/project@5.6.2': + resolution: {integrity: sha512-kPIMcIy/0DVWM91FPMMFmXyAnCuuLm3NdhnA8NusE//VuY9wC6QC/3OwuCY39b2dbko/fPZheqKeAZkkMH6sGg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/prompt@5.6.2': + resolution: {integrity: sha512-4hTNmVYADEr0GJTMegWV+GW6n+dzKx1vN9v2ISqyle283Myv930WxuyO0PeYGqTrkneJsyPreCMovuEGCvZ0iQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/publish@5.6.2': + resolution: {integrity: sha512-QaW0GjMJMuWlRNjeDCjmY/vjriGSWgkLS23yu8VKNtV5U3dt5yIKA3DNGV3HgZACuu45kQxzMDsfLzgzbGNtYA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/pulse-till-done@5.6.2': + resolution: {integrity: sha512-eA/X1RCxU5YGMNZmbgPi+Kyfx1Q3bn4P9jo/LZy+/NRRr1po3ASXP2GJZ1auBh/9A2ELDvvKTOXCVHqczKC6rA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/query-graph@5.6.2': + resolution: {integrity: sha512-KRngr96yBP8XYDi9/U62fnGO+ZXqm04Qk6a2HtoTr/ha8QvO1s7Tgm0xs/G7qWXDQHZgunWIbmK/LhxM7eFQrw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/resolve-symlink@5.6.2': + resolution: {integrity: sha512-PDQy+7M8JEFtwIVHJgWvSxHkxJf9zXCENkvIWDB+SsoDPhw9+caewt46bTeP5iGm9pOMu3oZukaWo/TvF7sNjg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/rimraf-dir@5.6.2': + resolution: {integrity: sha512-jgEfzz7uBUiQKteq3G8MtJiA2D2VoKmZSSY3VSiW/tPOSXYxxSHxEsClQdCeNa6+sYrDNDT8fP6MJ3lPLjDeLA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/run-lifecycle@5.6.2': + resolution: {integrity: sha512-u9gGgq/50Fm8dvfcc/TSHOCAQvzLD7poVanDMhHYWOAqRDnellJEEmA1K/Yka4vZmySrzluahkry9G6jcREt+g==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/run-topologically@5.6.2': + resolution: {integrity: sha512-QQ/jGOIsVvUg3izShWsd67RlWYh9UOH2yw97Ol1zySX9+JspCMVQrn9eKq1Pk8twQOFhT87LpT/aaxbTBgREPw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/run@5.6.2': + resolution: {integrity: sha512-c2kJxdFrNg5KOkrhmgwKKUOsfSrGNlFCe26EttufOJ3xfY0VnXlEw9rHOkTgwtu7969rfCdyaVP1qckMrF1Dgw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/symlink-binary@5.6.2': + resolution: {integrity: sha512-Cth+miwYyO81WAmrQbPBrLHuF+F0UUc0el5kRXLH6j5zzaRS3kMM68r40M7MmfH8m3GPi7691UARoWFEotW5jw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/symlink-dependencies@5.6.2': + resolution: {integrity: sha512-dUVNQLEcjVOIQiT9OlSAKt0ykjyJPy8l9i4NJDe2/0XYaUjo8PWsxJ0vrutz27jzi2aZUy07ASmowQZEmnLHAw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/temp-write@5.6.2': + resolution: {integrity: sha512-S5ZNVTurSwWBmc9kh5alfSjmO3+BnRT6shYtOlmVIUYqWeYVYA5C1Htj322bbU4CSNCMFK6NQl4qGKL17HMuig==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/timer@5.6.2': + resolution: {integrity: sha512-AjMOiLc2B+5Nzdd9hNORetAdZ/WK8YNGX/+2ypzM68TMAPfIT5C40hMlSva9Yg4RsBz22REopXgM5s2zQd5ZQA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/validation-error@5.6.2': + resolution: {integrity: sha512-4WlDUHaa+RSJNyJRtX3gVIAPVzjZD2tle8AJ0ZYBfdZnZmG0VlB2pD1FIbOQPK8sY2h5m0cHLRvfLoLncqHvdQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/version@5.6.2': + resolution: {integrity: sha512-odNSR2rTbHW++xMZSQKu/F6Syrd/sUvwDLPaMKktoOSPKmycHt/eWcuQQyACdtc43Iqeu4uQd7PCLsniqOVFrw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@lerna/write-log-file@5.6.2': + resolution: {integrity: sha512-J09l18QnWQ3sXIRwuJkjXY3+KwPR2uO5NgbZGE3GXJK1V/LzOBRMvjGAIbuQHXw25uqe7vpLUpB8drtnFrubCQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@manypkg/find-root@1.1.0': + resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} + + '@manypkg/get-packages@1.1.3': + resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} + + '@mdx-js/mdx@1.6.22': + resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==} + + '@mdx-js/react@1.6.22': + resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} + peerDependencies: + react: ^16.13.1 || ^17.0.0 + + '@mdx-js/util@1.6.22': + resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==} + + '@microsoft/applicationinsights-analytics-js@3.2.1': + resolution: {integrity: sha512-BDFnV0WwLcUIqgPmC3Sl8Z35ybf4898WSbrfCC80BNbxi2zztyJSLlxWXKSw9j+DCkKZMYIJIsWnpKQfEtqA7g==} + peerDependencies: + tslib: '*' + + '@microsoft/applicationinsights-cfgsync-js@3.2.1': + resolution: {integrity: sha512-a0gf3czbRycOXwIRO/dYqmTThYkGRS26TVETRpSnW12IcAuLE82FJfWHlHRmSNX9xY/F+wWc0N7BqHcWjFIbeQ==} + peerDependencies: + tslib: '*' + + '@microsoft/applicationinsights-channel-js@3.2.1': + resolution: {integrity: sha512-+aWBBbIW4/Tf4sLGZmWhd5chktBpKQpnCbkuoTHGe+AWO8Q8fsDa4w2Y89OGuEg9OJ3kr2VKTUU7LgILKFz/cg==} + peerDependencies: + tslib: '*' + + '@microsoft/applicationinsights-common@2.8.18': + resolution: {integrity: sha512-/PBRmRL6rFCoO3vWpIEHuFnu+TinEYRKWOj+I+XVUH5myZpv+nYvaRdwryVTkmCYxLyL9kxtNn7hQx8DBlhdSw==} + peerDependencies: + tslib: '*' + + '@microsoft/applicationinsights-common@3.2.1': + resolution: {integrity: sha512-vRYQ1SIZJEz1eFbs2AQiLtev5L+zmjZ1Jkj3BWfIxJLd6n0cVR4NZETBSyMuk11KH7MIOrDLvh1CzjBIJIpDAg==} + peerDependencies: + tslib: '*' + + '@microsoft/applicationinsights-core-js@2.8.18': + resolution: {integrity: sha512-yPHRZFLpnEO0uSgFPM1BLMRRwjoten9YBbn4pJRbCT4PigLnj748knmWsMwXIdcehtkRTYz78kPYa/LWP7nvmA==} + peerDependencies: + tslib: '*' + + '@microsoft/applicationinsights-core-js@3.2.1': + resolution: {integrity: sha512-euxkDrF5BroAY7wgviaTVZdMvRAENQtUW4pDTsIjJK26shi1m5fPCc5l+vMn7kO2wQEaEgAOVw+/kSQgXDHN+Q==} + peerDependencies: + tslib: '*' + + '@microsoft/applicationinsights-dependencies-js@3.2.1': + resolution: {integrity: sha512-NZ7OY/7KYmJ6/TFsDZojsr9mA4uNv4ZTrNNXfWqtPxx0ClYalSm6Xyjna0N1d1wktrfecHe8K/ZrWJgxI2bfRw==} + peerDependencies: + tslib: '*' + + '@microsoft/applicationinsights-properties-js@3.2.1': + resolution: {integrity: sha512-GO96t7tQ1eEHPENVXjOlf91h/Iz8p4I0XayALTSshHMc+eDfsi1a/b2JYrfNDC4fanPU44Kmx3QZkXrBb1ri5A==} + peerDependencies: + tslib: '*' + + '@microsoft/applicationinsights-react-js@3.4.3': + resolution: {integrity: sha512-+IIPDYU7DKBwByN7lK/mkMGrnWMGdyIsEZfDzBh/fKDZgGGGgH9B3WHej+vIpdwBcVaPbYx++lonTshn56C9/A==} + peerDependencies: + history: '>= 4.10.1' + react: '>= 17.0.1' + tslib: '*' + + '@microsoft/applicationinsights-shims@2.0.2': + resolution: {integrity: sha512-PoHEgsnmcqruLNHZ/amACqdJ6YYQpED0KSRe6J7gIJTtpZC1FfFU9b1fmDKDKtFoUSrPzEh1qzO3kmRZP0betg==} + + '@microsoft/applicationinsights-shims@3.0.1': + resolution: {integrity: sha512-DKwboF47H1nb33rSUfjqI6ryX29v+2QWcTrRvcQDA32AZr5Ilkr7whOOSsD1aBzwqX0RJEIP1Z81jfE3NBm/Lg==} + + '@microsoft/applicationinsights-web@3.2.1': + resolution: {integrity: sha512-+U0wsifFEmvdT2hckmsoNcMx/SQrAA8qBBM7y0zefT03wHbFh0jCL/kd2MFOyKZ39v9C4uIO5L8Ftu4hBpnYWA==} + peerDependencies: + tslib: '*' + + '@microsoft/dynamicproto-js@1.1.11': + resolution: {integrity: sha512-gNw9z9LbqLV+WadZ6/MMrWwO3e0LuoUH1wve/1iPsBNbgqeVCiB0EZFNNj2lysxS2gkqoF9hmyVaG3MoM1BkxA==} + + '@microsoft/dynamicproto-js@2.0.3': + resolution: {integrity: sha512-JTWTU80rMy3mdxOjjpaiDQsTLZ6YSGGqsjURsY6AUQtIj0udlF/jYmhdLZu8693ZIC0T1IwYnFa0+QeiMnziBA==} + + '@microsoft/tsdoc-config@0.16.2': + resolution: {integrity: sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==} + + '@microsoft/tsdoc@0.14.2': + resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==} + + '@mole-inc/bin-wrapper@8.0.1': + resolution: {integrity: sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + '@monaco-editor/loader@1.4.0': + resolution: {integrity: sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==} + peerDependencies: + monaco-editor: '>= 0.21.0 < 1' + + '@monaco-editor/react@4.6.0': + resolution: {integrity: sha512-RFkU9/i7cN2bsq/iTkurMWOEErmYcY6JiQI3Jn+WeR/FGISH8JbHERjpS9oRuSOPvDMJI0Z8nJeKkbOs9sBYQw==} + peerDependencies: + monaco-editor: '>= 0.25.0 < 1' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@mrmlnc/readdir-enhanced@2.2.1': + resolution: {integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==} + engines: {node: '>=4'} + + '@mswjs/cookies@0.1.7': + resolution: {integrity: sha512-bDg1ReMBx+PYDB4Pk7y1Q07Zz1iKIEUWQpkEXiA2lEWg9gvOZ8UBmGXilCEUvyYoRFlmr/9iXTRR69TrgSwX/Q==} + + '@mswjs/interceptors@0.12.7': + resolution: {integrity: sha512-eGjZ3JRAt0Fzi5FgXiV/P3bJGj0NqsN7vBS0J0FO2AQRQ0jCKQS4lEFm4wvlSgKQNfeuc/Vz6d81VtU3Gkx/zg==} + + '@mui/base@5.0.0-alpha.128': + resolution: {integrity: sha512-wub3wxNN+hUp8hzilMlXX3sZrPo75vsy1cXEQpqdTfIFlE9HprP1jlulFiPg5tfPst2OKmygXr2hhmgvAKRrzQ==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + '@mui/base@5.0.0-beta.0': + resolution: {integrity: sha512-ap+juKvt8R8n3cBqd/pGtZydQ4v2I/hgJKnvJRGjpSh3RvsvnDHO4rXov8MHQlH6VqpOekwgilFLGxMZjNTucA==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + '@mui/core-downloads-tracker@5.15.20': + resolution: {integrity: sha512-DoL2ppgldL16utL8nNyj/P12f8mCNdx/Hb/AJnX9rLY4b52hCMIx1kH83pbXQ6uMy6n54M3StmEbvSGoj2OFuA==} + + '@mui/icons-material@5.15.20': + resolution: {integrity: sha512-oGcKmCuHaYbAAoLN67WKSXtHmEgyWcJToT1uRtmPyxMj9N5uqwc/mRtEnst4Wj/eGr+zYH2FiZQ79v9k7kSk1Q==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@mui/material': 5.13.0 + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + '@mui/lab@5.0.0-alpha.129': + resolution: {integrity: sha512-niv2mFgSTgdrRJXbWoX9pIivhe80BaFXfdWajXe1bS8VYH3Y5WyJpk8KiU3rbHyJswbFEGd8N6EBBrq11X8yMA==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@emotion/react': ^11.5.0 + '@emotion/styled': ^11.3.0 + '@mui/material': 5.13.0 + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + '@types/react': + optional: true + + '@mui/material@5.13.0': + resolution: {integrity: sha512-ckS+9tCpAzpdJdaTF+btF0b6mF9wbXg/EVKtnoAWYi0UKXoXBAVvEUMNpLGA5xdpCdf+A6fPbVUEHs9TsfU+Yw==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@emotion/react': ^11.5.0 + '@emotion/styled': ^11.3.0 + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + '@types/react': + optional: true + + '@mui/private-theming@5.15.20': + resolution: {integrity: sha512-BK8F94AIqSrnaPYXf2KAOjGZJgWfvqAVQ2gVR3EryvQFtuBnG6RwodxrCvd3B48VuMy6Wsk897+lQMUxJyk+6g==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + '@mui/styled-engine@5.15.14': + resolution: {integrity: sha512-RILkuVD8gY6PvjZjqnWhz8fu68dVkqhM5+jYWfB5yhlSQKg+2rHkmEwm75XIeAqI3qwOndK6zELK5H6Zxn4NHw==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@emotion/react': ^11.4.1 + '@emotion/styled': ^11.3.0 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + + '@mui/system@5.15.20': + resolution: {integrity: sha512-LoMq4IlAAhxzL2VNUDBTQxAb4chnBe8JvRINVNDiMtHE2PiPOoHlhOPutSxEbaL5mkECPVWSv6p8JEV+uykwIA==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@emotion/react': ^11.5.0 + '@emotion/styled': ^11.3.0 + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + '@types/react': + optional: true + + '@mui/types@7.2.14': + resolution: {integrity: sha512-MZsBZ4q4HfzBsywtXgM1Ksj6HDThtiwmOKUXH1pKYISI9gAVXCNHNpo7TlGoGrBaYWZTdNoirIN7JsQcQUjmQQ==} + peerDependencies: + '@types/react': 18.0.18 + peerDependenciesMeta: + '@types/react': + optional: true + + '@mui/utils@5.15.20': + resolution: {integrity: sha512-mAbYx0sovrnpAu1zHc3MDIhPqL8RPVC5W5xcO1b7PiSCJPtckIZmBkp8hefamAvUiAV8gpfMOM6Zb+eSisbI2A==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + '@mui/x-data-grid@6.20.1': + resolution: {integrity: sha512-x1muWWIG9otkk4FuvoTxH3I4foyA1caFu8ZC9TvMQ+7NSBKcfy/JeLQfKkZk8ACUUosvENdrRIkhqU2xdIqIVg==} + engines: {node: '>=14.0.0'} + peerDependencies: + '@mui/material': 5.13.0 + '@mui/system': ^5.4.1 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + + '@ndelangen/get-tarball@3.0.9': + resolution: {integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==} + + '@nevware21/ts-async@0.5.2': + resolution: {integrity: sha512-Zf2vUNjCw2vJsiVKhWXA9hCNHsn59AOSGa5jGP4tWrp/vTH9XrI4eG/65khuoAgrS83migj0Xv5/j6fUAz69Zw==} + + '@nevware21/ts-utils@0.11.3': + resolution: {integrity: sha512-oipW+tyKN68bREjoESYAzOZiatM+1LF+ez1TX3BaeinhCkI18xsLgmpH9tvwHaVgKf1Tsth25sdbXVtYmgRYvQ==} + + '@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3': + resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@1.1.3': + resolution: {integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==} + engines: {node: '>= 6'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@npmcli/arborist@5.3.0': + resolution: {integrity: sha512-+rZ9zgL1lnbl8Xbb1NQdMjveOMwj4lIYfcDtyJHHi5x4X8jtR6m8SXooJMZy5vmFVZ8w7A2Bnd/oX9eTuU8w5A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true + + '@npmcli/fs@1.1.1': + resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} + + '@npmcli/fs@2.1.2': + resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@npmcli/git@3.0.2': + resolution: {integrity: sha512-CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@npmcli/installed-package-contents@1.0.7': + resolution: {integrity: sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==} + engines: {node: '>= 10'} + hasBin: true + + '@npmcli/map-workspaces@2.0.4': + resolution: {integrity: sha512-bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@npmcli/metavuln-calculator@3.1.1': + resolution: {integrity: sha512-n69ygIaqAedecLeVH3KnO39M6ZHiJ2dEv5A7DGvcqCB8q17BGUgW8QaanIkbWUo2aYGZqJaOORTLAlIvKjNDKA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@npmcli/move-file@1.1.2': + resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} + engines: {node: '>=10'} + deprecated: This functionality has been moved to @npmcli/fs + + '@npmcli/move-file@2.0.1': + resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This functionality has been moved to @npmcli/fs + + '@npmcli/name-from-folder@1.0.1': + resolution: {integrity: sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA==} + + '@npmcli/node-gyp@2.0.0': + resolution: {integrity: sha512-doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@npmcli/package-json@2.0.0': + resolution: {integrity: sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@npmcli/promise-spawn@3.0.0': + resolution: {integrity: sha512-s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@npmcli/run-script@4.2.1': + resolution: {integrity: sha512-7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@nrwl/cli@15.9.3': + resolution: {integrity: sha512-qiAKHkov3iBx6hroPTitUrkRSUZFQqVgNJiF9gXRFC6pNJe9RS4rlmcIaoUFOboi9CnH5jwblNJVcz8YSVYOvA==} + + '@nrwl/cypress@17.0.0': + resolution: {integrity: sha512-p7LcNa6q1yZXSp1BOlMrn79QB4BEioAwWzAyqbtsrOd+5JkgQwAetwI7VFktjXohbH0SmVASqXhVJgXacoPgOA==} + + '@nrwl/devkit@15.9.7': + resolution: {integrity: sha512-Sb7Am2TMT8AVq8e+vxOlk3AtOA2M0qCmhBzoM1OJbdHaPKc0g0UgSnWRml1kPGg5qfPk72tWclLoZJ5/ut0vTg==} + peerDependencies: + nx: '>= 14.1 <= 16' + + '@nrwl/devkit@17.0.0': + resolution: {integrity: sha512-HvV4GrohNxmN5niRu+XRWuy/gNXFkCLJTNqS3eeZ1h96BnVIiGQL6qHkXvwt0HShcse+Bn55BijKNO7JSo7oIQ==} + + '@nrwl/eslint-plugin-nx@17.0.0': + resolution: {integrity: sha512-kOYPAQMdS9qDkOG5CyAjerBN4UwxUipqZjjahVyA3GS5JwRe9DQUZ0vrFtMp5DSfJ+Cs9fNd4voHvZQEKanq2Q==} + + '@nrwl/jest@17.0.0': + resolution: {integrity: sha512-j+7SM/y63c5zET9YQ6TAt8W6bxxagu3e3zIV68ccEq3pF1jdGnmx9r9RMaiFRo5LWA5gsIayDQDtJ8vpdH2M2g==} + + '@nrwl/js@17.0.0': + resolution: {integrity: sha512-Qjl21rnmwOzDmqAzBOLOQHgggGNpNXzRLTuV9fNGWSH/hMmYxC7oFqViaUVf53aTHpXgD5a/G6aj3hxThZWbdA==} + + '@nrwl/nx-darwin-arm64@15.9.3': + resolution: {integrity: sha512-2htJzVa+S/uLg5tj4nbO/tRz2SRMQIpT6EeWMgDGuEKQdpuRLVj2ez9hMpkRn9tl1tBUwR05hbV28DnOLRESVA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@nrwl/nx-darwin-x64@15.9.3': + resolution: {integrity: sha512-p+8UkfC6KTLOX4XRt7NSP8DoTzEgs73+SN0csoXT9VsNO35+F0Z5zMZxpEc7RVo5Wen/4PGh2OWA+8gtgntsJQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@nrwl/nx-linux-arm-gnueabihf@15.9.3': + resolution: {integrity: sha512-xwW7bZtggrxhFbYvvWWArtcSWwoxWzi/4wNgP3wPbcZFNZiraahVQSpIyJXrS9aajGbdvuDBM8cbDsMj9v7mwg==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + + '@nrwl/nx-linux-arm64-gnu@15.9.3': + resolution: {integrity: sha512-KNxDL2OAHxhFqztEjv2mNwXD6xrzoUury7NsYZYqlxJUNc3YYBfRSLEatnw491crvMBndbxfGVTWEO9S4YmRuw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@nrwl/nx-linux-arm64-musl@15.9.3': + resolution: {integrity: sha512-AxoZzfsXH7ZqDE+WrQtRumufIcSIBw4U/LikiDLaWWoGtNpAfKLkD/PHirZiNxHIeGy1Toi4ccMUolXbafLVFw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@nrwl/nx-linux-x64-gnu@15.9.3': + resolution: {integrity: sha512-P8AOPRufvV4a5cSczNsw84zFAI7NgAiEBTybYcyymdNJmo0iArJXEmvj/G4mB20O8VCsCkwqMYAu6nQEnES1Kw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@nrwl/nx-linux-x64-musl@15.9.3': + resolution: {integrity: sha512-4ZYDp7T319+xbw7Z7KVtRefzaXJipZfgrM49r+Y1FAfYDc8y18zvKz3slK26wfWz+EUZwKsa/DfA2KmyRG3DvQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@nrwl/nx-plugin@17.0.0': + resolution: {integrity: sha512-lVX/ec/reLrS2tb+9/2MbiEg4rEmKeNPTu1jpa24Sz7yCttMjEU+C8wjQnVZmMRre2xiQmFflZUR/tJ9f5/Jpw==} + + '@nrwl/nx-win32-arm64-msvc@15.9.3': + resolution: {integrity: sha512-UhgxIPgTZBKN1oxlLPSklkSzVL3hA4lAiVc9A0Utumpbp0ob/Xx+2vHzg3cnmNH3jWkZ+9OsC2dKyeMB6gAbSw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@nrwl/nx-win32-x64-msvc@15.9.3': + resolution: {integrity: sha512-gdnvqURKnu0EQGOFJ6NUKq6wSB+viNb7Z8qtKhzSmFwVjT8akOnLWn7ZhL9v28TAjLM7/s1Mwvmz/IMj1PGlcQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@nrwl/react@17.0.0': + resolution: {integrity: sha512-YXm5of00b2wa/y4lRsddORtW5yRkG9tn7G2NRwcPUqvCfSOlZsr6iPXa45nW8/EcPjAhl73nA+rjsnTLDouUdA==} + + '@nrwl/rollup@17.0.0': + resolution: {integrity: sha512-WBTfMWZ2cH8QgC1EezbS3chPpwUmpE51Iv/GHM7Igkb7/BIPPHVnk1p1AUM+VUDqnrbkvF0y5MfCIQvhBcc6Mg==} + + '@nrwl/storybook@17.0.0': + resolution: {integrity: sha512-h/E47WNElhqvFInrCld8EBpOZqCo1P3taUu77nlwdmuOfe7hy/IYhGlPRt1c114Nc9DVZoVZ52xOhT6Xk2b74Q==} + + '@nrwl/tao@15.9.3': + resolution: {integrity: sha512-NcjFCbuMa53C3fBrK7qLUImUBySyr9EVwmiZuAv9sZZtm4eILK8w3qihjrB4FFUuLjPU/SViriYXi+hF2tbP4w==} + hasBin: true + + '@nrwl/tao@17.0.0': + resolution: {integrity: sha512-ujvXd8yde1faH0zHKWWnZUhSym/+5SJT6NctBKNQTe8FVm0yBErsbxv8kdvVg/bizsRv+fbOkLdII0xX0aMkKQ==} + hasBin: true + + '@nrwl/web@17.0.0': + resolution: {integrity: sha512-Kj6S5M9KA5/UVgAf0E/AqQXyDDpbNxdZeXsWoT1CDD7w3GewWOMh/BxDZyMKQ/GIZfX1yFCbPj5+zCtpQCk3jQ==} + + '@nrwl/webpack@17.0.0': + resolution: {integrity: sha512-RiYfqKrfb+xb3/jsi8sRn19hqF6nQPWYzlLIw0Y5kX8h7N7ZQjBFpLkJuZwEUhGPEb+VC9BBzC9cXuMgWwwiSQ==} + + '@nrwl/workspace@17.0.0': + resolution: {integrity: sha512-kh30WXFmrKnrFYuk/zo7yByDjo9JWwJ3SbgdXf1S4RtZXtiDcDpat2UQ2oOe8bB6fYLrGjudsVTIWmnNKTjmNw==} + + '@nx/cypress@17.0.0': + resolution: {integrity: sha512-HDNMG/IazDaftBRRAsAVpaXo3QN6F8FjbdpWmx2vcbaG0fS0teHcQxPpHJqaT5jg/V17VEailepGOA+BoI4PWg==} + peerDependencies: + cypress: '>= 3 < 14' + peerDependenciesMeta: + cypress: + optional: true + + '@nx/devkit@17.0.0': + resolution: {integrity: sha512-NqN+I3R+Gxuy+gf04cdMg1Wo29CyhT2F87Yvu2JU355BfB3MOAFfOrQpPQt5sPlZRloZCrz0K3c2uftNkGSMUg==} + peerDependencies: + nx: '>= 16 <= 18' + + '@nx/eslint-plugin@17.0.0': + resolution: {integrity: sha512-q1kUSPRGHhbaXwJq+JthprIDVjL9mVaPeB/2mFmMFdsU6RPZsud8oJoQCamMKkGMMcN/VrtAm3L680EYv/abQw==} + peerDependencies: + '@typescript-eslint/parser': ^5.60.1 + eslint-config-prettier: ^9.0.0 + peerDependenciesMeta: + eslint-config-prettier: + optional: true + + '@nx/eslint@17.0.0': + resolution: {integrity: sha512-GWoEoxKgKrjwIB38a8JPhE6MM6wacaZfYZCAb5N2F8+7GPQUJxNW8gyhaCbLIrUglSJL+SLFtE91txOwHnDsBQ==} + peerDependencies: + eslint: ^8.0.0 + peerDependenciesMeta: + eslint: + optional: true + + '@nx/jest@17.0.0': + resolution: {integrity: sha512-ITl074j0tdDkPxMtwFQWWC+Zp23wklxlHjLfhf0CUbPqzQnofEToUd7MiuKkjzvVjXJxD/zYX9sMl6iXmFpGiA==} + + '@nx/js@17.0.0': + resolution: {integrity: sha512-j0YzvINQWH7OseoJp6zlbIioOKRDQ746MKROCDBx50uRkkJ2FlpHPYkLwv0M721JHJqf0dM0sBDa+HTxFHPcIg==} + peerDependencies: + verdaccio: ^5.0.4 + peerDependenciesMeta: + verdaccio: + optional: true + + '@nx/linter@17.0.0': + resolution: {integrity: sha512-4rDylew15CAlAsFxYvXzY6EvmGqG7uE7qWtBlkGFoDnGCNfVakzTpU6b4GJGLE1QMToKFgehrxOHL1SVzdkogg==} + + '@nx/nx-darwin-arm64@17.0.0': + resolution: {integrity: sha512-ZPW6uTVskpIbNJrH3I60lmYgXBnbszsmIX6haEhb4NKCwgPdZzMdbPqNNjIxKn6eL1A6FGKZYFh519OM8+z91A==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@nx/nx-darwin-x64@17.0.0': + resolution: {integrity: sha512-pAPqfyfhSIogaUfsp5P3rbha5Xa4yZ3bHG5agi6AE9P62N/Om4r8utdZpHPKyXbWywsJZM0lL5llSfiruuO+fg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@nx/nx-freebsd-x64@17.0.0': + resolution: {integrity: sha512-DbbsthLTE+cKVUP6HDE6sza/8wRey2vy/6HfNuVnu7A/ZQaxWJUudkKviQidh7QEhHWiJoyEkjskExYTow6OoQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [freebsd] + + '@nx/nx-linux-arm-gnueabihf@17.0.0': + resolution: {integrity: sha512-ZYgYLscl4Zj/Ux7N5DJ0it9sTODEiqZjfx80w05q18GjXUWAcozFp/CZgXdT7AxONtESl/ZKDdqM+p8Hv0rI2Q==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + + '@nx/nx-linux-arm64-gnu@17.0.0': + resolution: {integrity: sha512-Mb0ffRV3X43OQtY5sY9wuAxFZ8VUQGM5LPwX908M2gAJH8FYtnWl06rfJAGhFAMf1Dt3bWsNebMC5iJprtF3SQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@nx/nx-linux-arm64-musl@17.0.0': + resolution: {integrity: sha512-Xwzy3QysngtXVCJ3YRJ9rl8JL13yqluknftwxiHsMaYD7BMlh2YXdyt5D7g4yvLywq+6SezKS6cB+X4/OQlQUA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@nx/nx-linux-x64-gnu@17.0.0': + resolution: {integrity: sha512-KNbLZCNhFK/cRMavh5b7ruWX2J6KA1rR1LV5rF/liDM0scyARkJzy5PcwwhXqxaUPQD+EXWWiRkKKRYk+mwVLA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@nx/nx-linux-x64-musl@17.0.0': + resolution: {integrity: sha512-T8xJTO+kac3l8528YxpAjOeke3QbRYmdSY09E6f0OrSL43D3sfJcWB8NNatx3k5q0bJ9TVl7VVJG/3Rwux/99A==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@nx/nx-win32-arm64-msvc@17.0.0': + resolution: {integrity: sha512-Y/g9w6lLWMKvr9htS3ZD3jbVzMVWPq01+Bw440E5gBexAp1mvrv1cih0lKkduuIAlVppyjJu+htpEdp2wxUv9Q==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@nx/nx-win32-x64-msvc@17.0.0': + resolution: {integrity: sha512-VIF01yfR2jSMQi/1x04TqJxhbKCzrdRG6QBjPCXTl6ZLnb7eGolKVPxDJd3blhYtRsS3pp20u2ra6i7C1oRrMQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@nx/plugin@17.0.0': + resolution: {integrity: sha512-47evs4zB6DtpRzYhRednjZXdCA0XS6uhkLddz7DZveaBHGJds7qMAgZ3YDkbsTf7VoBtI7uYuWYt/Z9IoVfHjA==} + + '@nx/react@17.0.0': + resolution: {integrity: sha512-YHYyM0RA5+SEDgT5gSBv+a2hOBcRVrzEuRiLaOY+Za3ACxrOoO3Z0ZV0QdWLBc2hI+aYIiZkHVp9F9ro8Lx8SQ==} + + '@nx/rollup@17.0.0': + resolution: {integrity: sha512-cGTrhZRXd+0m2R8xS/rlxNiGh2mqxPp0T/bNT9FarwNKEDeWwqNBx51d27kfEBC1pSWbf7AFFmXvZzR/sSrjJA==} + + '@nx/storybook@17.0.0': + resolution: {integrity: sha512-LpxUVrt/LdO39sTPDHWVfNuxxbukmmfxyIFk/XtWoi0rFn7Ut/Zc3SdD9+7lEhIklnXu90ob5aALl4YG9OtY9A==} + + '@nx/web@17.0.0': + resolution: {integrity: sha512-H8R3QRs7nBKFei+KBvn4D8h9b4YEH8v4vfigFFD2Px1WCi0S8fWUqr9mF/EUUt6pUAf7Qgq3qp+EHArQ19X8MA==} + + '@nx/webpack@17.0.0': + resolution: {integrity: sha512-/qDyFGMCVvNPUW7T/qCh1CvRIcLDgCWcAz7KCeM5v90jRajSnfZDM0z7oQ4h/IClNQ3c57JJ8Mdm6rpY0XoMgw==} + + '@nx/workspace@17.0.0': + resolution: {integrity: sha512-7rG+7S7f6CyxrvLSduSyvJZ4DYfpCO1WZkEfZDpp9cuQVJudeZqrXqolupkmQqymTTWyNSRASvLbL1GBRLtU3w==} + + '@octokit/auth-token@3.0.4': + resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==} + engines: {node: '>= 14'} + + '@octokit/core@4.2.4': + resolution: {integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==} + engines: {node: '>= 14'} + + '@octokit/endpoint@7.0.6': + resolution: {integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==} + engines: {node: '>= 14'} + + '@octokit/graphql@5.0.6': + resolution: {integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==} + engines: {node: '>= 14'} + + '@octokit/openapi-types@18.1.1': + resolution: {integrity: sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==} + + '@octokit/plugin-enterprise-rest@6.0.1': + resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==} + + '@octokit/plugin-paginate-rest@6.1.2': + resolution: {integrity: sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==} + engines: {node: '>= 14'} + peerDependencies: + '@octokit/core': '>=4' + + '@octokit/plugin-request-log@1.0.4': + resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} + peerDependencies: + '@octokit/core': '>=3' + + '@octokit/plugin-rest-endpoint-methods@7.2.3': + resolution: {integrity: sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==} + engines: {node: '>= 14'} + peerDependencies: + '@octokit/core': '>=3' + + '@octokit/request-error@3.0.3': + resolution: {integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==} + engines: {node: '>= 14'} + + '@octokit/request@6.2.8': + resolution: {integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==} + engines: {node: '>= 14'} + + '@octokit/rest@19.0.13': + resolution: {integrity: sha512-/EzVox5V9gYGdbAI+ovYj3nXQT1TtTHRT+0eZPcuC05UFSWO3mdO9UY1C0i2eLF9Un1ONJkAk+IEtYGAC+TahA==} + engines: {node: '>= 14'} + + '@octokit/tsconfig@1.0.2': + resolution: {integrity: sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==} + + '@octokit/types@10.0.0': + resolution: {integrity: sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==} + + '@octokit/types@9.3.2': + resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==} + + '@one-ini/wasm@0.1.1': + resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} + + '@open-draft/until@1.0.3': + resolution: {integrity: sha512-Aq58f5HiWdyDlFffbbSjAlv596h/cOnt2DO1w3DOC7OJ5EHs0hd/nycJfiu9RJbT6Yk6F1knnRRXNSpxoIVZ9Q==} + + '@oxygen-ui/primitives@1.11.0': + resolution: {integrity: sha512-z1d75MVfkYYrLiBRFPJJNvcMc1/j5qd9eZZGMXH04Ipg1VbVHj3DGl6BvqRGIHeBdNtm3NgjBwx8VfqHQ/i6HA==} + + '@oxygen-ui/react-icons@1.11.0': + resolution: {integrity: sha512-qb1bCzC6c0xecRHneQy6T0LlGNLMvqomw1kuExubstn1kcebF7Y+TH8hjlrr4F3tp+upTBRXNEsVAUeq24Xnpw==} + peerDependencies: + react: '>=18.0.0' + react-dom: '>=18.0.0' + typescript: '>=4.0.0' + peerDependenciesMeta: + typescript: + optional: true + + '@oxygen-ui/react@1.11.0': + resolution: {integrity: sha512-Ij9E3CvX/fNGQkWbH6ic9LNsldFHeuy/2adksNsJLQgVsbvPct/coXyPYF8duH17dPEu6nksEHJwIfxoz9ekww==} + peerDependencies: + '@emotion/react': ^11.10.5 + '@emotion/styled': ^11.10.5 + '@mui/icons-material': ^5.10.16 + '@mui/lab': 5.0.0-alpha.110 + '@mui/material': 5.13.0 + '@mui/system': ^5.10.16 + '@mui/utils': ^5.10.16 + react: '>=18.0.0' + react-dom: '>=18.0.0' + typescript: '>=4.0.0' + peerDependenciesMeta: + typescript: + optional: true + + '@parcel/watcher@2.0.4': + resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==} + engines: {node: '>= 10.0.0'} + + '@phenomnomnominal/tsquery@5.0.1': + resolution: {integrity: sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==} + peerDependencies: + typescript: ^3 || ^4 || ^5 + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@pmmmwh/react-refresh-webpack-plugin@0.4.3': + resolution: {integrity: sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==} + engines: {node: '>= 10.x'} + peerDependencies: + '@types/webpack': 4.x + react-refresh: '>=0.8.3 <0.10.0' + sockjs-client: ^1.4.0 + type-fest: ^0.13.1 + webpack: 5.84.1 + webpack-dev-server: 3.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + '@types/webpack': + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true + + '@pmmmwh/react-refresh-webpack-plugin@0.5.15': + resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==} + engines: {node: '>= 10.13'} + peerDependencies: + '@types/webpack': 4.x || 5.x + react-refresh: '>=0.10.0 <1.0.0' + sockjs-client: ^1.4.0 + type-fest: '>=0.17.0 <5.0.0' + webpack: 5.84.1 + webpack-dev-server: 3.x || 4.x || 5.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + '@types/webpack': + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true + + '@polka/url@1.0.0-next.25': + resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} + + '@popperjs/core@2.11.8': + resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} + + '@reactflow/background@11.2.2': + resolution: {integrity: sha512-gOtae79Zx1zOs9tD4tmKfuiQQOyG0O81BWBCHqlAQgemKlYExElFKOC67lgTDZ4GGFK+4sXrgrWQ5h14hzaFgg==} + peerDependencies: + react: '>=17' + react-dom: '>=17' + + '@reactflow/controls@11.1.13': + resolution: {integrity: sha512-rA74+mbt2bnz9Fba6JL1JsKHNNEK6Nl70+ssfOLKMpRFIg512IroayBWufgPJB82X9dgMIzZfx/UcEFFUFJQ8Q==} + peerDependencies: + react: '>=17' + react-dom: '>=17' + + '@reactflow/core@11.7.2': + resolution: {integrity: sha512-AhszxILp1RNk3SwrnC/eYh1XsOil5yzthYG5k+oTpvLH5H3BtIWIVkeLEJwmL611lPKL3JuScfjliUxBm9128w==} + peerDependencies: + react: '>=17' + react-dom: '>=17' + + '@reactflow/minimap@11.5.2': + resolution: {integrity: sha512-564gP/GMZKaJjVRGIrVLv2gIjgc89+qvNwuZzHnQLXjBw5+nS/QkW57Qx/M33MxVAaM+Z5rJ8gKknMSnxekwvQ==} + peerDependencies: + react: '>=17' + react-dom: '>=17' + + '@reactflow/node-resizer@2.1.0': + resolution: {integrity: sha512-DVL8nnWsltP8/iANadAcTaDB4wsEkx2mOLlBEPNE3yc5loSm3u9l5m4enXRcBym61MiMuTtDPzZMyYYQUjuYIg==} + peerDependencies: + react: '>=17' + react-dom: '>=17' + + '@reactflow/node-toolbar@1.2.1': + resolution: {integrity: sha512-EcMUMzJGAACYQTiUaBm3zxeiiKCPwU2MaoDeZdnEMbvq+2SfohKOur6JklANjv30kL+Pf3xj8QopEtyKTS4XrA==} + peerDependencies: + react: '>=17' + react-dom: '>=17' + + '@remix-run/router@1.17.1': + resolution: {integrity: sha512-mCOMec4BKd6BRGBZeSnGiIgwsbLGp3yhVqAD8H+PxiRNEHgDpZb8J1TnrSDlg97t0ySKMQJTHCWBCmBpSmkF6Q==} + engines: {node: '>=14.0.0'} + + '@rollup/plugin-babel@5.3.1': + resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} + engines: {node: '>= 10.0.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@types/babel__core': ^7.1.9 + rollup: ^1.20.0||^2.0.0 + peerDependenciesMeta: + '@types/babel__core': + optional: true + + '@rollup/plugin-commonjs@20.0.0': + resolution: {integrity: sha512-5K0g5W2Ol8hAcTHqcTBHiA7M58tfmYi1o9KxeJuuRNpGaTa5iLjcyemBitCBcKXaHamOBBEH2dGom6v6Unmqjg==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^2.38.3 + + '@rollup/plugin-commonjs@25.0.8': + resolution: {integrity: sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.68.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-dynamic-import-vars@2.1.2': + resolution: {integrity: sha512-4lr2oXxs9hcxtGGaK8s0i9evfjzDrAs7ngw28TqruWKTEm0+U4Eljb+F6HXGYdFv8xRojQlrQwV7M/yxeh3yzQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-image@2.1.1': + resolution: {integrity: sha512-AgP4U85zuQJdUopLUCM+hTf45RepgXeTb8EJsleExVy99dIoYpt3ZlDYJdKmAc2KLkNntCDg6BPJvgJU3uGF+g==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 + + '@rollup/plugin-image@3.0.3': + resolution: {integrity: sha512-qXWQwsXpvD4trSb8PeFPFajp8JLpRtqqOeNYRUKnEQNHm7e5UP7fuSRcbjQAJ7wDZBbnJvSdY5ujNBQd9B1iFg==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-inject@5.0.5': + resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-json@4.1.0': + resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 + + '@rollup/plugin-json@6.1.0': + resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-node-resolve@13.3.0': + resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} + engines: {node: '>= 10.0.0'} + peerDependencies: + rollup: ^2.42.0 + + '@rollup/plugin-node-resolve@15.2.3': + resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.78.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-typescript@11.1.6': + resolution: {integrity: sha512-R92yOmIACgYdJ7dJ97p4K69I8gg6IEHt8M7dUBxN3W6nrO8uUxX5ixl0yU/N3aZTi8WhPuICvOHXQvF6FaykAA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.14.0||^3.0.0||^4.0.0 + tslib: '*' + typescript: '>=3.7.0' + peerDependenciesMeta: + rollup: + optional: true + tslib: + optional: true + + '@rollup/plugin-url@7.0.0': + resolution: {integrity: sha512-cIWcEObrmEPAU8q8NluGWlCPlQDuoSKvkyI3eOFO4fx6W02mLNj4ZEiUT0X2mKMIvQzoWL1feEK9d1yr1ICgrw==} + engines: {node: '>=10.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 + + '@rollup/pluginutils@3.1.0': + resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 + + '@rollup/pluginutils@4.2.1': + resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} + engines: {node: '>= 8.0.0'} + + '@rollup/pluginutils@5.1.0': + resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/rollup-android-arm-eabi@4.18.1': + resolution: {integrity: sha512-lncuC4aHicncmbORnx+dUaAgzee9cm/PbIqgWz1PpXuwc+sa1Ct83tnqUDy/GFKleLiN7ZIeytM6KJ4cAn1SxA==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.18.1': + resolution: {integrity: sha512-F/tkdw0WSs4ojqz5Ovrw5r9odqzFjb5LIgHdHZG65dFI1lWTWRVy32KDJLKRISHgJvqUeUhdIvy43fX41znyDg==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.18.1': + resolution: {integrity: sha512-vk+ma8iC1ebje/ahpxpnrfVQJibTMyHdWpOGZ3JpQ7Mgn/3QNHmPq7YwjZbIE7km73dH5M1e6MRRsnEBW7v5CQ==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.18.1': + resolution: {integrity: sha512-IgpzXKauRe1Tafcej9STjSSuG0Ghu/xGYH+qG6JwsAUxXrnkvNHcq/NL6nz1+jzvWAnQkuAJ4uIwGB48K9OCGA==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-linux-arm-gnueabihf@4.18.1': + resolution: {integrity: sha512-P9bSiAUnSSM7EmyRK+e5wgpqai86QOSv8BwvkGjLwYuOpaeomiZWifEos517CwbG+aZl1T4clSE1YqqH2JRs+g==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.18.1': + resolution: {integrity: sha512-5RnjpACoxtS+aWOI1dURKno11d7krfpGDEn19jI8BuWmSBbUC4ytIADfROM1FZrFhQPSoP+KEa3NlEScznBTyQ==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.18.1': + resolution: {integrity: sha512-8mwmGD668m8WaGbthrEYZ9CBmPug2QPGWxhJxh/vCgBjro5o96gL04WLlg5BA233OCWLqERy4YUzX3bJGXaJgQ==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.18.1': + resolution: {integrity: sha512-dJX9u4r4bqInMGOAQoGYdwDP8lQiisWb9et+T84l2WXk41yEej8v2iGKodmdKimT8cTAYt0jFb+UEBxnPkbXEQ==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-powerpc64le-gnu@4.18.1': + resolution: {integrity: sha512-V72cXdTl4EI0x6FNmho4D502sy7ed+LuVW6Ym8aI6DRQ9hQZdp5sj0a2usYOlqvFBNKQnLQGwmYnujo2HvjCxQ==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.18.1': + resolution: {integrity: sha512-f+pJih7sxoKmbjghrM2RkWo2WHUW8UbfxIQiWo5yeCaCM0TveMEuAzKJte4QskBp1TIinpnRcxkquY+4WuY/tg==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.18.1': + resolution: {integrity: sha512-qb1hMMT3Fr/Qz1OKovCuUM11MUNLUuHeBC2DPPAWUYYUAOFWaxInaTwTQmc7Fl5La7DShTEpmYwgdt2hG+4TEg==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.18.1': + resolution: {integrity: sha512-7O5u/p6oKUFYjRbZkL2FLbwsyoJAjyeXHCU3O4ndvzg2OFO2GinFPSJFGbiwFDaCFc+k7gs9CF243PwdPQFh5g==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.18.1': + resolution: {integrity: sha512-pDLkYITdYrH/9Cv/Vlj8HppDuLMDUBmgsM0+N+xLtFd18aXgM9Nyqupb/Uw+HeidhfYg2lD6CXvz6CjoVOaKjQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.18.1': + resolution: {integrity: sha512-W2ZNI323O/8pJdBGil1oCauuCzmVd9lDmWBBqxYZcOqWD6aWqJtVBQ1dFrF4dYpZPks6F+xCZHfzG5hYlSHZ6g==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.18.1': + resolution: {integrity: sha512-ELfEX1/+eGZYMaCIbK4jqLxO1gyTSOIlZr6pbC4SRYFaSIDVKOnZNMdoZ+ON0mrFDp4+H5MhwNC1H/AhE3zQLg==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.18.1': + resolution: {integrity: sha512-yjk2MAkQmoaPYCSu35RLJ62+dz358nE83VfTePJRp8CG7aMg25mEJYpXFiD+NcevhX8LxD5OP5tktPXnXN7GDw==} + cpu: [x64] + os: [win32] + + '@semantic-ui-react/event-stack@3.1.3': + resolution: {integrity: sha512-FdTmJyWvJaYinHrKRsMLDrz4tTMGdFfds299Qory53hBugiDvGC0tEJf+cHsi5igDwWb/CLOgOiChInHwq8URQ==} + peerDependencies: + react: ^16.0.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 + + '@sideway/address@4.1.5': + resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} + + '@sideway/formula@3.0.1': + resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} + + '@sideway/pinpoint@2.0.0': + resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} + + '@sinclair/typebox@0.27.8': + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + + '@sindresorhus/is@0.14.0': + resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} + engines: {node: '>=6'} + + '@sindresorhus/is@4.6.0': + resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} + engines: {node: '>=10'} + + '@sindresorhus/merge-streams@2.3.0': + resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} + engines: {node: '>=18'} + + '@sinonjs/commons@1.8.6': + resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} + + '@sinonjs/commons@3.0.1': + resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} + + '@sinonjs/fake-timers@10.3.0': + resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} + + '@sinonjs/fake-timers@6.0.1': + resolution: {integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==} + + '@storybook/addon-actions@6.5.16': + resolution: {integrity: sha512-aADjilFmuD6TNGz2CRPSupnyiA/IGkPJHDBTqMpsDXTUr8xnuD122xkIhg6UxmCM2y1c+ncwYXy3WPK2xXK57g==} + 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 + + '@storybook/addon-backgrounds@6.5.16': + resolution: {integrity: sha512-t7qooZ892BruhilFmzYPbysFwpULt/q4zYXNSmKVbAYta8UVvitjcU4F18p8FpWd9WvhiTr0SDlyhNZuzvDfug==} + 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 + + '@storybook/addon-controls@6.5.16': + resolution: {integrity: sha512-kShSGjq1MjmmyL3l8i+uPz6yddtf82mzys0l82VKtcuyjrr5944wYFJ5NTXMfZxrO/U6FeFsfuFZE/k6ex3EMg==} + 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 + + '@storybook/addon-docs@6.5.16': + resolution: {integrity: sha512-QM9WDZG9P02UvbzLu947a8ZngOrQeAKAT8jCibQFM/+RJ39xBlfm8rm+cQy3dm94wgtjmVkA3mKGOV/yrrsddg==} + peerDependencies: + '@storybook/mdx2-csf': ^0.0.3 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@storybook/mdx2-csf': + optional: true + react: + optional: true + react-dom: + optional: true + + '@storybook/addon-links@6.5.16': + resolution: {integrity: sha512-P/mmqK57NGXnR0i3d/T5B0rIt0Lg8Yq+qionRr3LK3AwG/4yGnYt4GNomLEknn/eEwABYq1Q/Z1aOpgIhNdq5A==} + 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 + + '@storybook/addon-measure@6.5.16': + resolution: {integrity: sha512-DMwnXkmM2L6POTh4KaOWvOAtQ2p9Tr1UUNxz6VXiN5cKFohpCs6x0txdLU5WN8eWIq0VFsO7u5ZX34CGCc6gCg==} + 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 + + '@storybook/addon-outline@6.5.16': + resolution: {integrity: sha512-0du96nha4qltexO0Xq1xB7LeRSbqjC9XqtZLflXG7/X3ABoPD2cXgOV97eeaXUodIyb2qYBbHUfftBeA75x0+w==} + 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 + + '@storybook/addon-toolbars@6.5.16': + resolution: {integrity: sha512-y3PuUKiwOWrAvqx1YdUvArg0UaAwmboXFeR2bkrowk1xcT+xnRO3rML4npFeUl26OQ1FzwxX/cw6nknREBBLEA==} + 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 + + '@storybook/addon-viewport@6.5.16': + resolution: {integrity: sha512-1Vyqf1U6Qng6TXlf4SdqUKyizlw1Wn6+qW8YeA2q1lbkJqn3UlnHXIp8Q0t/5q1dK5BFtREox3+jkGwbJrzkmA==} + 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 + + '@storybook/addons@6.5.16': + resolution: {integrity: sha512-p3DqQi+8QRL5k7jXhXmJZLsE/GqHqyY6PcoA1oNTJr0try48uhTGUOYkgzmqtDaa/qPFO5LP+xCPzZXckGtquQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/api@6.5.16': + resolution: {integrity: sha512-HOsuT8iomqeTMQJrRx5U8nsC7lJTwRr1DhdD0SzlqL4c80S/7uuCy4IZvOt4sYQjOzW5fOo/kamcoBXyLproTA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/builder-manager@7.6.9': + resolution: {integrity: sha512-F9Fujde0G4g7Df6mYu6VQy26c3B1hcAC0KLbjKrrp1v9+E5mE12hSq/y+mYQUGmCe86YBVuQiazO4W3Mm/HRsw==} + + '@storybook/builder-webpack4@6.5.16': + resolution: {integrity: sha512-YqDIrVNsUo8r9xc6AxsYDLxVYtMgl5Bxk+8/h1adsOko+jAFhdg6hOcAVxEmoSI0TMASOOVMFlT2hr23ppN2rQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/builder-webpack5@6.5.16': + resolution: {integrity: sha512-kh8Sofm1sbijaHDWtm0sXabqACHVFjikU/fIkkW786kpjoPIPIec1a+hrLgDsZxMU3I7XapSOaCFzWt6FjVXjg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/builder-webpack5@7.6.9': + resolution: {integrity: sha512-LDwD1chjTVRKxJebkN4GkMl/aR7jzVYIx+0VuFKjDM/6er341ixE5GMIlvXKdYb8JWI8bI7suknSjbsd3LeBoA==} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/channel-postmessage@6.5.16': + resolution: {integrity: sha512-fZZSN29dsUArWOx7e7lTdMA9+7zijVwCwbvi2Fo4fqhRLh1DsTb/VXfz1FKMCWAjNlcX7QQvV25tnxbqsD6lyw==} + + '@storybook/channel-websocket@6.5.16': + resolution: {integrity: sha512-wJg2lpBjmRC2GJFzmhB9kxlh109VE58r/0WhFtLbwKvPqsvGf82xkBEl6BtBCvIQ4stzYnj/XijjA8qSi2zpOg==} + + '@storybook/channels@6.5.16': + resolution: {integrity: sha512-VylzaWQZaMozEwZPJdyJoz+0jpDa8GRyaqu9TGG6QGv+KU5POoZaGLDkRE7TzWkyyP0KQLo80K99MssZCpgSeg==} + + '@storybook/channels@7.6.9': + resolution: {integrity: sha512-goGGZPT294CS1QDF65Fs+PCauvM/nTMseU913ZVSZbFTk4uvqIXOaOraqhQze8A/C8a0yls4qu2Wp00tCnyaTA==} + + '@storybook/cli@6.5.16': + resolution: {integrity: sha512-6hcIUvoQxmK9OZ/dmt2eXMbdeCJseRjLwIk4y2SdWd3chpjMDUVhIMJHU4qc2+6rbK+iwL7JAsOUEu/ywkgEow==} + hasBin: true + + '@storybook/cli@7.6.9': + resolution: {integrity: sha512-HXxr8m1S9wsCtVZ/iQy/bHIUcGlNZ6bMo8jBcFh2V5EgDi350LGQ8q1w/zbwNMD0z0OhmPiv84okksBrOMW6pw==} + hasBin: true + + '@storybook/client-api@6.5.16': + resolution: {integrity: sha512-i3UwkzzUFw8I+E6fOcgB5sc4oU2fhvaKnqC1mpd9IYGJ9JN9MnGIaVl3Ko28DtFItu/QabC9JsLIJVripFLktQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/client-logger@6.5.16': + resolution: {integrity: sha512-pxcNaCj3ItDdicPTXTtmYJE3YC1SjxFrBmHcyrN+nffeNyiMuViJdOOZzzzucTUG0wcOOX8jaSyak+nnHg5H1Q==} + + '@storybook/client-logger@7.6.9': + resolution: {integrity: sha512-Xm6fa6AR3cjxabauMldBv/66OOp5IhDiUEpp4D/a7hXfvCWqwmjVJ6EPz9WzkMhcPbMJr8vWJBaS3glkFqsRng==} + + '@storybook/codemod@6.5.16': + resolution: {integrity: sha512-bYu0QzkWpgILFdQnbIsnICfL08Z4xmLSmL0Rq9WWGRnSnNnGzX5P57gz+fW7+NHFGxdCTCuHJPvwAXGuJQApPQ==} + + '@storybook/codemod@7.6.9': + resolution: {integrity: sha512-7vj5zVu4GmBpY6fxrRsJby5ttN/tN5Z8RFil06PhTy8SI8JxFoJCWBaPwtOvICObdBAqDx9idGVzbcVpdVdJEg==} + + '@storybook/components@6.5.16': + resolution: {integrity: sha512-LzBOFJKITLtDcbW9jXl0/PaG+4xAz25PK8JxPZpIALbmOpYWOAPcO6V9C2heX6e6NgWFMUxjplkULEk9RCQMNA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/core-client@6.5.16': + resolution: {integrity: sha512-14IRaDrVtKrQ+gNWC0wPwkCNfkZOKghYV/swCUnQX3rP99defsZK8Hc7xHIYoAiOP5+sc3sweRAxgmFiJeQ1Ig==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + webpack: 5.84.1 + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/core-client@7.6.9': + resolution: {integrity: sha512-a94YHpRilFhhfPLmCsnEuGQld7ZY7VfQPtzKL/a8MjNEYiJTghquLx20ZPAeO/CjKZmtTfLVhO95InkNtKz33A==} + + '@storybook/core-common@6.5.16': + resolution: {integrity: sha512-2qtnKP3TTOzt2cp6LXKRTh7XrI9z5VanMnMTgeoFcA5ebnndD4V6BExQUdYPClE/QooLx6blUWNgS9dFEpjSqQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/core-common@7.6.9': + resolution: {integrity: sha512-K3xHn2wvyTRXv+boAei5mVqO6P+5EGdGAILF+iSINrdNfz899HAovlnj68dBZguiHqFibhYyFIv1PyGuPgVn6g==} + + '@storybook/core-events@6.5.16': + resolution: {integrity: sha512-qMZQwmvzpH5F2uwNUllTPg6eZXr2OaYZQRRN8VZJiuorZzDNdAFmiVWMWdkThwmyLEJuQKXxqCL8lMj/7PPM+g==} + + '@storybook/core-events@7.6.9': + resolution: {integrity: sha512-YCds7AA6sbnnZ2qq5l+AIxhQqYlXB8eVTkjj6phgczsLjkqKapYFxAFc3ppRnE0FcsL2iji17ikHzZ8+eHYznA==} + + '@storybook/core-server@6.5.16': + resolution: {integrity: sha512-/3NPfmNyply395Dm0zaVZ8P9aruwO+tPx4D6/jpw8aqrRSwvAMndPMpoMCm0NXcpSm5rdX+Je4S3JW6JcggFkA==} + peerDependencies: + '@storybook/builder-webpack5': '*' + '@storybook/manager-webpack5': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + '@storybook/builder-webpack5': + optional: true + '@storybook/manager-webpack5': + optional: true + typescript: + optional: true + + '@storybook/core-server@7.6.9': + resolution: {integrity: sha512-zRzKmdYhDiIxX+K3i/Ri6v3uuWzwFcdNaKkWnUSDsIR40kI5vCQB6aad/4Lrf/qMVvjWCOkLNFxOD2X4cXMM6w==} + + '@storybook/core-webpack@7.6.9': + resolution: {integrity: sha512-2nDHBFY4fxSsESL0bhnWapfRHMZyIYsW9dQvtjkPLKf2v8d7iF8NNM7Rn8j862s2HoMWd8otRW4r3UrG5+FNKw==} + + '@storybook/core@6.5.16': + resolution: {integrity: sha512-CEF3QFTsm/VMnMKtRNr4rRdLeIkIG0g1t26WcmxTdSThNPBd8CsWzQJ7Jqu7CKiut+MU4A1LMOwbwCE5F2gmyA==} + peerDependencies: + '@storybook/builder-webpack5': '*' + '@storybook/manager-webpack5': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + webpack: 5.84.1 + peerDependenciesMeta: + '@storybook/builder-webpack5': + optional: true + '@storybook/manager-webpack5': + optional: true + typescript: + optional: true + + '@storybook/csf-tools@6.5.16': + resolution: {integrity: sha512-+WD4sH/OwAfXZX3IN6/LOZ9D9iGEFcN+Vvgv9wOsLRgsAZ10DG/NK6c1unXKDM/ogJtJYccNI8Hd+qNE/GFV6A==} + peerDependencies: + '@storybook/mdx2-csf': ^0.0.3 + peerDependenciesMeta: + '@storybook/mdx2-csf': + optional: true + + '@storybook/csf-tools@7.6.9': + resolution: {integrity: sha512-1Lfq+d3NBhmCq07Tz3Fc5Y2szpXKFtQ8Xx9/Ht0NC/dihn8ZgRlFa8uak9BKNWh5kTQb4EP7e0PMmwyowR1JWQ==} + + '@storybook/csf@0.0.2--canary.4566f4d.1': + resolution: {integrity: sha512-9OVvMVh3t9znYZwb0Svf/YQoxX2gVOeQTGe2bses2yj+a3+OJnCrUF3/hGv6Em7KujtOdL2LL+JnG49oMVGFgQ==} + + '@storybook/csf@0.1.11': + resolution: {integrity: sha512-dHYFQH3mA+EtnCkHXzicbLgsvzYjcDJ1JWsogbItZogkPHgSJM/Wr71uMkcvw8v9mmCyP4NpXJuu6bPoVsOnzg==} + + '@storybook/docs-mdx@0.1.0': + resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==} + + '@storybook/docs-tools@6.5.16': + resolution: {integrity: sha512-o+rAWPRGifjBF5xZzTKOqnHN3XQWkl0QFJYVDIiJYJrVll7ExCkpEq/PahOGzIBBV+tpMstJgmKM3lr/lu/jmg==} + + '@storybook/docs-tools@7.6.9': + resolution: {integrity: sha512-p5+jkQk+9cTIjnHYqytJARtoupxn7fORAtk33+DOiSv026cSx5LsW2rZwZuGeH+bloVeLoxiwhQWeK61PN14Jw==} + + '@storybook/global@5.0.0': + resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} + + '@storybook/manager-webpack4@6.5.16': + resolution: {integrity: sha512-5VJZwmQU6AgdsBPsYdu886UKBHQ9SJEnFMaeUxKEclXk+iRsmbzlL4GHKyVd6oGX/ZaecZtcHPR6xrzmA4Ziew==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/manager-webpack5@6.5.16': + resolution: {integrity: sha512-OtxXv8JCe0r/0rE5HxaFicsNsXA+fqZxzokxquFFgrYf/1Jg4d7QX6/pG5wINF+5qInJfVkRG6xhPzv1s5bk9Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/manager@7.6.9': + resolution: {integrity: sha512-FGY4Dsttg1P9fPVeXuQyIEpXdQYHMMvqUoCpEc0hkDBf4cu6tbQCLOeP7EPKN4oVW+zKh4BanJlrOlqGAD5jWA==} + + '@storybook/mdx1-csf@0.0.1': + resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} + + '@storybook/node-logger@6.5.16': + resolution: {integrity: sha512-YjhBKrclQtjhqFNSO+BZK+RXOx6EQypAELJKoLFaawg331e8VUfvUuRCNB3fcEWp8G9oH13PQQte0OTjLyyOYg==} + + '@storybook/node-logger@7.6.9': + resolution: {integrity: sha512-JoK5mJkjjpFfbiXbCdCiQceIUzIfeHpYCDd6+Jpx9+Sk4osR3BgdW2qYBviosato9c9D3dvKyrfhzbSp5rX+bQ==} + + '@storybook/postinstall@6.5.16': + resolution: {integrity: sha512-08K2q+qN6pqyPW7PHLCZ5G5Xa6Wosd6t0F16PQ4abX2ItlJLabVoJN5mZ0gm/aeLTjD8QYr8IDvacu4eXh0SVA==} + + '@storybook/preset-react-webpack@7.6.9': + resolution: {integrity: sha512-53zfRsr+YeP6SkoIBXCQjKhAMlVTRNtSpzuvhd7MvLoaU3YO9xE1ZzHMljk1r6gXt+GOMdEzZhFRGc/z/M62Vg==} + engines: {node: '>=16.0.0'} + peerDependencies: + '@babel/core': ^7.22.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + '@babel/core': + optional: true + typescript: + optional: true + + '@storybook/preview-api@7.6.9': + resolution: {integrity: sha512-qVRylkOc70Ivz/oRE3cXaQA9r60qXSCXhY8xFjnBvZFjoYr0ImGx+tt0818YzSkhTf6LsNbx9HxwW4+x7JD6dw==} + + '@storybook/preview-web@6.5.16': + resolution: {integrity: sha512-IJnvfe2sKCfk7apN9Fu9U8qibbarrPX5JB55ZzK1amSHVmSDuYk5MIMc/U3NnSQNnvd1DO5v/zMcGgj563hrtg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/preview@7.6.9': + resolution: {integrity: sha512-cQbejRzUYghU913ZWLc37YinzU4Ziv5eYonQzGk7C5O2hP2MoDYqIL9CIll00tNb9lXDuK1kYz7AVJNrsDrvCg==} + + '@storybook/react-docgen-typescript-plugin@1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0': + resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==} + peerDependencies: + typescript: '>= 3.x' + webpack: 5.84.1 + + '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0': + resolution: {integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==} + peerDependencies: + typescript: '>= 4.x' + webpack: 5.84.1 + + '@storybook/react-dom-shim@7.6.9': + resolution: {integrity: sha512-8n0MFq52lKGPHmqLN8PHueAE+5Kj+LMUTg7Sw0PeQhuaLYRT/1v0QpQXxuiwpkwEbrQr/u9MzZ8B0KsZHKxROQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/react-webpack5@7.6.9': + resolution: {integrity: sha512-J0LzsLYJ4vkTcep4u3kwnblyTJSh4E+KPQPGLMd8KmQ9/Z1i4JFONNrs0yn5PofhnBGvfD9Y8iNBhh3NDAH4XA==} + engines: {node: '>=16.0.0'} + peerDependencies: + '@babel/core': ^7.22.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + '@babel/core': + optional: true + typescript: + optional: true + + '@storybook/react@6.5.16': + resolution: {integrity: sha512-cBtNlOzf/MySpNLBK22lJ8wFU22HnfTB2xJyBk7W7Zi71Lm7Uxkhv1Pz8HdiQndJ0SlsAAQOWjQYsSZsGkZIaA==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + '@babel/core': ^7.11.5 + '@storybook/builder-webpack4': '*' + '@storybook/builder-webpack5': '*' + '@storybook/manager-webpack4': '*' + '@storybook/manager-webpack5': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + require-from-string: ^2.0.2 + typescript: '*' + peerDependenciesMeta: + '@babel/core': + optional: true + '@storybook/builder-webpack4': + optional: true + '@storybook/builder-webpack5': + optional: true + '@storybook/manager-webpack4': + optional: true + '@storybook/manager-webpack5': + optional: true + typescript: + optional: true + + '@storybook/react@7.6.9': + resolution: {integrity: sha512-nKBiI0wVyN3yj9xgNjIVKaaYSwe+qBqn0pxmiHSY20mUY4GH1thEY2KMtL0BLIU/mvcp6cw/Sj3oDFKCe+G0MA==} + engines: {node: '>=16.0.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@storybook/router@6.5.16': + resolution: {integrity: sha512-ZgeP8a5YV/iuKbv31V8DjPxlV4AzorRiR8OuSt/KqaiYXNXlOoQDz/qMmiNcrshrfLpmkzoq7fSo4T8lWo2UwQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/semver@7.3.2': + resolution: {integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==} + engines: {node: '>=10'} + hasBin: true + + '@storybook/source-loader@6.5.16': + resolution: {integrity: sha512-fyVl4jrM/5JLrb48aqXPu7sTsmySQaVGFp1zfeqvPPlJRFMastDrePm5XGPN7Qjv1wsKmpuBvuweFKOT1pru3g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/store@6.5.16': + resolution: {integrity: sha512-g+bVL5hmMq/9cM51K04e37OviUPHT0rHHrRm5wj/hrf18Kd9120b3sxdQ5Dc+HZ292yuME0n+cyrQPTYx9Epmw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/telemetry@6.5.16': + resolution: {integrity: sha512-CWr5Uko1l9jJW88yTXsZTj/3GTabPvw0o7pDPOXPp8JRZiJTxv1JFaFCafhK9UzYbgcRuGfCC8kEWPZims7iKA==} + + '@storybook/telemetry@7.6.9': + resolution: {integrity: sha512-0Dj2RH5oAL1mY72OcZKmiOlAcWyex2bwYJZUnsFrA+RFvOr7FbHAVWwudz4orWzIkYFTESixF4wuF0mYk8ds6g==} + + '@storybook/theming@6.5.16': + resolution: {integrity: sha512-hNLctkjaYLRdk1+xYTkC1mg4dYz2wSv6SqbLpcKMbkPHTE0ElhddGPHQqB362md/w9emYXNkt1LSMD8Xk9JzVQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@storybook/types@7.6.9': + resolution: {integrity: sha512-Qnx7exS6bO1MrqasHl12h8/HeBuxrwg2oMXROO7t0qmprV6+DGb6OxztsVIgbKR+m6uqFFM1q+f/Q5soI1qJ6g==} + + '@storybook/ui@6.5.16': + resolution: {integrity: sha512-rHn/n12WM8BaXtZ3IApNZCiS+C4Oc5+Lkl4MoctX8V7QSml0SxZBB5hsJ/AiWkgbRxjQpa/L/Nt7/Qw0FjTH/A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@svgr/babel-plugin-add-jsx-attribute@4.2.0': + resolution: {integrity: sha512-j7KnilGyZzYr/jhcrSYS3FGWMZVaqyCG0vzMCwzvei0coIkczuYMcniK07nI0aHJINciujjH11T72ICW5eL5Ig==} + engines: {node: '>=8'} + + '@svgr/babel-plugin-add-jsx-attribute@5.4.0': + resolution: {integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-add-jsx-attribute@6.5.1': + resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-add-jsx-attribute@8.0.0': + resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-remove-jsx-attribute@4.2.0': + resolution: {integrity: sha512-3XHLtJ+HbRCH4n28S7y/yZoEQnRpl0tvTZQsHqvaeNXPra+6vE5tbRliH3ox1yZYPCxrlqaJT/Mg+75GpDKlvQ==} + engines: {node: '>=8'} + + '@svgr/babel-plugin-remove-jsx-attribute@5.4.0': + resolution: {integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-remove-jsx-attribute@8.0.0': + resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-remove-jsx-empty-expression@4.2.0': + resolution: {integrity: sha512-yTr2iLdf6oEuUE9MsRdvt0NmdpMBAkgK8Bjhl6epb+eQWk6abBaX3d65UZ3E3FWaOwePyUgNyNCMVG61gGCQ7w==} + engines: {node: '>=8'} + + '@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1': + resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0': + resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-replace-jsx-attribute-value@4.2.0': + resolution: {integrity: sha512-U9m870Kqm0ko8beHawRXLGLvSi/ZMrl89gJ5BNcT452fAjtF2p4uRzXkdzvGJJJYBgx7BmqlDjBN/eCp5AAX2w==} + engines: {node: '>=8'} + + '@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1': + resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1': + resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0': + resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-svg-dynamic-title@4.3.3': + resolution: {integrity: sha512-w3Be6xUNdwgParsvxkkeZb545VhXEwjGMwExMVBIdPQJeyMQHqm9Msnb2a1teHBqUYL66qtwfhNkbj1iarCG7w==} + engines: {node: '>=8'} + + '@svgr/babel-plugin-svg-dynamic-title@5.4.0': + resolution: {integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-svg-dynamic-title@6.5.1': + resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-svg-dynamic-title@8.0.0': + resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-svg-em-dimensions@4.2.0': + resolution: {integrity: sha512-C0Uy+BHolCHGOZ8Dnr1zXy/KgpBOkEUYY9kI/HseHVPeMbluaX3CijJr7D4C5uR8zrc1T64nnq/k63ydQuGt4w==} + engines: {node: '>=8'} + + '@svgr/babel-plugin-svg-em-dimensions@5.4.0': + resolution: {integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-svg-em-dimensions@6.5.1': + resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-svg-em-dimensions@8.0.0': + resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-transform-react-native-svg@4.2.0': + resolution: {integrity: sha512-7YvynOpZDpCOUoIVlaaOUU87J4Z6RdD6spYN4eUb5tfPoKGSF9OG2NuhgYnq4jSkAxcpMaXWPf1cePkzmqTPNw==} + engines: {node: '>=8'} + + '@svgr/babel-plugin-transform-react-native-svg@5.4.0': + resolution: {integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-transform-react-native-svg@6.5.1': + resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-transform-react-native-svg@8.1.0': + resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-transform-svg-component@4.2.0': + resolution: {integrity: sha512-hYfYuZhQPCBVotABsXKSCfel2slf/yvJY8heTVX1PCTaq/IgASq1IyxPPKJ0chWREEKewIU/JMSsIGBtK1KKxw==} + engines: {node: '>=8'} + + '@svgr/babel-plugin-transform-svg-component@5.5.0': + resolution: {integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-transform-svg-component@6.5.1': + resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} + engines: {node: '>=12'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-transform-svg-component@8.0.0': + resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==} + engines: {node: '>=12'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-preset@4.3.3': + resolution: {integrity: sha512-6PG80tdz4eAlYUN3g5GZiUjg2FMcp+Wn6rtnz5WJG9ITGEF1pmFdzq02597Hn0OmnQuCVaBYQE1OVFAnwOl+0A==} + engines: {node: '>=8'} + + '@svgr/babel-preset@5.5.0': + resolution: {integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==} + engines: {node: '>=10'} + + '@svgr/babel-preset@6.5.1': + resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-preset@8.1.0': + resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/core@4.3.3': + resolution: {integrity: sha512-qNuGF1QON1626UCaZamWt5yedpgOytvLj5BQZe2j1k1B8DUG4OyugZyfEwBeXozCUwhLEpsrgPrE+eCu4fY17w==} + engines: {node: '>=8'} + + '@svgr/core@5.5.0': + resolution: {integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==} + engines: {node: '>=10'} + + '@svgr/core@6.5.1': + resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} + engines: {node: '>=10'} + + '@svgr/core@8.1.0': + resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==} + engines: {node: '>=14'} + + '@svgr/hast-util-to-babel-ast@4.3.2': + resolution: {integrity: sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg==} + engines: {node: '>=8'} + + '@svgr/hast-util-to-babel-ast@5.5.0': + resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} + engines: {node: '>=10'} + + '@svgr/hast-util-to-babel-ast@6.5.1': + resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} + engines: {node: '>=10'} + + '@svgr/hast-util-to-babel-ast@8.0.0': + resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==} + engines: {node: '>=14'} + + '@svgr/plugin-jsx@4.3.3': + resolution: {integrity: sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w==} + engines: {node: '>=8'} + + '@svgr/plugin-jsx@5.5.0': + resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} + engines: {node: '>=10'} + + '@svgr/plugin-jsx@6.5.1': + resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==} + engines: {node: '>=10'} + peerDependencies: + '@svgr/core': ^6.0.0 + + '@svgr/plugin-jsx@8.1.0': + resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==} + engines: {node: '>=14'} + peerDependencies: + '@svgr/core': '*' + + '@svgr/plugin-svgo@4.3.1': + resolution: {integrity: sha512-PrMtEDUWjX3Ea65JsVCwTIXuSqa3CG9px+DluF1/eo9mlDrgrtFE7NE/DjdhjJgSM9wenlVBzkzneSIUgfUI/w==} + engines: {node: '>=8'} + + '@svgr/plugin-svgo@5.5.0': + resolution: {integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==} + engines: {node: '>=10'} + + '@svgr/plugin-svgo@6.5.1': + resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==} + engines: {node: '>=10'} + peerDependencies: + '@svgr/core': '*' + + '@svgr/plugin-svgo@8.1.0': + resolution: {integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==} + engines: {node: '>=14'} + peerDependencies: + '@svgr/core': '*' + + '@svgr/rollup@6.5.1': + resolution: {integrity: sha512-GeUfq0grJfpcn2jRWRaZ4npn27nnWK21vUj6MqDqknuJnEqGADcZZjO9wrUAaPLr3InAnQi0Z7nwiNUdzkaj6A==} + engines: {node: '>=10'} + + '@svgr/webpack@4.3.2': + resolution: {integrity: sha512-F3VE5OvyOWBEd2bF7BdtFRyI6E9it3mN7teDw0JQTlVtc4HZEYiiLSl+Uf9Uub6IYHVGc+qIrxxDyeedkQru2w==} + engines: {node: '>=8'} + + '@svgr/webpack@5.5.0': + resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==} + engines: {node: '>=10'} + + '@svgr/webpack@6.5.1': + resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==} + engines: {node: '>=10'} + + '@svgr/webpack@8.1.0': + resolution: {integrity: sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==} + engines: {node: '>=14'} + + '@swc-node/core@1.13.1': + resolution: {integrity: sha512-emB5l2nZsXjUEAuusqjYvWnQMLWZp6K039Mv8aq5SX1rsNM/N7DNhw1i4/DX7AyzNZ0tT+ASWyTvqEURldp5HA==} + engines: {node: '>= 10'} + peerDependencies: + '@swc/core': '>= 1.4.13' + '@swc/types': '>= 0.1' + + '@swc-node/register@1.6.8': + resolution: {integrity: sha512-74ijy7J9CWr1Z88yO+ykXphV29giCrSpANQPQRooE0bObpkTO1g4RzQovIfbIaniBiGDDVsYwDoQ3FIrCE8HcQ==} + peerDependencies: + '@swc/core': '>= 1.3' + typescript: '>= 4.3' + + '@swc-node/sourcemap-support@0.3.0': + resolution: {integrity: sha512-gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA==} + + '@swc/cli@0.1.65': + resolution: {integrity: sha512-4NcgsvJVHhA7trDnMmkGLLvWMHu2kSy+qHx6QwRhhJhdiYdNUrhdp+ERxen73sYtaeEOYeLJcWrQ60nzKi6rpg==} + engines: {node: '>= 12.13'} + hasBin: true + peerDependencies: + '@swc/core': ^1.2.66 + chokidar: ^3.5.1 + peerDependenciesMeta: + chokidar: + optional: true + + '@swc/core-darwin-arm64@1.3.99': + resolution: {integrity: sha512-Qj7Jct68q3ZKeuJrjPx7k8SxzWN6PqLh+VFxzA+KwLDpQDPzOlKRZwkIMzuFjLhITO4RHgSnXoDk/Syz0ZeN+Q==} + engines: {node: '>=10'} + cpu: [arm64] + os: [darwin] + + '@swc/core-darwin-x64@1.3.99': + resolution: {integrity: sha512-wR7m9QVJjgiBu1PSOHy7s66uJPa45Kf9bZExXUL+JAa9OQxt5y+XVzr+n+F045VXQOwdGWplgPnWjgbUUHEVyw==} + engines: {node: '>=10'} + cpu: [x64] + os: [darwin] + + '@swc/core-linux-arm64-gnu@1.3.99': + resolution: {integrity: sha512-gcGv1l5t0DScEONmw5OhdVmEI/o49HCe9Ik38zzH0NtDkc+PDYaCcXU5rvfZP2qJFaAAr8cua8iJcOunOSLmnA==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + + '@swc/core-linux-arm64-musl@1.3.99': + resolution: {integrity: sha512-XL1/eUsTO8BiKsWq9i3iWh7H99iPO61+9HYiWVKhSavknfj4Plbn+XyajDpxsauln5o8t+BRGitymtnAWJM4UQ==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + + '@swc/core-linux-x64-gnu@1.3.99': + resolution: {integrity: sha512-fGrXYE6DbTfGNIGQmBefYxSk3rp/1lgbD0nVg4rl4mfFRQPi7CgGhrrqSuqZ/ezXInUIgoCyvYGWFSwjLXt/Qg==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + + '@swc/core-linux-x64-musl@1.3.99': + resolution: {integrity: sha512-kvgZp/mqf3IJ806gUOL6gN6VU15+DfzM1Zv4Udn8GqgXiUAvbQehrtruid4Snn5pZTLj4PEpSCBbxgxK1jbssA==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + + '@swc/core-win32-arm64-msvc@1.3.99': + resolution: {integrity: sha512-yt8RtZ4W/QgFF+JUemOUQAkVW58cCST7mbfKFZ1v16w3pl3NcWd9OrtppFIXpbjU1rrUX2zp2R7HZZzZ2Zk/aQ==} + engines: {node: '>=10'} + cpu: [arm64] + os: [win32] + + '@swc/core-win32-ia32-msvc@1.3.99': + resolution: {integrity: sha512-62p5fWnOJR/rlbmbUIpQEVRconICy5KDScWVuJg1v3GPLBrmacjphyHiJC1mp6dYvvoEWCk/77c/jcQwlXrDXw==} + engines: {node: '>=10'} + cpu: [ia32] + os: [win32] + + '@swc/core-win32-x64-msvc@1.3.99': + resolution: {integrity: sha512-PdppWhkoS45VGdMBxvClVgF1hVjqamtvYd82Gab1i4IV45OSym2KinoDCKE1b6j3LwBLOn2J9fvChGSgGfDCHQ==} + engines: {node: '>=10'} + cpu: [x64] + os: [win32] + + '@swc/core@1.3.99': + resolution: {integrity: sha512-8O996RfuPC4ieb4zbYMfbyCU9k4gSOpyCNnr7qBQ+o7IEmh8JCV6B8wwu+fT/Om/6Lp34KJe1IpJ/24axKS6TQ==} + engines: {node: '>=10'} + peerDependencies: + '@swc/helpers': ^0.5.0 + peerDependenciesMeta: + '@swc/helpers': + optional: true + + '@swc/counter@0.1.3': + resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} + + '@swc/helpers@0.5.9': + resolution: {integrity: sha512-XI76sLwMJoLjJTOK5RblBZkouOJG3X3hjxLCzLnyN1ifAiKQc6Hck3uvnU4Z/dV/Dyk36Ffj8FLvDLV2oWvKTw==} + + '@swc/types@0.1.9': + resolution: {integrity: sha512-qKnCno++jzcJ4lM4NTfYifm1EFSCeIfKiAHAfkENZAV5Kl9PjJIyd2yeeVv6c/2CckuLyv2NmRC5pv6pm2WQBg==} + + '@szmarczak/http-timer@1.1.2': + resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} + engines: {node: '>=6'} + + '@szmarczak/http-timer@4.0.6': + resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} + engines: {node: '>=10'} + + '@testing-library/dom@7.31.2': + resolution: {integrity: sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==} + engines: {node: '>=10'} + + '@testing-library/dom@8.20.1': + resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==} + engines: {node: '>=12'} + + '@testing-library/dom@9.3.4': + resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} + engines: {node: '>=14'} + + '@testing-library/jest-dom@5.17.0': + resolution: {integrity: sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==} + engines: {node: '>=8', npm: '>=6', yarn: '>=1'} + + '@testing-library/jest-dom@6.4.6': + resolution: {integrity: sha512-8qpnGVincVDLEcQXWaHOf6zmlbwTKc6Us6PPu4CRnPXCzo2OGBS5cwgMMOWdxDpEz1mkbvXHpEy99M5Yvt682w==} + engines: {node: '>=14', npm: '>=6', yarn: '>=1'} + peerDependencies: + '@jest/globals': '>= 28' + '@types/bun': latest + '@types/jest': '>= 28' + jest: '>= 28' + vitest: '>= 0.32' + peerDependenciesMeta: + '@jest/globals': + optional: true + '@types/bun': + optional: true + '@types/jest': + optional: true + jest: + optional: true + vitest: + optional: true + + '@testing-library/react@14.3.1': + resolution: {integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==} + engines: {node: '>=14'} + peerDependencies: + react: ^18.0.0 + react-dom: ^18.0.0 + + '@testing-library/user-event@12.8.3': + resolution: {integrity: sha512-IR0iWbFkgd56Bu5ZI/ej8yQwrkCv8Qydx6RzwbKz9faXazR/+5tvYKsZQgyXJiwgpcva127YO6JcWy7YlCfofQ==} + engines: {node: '>=10', npm: '>=6'} + peerDependencies: + '@testing-library/dom': '>=7.21.4' + + '@testing-library/user-event@14.5.2': + resolution: {integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==} + engines: {node: '>=12', npm: '>=6'} + peerDependencies: + '@testing-library/dom': '>=7.21.4' + + '@tokenizer/token@0.3.0': + resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} + + '@tootallnate/once@1.1.2': + resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} + engines: {node: '>= 6'} + + '@tootallnate/once@2.0.0': + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} + + '@trysound/sax@0.2.0': + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + + '@tsconfig/node10@1.0.11': + resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} + + '@tsconfig/node12@1.0.11': + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + + '@tsconfig/node14@1.0.3': + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + + '@tsconfig/node16@1.0.4': + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + + '@types/aria-query@4.2.2': + resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} + + '@types/aria-query@5.0.4': + resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} + + '@types/babel__core@7.20.5': + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + + '@types/babel__generator@7.6.8': + resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} + + '@types/babel__template@7.4.4': + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + + '@types/babel__traverse@7.20.6': + resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} + + '@types/body-parser@1.19.5': + resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} + + '@types/bonjour@3.5.13': + resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} + + '@types/cacheable-request@6.0.3': + resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} + + '@types/connect-history-api-fallback@1.5.4': + resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} + + '@types/connect@3.4.38': + resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + + '@types/cookie@0.4.1': + resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==} + + '@types/cross-spawn@6.0.6': + resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==} + + '@types/crypto-js@3.1.47': + resolution: {integrity: sha512-eI6gvpcGHLk3dAuHYnRCAjX+41gMv1nz/VP55wAe5HtmAKDOoPSfr3f6vkMc08ov1S0NsjvUBxDtHHxqQY1LGA==} + + '@types/cssnano@5.1.0': + resolution: {integrity: sha512-ikR+18UpFGgvaWSur4og6SJYF/6QEYHXvrIt36dp81p1MG3cAPTYDMBJGeyWa3LCnqEbgNMHKRb+FP0NrXtoWQ==} + deprecated: This is a stub types definition. cssnano provides its own type definitions, so you do not need this installed. + + '@types/d3-array@3.2.1': + resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==} + + '@types/d3-axis@3.0.6': + resolution: {integrity: sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==} + + '@types/d3-brush@3.0.6': + resolution: {integrity: sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==} + + '@types/d3-chord@3.0.6': + resolution: {integrity: sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==} + + '@types/d3-color@3.1.3': + resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==} + + '@types/d3-contour@3.0.6': + resolution: {integrity: sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==} + + '@types/d3-delaunay@6.0.4': + resolution: {integrity: sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==} + + '@types/d3-dispatch@3.0.6': + resolution: {integrity: sha512-4fvZhzMeeuBJYZXRXrRIQnvUYfyXwYmLsdiN7XXmVNQKKw1cM8a5WdID0g1hVFZDqT9ZqZEY5pD44p24VS7iZQ==} + + '@types/d3-drag@3.0.7': + resolution: {integrity: sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==} + + '@types/d3-dsv@3.0.7': + resolution: {integrity: sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==} + + '@types/d3-ease@3.0.2': + resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==} + + '@types/d3-fetch@3.0.7': + resolution: {integrity: sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==} + + '@types/d3-force@3.0.10': + resolution: {integrity: sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==} + + '@types/d3-format@3.0.4': + resolution: {integrity: sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==} + + '@types/d3-geo@3.1.0': + resolution: {integrity: sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==} + + '@types/d3-hierarchy@3.1.7': + resolution: {integrity: sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==} + + '@types/d3-interpolate@3.0.4': + resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==} + + '@types/d3-path@3.1.0': + resolution: {integrity: sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==} + + '@types/d3-polygon@3.0.2': + resolution: {integrity: sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==} + + '@types/d3-quadtree@3.0.6': + resolution: {integrity: sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==} + + '@types/d3-random@3.0.3': + resolution: {integrity: sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==} + + '@types/d3-scale-chromatic@3.0.3': + resolution: {integrity: sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==} + + '@types/d3-scale@4.0.8': + resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==} + + '@types/d3-selection@3.0.10': + resolution: {integrity: sha512-cuHoUgS/V3hLdjJOLTT691+G2QoqAjCVLmr4kJXR4ha56w1Zdu8UUQ5TxLRqudgNjwXeQxKMq4j+lyf9sWuslg==} + + '@types/d3-shape@3.1.6': + resolution: {integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==} + + '@types/d3-time-format@4.0.3': + resolution: {integrity: sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==} + + '@types/d3-time@3.0.3': + resolution: {integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==} + + '@types/d3-timer@3.0.2': + resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==} + + '@types/d3-transition@3.0.8': + resolution: {integrity: sha512-ew63aJfQ/ms7QQ4X7pk5NxQ9fZH/z+i24ZfJ6tJSfqxJMrYLiK01EAs2/Rtw/JreGUsS3pLPNV644qXFGnoZNQ==} + + '@types/d3-zoom@3.0.8': + resolution: {integrity: sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==} + + '@types/d3@7.4.3': + resolution: {integrity: sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==} + + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + + '@types/detect-port@1.3.5': + resolution: {integrity: sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==} + + '@types/doctrine@0.0.3': + resolution: {integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==} + + '@types/doctrine@0.0.9': + resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==} + + '@types/ejs@3.1.5': + resolution: {integrity: sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==} + + '@types/emscripten@1.39.13': + resolution: {integrity: sha512-cFq+fO/isvhvmuP/+Sl4K4jtU6E23DoivtbO4r50e3odaxAiVdbfSYRDdJ4gCdxx+3aRjhphS5ZMwIH4hFy/Cw==} + + '@types/escodegen@0.0.6': + resolution: {integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==} + + '@types/eslint-scope@3.7.7': + resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} + + '@types/eslint@7.29.0': + resolution: {integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==} + + '@types/eslint@8.56.10': + resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==} + + '@types/estree-jsx@1.0.5': + resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} + + '@types/estree@0.0.39': + resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} + + '@types/estree@0.0.51': + resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} + + '@types/estree@1.0.5': + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + + '@types/express-serve-static-core@4.19.5': + resolution: {integrity: sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==} + + '@types/express@4.17.21': + resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} + + '@types/file-saver@2.0.7': + resolution: {integrity: sha512-dNKVfHd/jk0SkR/exKGj2ggkB45MAkzvWCaqLUUgkyjITkGNzH8H+yUwr+BLJUBjZOe9w8X3wgmXhZDRg1ED6A==} + + '@types/find-cache-dir@3.2.1': + resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==} + + '@types/fs-extra@8.1.5': + resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==} + + '@types/geojson@7946.0.14': + resolution: {integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==} + + '@types/glob@7.2.0': + resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} + + '@types/glob@8.1.0': + resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==} + + '@types/graceful-fs@4.1.9': + resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} + + '@types/hast@2.3.10': + resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} + + '@types/hast@3.0.4': + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + + '@types/history@4.7.11': + resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==} + + '@types/hoist-non-react-statics@3.3.5': + resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==} + + '@types/html-minifier-terser@5.1.2': + resolution: {integrity: sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==} + + '@types/html-minifier-terser@6.1.0': + resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} + + '@types/http-cache-semantics@4.0.4': + resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} + + '@types/http-errors@2.0.4': + resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} + + '@types/http-proxy@1.17.14': + resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} + + '@types/i18next-xhr-backend@1.4.2': + resolution: {integrity: sha512-uykS5BvdSoN+G7j7D19xzR12pEVkWmUrIEIxMsj2brVVzjc3gIthWCQKYqbe/b1q87SLbWb/ZHN9bR4qxi1H6A==} + deprecated: This is a stub types definition. i18next-xhr-backend provides its own type definitions, so you do not need this installed. + + '@types/i18next@8.4.3': + resolution: {integrity: sha512-ayqHEU+i9H7/Fkefnhyvml1ChKEZXcDwmVqo3jmrxy7PoAtTSY1t4/hr58Xz8hkXLPoCGS1hTc6bLJOUaOAjfQ==} + + '@types/inquirer@8.2.10': + resolution: {integrity: sha512-IdD5NmHyVjWM8SHWo/kPBgtzXatwPkfwzyP3fN1jF2g9BWt5WO+8hL2F4o2GKIYsU40PpqeevuUWvkS/roXJkA==} + + '@types/is-function@1.0.3': + resolution: {integrity: sha512-/CLhCW79JUeLKznI6mbVieGbl4QU5Hfn+6udw1YHZoofASjbQ5zaP5LzAUZYDpRYEjS4/P+DhEgyJ/PQmGGTWw==} + + '@types/istanbul-lib-coverage@2.0.6': + resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} + + '@types/istanbul-lib-report@3.0.3': + resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} + + '@types/istanbul-reports@3.0.4': + resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + + '@types/jest@26.0.24': + resolution: {integrity: sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==} + + '@types/jest@29.4.4': + resolution: {integrity: sha512-qezb65VIH7X1wobSnd6Lvdve7PXSyQRa3dljTkhTtDhi603RvHQCshSlJcuyMLHJpeHgY3NKwvDJWxMOOHxGDQ==} + + '@types/jest@29.5.12': + resolution: {integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==} + + '@types/js-beautify@1.14.3': + resolution: {integrity: sha512-FMbQHz+qd9DoGvgLHxeqqVPaNRffpIu5ZjozwV8hf9JAGpIOzuAf4wGbRSo8LNITHqGjmmVjaMggTT5P4v4IHg==} + + '@types/js-levenshtein@1.1.3': + resolution: {integrity: sha512-jd+Q+sD20Qfu9e2aEXogiO3vpOC1PYJOUdyN9gvs4Qrvkg4wF43L5OhqrPeokdv8TL0/mXoYfpkcoGZMNN2pkQ==} + + '@types/js-yaml@3.12.3': + resolution: {integrity: sha512-otRe77JNNWzoVGLKw8TCspKswRoQToys4tuL6XYVBFxjgeM0RUrx7m3jkaTdxILxeGry3zM8mGYkGXMeQ02guA==} + + '@types/jsdom@20.0.1': + resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/json5@0.0.29': + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + + '@types/keyv@3.1.4': + resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} + + '@types/lodash-es@4.17.12': + resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==} + + '@types/lodash@4.17.5': + resolution: {integrity: sha512-MBIOHVZqVqgfro1euRDWX7OO0fBVUUMrN6Pwm8LQsz8cWhEpihlvR70ENj3f40j58TNxZaWv2ndSkInykNBBJw==} + + '@types/mdast@3.0.15': + resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} + + '@types/mdast@4.0.4': + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} + + '@types/mime-types@2.1.4': + resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==} + + '@types/mime@1.3.5': + resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} + + '@types/minimatch@3.0.5': + resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} + + '@types/minimatch@5.1.2': + resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} + + '@types/minimist@1.2.5': + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} + + '@types/ms@0.7.34': + resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} + + '@types/node-fetch@2.6.11': + resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==} + + '@types/node-forge@0.9.10': + resolution: {integrity: sha512-+BbPlhZeYs/WETWftQi2LeRx9VviWSwawNo+Pid5qNrSZHb60loYjpph3OrbwXMMseadu9rE9NeK34r4BHT+QQ==} + + '@types/node-forge@1.3.11': + resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} + + '@types/node@12.20.55': + resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} + + '@types/node@13.13.52': + resolution: {integrity: sha512-s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ==} + + '@types/node@14.18.63': + resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==} + + '@types/node@16.18.101': + resolution: {integrity: sha512-AAsx9Rgz2IzG8KJ6tXd6ndNkVcu+GYB6U/SnFAaokSPNx2N7dcIIfnighYUNumvj6YS2q39Dejz5tT0NCV7CWA==} + + '@types/node@18.11.9': + resolution: {integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==} + + '@types/normalize-package-data@2.4.4': + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + + '@types/npmlog@4.1.6': + resolution: {integrity: sha512-0l3z16vnlJGl2Mi/rgJFrdwfLZ4jfNYgE6ZShEpjqhHuGTqdEzNles03NpYHwUMVYZa+Tj46UxKIEpE78lQ3DQ==} + + '@types/parse-json@4.0.2': + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + + '@types/parse5@5.0.3': + resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==} + + '@types/prettier@2.7.3': + resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} + + '@types/pretty-hrtime@1.0.3': + resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==} + + '@types/prop-types@15.7.12': + resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} + + '@types/q@1.5.8': + resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==} + + '@types/qs@6.9.15': + resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==} + + '@types/range-parser@1.2.7': + resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} + + '@types/react-color@3.0.12': + resolution: {integrity: sha512-pr3uKE3lSvf7GFo1Rn2K3QktiZQFFrSgSGJ/3iMvSOYWt2pPAJ97rVdVfhWxYJZ8prAEXzoP2XX//3qGSQgu7Q==} + + '@types/react-dom@18.3.0': + resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} + + '@types/react-notification-system@0.2.39': + resolution: {integrity: sha512-yfptO86dbfW4qaw34CIedfakdKWV3sPM0xb4T5EQZOza80WLvOUUKjdmZTeGyEKk/7n2za8RJa6aZpz/A+2Qbw==} + + '@types/react-redux@7.1.33': + resolution: {integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==} + + '@types/react-router-dom@5.3.3': + resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==} + + '@types/react-router@5.1.20': + resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==} + + '@types/react-transition-group@4.4.10': + resolution: {integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==} + + '@types/react@18.0.18': + resolution: {integrity: sha512-6hI08umYs6NaiHFEEGioXnxJ+oEhY3eRz8VCUaudZmGdtvPviCJB8mgaMxaDWAdPSYd4eFavrPk2QIolwbLYrg==} + + '@types/reactcss@1.2.12': + resolution: {integrity: sha512-BrXUQ86/wbbFiZv8h/Q1/Q1XOsaHneYmCb/tHe9+M8XBAAUc2EHfdY0DY22ZZjVSaXr5ix7j+zsqO2eGZub8lQ==} + + '@types/reactour@1.18.5': + resolution: {integrity: sha512-Pl5yh9bXeXaFcioDk6XVmUzdJGZDAKesVmwoh2KvN/1FXSd9saN8pIprLvfspnXANMcgl3AtSlD4zs0cJIhGIw==} + + '@types/redux-mock-store@1.0.6': + resolution: {integrity: sha512-eg5RDfhJTXuoJjOMyXiJbaDb1B8tfTaJixscmu+jOusj6adGC0Krntz09Tf4gJgXeCqCrM5bBMd+B7ez0izcAQ==} + + '@types/resolve@1.17.1': + resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} + + '@types/resolve@1.20.2': + resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} + + '@types/resolve@1.20.6': + resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} + + '@types/responselike@1.0.3': + resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} + + '@types/retry@0.12.0': + resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} + + '@types/scheduler@0.23.0': + resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==} + + '@types/semver@7.5.8': + resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} + + '@types/send@0.17.4': + resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} + + '@types/serve-index@1.9.4': + resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} + + '@types/serve-static@1.15.7': + resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} + + '@types/set-cookie-parser@2.4.9': + resolution: {integrity: sha512-bCorlULvl0xTdjj4BPUHX4cqs9I+go2TfW/7Do1nnFYWS0CPP429Qr1AY42kiFhCwLpvAkWFr1XIBHd8j6/MCQ==} + + '@types/sinonjs__fake-timers@8.1.1': + resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} + + '@types/sizzle@2.3.8': + resolution: {integrity: sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==} + + '@types/sockjs@0.3.36': + resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} + + '@types/source-list-map@0.1.6': + resolution: {integrity: sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==} + + '@types/stack-utils@2.0.3': + resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} + + '@types/tapable@1.0.12': + resolution: {integrity: sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==} + + '@types/testing-library__jest-dom@5.14.9': + resolution: {integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==} + + '@types/through@0.0.33': + resolution: {integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==} + + '@types/tough-cookie@4.0.5': + resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} + + '@types/ua-parser-js@0.7.36': + resolution: {integrity: sha512-N1rW+njavs70y2cApeIw1vLMYXRwfBy+7trgavGuuTfOd7j1Yh7QTRc/yqsPl6ncokt72ZXuxEU0PiCp9bSwNQ==} + + '@types/uglify-js@3.17.5': + resolution: {integrity: sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==} + + '@types/unist@2.0.10': + resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} + + '@types/unist@3.0.2': + resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} + + '@types/uuid@9.0.8': + resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==} + + '@types/webappsec-credential-management@0.6.8': + resolution: {integrity: sha512-DES/SkK54U7AG8hmMkGCJkOSlywM3R+TzaWT+rBnX3lQTJ3K57jWr+UccWY8ImkuKekC9BjB+AH4zLJB4JKpvQ==} + + '@types/webpack-env@1.18.5': + resolution: {integrity: sha512-wz7kjjRRj8/Lty4B+Kr0LN6Ypc/3SymeCCGSbaXp2leH0ZVg/PriNiOwNj4bD4uphI7A8NXS4b6Gl373sfO5mA==} + + '@types/webpack-sources@3.2.3': + resolution: {integrity: sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==} + + '@types/webpack@4.41.38': + resolution: {integrity: sha512-oOW7E931XJU1mVfCnxCVgv8GLFL768pDO5u2Gzk82i8yTIgX6i7cntyZOkZYb/JtYM8252SN9bQp9tgkVDSsRw==} + + '@types/ws@8.5.10': + resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} + + '@types/yargs-parser@21.0.3': + resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} + + '@types/yargs@15.0.19': + resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} + + '@types/yargs@17.0.32': + resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} + + '@types/yauzl@2.10.3': + resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} + + '@typescript-eslint/eslint-plugin@4.33.0': + resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + '@typescript-eslint/parser': ^4.0.0 + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/eslint-plugin@5.62.0': + 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 + + '@typescript-eslint/experimental-utils@4.33.0': + resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: '*' + + '@typescript-eslint/parser@4.33.0': + resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/parser@5.62.0': + 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 + + '@typescript-eslint/scope-manager@4.33.0': + resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + + '@typescript-eslint/scope-manager@5.62.0': + resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@typescript-eslint/type-utils@5.62.0': + resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '*' + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/types@4.33.0': + resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + + '@typescript-eslint/types@5.62.0': + resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@typescript-eslint/typescript-estree@4.33.0': + resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/typescript-estree@5.62.0': + 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 + + '@typescript-eslint/utils@5.62.0': + resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + + '@typescript-eslint/visitor-keys@4.33.0': + resolution: {integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + + '@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} + + '@ungap/structured-clone@1.2.0': + resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + + '@webassemblyjs/ast@1.12.1': + resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} + + '@webassemblyjs/floating-point-hex-parser@1.11.6': + resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} + + '@webassemblyjs/helper-api-error@1.11.6': + resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} + + '@webassemblyjs/helper-buffer@1.12.1': + resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==} + + '@webassemblyjs/helper-numbers@1.11.6': + resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} + + '@webassemblyjs/helper-wasm-bytecode@1.11.6': + resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} + + '@webassemblyjs/helper-wasm-section@1.12.1': + resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==} + + '@webassemblyjs/ieee754@1.11.6': + resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} + + '@webassemblyjs/leb128@1.11.6': + resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} + + '@webassemblyjs/utf8@1.11.6': + resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} + + '@webassemblyjs/wasm-edit@1.12.1': + resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==} + + '@webassemblyjs/wasm-gen@1.12.1': + resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==} + + '@webassemblyjs/wasm-opt@1.12.1': + resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==} + + '@webassemblyjs/wasm-parser@1.12.1': + resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==} + + '@webassemblyjs/wast-printer@1.12.1': + resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==} + + '@webpack-cli/configtest@1.2.0': + resolution: {integrity: sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==} + peerDependencies: + webpack: 5.84.1 + webpack-cli: 4.x.x + + '@webpack-cli/info@1.5.0': + resolution: {integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==} + peerDependencies: + webpack-cli: 4.x.x + + '@webpack-cli/serve@1.7.0': + resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==} + peerDependencies: + webpack-cli: 4.x.x + webpack-dev-server: '*' + peerDependenciesMeta: + webpack-dev-server: + optional: true + + '@webpack-contrib/schema-utils@1.0.0-beta.0': + resolution: {integrity: sha512-LonryJP+FxQQHsjGBi6W786TQB1Oym+agTpY0c+Kj8alnIw+DLUJb6SI8Y1GHGhLCH1yPRrucjObUmxNICQ1pg==} + engines: {node: '>= 6.9.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 + + '@xmldom/xmldom@0.7.13': + resolution: {integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==} + engines: {node: '>=10.0.0'} + + '@xtuc/ieee754@1.2.0': + resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + + '@xtuc/long@4.2.2': + resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + + '@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15': + resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==} + engines: {node: '>=14.15.0'} + peerDependencies: + esbuild: '>=0.10.0' + + '@yarnpkg/fslib@2.10.3': + resolution: {integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==} + engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} + + '@yarnpkg/libzip@2.3.0': + resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==} + engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} + + '@yarnpkg/lockfile@1.1.0': + resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} + + '@yarnpkg/parsers@3.0.0-rc.46': + resolution: {integrity: sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==} + engines: {node: '>=14.15.0'} + + '@zkochan/js-yaml@0.0.6': + resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} + hasBin: true + + JSONStream@1.3.5: + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + hasBin: true + + abab@2.0.6: + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + deprecated: Use your platform's native atob() and btoa() methods instead + + abbrev@1.1.1: + resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} + + abbrev@2.0.0: + resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + accepts@1.3.8: + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} + + acorn-globals@6.0.0: + resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} + + acorn-globals@7.0.1: + resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} + + acorn-import-assertions@1.9.0: + resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} + peerDependencies: + acorn: ^8 + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn-walk@7.2.0: + resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} + engines: {node: '>=0.4.0'} + + acorn-walk@8.3.3: + resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==} + engines: {node: '>=0.4.0'} + + acorn@7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} + hasBin: true + + acorn@8.12.0: + resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==} + engines: {node: '>=0.4.0'} + hasBin: true + + add-stream@1.0.0: + resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} + + address@1.2.2: + resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} + engines: {node: '>= 10.0.0'} + + agent-base@5.1.1: + resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==} + engines: {node: '>= 6.0.0'} + + agent-base@6.0.2: + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} + + agentkeepalive@4.5.0: + resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} + engines: {node: '>= 8.0.0'} + + aggregate-error@3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} + + airbnb-js-shims@2.2.1: + resolution: {integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==} + + ajv-errors@1.0.1: + resolution: {integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==} + peerDependencies: + ajv: '>=5.0.0' + + ajv-formats@2.1.1: + resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + + ajv-keywords@3.5.2: + resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} + peerDependencies: + ajv: ^6.9.1 + + ajv-keywords@5.1.0: + resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} + peerDependencies: + ajv: ^8.8.2 + + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + ajv@8.16.0: + resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==} + + ansi-align@3.0.1: + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + + ansi-colors@3.2.4: + resolution: {integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==} + engines: {node: '>=6'} + + ansi-colors@4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} + + ansi-escapes@4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} + + ansi-html-community@0.0.8: + resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} + engines: {'0': node >= 0.8.0} + hasBin: true + + ansi-html@0.0.7: + resolution: {integrity: sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA==} + engines: {'0': node >= 0.8.0} + hasBin: true + + ansi-html@0.0.9: + resolution: {integrity: sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==} + engines: {'0': node >= 0.8.0} + hasBin: true + + ansi-red@0.1.1: + resolution: {integrity: sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==} + engines: {node: '>=0.10.0'} + + ansi-regex@2.1.1: + resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} + engines: {node: '>=0.10.0'} + + ansi-regex@3.0.1: + resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} + engines: {node: '>=4'} + + ansi-regex@4.1.1: + resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} + engines: {node: '>=6'} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.0.1: + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + engines: {node: '>=12'} + + ansi-styles@2.2.1: + resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} + engines: {node: '>=0.10.0'} + + ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + + ansi-to-html@0.6.15: + resolution: {integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==} + engines: {node: '>=8.0.0'} + hasBin: true + + ansi-wrap@0.1.0: + resolution: {integrity: sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==} + engines: {node: '>=0.10.0'} + + anymatch@2.0.0: + resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + app-root-dir@1.0.2: + resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==} + + append-transform@2.0.0: + resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==} + engines: {node: '>=8'} + + aproba@2.0.0: + resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} + + arch@2.2.0: + resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} + + archy@1.0.0: + resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} + + are-we-there-yet@2.0.0: + resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} + engines: {node: '>=10'} + deprecated: This package is no longer supported. + + are-we-there-yet@3.0.1: + resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. + + arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + + argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + aria-query@4.2.2: + resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} + engines: {node: '>=6.0'} + + aria-query@5.1.3: + resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + + aria-query@5.3.0: + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + + arr-diff@4.0.0: + resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} + engines: {node: '>=0.10.0'} + + arr-flatten@1.1.0: + resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} + engines: {node: '>=0.10.0'} + + arr-union@3.1.0: + resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} + engines: {node: '>=0.10.0'} + + array-buffer-byte-length@1.0.1: + resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} + engines: {node: '>= 0.4'} + + array-differ@3.0.0: + resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} + engines: {node: '>=8'} + + array-find-index@1.0.2: + resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} + engines: {node: '>=0.10.0'} + + array-flatten@1.1.1: + resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} + + array-flatten@2.1.2: + resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} + + array-ify@1.0.0: + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + + array-includes@3.1.8: + resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} + engines: {node: '>= 0.4'} + + array-union@1.0.2: + resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==} + engines: {node: '>=0.10.0'} + + array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + + array-union@3.0.1: + resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==} + engines: {node: '>=12'} + + array-uniq@1.0.3: + resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} + engines: {node: '>=0.10.0'} + + array-unique@0.3.2: + resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} + engines: {node: '>=0.10.0'} + + array.prototype.findlast@1.2.5: + resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} + engines: {node: '>= 0.4'} + + array.prototype.findlastindex@1.2.5: + resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} + engines: {node: '>= 0.4'} + + array.prototype.flat@1.3.2: + resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} + engines: {node: '>= 0.4'} + + array.prototype.flatmap@1.3.2: + resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} + engines: {node: '>= 0.4'} + + array.prototype.map@1.0.7: + resolution: {integrity: sha512-XpcFfLoBEAhezrrNw1V+yLXkE7M6uR7xJEsxbG6c/V9v043qurwVJB9r9UTnoSioFDoz1i1VOydpWGmJpfVZbg==} + engines: {node: '>= 0.4'} + + array.prototype.reduce@1.0.7: + resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==} + engines: {node: '>= 0.4'} + + array.prototype.toreversed@1.1.2: + resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==} + + array.prototype.tosorted@1.1.4: + resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} + engines: {node: '>= 0.4'} + + arraybuffer.prototype.slice@1.0.3: + resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} + engines: {node: '>= 0.4'} + + arrify@1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + + arrify@2.0.1: + resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} + engines: {node: '>=8'} + + asap@2.0.6: + resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} + + asn1@0.2.6: + resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} + + assert-plus@1.0.0: + resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} + engines: {node: '>=0.8'} + + assert@2.1.0: + resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} + + assign-symbols@1.0.0: + resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} + engines: {node: '>=0.10.0'} + + ast-types-flow@0.0.7: + resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} + + ast-types@0.13.3: + resolution: {integrity: sha512-XTZ7xGML849LkQP86sWdQzfhwbt3YwIO6MqbX9mUNYY98VKaaVZP7YNNm70IpwecbkkxmfC5IYAzOQ/2p29zRA==} + engines: {node: '>=4'} + + ast-types@0.14.2: + resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==} + engines: {node: '>=4'} + + ast-types@0.16.1: + resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} + engines: {node: '>=4'} + + astral-regex@2.0.0: + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} + engines: {node: '>=8'} + + astring@1.8.6: + resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==} + hasBin: true + + async-each@1.0.6: + resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==} + + async-limiter@1.0.1: + resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} + + async@2.6.4: + resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} + + async@3.2.5: + resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} + + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + + at-least-node@1.0.0: + resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + engines: {node: '>= 4.0.0'} + + atob@2.1.2: + resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} + engines: {node: '>= 4.5.0'} + hasBin: true + + autolinker@0.28.1: + resolution: {integrity: sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==} + + autoprefixer@10.4.13: + resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + + autoprefixer@9.8.8: + resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} + hasBin: true + + available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + + await-semaphore@0.1.3: + resolution: {integrity: sha512-d1W2aNSYcz/sxYO4pMGX9vq65qOTu0P800epMud+6cYYX0QcT7zyqcxec3VWzpgvdXo57UWmVbZpLMjX2m1I7Q==} + + aws-sign2@0.7.0: + resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} + + aws4@1.13.0: + resolution: {integrity: sha512-3AungXC4I8kKsS9PuS4JH2nc+0bVY/mjgrephHTIi8fpEeGsTHBUJeosp0Wc1myYMElmD0B3Oc4XL/HVJ4PV2g==} + + axe-core@4.9.1: + resolution: {integrity: sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==} + engines: {node: '>=4'} + + axios@0.19.2: + resolution: {integrity: sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==} + deprecated: Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410 + + axios@0.21.4: + resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} + + axios@0.26.1: + resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==} + + axios@1.7.2: + resolution: {integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==} + + axobject-query@2.2.0: + resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} + + babel-code-frame@6.26.0: + resolution: {integrity: sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==} + + babel-core@7.0.0-bridge.0: + resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + babel-jest@26.6.3: + resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} + engines: {node: '>= 10.14.2'} + peerDependencies: + '@babel/core': ^7.0.0 + + babel-jest@29.7.0: + resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.8.0 + + babel-loader@8.3.0: + resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} + engines: {node: '>= 8.9'} + peerDependencies: + '@babel/core': ^7.0.0 + webpack: 5.84.1 + + babel-loader@9.1.3: + resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==} + engines: {node: '>= 14.15.0'} + peerDependencies: + '@babel/core': ^7.12.0 + webpack: 5.84.1 + + babel-messages@6.23.0: + resolution: {integrity: sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==} + + babel-plugin-add-react-displayname@0.0.5: + resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} + + babel-plugin-apply-mdx-type-prop@1.6.22: + resolution: {integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==} + peerDependencies: + '@babel/core': ^7.11.6 + + babel-plugin-const-enum@1.2.0: + resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + babel-plugin-extract-import-names@1.6.22: + resolution: {integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==} + + babel-plugin-istanbul@6.1.1: + resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} + engines: {node: '>=8'} + + babel-plugin-jest-hoist@26.6.2: + resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==} + engines: {node: '>= 10.14.2'} + + babel-plugin-jest-hoist@29.6.3: + resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + babel-plugin-macros@2.8.0: + resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} + + babel-plugin-macros@3.1.0: + resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} + engines: {node: '>=10', npm: '>=6'} + + babel-plugin-named-exports-order@0.0.2: + resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==} + + babel-plugin-polyfill-corejs2@0.4.11: + resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-corejs3@0.1.7: + resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + babel-plugin-polyfill-corejs3@0.10.4: + resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-regenerator@0.6.2: + resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-react-docgen@4.2.1: + resolution: {integrity: sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==} + + babel-plugin-rename-jsx-attribute@0.2.4: + resolution: {integrity: sha512-R3kRggMmkXAd465a2q2Y2IceIUJHoyw9q/c0I7i3JdQDHGbUj59OTOR6QjRuB/bII1yH2Xuy/KM5+NNs9NzCGw==} + peerDependencies: + babel-core: ^6.26.3 + + babel-plugin-styled-components@2.1.4: + resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==} + peerDependencies: + styled-components: '>= 2' + + babel-plugin-transform-async-to-promises@0.8.18: + resolution: {integrity: sha512-WpOrF76nUHijnNn10eBGOHZmXQC8JYRME9rOLxStOga7Av2VO53ehVFvVNImMksVtQuL2/7ZNxEgxnx7oo/3Hw==} + + babel-plugin-transform-es2015-modules-commonjs@6.26.2: + resolution: {integrity: sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==} + + babel-plugin-transform-strict-mode@6.24.1: + resolution: {integrity: sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw==} + + babel-plugin-transform-typescript-metadata@0.3.2: + resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} + peerDependencies: + '@babel/core': ^7 + '@babel/traverse': ^7 + peerDependenciesMeta: + '@babel/traverse': + optional: true + + babel-polyfill@6.26.0: + resolution: {integrity: sha512-F2rZGQnAdaHWQ8YAoeRbukc7HS9QgdgeyJ0rQDd485v9opwuPvjpPFcOOT/WmkKTdgy9ESgSPXDcTNpzrGr6iQ==} + + babel-preset-current-node-syntax@1.0.1: + resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} + peerDependencies: + '@babel/core': ^7.0.0 + + babel-preset-jest@26.6.2: + resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} + engines: {node: '>= 10.14.2'} + peerDependencies: + '@babel/core': ^7.0.0 + + babel-preset-jest@29.6.3: + resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.0.0 + + babel-runtime@6.26.0: + resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==} + + babel-template@6.26.0: + resolution: {integrity: sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg==} + + babel-traverse@6.26.0: + resolution: {integrity: sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA==} + + babel-types@6.26.0: + resolution: {integrity: sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==} + + babylon@6.18.0: + resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==} + hasBin: true + + bail@1.0.5: + resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} + + bail@2.0.2: + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + base64url@3.0.1: + resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==} + engines: {node: '>=6.0.0'} + + base@0.11.2: + resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} + engines: {node: '>=0.10.0'} + + basic-auth@2.0.1: + resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} + engines: {node: '>= 0.8'} + + batch@0.6.1: + resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} + + bcrypt-pbkdf@1.0.2: + resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} + + before-after-hook@2.2.3: + resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} + + better-opn@2.1.1: + resolution: {integrity: sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==} + engines: {node: '>8.0.0'} + + better-opn@3.0.2: + resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==} + engines: {node: '>=12.0.0'} + + better-path-resolve@1.0.0: + resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} + engines: {node: '>=4'} + + big-integer@1.6.52: + resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} + engines: {node: '>=0.6'} + + big.js@5.2.2: + resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + + bin-check@4.1.0: + resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==} + engines: {node: '>=4'} + + bin-links@3.0.3: + resolution: {integrity: sha512-zKdnMPWEdh4F5INR07/eBrodC7QrF5JKvqskjz/ZZRXg5YSAZIbn8zGhbhUrElzHBZ2fvEQdOU59RHcTG3GiwA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + bin-version-check@5.1.0: + resolution: {integrity: sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==} + engines: {node: '>=12'} + + bin-version@6.0.0: + resolution: {integrity: sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==} + engines: {node: '>=12'} + + binary-extensions@1.13.1: + resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==} + engines: {node: '>=0.10.0'} + + binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} + + bindings@1.5.0: + resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + + bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + + blob-util@2.0.2: + resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} + + bluebird@3.7.2: + resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} + + body-parser@1.20.2: + resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + + bonjour-service@1.2.1: + resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==} + + bonjour@3.5.0: + resolution: {integrity: sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==} + + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + + boxen@5.1.2: + resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} + engines: {node: '>=10'} + + bplist-parser@0.1.1: + resolution: {integrity: sha512-2AEM0FXy8ZxVLBuqX0hqt1gDwcnz2zygEkQ6zaD5Wko/sB9paUNwlpawrFtKeHUAQUOzjVy9AO4oeonqIHKA9Q==} + + bplist-parser@0.2.0: + resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} + engines: {node: '>= 5.10.0'} + + brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + + brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + + braces@2.3.2: + resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} + engines: {node: '>=0.10.0'} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + breakword@1.0.6: + resolution: {integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==} + + browser-assert@1.2.1: + resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==} + + browser-process-hrtime@1.0.0: + resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} + + browserify-zlib@0.1.4: + resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==} + + browserslist@4.23.1: + resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + bs-logger@0.2.6: + resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} + engines: {node: '>= 6'} + + bser@2.1.1: + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + + buffer-crc32@0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + buffer-indexof@1.1.1: + resolution: {integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==} + + buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + + buffer@6.0.3: + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + + builtin-modules@3.3.0: + resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} + engines: {node: '>=6'} + + builtins@1.0.3: + resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==} + + builtins@5.1.0: + resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==} + + byte-size@7.0.1: + resolution: {integrity: sha512-crQdqyCwhokxwV1UyDzLZanhkugAgft7vt0qbbdt60C6Zf3CAiGmtUCylbtYwrU6loOUw3euGrNtW1J651ot1A==} + engines: {node: '>=10'} + + bytes@3.0.0: + resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} + engines: {node: '>= 0.8'} + + bytes@3.1.2: + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} + + c8@7.14.0: + resolution: {integrity: sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw==} + engines: {node: '>=10.12.0'} + hasBin: true + + cacache@15.3.0: + resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==} + engines: {node: '>= 10'} + + cacache@16.1.3: + resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + cache-base@1.0.1: + resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} + engines: {node: '>=0.10.0'} + + cacheable-lookup@5.0.4: + resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} + engines: {node: '>=10.6.0'} + + cacheable-request@6.1.0: + resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} + engines: {node: '>=8'} + + cacheable-request@7.0.4: + resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} + engines: {node: '>=8'} + + cachedir@2.4.0: + resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==} + engines: {node: '>=6'} + + caching-transform@4.0.0: + resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==} + engines: {node: '>=8'} + + call-bind@1.0.7: + resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} + engines: {node: '>= 0.4'} + + call-me-maybe@1.0.2: + resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} + + caller-callsite@2.0.0: + resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} + engines: {node: '>=4'} + + caller-path@2.0.0: + resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} + engines: {node: '>=4'} + + callsites@2.0.0: + resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} + engines: {node: '>=4'} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + camel-case@4.1.2: + resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} + + camelcase-css@2.0.1: + resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} + engines: {node: '>= 6'} + + camelcase-keys@2.1.0: + resolution: {integrity: sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==} + engines: {node: '>=0.10.0'} + + camelcase-keys@6.2.2: + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} + + camelcase@2.1.1: + resolution: {integrity: sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==} + engines: {node: '>=0.10.0'} + + camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + + camelcase@6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} + + camelize@1.0.1: + resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} + + caniuse-api@3.0.0: + resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} + + caniuse-lite@1.0.30001636: + resolution: {integrity: sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==} + + capture-exit@2.0.0: + resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} + engines: {node: 6.* || 8.* || >= 10.*} + + case-sensitive-paths-webpack-plugin@2.4.0: + resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} + engines: {node: '>=4'} + + caseless@0.12.0: + resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + + ccount@1.1.0: + resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==} + + ccount@2.0.1: + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + + chalk@1.1.3: + resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} + engines: {node: '>=0.10.0'} + + chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + + chalk@3.0.0: + resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} + engines: {node: '>=8'} + + chalk@4.1.1: + resolution: {integrity: sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==} + engines: {node: '>=10'} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + char-regex@1.0.2: + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + engines: {node: '>=10'} + + character-entities-html4@2.1.0: + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} + + character-entities-legacy@1.1.4: + resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} + + character-entities-legacy@3.0.0: + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + + character-entities@1.2.4: + resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} + + character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + + character-reference-invalid@1.1.4: + resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} + + character-reference-invalid@2.0.1: + resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} + + chardet@0.7.0: + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + + check-more-types@2.24.0: + resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} + engines: {node: '>= 0.8.0'} + + child_process@1.0.2: + resolution: {integrity: sha512-Wmza/JzL0SiWz7kl6MhIKT5ceIlnFPJX+lwUGj7Clhy5MMldsSoJR0+uvRzOS5Kv45Mq7t1PoE8TsOA9bzvb6g==} + + chokidar@2.1.8: + resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==} + deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies + + chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} + + chownr@1.1.4: + resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} + + chownr@2.0.0: + resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} + engines: {node: '>=10'} + + chrome-trace-event@1.0.4: + resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} + engines: {node: '>=6.0'} + + ci-info@2.0.0: + resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} + + ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} + + citty@0.1.6: + resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} + + cjs-module-lexer@0.6.0: + resolution: {integrity: sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==} + + cjs-module-lexer@1.3.1: + resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==} + + class-utils@0.3.6: + resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} + engines: {node: '>=0.10.0'} + + classcat@5.0.5: + resolution: {integrity: sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==} + + classnames@2.5.1: + resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==} + + clean-css@4.2.4: + resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==} + engines: {node: '>= 4.0'} + + clean-css@5.3.3: + resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} + engines: {node: '>= 10.0'} + + clean-stack@2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} + + cli-boxes@2.2.1: + resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} + engines: {node: '>=6'} + + cli-cursor@3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} + + cli-spinners@2.6.1: + resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} + engines: {node: '>=6'} + + cli-spinners@2.9.2: + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + engines: {node: '>=6'} + + cli-table3@0.6.5: + resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} + engines: {node: 10.* || >= 12.*} + + cli-truncate@2.1.0: + resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} + engines: {node: '>=8'} + + cli-width@3.0.0: + resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} + engines: {node: '>= 10'} + + cli@1.0.1: + resolution: {integrity: sha512-41U72MB56TfUMGndAKK8vJ78eooOD4Z5NOL4xEfjc0c23s+6EYKXlXsmACBVclLP1yOfWCgEganVzddVrSNoTg==} + engines: {node: '>=0.2.5'} + + client-only@0.0.1: + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + + cliui@5.0.0: + resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==} + + cliui@6.0.0: + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + + cliui@7.0.4: + resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + clone-deep@0.2.4: + resolution: {integrity: sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==} + engines: {node: '>=0.10.0'} + + clone-deep@4.0.1: + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} + + clone-response@1.0.3: + resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} + + clone@1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + + clone@2.1.2: + resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} + engines: {node: '>=0.8'} + + clsx@1.2.1: + resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} + engines: {node: '>=6'} + + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} + + cmd-shim@5.0.0: + resolution: {integrity: sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + co@4.6.0: + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + + coa@2.0.2: + resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} + engines: {node: '>= 4.0'} + + codemirror@5.65.16: + resolution: {integrity: sha512-br21LjYmSlVL0vFCPWPfhzUCT34FM/pAdK7rRIZwa0rrtrIdotvP4Oh4GUHsu2E3IrQMCfRkL/fN3ytMNxVQvg==} + + coffee-script@1.12.7: + resolution: {integrity: sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==} + engines: {node: '>=0.8.0'} + deprecated: CoffeeScript on NPM has moved to "coffeescript" (no hyphen) + hasBin: true + + collapse-white-space@1.0.6: + resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==} + + collect-v8-coverage@1.0.2: + resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} + + collection-visit@1.0.0: + resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} + engines: {node: '>=0.10.0'} + + color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + color-support@1.1.3: + resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} + hasBin: true + + colord@2.9.3: + resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} + + colorette@1.4.0: + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} + + colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + + columnify@1.6.0: + resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==} + engines: {node: '>=8.0.0'} + + combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + + comma-separated-tokens@1.0.8: + resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} + + comma-separated-tokens@2.0.3: + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} + + commander@10.0.1: + resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} + engines: {node: '>=14'} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + commander@4.1.1: + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} + + commander@5.1.0: + resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} + engines: {node: '>= 6'} + + commander@6.2.1: + resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} + engines: {node: '>= 6'} + + commander@7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} + + commander@8.3.0: + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + engines: {node: '>= 12'} + + common-ancestor-path@1.0.1: + resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} + + common-path-prefix@3.0.0: + resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} + + common-tags@1.8.2: + resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} + engines: {node: '>=4.0.0'} + + commondir@1.0.1: + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + + compare-func@2.0.0: + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + + component-emitter@1.3.1: + resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==} + + compressible@2.0.18: + resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} + engines: {node: '>= 0.6'} + + compression-webpack-plugin@7.1.2: + resolution: {integrity: sha512-9DKNW6ILLjx+bNBoviHDgLx6swBhWWH9ApClC9sTH2NoFfQM47BapQfovCm9zjD9v1uZwInF5a925FB9ErGQeQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 + + compression@1.7.4: + resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} + engines: {node: '>= 0.8.0'} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + concat-stream@1.6.2: + resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} + engines: {'0': node >= 0.8} + + concat-stream@2.0.0: + resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} + engines: {'0': node >= 6.0} + + concat-with-sourcemaps@1.1.0: + resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==} + + confbox@0.1.7: + resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==} + + config-chain@1.1.13: + resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} + + configstore@5.0.1: + resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} + engines: {node: '>=8'} + + confusing-browser-globals@1.0.11: + resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} + + connect-history-api-fallback@1.6.0: + resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==} + engines: {node: '>=0.8'} + + connect-history-api-fallback@2.0.0: + resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} + engines: {node: '>=0.8'} + + consola@3.2.3: + resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} + engines: {node: ^14.18.0 || >=16.10.0} + + console-browserify@1.1.0: + resolution: {integrity: sha512-duS7VP5pvfsNLDvL1O4VOEbw37AI3A4ZUQYemvDlnpGrNu9tprR7BYWpDYwC0Xia0Zxz5ZupdiIrUp0GH1aXfg==} + + console-control-strings@1.1.0: + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + + constants-browserify@1.0.0: + resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} + + content-disposition@0.5.4: + resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} + engines: {node: '>= 0.6'} + + content-type@1.0.5: + resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} + engines: {node: '>= 0.6'} + + conventional-changelog-angular@5.0.13: + resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} + engines: {node: '>=10'} + + conventional-changelog-core@4.2.4: + resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==} + engines: {node: '>=10'} + + conventional-changelog-preset-loader@2.3.4: + resolution: {integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==} + engines: {node: '>=10'} + + conventional-changelog-writer@5.0.1: + resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==} + engines: {node: '>=10'} + hasBin: true + + conventional-commits-filter@2.0.7: + resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==} + engines: {node: '>=10'} + + conventional-commits-parser@3.2.4: + resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} + engines: {node: '>=10'} + hasBin: true + + conventional-recommended-bump@6.1.0: + resolution: {integrity: sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==} + engines: {node: '>=10'} + hasBin: true + + convert-source-map@1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + cookie-signature@1.0.6: + resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + + cookie@0.4.2: + resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} + engines: {node: '>= 0.6'} + + cookie@0.6.0: + resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} + engines: {node: '>= 0.6'} + + copy-anything@2.0.6: + resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} + + copy-descriptor@0.1.1: + resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} + engines: {node: '>=0.10.0'} + + copy-webpack-plugin@10.2.4: + resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==} + engines: {node: '>= 12.20.0'} + peerDependencies: + webpack: 5.84.1 + + copy-webpack-plugin@12.0.2: + resolution: {integrity: sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==} + engines: {node: '>= 18.12.0'} + peerDependencies: + webpack: 5.84.1 + + core-js-compat@3.37.1: + resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==} + + core-js-pure@3.37.1: + resolution: {integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==} + + core-js@2.6.12: + resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} + deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. + + core-js@3.37.1: + resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==} + + core-util-is@1.0.2: + resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + corser@2.0.1: + resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==} + engines: {node: '>= 0.4.0'} + + cosmiconfig@5.2.1: + resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} + engines: {node: '>=4'} + + cosmiconfig@6.0.0: + resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} + engines: {node: '>=8'} + + cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} + + cosmiconfig@8.3.6: + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + + country-language@0.1.7: + resolution: {integrity: sha512-QH8GvZehR0IsFSR8ZPzteaCq/JjsLKk+tHWSQciXVpredI/2Xaf1VAdCuo/XPFWSrRCkSLaZNqnOcot4zceAIw==} + + cp-file@7.0.0: + resolution: {integrity: sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==} + engines: {node: '>=8'} + + cpy@8.1.2: + resolution: {integrity: sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==} + engines: {node: '>=8'} + + create-jest@29.7.0: + resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + + create-require@1.1.1: + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + + cross-spawn@5.1.0: + resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} + + cross-spawn@6.0.5: + resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} + engines: {node: '>=4.8'} + + cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + + crypto-js@3.3.0: + resolution: {integrity: sha512-DIT51nX0dCfKltpRiXV+/TVZq+Qq2NgF4644+K7Ttnla7zEzqc+kjJyiB96BHNyUTBxyjzRcZYpUdZa+QAqi6Q==} + + crypto-random-string@2.0.0: + resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} + engines: {node: '>=8'} + + css-color-keywords@1.0.0: + resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} + engines: {node: '>=4'} + + css-declaration-sorter@6.4.1: + resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} + engines: {node: ^10 || ^12 || >=14} + peerDependencies: + postcss: ^8.0.9 + + css-declaration-sorter@7.2.0: + resolution: {integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.0.9 + + css-loader@1.0.1: + resolution: {integrity: sha512-+ZHAZm/yqvJ2kDtPne3uX0C+Vr3Zn5jFn2N4HywtS5ujwvsVkyg0VArEXpl3BgczDA8anieki1FIzhchX4yrDw==} + engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 + + css-loader@3.6.0: + resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==} + engines: {node: '>= 8.9.0'} + peerDependencies: + webpack: 5.84.1 + + css-loader@5.2.7: + resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 + + css-loader@6.11.0: + resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==} + engines: {node: '>= 12.13.0'} + peerDependencies: + '@rspack/core': 0.x || 1.x + webpack: 5.84.1 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true + + css-minimizer-webpack-plugin@5.0.1: + resolution: {integrity: sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==} + engines: {node: '>= 14.15.0'} + peerDependencies: + '@parcel/css': '*' + '@swc/css': '*' + clean-css: '*' + csso: '*' + esbuild: '*' + lightningcss: '*' + webpack: 5.84.1 + peerDependenciesMeta: + '@parcel/css': + optional: true + '@swc/css': + optional: true + clean-css: + optional: true + csso: + optional: true + esbuild: + optional: true + lightningcss: + optional: true + + css-select-base-adapter@0.1.1: + resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} + + css-select@2.1.0: + resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==} + + css-select@4.3.0: + resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + + css-select@5.1.0: + resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + + css-selector-tokenizer@0.7.3: + resolution: {integrity: sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==} + + css-to-react-native@2.3.2: + resolution: {integrity: sha512-VOFaeZA053BqvvvqIA8c9n0+9vFppVBAHCp6JgFTtTMU3Mzi+XnelJ9XC9ul3BqFzZyQ5N+H0SnwsWT2Ebchxw==} + + css-tree@1.0.0-alpha.37: + resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} + engines: {node: '>=8.0.0'} + + css-tree@1.1.3: + resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} + engines: {node: '>=8.0.0'} + + css-tree@2.2.1: + resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + + css-tree@2.3.1: + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + + css-what@3.4.2: + resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} + engines: {node: '>= 6'} + + css-what@6.1.0: + resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} + engines: {node: '>= 6'} + + css.escape@1.5.1: + resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + cssnano-preset-default@5.2.14: + resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + cssnano-preset-default@6.1.2: + resolution: {integrity: sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + cssnano-utils@3.1.0: + resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + cssnano-utils@4.0.2: + resolution: {integrity: sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + cssnano@5.1.15: + resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + cssnano@6.1.2: + resolution: {integrity: sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + csso@4.2.0: + resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} + engines: {node: '>=8.0.0'} + + csso@5.0.5: + resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + + cssom@0.3.8: + resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + + cssom@0.4.4: + resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} + + cssom@0.5.0: + resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} + + cssstyle@2.3.0: + resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} + engines: {node: '>=8'} + + csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + + csv-generate@3.4.3: + resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} + + csv-parse@4.16.3: + resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} + + csv-stringify@5.6.5: + resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} + + csv@5.5.3: + resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} + engines: {node: '>= 0.1.90'} + + currently-unhandled@0.4.1: + resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} + engines: {node: '>=0.10.0'} + + cypress@9.7.0: + resolution: {integrity: sha512-+1EE1nuuuwIt/N1KXRR2iWHU+OiIt7H28jJDyyI4tiUftId/DrXYEwoDa5+kH2pki1zxnA0r6HrUGHV5eLbF5Q==} + engines: {node: '>=12.0.0'} + hasBin: true + + d3-array@3.2.4: + resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} + engines: {node: '>=12'} + + d3-color@3.1.0: + resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} + engines: {node: '>=12'} + + d3-dispatch@3.0.1: + resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} + engines: {node: '>=12'} + + d3-drag@3.0.0: + resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} + engines: {node: '>=12'} + + d3-ease@3.0.1: + resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} + engines: {node: '>=12'} + + d3-format@3.1.0: + resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} + engines: {node: '>=12'} + + d3-interpolate@3.0.1: + resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} + engines: {node: '>=12'} + + d3-path@3.1.0: + resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==} + engines: {node: '>=12'} + + d3-scale@4.0.2: + resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} + engines: {node: '>=12'} + + d3-selection@3.0.0: + resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} + engines: {node: '>=12'} + + d3-shape@3.2.0: + resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==} + engines: {node: '>=12'} + + d3-time-format@4.1.0: + resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} + engines: {node: '>=12'} + + d3-time@3.1.0: + resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} + engines: {node: '>=12'} + + d3-timer@3.0.1: + resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} + engines: {node: '>=12'} + + d3-transition@3.0.1: + resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} + engines: {node: '>=12'} + peerDependencies: + d3-selection: 2 - 3 + + d3-zoom@3.0.0: + resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} + engines: {node: '>=12'} + + d@1.0.2: + resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==} + engines: {node: '>=0.12'} + + damerau-levenshtein@1.0.8: + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + + dargs@7.0.0: + resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} + engines: {node: '>=8'} + + dashdash@1.14.1: + resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} + engines: {node: '>=0.10'} + + data-urls@2.0.0: + resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} + engines: {node: '>=10'} + + data-urls@3.0.2: + resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} + engines: {node: '>=12'} + + data-view-buffer@1.0.1: + resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} + engines: {node: '>= 0.4'} + + data-view-byte-length@1.0.1: + resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} + engines: {node: '>= 0.4'} + + data-view-byte-offset@1.0.0: + resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} + engines: {node: '>= 0.4'} + + dataloader@1.4.0: + resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} + + date-format@2.1.0: + resolution: {integrity: sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==} + engines: {node: '>=4.0'} + deprecated: 2.x is no longer supported. Please upgrade to 4.x or higher. + + date-now@0.1.4: + resolution: {integrity: sha512-AsElvov3LoNB7tf5k37H2jYSB+ZZPMT5sG2QjJCcdlV5chIv6htBUBUui2IKRjgtKAKtCBN7Zbwa+MtwLjSeNw==} + + dateformat@3.0.3: + resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} + + dayjs@1.11.11: + resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==} + + debounce@1.2.1: + resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} + + debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@3.1.0: + resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.3.5: + resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debuglog@1.0.1: + resolution: {integrity: sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + decamelize-keys@1.1.1: + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + engines: {node: '>=0.10.0'} + + decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + + decimal.js-light@2.5.1: + resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==} + + decimal.js@10.4.3: + resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + + decode-named-character-reference@1.0.2: + resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} + + decode-uri-component@0.2.2: + resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} + engines: {node: '>=0.10'} + + decompress-response@3.3.0: + resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} + engines: {node: '>=4'} + + decompress-response@6.0.0: + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} + engines: {node: '>=10'} + + dedent@0.7.0: + resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} + + dedent@1.5.3: + resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} + peerDependencies: + babel-plugin-macros: ^3.1.0 + peerDependenciesMeta: + babel-plugin-macros: + optional: true + + deep-diff@1.0.2: + resolution: {integrity: sha512-aWS3UIVH+NPGCD1kki+DCU9Dua032iSsO43LqQpcs4R3+dVv7tX0qBGjiVHJHjplsoUM2XRO/KB92glqc68awg==} + + deep-equal@1.1.2: + resolution: {integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==} + engines: {node: '>= 0.4'} + + deep-equal@2.2.3: + resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} + engines: {node: '>= 0.4'} + + deep-extend@0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + deepmerge@4.3.1: + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} + + default-browser-id@1.0.4: + resolution: {integrity: sha512-qPy925qewwul9Hifs+3sx1ZYn14obHxpkX+mPD369w4Rzg+YkJBgi3SOvwUq81nWSjqGUegIgEPwD8u+HUnxlw==} + engines: {node: '>=0.10.0'} + hasBin: true + + default-browser-id@3.0.0: + resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} + engines: {node: '>=12'} + + default-gateway@4.2.0: + resolution: {integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==} + engines: {node: '>=6'} + + default-gateway@6.0.3: + resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} + engines: {node: '>= 10'} + + default-require-extensions@3.0.1: + resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==} + engines: {node: '>=8'} + + defaults@1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + + defer-to-connect@1.1.3: + resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} + + defer-to-connect@2.0.1: + resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} + engines: {node: '>=10'} + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + define-lazy-prop@2.0.0: + resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} + engines: {node: '>=8'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + define-property@0.2.5: + resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} + engines: {node: '>=0.10.0'} + + define-property@1.0.0: + resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} + engines: {node: '>=0.10.0'} + + define-property@2.0.2: + resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} + engines: {node: '>=0.10.0'} + + defu@6.1.4: + resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} + + del@4.1.1: + resolution: {integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==} + engines: {node: '>=6'} + + del@6.1.1: + resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} + engines: {node: '>=10'} + + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + + delegates@1.0.0: + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} + + depd@1.1.2: + resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} + engines: {node: '>= 0.6'} + + depd@2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + + deprecation@2.3.1: + resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + destroy@1.2.0: + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + + detab@2.0.4: + resolution: {integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==} + + detect-indent@5.0.0: + resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==} + engines: {node: '>=4'} + + detect-indent@6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} + + detect-newline@3.1.0: + resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} + engines: {node: '>=8'} + + detect-node@2.1.0: + resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} + + detect-package-manager@2.0.1: + resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==} + engines: {node: '>=12'} + + detect-port@1.6.1: + resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==} + engines: {node: '>= 4.0.0'} + hasBin: true + + devlop@1.1.0: + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + + dezalgo@1.0.4: + resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==} + + diacritics-map@0.1.0: + resolution: {integrity: sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==} + engines: {node: '>=0.8.0'} + + diff-sequences@26.6.2: + resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==} + engines: {node: '>= 10.14.2'} + + diff-sequences@29.6.3: + resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + diff@4.0.2: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} + + dir-glob@2.2.2: + resolution: {integrity: sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==} + engines: {node: '>=4'} + + dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + + dns-equal@1.0.0: + resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} + + dns-packet@1.3.4: + resolution: {integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==} + + dns-packet@5.6.1: + resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} + engines: {node: '>=6'} + + dns-txt@2.0.2: + resolution: {integrity: sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==} + + doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + + doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + + dom-accessibility-api@0.5.16: + resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} + + dom-accessibility-api@0.6.3: + resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} + + dom-converter@0.2.0: + resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} + + dom-helpers@5.2.1: + resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} + + dom-serializer@0.2.2: + resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} + + dom-serializer@1.4.1: + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + + dom-serializer@2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + + dom-walk@0.1.2: + resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==} + + domelementtype@1.3.1: + resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} + + domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + + domexception@2.0.1: + resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} + engines: {node: '>=8'} + deprecated: Use your platform's native DOMException instead + + domexception@4.0.0: + resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} + engines: {node: '>=12'} + deprecated: Use your platform's native DOMException instead + + domhandler@2.3.0: + resolution: {integrity: sha512-q9bUwjfp7Eif8jWxxxPSykdRZAb6GkguBGSgvvCrhI9wB71W2K/Kvv4E61CF/mcCfnVJDeDWx/Vb/uAqbDj6UQ==} + + domhandler@4.3.1: + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} + + domhandler@5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} + + dompurify@3.1.5: + resolution: {integrity: sha512-lwG+n5h8QNpxtyrJW/gJWckL+1/DQiYMX8f7t8Z2AZTPw1esVrqjI63i7Zc2Gz0aKzLVMYC1V1PL/ky+aY/NgA==} + + domutils@1.5.1: + resolution: {integrity: sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==} + + domutils@1.7.0: + resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} + + domutils@2.8.0: + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + + domutils@3.1.0: + resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} + + dot-case@3.0.4: + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + + dot-prop@5.3.0: + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} + + dot-prop@6.0.1: + resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} + engines: {node: '>=10'} + + dotenv-expand@10.0.0: + resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} + engines: {node: '>=12'} + + dotenv-expand@5.1.0: + resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} + + dotenv@10.0.0: + resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} + engines: {node: '>=10'} + + dotenv@16.3.2: + resolution: {integrity: sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==} + engines: {node: '>=12'} + + dotenv@16.4.5: + resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} + engines: {node: '>=12'} + + dotenv@8.6.0: + resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} + engines: {node: '>=10'} + + duplexer3@0.1.5: + resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} + + duplexer@0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + + duplexify@3.7.1: + resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} + + eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + + ecc-jsbn@0.1.2: + resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} + + editorconfig@1.0.4: + resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==} + engines: {node: '>=14'} + hasBin: true + + ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + + ejs@3.1.10: + resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} + engines: {node: '>=0.10.0'} + hasBin: true + + electron-to-chromium@1.4.810: + resolution: {integrity: sha512-Kaxhu4T7SJGpRQx99tq216gCq2nMxJo+uuT6uzz9l8TVN2stL7M06MIIXAtr9jsrLs2Glflgf2vMQRepxawOdQ==} + + emittery@0.13.1: + resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} + engines: {node: '>=12'} + + emittery@0.7.2: + resolution: {integrity: sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==} + engines: {node: '>=10'} + + emoji-regex@7.0.3: + resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + emojis-list@3.0.0: + resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} + engines: {node: '>= 4'} + + encodeurl@1.0.2: + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + engines: {node: '>= 0.8'} + + encoding@0.1.13: + resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} + + end-of-stream@1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + + endent@2.1.0: + resolution: {integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==} + + enhanced-resolve@4.5.0: + resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==} + engines: {node: '>=6.9.0'} + + enhanced-resolve@5.17.0: + resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==} + engines: {node: '>=10.13.0'} + + enquirer@2.3.6: + resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + engines: {node: '>=8.6'} + + enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} + + entities@1.0.0: + resolution: {integrity: sha512-LbLqfXgJMmy81t+7c14mnulFHJ170cM6E+0vMXR9k/ZiZwgX8i5pNgjTCX3SO4VeUsFLV+8InixoretwU+MjBQ==} + + entities@2.2.0: + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + + entities@3.0.1: + resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} + engines: {node: '>=0.12'} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + env-paths@2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} + + envinfo@7.13.0: + resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==} + engines: {node: '>=4'} + hasBin: true + + err-code@2.0.3: + resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} + + errno@0.1.8: + resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} + hasBin: true + + error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + + error-stack-parser@2.1.4: + resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} + + es-abstract@1.23.3: + resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} + engines: {node: '>= 0.4'} + + es-array-method-boxes-properly@1.0.0: + resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} + + es-define-property@1.0.0: + resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-get-iterator@1.1.3: + resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} + + es-iterator-helpers@1.0.19: + resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==} + engines: {node: '>= 0.4'} + + es-module-lexer@1.5.4: + resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} + + es-object-atoms@1.0.0: + resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.0.3: + resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} + engines: {node: '>= 0.4'} + + es-shim-unscopables@1.0.2: + resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} + + es-to-primitive@1.2.1: + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} + + es5-ext@0.10.64: + resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==} + engines: {node: '>=0.10'} + + es5-shim@4.6.7: + resolution: {integrity: sha512-jg21/dmlrNQI7JyyA2w7n+yifSxBng0ZralnSfVZjoCawgNTCnS+yBCyVM9DL5itm7SUnDGgv7hcq2XCZX4iRQ==} + engines: {node: '>=0.4.0'} + + es6-error@4.1.1: + resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} + + es6-iterator@2.0.3: + resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} + + es6-shim@0.35.8: + resolution: {integrity: sha512-Twf7I2v4/1tLoIXMT8HlqaBSS5H2wQTs2wx3MNYCI8K1R1/clXyCazrcVCPm/FuO9cyV8+leEaZOWD5C253NDg==} + + es6-symbol@3.1.4: + resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==} + engines: {node: '>=0.12'} + + esbuild-plugin-alias@0.2.1: + resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==} + + esbuild-register@3.5.0: + resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==} + peerDependencies: + esbuild: '>=0.12 <1' + + esbuild@0.18.20: + resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} + engines: {node: '>=12'} + hasBin: true + + escalade@3.1.2: + resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} + engines: {node: '>=6'} + + escape-goat@2.1.1: + resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==} + engines: {node: '>=8'} + + escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + escape-string-regexp@2.0.0: + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + + escodegen@2.1.0: + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} + hasBin: true + + eslint-compat-utils@0.5.1: + resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} + engines: {node: '>=12'} + peerDependencies: + eslint: '>=6.0.0' + + eslint-config-prettier@9.1.0: + resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + + eslint-import-resolver-node@0.3.9: + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + + eslint-module-utils@2.8.1: + resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} + 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 + + eslint-plugin-cypress@2.15.2: + resolution: {integrity: sha512-CtcFEQTDKyftpI22FVGpx8bkpKyYXBlNge6zSo0pl5/qJvBAnzaD76Vu2AsP16d6mTj478Ldn2mhgrWV+Xr0vQ==} + peerDependencies: + eslint: '>= 3.2.1' + + eslint-plugin-header@https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3: + resolution: {tarball: https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3} + version: 3.2.0 + peerDependencies: + eslint: '>=7.7.0' + + eslint-plugin-import@2.29.1: + resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + + eslint-plugin-jest-dom@4.0.3: + resolution: {integrity: sha512-9j+n8uj0+V0tmsoS7bYC7fLhQmIvjRqRYEcbDSi+TKPsTThLLXCyj5swMSSf/hTleeMktACnn+HFqXBr5gbcbA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6', yarn: '>=1'} + peerDependencies: + eslint: ^6.8.0 || ^7.0.0 || ^8.0.0 + + eslint-plugin-jsonc@2.16.0: + resolution: {integrity: sha512-Af/ZL5mgfb8FFNleH6KlO4/VdmDuTqmM+SPnWcdoWywTetv7kq+vQe99UyQb9XO3b0OWLVuTH7H0d/PXYCMdSg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + + eslint-plugin-jsx-a11y@6.5.1: + resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==} + engines: {node: '>=4.0'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + + eslint-plugin-react-hooks@4.6.2: + resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} + engines: {node: '>=10'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + + eslint-plugin-react@7.31.11: + resolution: {integrity: sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + + eslint-plugin-react@7.34.3: + resolution: {integrity: sha512-aoW4MV891jkUulwDApQbPYTVZmeuSyFrudpbTAQuj5Fv8VL+o6df2xIGpw8B0hPjAaih1/Fb0om9grCdyFYemA==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + + eslint-plugin-testing-library@5.11.1: + resolution: {integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} + peerDependencies: + eslint: ^7.5.0 || ^8.0.0 + + eslint-plugin-tsdoc@0.2.17: + resolution: {integrity: sha512-xRmVi7Zx44lOBuYqG8vzTXuL6IdGOeF9nHX17bjJ8+VE6fsxpdGem0/SBTmAwgYMKYB1WBkqRJVQ+n8GK041pA==} + + eslint-scope@5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + + eslint-scope@7.2.2: + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-utils@2.1.0: + resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} + engines: {node: '>=6'} + + eslint-utils@3.0.0: + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: '>=5' + + eslint-visitor-keys@1.3.0: + resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} + engines: {node: '>=4'} + + eslint-visitor-keys@2.1.0: + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} + engines: {node: '>=10'} + + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-webpack-plugin@2.7.0: + resolution: {integrity: sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + webpack: 5.84.1 + + eslint-webpack-plugin@3.2.0: + resolution: {integrity: sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==} + engines: {node: '>= 12.13.0'} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + webpack: 5.84.1 + + eslint@7.32.0: + resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} + engines: {node: ^10.12.0 || >=12.0.0} + hasBin: true + + eslint@8.46.0: + resolution: {integrity: sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + hasBin: true + + esniff@2.0.1: + resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==} + engines: {node: '>=0.10'} + + espree@7.3.1: + resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} + engines: {node: ^10.12.0 || >=12.0.0} + + espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + + esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + engines: {node: '>=0.10'} + + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + estree-to-babel@3.2.1: + resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} + engines: {node: '>=8.3.0'} + + estree-util-is-identifier-name@3.0.0: + resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} + + estree-walker@0.2.1: + resolution: {integrity: sha512-6/I1dwNKk0N9iGOU3ydzAAurz4NPo/ttxZNCqgIVbWFvWyzWBSNonRrJ5CpjDuyBfmM7ENN7WCzUi9aT/UPXXQ==} + + estree-walker@0.6.1: + resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} + + estree-walker@1.0.1: + resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + etag@1.8.1: + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} + + event-emitter@0.3.5: + resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} + + eventemitter2@6.4.9: + resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==} + + eventemitter3@4.0.7: + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + + events@3.3.0: + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} + + eventsource@2.0.2: + resolution: {integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==} + engines: {node: '>=12.0.0'} + + exec-sh@0.2.2: + resolution: {integrity: sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==} + + exec-sh@0.3.6: + resolution: {integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==} + + execa@0.7.0: + resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==} + engines: {node: '>=4'} + + execa@1.0.0: + resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} + engines: {node: '>=6'} + + execa@4.1.0: + resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} + engines: {node: '>=10'} + + execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + + execa@8.0.1: + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} + engines: {node: '>=16.17'} + + executable@4.1.1: + resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==} + engines: {node: '>=4'} + + exenv@1.2.2: + resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==} + + exit@0.1.2: + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} + engines: {node: '>= 0.8.0'} + + expand-brackets@2.1.4: + resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} + engines: {node: '>=0.10.0'} + + expand-range@1.8.2: + resolution: {integrity: sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==} + engines: {node: '>=0.10.0'} + + expect@26.6.2: + resolution: {integrity: sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==} + engines: {node: '>= 10.14.2'} + + expect@29.7.0: + resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + exponential-backoff@3.1.1: + resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} + + express@4.19.2: + resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==} + engines: {node: '>= 0.10.0'} + + ext-list@2.2.2: + resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} + engines: {node: '>=0.10.0'} + + ext-name@5.0.0: + resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==} + engines: {node: '>=4'} + + ext@1.7.0: + resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} + + extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} + + extend-shallow@3.0.2: + resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} + engines: {node: '>=0.10.0'} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + + extendable-error@0.1.7: + resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} + + external-editor@3.1.0: + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} + + extglob@2.0.4: + resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} + engines: {node: '>=0.10.0'} + + extract-text-webpack-plugin@4.0.0-beta.0: + resolution: {integrity: sha512-Hypkn9jUTnFr0DpekNam53X47tXn3ucY08BQumv7kdGgeVUBLq3DJHJTi6HNxv4jl9W+Skxjz9+RnK0sJyqqjA==} + engines: {node: '>= 6.9.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 + + extract-zip@1.7.0: + resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==} + hasBin: true + + extract-zip@2.0.1: + resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} + engines: {node: '>= 10.17.0'} + hasBin: true + + extsprintf@1.3.0: + resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} + engines: {'0': node >=0.6.0} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-equals@5.0.1: + resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==} + engines: {node: '>=6.0.0'} + + fast-glob@2.2.7: + resolution: {integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==} + engines: {node: '>=4.0.0'} + + fast-glob@3.2.7: + resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} + engines: {node: '>=8'} + + fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} + + fast-json-parse@1.0.3: + resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fast-sha256@1.3.0: + resolution: {integrity: sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==} + + fast-sort@3.4.0: + resolution: {integrity: sha512-c/cMBGA5mH3OYjaXedtLIM3hQjv+KuZuiD2QEH5GofNOZeQVDIYIN7Okc2AW1KPhk44g5PTZnXp8t2lOMl8qhQ==} + + fast-xml-parser@3.21.1: + resolution: {integrity: sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==} + hasBin: true + + fastest-levenshtein@1.0.16: + resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} + engines: {node: '>= 4.9.1'} + + fastestsmallesttextencoderdecoder@1.0.22: + resolution: {integrity: sha512-Pb8d48e+oIuY4MaM64Cd7OW1gt4nxCHs7/ddPPZ/Ic3sg8yVGM7O9wDvZ7us6ScaUupzM+pfBolwtYhN1IxBIw==} + + fastparse@1.1.2: + resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==} + + fastq@1.17.1: + resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + + faye-websocket@0.11.4: + resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} + engines: {node: '>=0.8.0'} + + fb-watchman@2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + + fd-slicer@1.1.0: + resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + + fetch-retry@5.0.6: + resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==} + + figures@3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} + + file-entry-cache@6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} + + file-loader@2.0.0: + resolution: {integrity: sha512-YCsBfd1ZGCyonOKLxPiKPdu+8ld9HAaMEvJewzz+b2eTF7uL5Zm/HdBF6FjCrpCMRq25Mi0U1gl4pwn2TlH7hQ==} + engines: {node: '>= 6.9.0 < 7.0.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 + + file-loader@6.2.0: + resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 + + file-saver@2.0.5: + resolution: {integrity: sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==} + + file-system-cache@1.1.0: + resolution: {integrity: sha512-IzF5MBq+5CR0jXx5RxPe4BICl/oEhBSXKaL9fLhAXrIfIUS77Hr4vzrYyqYMHN6uTt+BOqi3fDCTjjEBCjERKw==} + + file-system-cache@2.3.0: + resolution: {integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==} + + file-type@17.1.6: + resolution: {integrity: sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + file-uri-to-path@1.0.0: + resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + + filelist@1.0.4: + resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + + filename-reserved-regex@3.0.0: + resolution: {integrity: sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + filenamify@5.1.1: + resolution: {integrity: sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==} + engines: {node: '>=12.20'} + + filesize@3.6.1: + resolution: {integrity: sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==} + engines: {node: '>= 0.4.0'} + + fill-range@2.2.4: + resolution: {integrity: sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==} + engines: {node: '>=0.10.0'} + + fill-range@4.0.0: + resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} + engines: {node: '>=0.10.0'} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + filter-obj@1.1.0: + resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} + engines: {node: '>=0.10.0'} + + final-form@4.20.10: + resolution: {integrity: sha512-TL48Pi1oNHeMOHrKv1bCJUrWZDcD3DIG6AGYVNOnyZPr7Bd/pStN0pL+lfzF5BNoj/FclaoiaLenk4XUIFVYng==} + engines: {node: '>=8'} + + finalhandler@1.2.0: + resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} + engines: {node: '>= 0.8'} + + find-cache-dir@2.1.0: + resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} + engines: {node: '>=6'} + + find-cache-dir@3.3.2: + resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} + engines: {node: '>=8'} + + find-cache-dir@4.0.0: + resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==} + engines: {node: '>=14.16'} + + find-root@1.1.0: + resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} + + find-up@1.1.2: + resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==} + engines: {node: '>=0.10.0'} + + find-up@2.1.0: + resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} + engines: {node: '>=4'} + + find-up@3.0.0: + resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} + engines: {node: '>=6'} + + find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + find-up@6.3.0: + resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + find-versions@5.1.0: + resolution: {integrity: sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==} + engines: {node: '>=12'} + + find-yarn-workspace-root2@1.2.16: + resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} + + flat-cache@3.2.0: + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} + engines: {node: ^10.12.0 || >=12.0.0} + + flat@5.0.2: + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + hasBin: true + + flatted@2.0.2: + resolution: {integrity: sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==} + + flatted@3.3.1: + resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} + + flow-parser@0.238.0: + resolution: {integrity: sha512-VE7XSv1epljsIN2YeBnxCmGJihpNIAnLLu/pPOdA+Gkso7qDltJwUi6vfHjgxdBbjSdAuPGnhuOHJUQG+yYwIg==} + engines: {node: '>=0.4.0'} + + follow-redirects@1.15.6: + resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + + follow-redirects@1.5.10: + resolution: {integrity: sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==} + engines: {node: '>=4.0'} + + for-each@0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + + for-in@0.1.8: + resolution: {integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==} + engines: {node: '>=0.10.0'} + + for-in@1.0.2: + resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} + engines: {node: '>=0.10.0'} + + for-own@0.1.5: + resolution: {integrity: sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==} + engines: {node: '>=0.10.0'} + + foreground-child@2.0.0: + resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} + engines: {node: '>=8.0.0'} + + foreground-child@3.2.1: + resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==} + engines: {node: '>=14'} + + forever-agent@0.6.1: + resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} + + fork-ts-checker-webpack-plugin@4.1.6: + resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} + engines: {node: '>=6.11.5', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: 5.84.1 + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true + + fork-ts-checker-webpack-plugin@6.5.3: + resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} + engines: {node: '>=10', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: 5.84.1 + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true + + fork-ts-checker-webpack-plugin@7.2.13: + resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==} + engines: {node: '>=12.13.0', yarn: '>=1.0.0'} + peerDependencies: + typescript: '>3.6.0' + vue-template-compiler: '*' + webpack: 5.84.1 + peerDependenciesMeta: + vue-template-compiler: + optional: true + + fork-ts-checker-webpack-plugin@8.0.0: + resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} + engines: {node: '>=12.13.0', yarn: '>=1.0.0'} + peerDependencies: + typescript: '>3.6.0' + webpack: 5.84.1 + + form-data@2.3.3: + resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} + engines: {node: '>= 0.12'} + + form-data@3.0.1: + resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} + engines: {node: '>= 6'} + + form-data@4.0.0: + resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} + engines: {node: '>= 6'} + + forwarded@0.2.0: + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + engines: {node: '>= 0.6'} + + fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + + fragment-cache@0.2.1: + resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} + engines: {node: '>=0.10.0'} + + framer-motion@11.2.11: + resolution: {integrity: sha512-n+ozoEzgJu/2h9NoQMokF+CwNqIRVyuRC4RwMPwklfrrTjbVV32k9uBIgqYAwn7Jfpt5LuDVCtT57MWz1FbaLw==} + peerDependencies: + '@emotion/is-prop-valid': '*' + react: ^18.0.0 + react-dom: ^18.0.0 + peerDependenciesMeta: + '@emotion/is-prop-valid': + optional: true + react: + optional: true + react-dom: + optional: true + + fresh@0.5.2: + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} + + fromentries@1.3.2: + resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==} + + fs-constants@1.0.0: + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + + fs-extra@10.1.0: + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} + + fs-extra@11.1.1: + resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} + engines: {node: '>=14.14'} + + fs-extra@11.2.0: + resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} + engines: {node: '>=14.14'} + + fs-extra@7.0.1: + resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} + engines: {node: '>=6 <7 || >=8'} + + fs-extra@8.1.0: + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} + + fs-extra@9.1.0: + resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} + engines: {node: '>=10'} + + fs-minipass@2.1.0: + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} + + fs-monkey@1.0.6: + resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==} + + fs-readdir-recursive@1.1.0: + resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + fs@0.0.1-security: + resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} + + fsevents@1.2.13: + resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==} + engines: {node: '>= 4.0'} + os: [darwin] + deprecated: The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2 + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + function.prototype.name@1.1.6: + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} + engines: {node: '>= 0.4'} + + functional-red-black-tree@1.0.1: + resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} + + functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + + gauge@3.0.2: + resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} + engines: {node: '>=10'} + deprecated: This package is no longer supported. + + gauge@4.0.4: + resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. + + generic-names@4.0.0: + resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} + + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + get-intrinsic@1.2.4: + resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} + engines: {node: '>= 0.4'} + + get-npm-tarball-url@2.1.0: + resolution: {integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==} + engines: {node: '>=12.17'} + + get-package-type@0.1.0: + resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} + engines: {node: '>=8.0.0'} + + get-pkg-repo@4.2.1: + resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} + engines: {node: '>=6.9.0'} + hasBin: true + + get-port@5.1.1: + resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} + engines: {node: '>=8'} + + get-stdin@4.0.1: + resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==} + engines: {node: '>=0.10.0'} + + get-stream@3.0.0: + resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==} + engines: {node: '>=4'} + + get-stream@4.1.0: + resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} + engines: {node: '>=6'} + + get-stream@5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + + get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + + get-stream@8.0.1: + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} + engines: {node: '>=16'} + + get-symbol-description@1.0.2: + resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} + engines: {node: '>= 0.4'} + + get-value@2.0.6: + resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} + engines: {node: '>=0.10.0'} + + getos@3.2.1: + resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} + + getpass@0.1.7: + resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} + + giget@1.2.3: + resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==} + hasBin: true + + git-raw-commits@2.0.11: + resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} + engines: {node: '>=10'} + hasBin: true + + git-remote-origin-url@2.0.0: + resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} + engines: {node: '>=4'} + + git-semver-tags@4.1.1: + resolution: {integrity: sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==} + engines: {node: '>=10'} + hasBin: true + + git-up@7.0.0: + resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} + + git-url-parse@13.1.1: + resolution: {integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==} + + gitconfiglocal@1.0.0: + resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==} + + github-slugger@1.5.0: + resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} + + glob-parent@3.1.0: + resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + glob-promise@3.4.0: + resolution: {integrity: sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==} + engines: {node: '>=4'} + peerDependencies: + glob: '*' + + glob-to-regexp@0.3.0: + resolution: {integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==} + + glob-to-regexp@0.4.1: + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + + glob@10.4.2: + resolution: {integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==} + engines: {node: '>=16 || 14 >=14.18'} + hasBin: true + + glob@7.1.4: + resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} + deprecated: Glob versions prior to v9 are no longer supported + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported + + glob@8.1.0: + resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} + engines: {node: '>=12'} + deprecated: Glob versions prior to v9 are no longer supported + + global-dirs@3.0.1: + resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} + engines: {node: '>=10'} + + global@4.4.0: + resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==} + + globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + + globals@13.24.0: + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} + engines: {node: '>=8'} + + globals@9.18.0: + resolution: {integrity: sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==} + engines: {node: '>=0.10.0'} + + globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + + globby@10.0.1: + resolution: {integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==} + engines: {node: '>=8'} + + globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + + globby@12.2.0: + resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + globby@14.0.2: + resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} + engines: {node: '>=18'} + + globby@6.1.0: + resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==} + engines: {node: '>=0.10.0'} + + globby@9.2.0: + resolution: {integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==} + engines: {node: '>=6'} + + gopd@1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + + got@11.8.6: + resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} + engines: {node: '>=10.19.0'} + + got@9.6.0: + resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} + engines: {node: '>=8.6'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + grapheme-splitter@1.0.4: + resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} + + graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + + graphql@15.9.0: + resolution: {integrity: sha512-GCOQdvm7XxV1S4U4CGrsdlEN37245eC8P9zaYCMr6K1BG0IPGy5lUwmJsEOGyl1GD6HXjOtl2keCP9asRBwNvA==} + engines: {node: '>= 10.x'} + + gray-matter@2.1.1: + resolution: {integrity: sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==} + engines: {node: '>=0.10.0'} + + growly@1.3.0: + resolution: {integrity: sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==} + + gulp-header@1.8.12: + resolution: {integrity: sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==} + deprecated: Removed event-stream from gulp-header + + gunzip-maybe@1.4.2: + resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==} + hasBin: true + + gzip-size@6.0.0: + resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} + engines: {node: '>=10'} + + handle-thing@2.0.1: + resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} + + handlebars@4.7.8: + resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} + engines: {node: '>=0.4.7'} + hasBin: true + + hard-rejection@2.1.0: + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} + + harmony-reflect@1.6.2: + resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} + + has-ansi@2.0.0: + resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} + engines: {node: '>=0.10.0'} + + has-bigints@1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + + has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-glob@1.0.0: + resolution: {integrity: sha512-D+8A457fBShSEI3tFCj65PAbT++5sKiFtdCdOam0gnfBgw9D277OERk+HM9qYJXmdVLZ/znez10SqHN0BBQ50g==} + engines: {node: '>=0.10.0'} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.0.3: + resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} + engines: {node: '>= 0.4'} + + has-symbols@1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + + has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + + has-unicode@2.0.1: + resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + + has-value@0.3.1: + resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} + engines: {node: '>=0.10.0'} + + has-value@1.0.0: + resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} + engines: {node: '>=0.10.0'} + + has-values@0.1.4: + resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} + engines: {node: '>=0.10.0'} + + has-values@1.0.0: + resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} + engines: {node: '>=0.10.0'} + + has-yarn@2.1.0: + resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==} + engines: {node: '>=8'} + + has@1.0.4: + resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} + engines: {node: '>= 0.4.0'} + + hasha@5.2.2: + resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} + engines: {node: '>=8'} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + hast-to-hyperscript@9.0.1: + resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==} + + hast-util-from-parse5@6.0.1: + resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==} + + hast-util-parse-selector@2.2.5: + resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==} + + hast-util-raw@6.0.1: + resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==} + + hast-util-to-jsx-runtime@2.3.0: + resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==} + + hast-util-to-parse5@6.0.0: + resolution: {integrity: sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==} + + hast-util-whitespace@3.0.0: + resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} + + hastscript@6.0.0: + resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} + + he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + + headers-utils@3.0.2: + resolution: {integrity: sha512-xAxZkM1dRyGV2Ou5bzMxBPNLoRCjcX+ya7KSWybQD2KwLphxsapUVK6x/02o7f4VU6GPSXch9vNY2+gkU8tYWQ==} + + history@4.10.1: + resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==} + + hoist-non-react-statics@2.5.5: + resolution: {integrity: sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==} + + hoist-non-react-statics@3.3.2: + resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} + + hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + + hosted-git-info@3.0.8: + resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==} + engines: {node: '>=10'} + + hosted-git-info@4.1.0: + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} + + hosted-git-info@5.2.1: + resolution: {integrity: sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + hosted-git-info@7.0.2: + resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==} + engines: {node: ^16.14.0 || >=18.0.0} + + hpack.js@2.1.6: + resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} + + html-dom-parser@2.0.0: + resolution: {integrity: sha512-PwVjg12yfWunpH2WjwjaYNKcZyKKm20kclTfMQohiRzfgYiXX0dR7nXIIKnHneghMDvB0rKFZLEAe11ykOfpcg==} + + html-encoding-sniffer@2.0.1: + resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} + engines: {node: '>=10'} + + html-encoding-sniffer@3.0.0: + resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + engines: {node: '>=12'} + + html-entities@1.4.0: + resolution: {integrity: sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==} + + html-entities@2.5.2: + resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} + + html-escaper@2.0.2: + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + + html-minifier-terser@5.1.1: + resolution: {integrity: sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==} + engines: {node: '>=6'} + hasBin: true + + html-minifier-terser@6.1.0: + resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} + engines: {node: '>=12'} + hasBin: true + + html-parse-stringify@3.0.1: + resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==} + + html-react-parser@2.0.0: + resolution: {integrity: sha512-AI1lhybWGi8w4QkGtEIS3iSGAjeFGaonxl/+CzqzCeNT3g3z/yx2NKsA93trnv2BLjhe+juGLmLeTSUkyYWk9Q==} + peerDependencies: + react: 0.14 || 15 || 16 || 17 || 18 + + html-tags@3.3.1: + resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} + engines: {node: '>=8'} + + html-url-attributes@3.0.0: + resolution: {integrity: sha512-/sXbVCWayk6GDVg3ctOX6nxaVj7So40FcFAnWlWGNAB1LpYKcV5Cd10APjPjW80O7zYW2MsjBV4zZ7IZO5fVow==} + + html-void-elements@1.0.5: + resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==} + + html-webpack-plugin@4.5.2: + resolution: {integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==} + engines: {node: '>=6.9'} + peerDependencies: + webpack: 5.84.1 + + html-webpack-plugin@5.6.0: + resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==} + engines: {node: '>=10.13.0'} + peerDependencies: + '@rspack/core': 0.x || 1.x + webpack: 5.84.1 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true + + htmlparser2@3.8.3: + resolution: {integrity: sha512-hBxEg3CYXe+rPIua8ETe7tmG3XDn9B0edOE/e9wH2nLczxzgdu0m0aNHY+5wFZiviLWLdANPJTssa92dMcXQ5Q==} + + htmlparser2@6.1.0: + resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} + + htmlparser2@7.2.0: + resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} + + http-cache-semantics@4.1.1: + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} + + http-deceiver@1.2.7: + resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} + + http-errors@1.6.3: + resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} + engines: {node: '>= 0.6'} + + http-errors@2.0.0: + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} + + http-parser-js@0.5.8: + resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} + + http-proxy-agent@4.0.1: + resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} + engines: {node: '>= 6'} + + http-proxy-agent@5.0.0: + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} + + http-proxy-middleware@0.19.1: + resolution: {integrity: sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==} + engines: {node: '>=4.0.0'} + + http-proxy-middleware@2.0.6: + resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/express': ^4.17.13 + peerDependenciesMeta: + '@types/express': + optional: true + + http-proxy@1.18.1: + resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} + engines: {node: '>=8.0.0'} + + http-server@14.1.1: + resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==} + engines: {node: '>=12'} + hasBin: true + + http-signature@1.3.6: + resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} + engines: {node: '>=0.10'} + + http2-wrapper@1.0.3: + resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} + engines: {node: '>=10.19.0'} + + https-proxy-agent@4.0.0: + resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==} + engines: {node: '>= 6.0.0'} + + https-proxy-agent@5.0.1: + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} + + human-id@1.0.2: + resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} + + human-signals@1.1.1: + resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} + engines: {node: '>=8.12.0'} + + human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + + human-signals@5.0.0: + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} + engines: {node: '>=16.17.0'} + + humanize-ms@1.2.1: + resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} + + i18next-browser-languagedetector@6.1.8: + resolution: {integrity: sha512-Svm+MduCElO0Meqpj1kJAriTC6OhI41VhlT/A0UPjGoPZBhAHIaGE5EfsHlTpgdH09UVX7rcc72pSDDBeKSQQA==} + + i18next-xhr-backend@3.2.2: + resolution: {integrity: sha512-OtRf2Vo3IqAxsttQbpjYnmMML12IMB5e0fc5B7qKJFLScitYaXa1OhMX0n0X/3vrfFlpHL9Ro/H+ps4Ej2j7QQ==} + deprecated: replaced by i18next-http-backend + + i18next@21.10.0: + resolution: {integrity: sha512-YeuIBmFsGjUfO3qBmMOc0rQaun4mIpGKET5WDwvu8lU7gvwpcariZLNtL0Fzj+zazcHUrlXHiptcFhBMFaxzfg==} + + iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + + iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + + icss-replace-symbols@1.1.0: + resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} + + icss-utils@2.1.0: + resolution: {integrity: sha512-bsVoyn/1V4R1kYYjLcWLedozAM4FClZUdjE9nIr8uWY7xs78y9DATgwz2wGU7M+7z55KenmmTkN2DVJ7bqzjAA==} + + icss-utils@4.1.1: + resolution: {integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==} + engines: {node: '>= 6'} + + icss-utils@5.1.0: + resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + identity-obj-proxy@3.0.0: + resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} + engines: {node: '>=4'} + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore-walk@5.0.1: + resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + ignore@4.0.6: + resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} + engines: {node: '>= 4'} + + ignore@5.3.1: + resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} + engines: {node: '>= 4'} + + image-size@0.5.5: + resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} + engines: {node: '>=0.10.0'} + hasBin: true + + immutable@4.3.6: + resolution: {integrity: sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==} + + import-cwd@2.1.0: + resolution: {integrity: sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==} + engines: {node: '>=4'} + + import-cwd@3.0.0: + resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} + engines: {node: '>=8'} + + import-fresh@2.0.0: + resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} + engines: {node: '>=4'} + + import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + + import-from@2.1.0: + resolution: {integrity: sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==} + engines: {node: '>=4'} + + import-from@3.0.0: + resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==} + engines: {node: '>=8'} + + import-lazy@2.1.0: + resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==} + engines: {node: '>=4'} + + import-local@2.0.0: + resolution: {integrity: sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==} + engines: {node: '>=6'} + hasBin: true + + import-local@3.1.0: + resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} + engines: {node: '>=8'} + hasBin: true + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + indent-string@2.1.0: + resolution: {integrity: sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==} + engines: {node: '>=0.10.0'} + + indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + + infer-owner@1.0.4: + resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + + inherits@2.0.3: + resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + + ini@2.0.0: + resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} + engines: {node: '>=10'} + + init-package-json@3.0.2: + resolution: {integrity: sha512-YhlQPEjNFqlGdzrBfDNRLhvoSgX7iQRgSxgsNknRQ9ITXFT7UMfVMWhBTOh2Y+25lRnGrv5Xz8yZwQ3ACR6T3A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + inline-style-parser@0.1.1: + resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} + + inline-style-parser@0.2.3: + resolution: {integrity: sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==} + + inquirer@8.2.6: + resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} + engines: {node: '>=12.0.0'} + + internal-ip@4.3.0: + resolution: {integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==} + engines: {node: '>=6'} + + internal-slot@1.0.7: + resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} + engines: {node: '>= 0.4'} + + internmap@2.0.3: + resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} + engines: {node: '>=12'} + + interpret@1.4.0: + resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} + engines: {node: '>= 0.10'} + + interpret@2.2.0: + resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==} + engines: {node: '>= 0.10'} + + invariant@2.2.4: + resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + + ip-address@9.0.5: + resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} + engines: {node: '>= 12'} + + ip-regex@2.1.0: + resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==} + engines: {node: '>=4'} + + ip@1.1.9: + resolution: {integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==} + + ip@2.0.1: + resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==} + + ipaddr.js@1.9.1: + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + engines: {node: '>= 0.10'} + + ipaddr.js@2.2.0: + resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==} + engines: {node: '>= 10'} + + is-absolute-url@3.0.3: + resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==} + engines: {node: '>=8'} + + is-accessor-descriptor@1.0.1: + resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==} + engines: {node: '>= 0.10'} + + is-alphabetical@1.0.4: + resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} + + is-alphabetical@2.0.1: + resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} + + is-alphanumerical@1.0.4: + resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} + + is-alphanumerical@2.0.1: + resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} + + is-arguments@1.1.1: + resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} + engines: {node: '>= 0.4'} + + is-array-buffer@3.0.4: + resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} + engines: {node: '>= 0.4'} + + is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + + is-async-function@2.0.0: + resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} + engines: {node: '>= 0.4'} + + is-bigint@1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + + is-binary-path@1.0.1: + resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==} + engines: {node: '>=0.10.0'} + + is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + + is-boolean-object@1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} + + is-buffer@1.1.6: + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + + is-buffer@2.0.5: + resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} + engines: {node: '>=4'} + + is-builtin-module@3.2.1: + resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} + engines: {node: '>=6'} + + is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + + is-ci@2.0.0: + resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} + hasBin: true + + is-ci@3.0.1: + resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} + hasBin: true + + is-core-module@2.14.0: + resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==} + engines: {node: '>= 0.4'} + + is-data-descriptor@1.0.1: + resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==} + engines: {node: '>= 0.4'} + + is-data-view@1.0.1: + resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} + engines: {node: '>= 0.4'} + + is-date-object@1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} + + is-decimal@1.0.4: + resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} + + is-decimal@2.0.1: + resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} + + is-deflate@1.0.0: + resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==} + + is-descriptor@0.1.7: + resolution: {integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==} + engines: {node: '>= 0.4'} + + is-descriptor@1.0.3: + resolution: {integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==} + engines: {node: '>= 0.4'} + + is-directory@0.3.1: + resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} + engines: {node: '>=0.10.0'} + + is-docker@2.2.1: + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} + hasBin: true + + is-dom@1.1.0: + resolution: {integrity: sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==} + + is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} + + is-extendable@1.0.1: + resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} + engines: {node: '>=0.10.0'} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-finalizationregistry@1.0.2: + resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} + + is-finite@1.1.0: + resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==} + engines: {node: '>=0.10.0'} + + is-fullwidth-code-point@2.0.0: + resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} + engines: {node: '>=4'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-function@1.0.2: + resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==} + + is-generator-fn@2.1.0: + resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} + engines: {node: '>=6'} + + is-generator-function@1.0.10: + resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} + engines: {node: '>= 0.4'} + + is-glob@3.1.0: + resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==} + engines: {node: '>=0.10.0'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-gzip@1.0.0: + resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==} + engines: {node: '>=0.10.0'} + + is-hexadecimal@1.0.4: + resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} + + is-hexadecimal@2.0.1: + resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} + + is-installed-globally@0.4.0: + resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} + engines: {node: '>=10'} + + is-interactive@1.0.0: + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + engines: {node: '>=8'} + + is-lambda@1.0.1: + resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} + + is-lite@0.8.2: + resolution: {integrity: sha512-JZfH47qTsslwaAsqbMI3Q6HNNjUuq6Cmzzww50TdP5Esb6e1y2sK2UAaZZuzfAzpoI2AkxoPQapZdlDuP6Vlsw==} + + is-lite@1.2.1: + resolution: {integrity: sha512-pgF+L5bxC+10hLBgf6R2P4ZZUBOQIIacbdo8YvuCP8/JvsWxG7aZ9p10DYuLtifFci4l3VITphhMlMV4Y+urPw==} + + is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + + is-module@1.0.0: + resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + + is-nan@1.3.2: + resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} + engines: {node: '>= 0.4'} + + is-negative-zero@2.0.3: + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + engines: {node: '>= 0.4'} + + is-node-process@1.2.0: + resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==} + + is-npm@5.0.0: + resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==} + engines: {node: '>=10'} + + is-number-object@1.0.7: + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} + + is-number@2.1.0: + resolution: {integrity: sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==} + engines: {node: '>=0.10.0'} + + is-number@3.0.0: + resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} + engines: {node: '>=0.10.0'} + + is-number@4.0.0: + resolution: {integrity: sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==} + engines: {node: '>=0.10.0'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-obj@2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} + + is-object@1.0.2: + resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==} + + is-path-cwd@2.2.0: + resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} + engines: {node: '>=6'} + + is-path-in-cwd@2.1.0: + resolution: {integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==} + engines: {node: '>=6'} + + is-path-inside@2.1.0: + resolution: {integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==} + engines: {node: '>=6'} + + is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + + is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + + is-plain-obj@2.1.0: + resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} + engines: {node: '>=8'} + + is-plain-obj@3.0.0: + resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} + engines: {node: '>=10'} + + is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + + is-plain-object@2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} + + is-plain-object@3.0.1: + resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==} + engines: {node: '>=0.10.0'} + + is-plain-object@5.0.0: + resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + engines: {node: '>=0.10.0'} + + is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + + is-promise@2.2.2: + resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + + is-reference@1.2.1: + resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} + + is-regex@1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + + is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + + is-shared-array-buffer@1.0.3: + resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} + engines: {node: '>= 0.4'} + + is-ssh@1.4.0: + resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} + + is-stream@1.1.0: + resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} + engines: {node: '>=0.10.0'} + + is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + + is-stream@3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + is-string@1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} + + is-subdir@1.2.0: + resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} + engines: {node: '>=4'} + + is-symbol@1.0.4: + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} + + is-text-path@1.0.1: + resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} + engines: {node: '>=0.10.0'} + + is-typed-array@1.1.13: + resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} + engines: {node: '>= 0.4'} + + is-typedarray@1.0.0: + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + + is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + + is-utf8@0.2.1: + resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} + + is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + + is-weakref@1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + + is-weakset@2.0.3: + resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} + engines: {node: '>= 0.4'} + + is-what@3.14.1: + resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} + + is-whitespace-character@1.0.4: + resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==} + + is-window@1.0.2: + resolution: {integrity: sha512-uj00kdXyZb9t9RcAUAwMZAnkBUwdYGhYlt7djMXhfyhUCzwNba50tIiBKR7q0l7tdoBtFVw/3JmLY6fI3rmZmg==} + + is-windows@1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} + + is-word-character@1.0.4: + resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==} + + is-wsl@1.1.0: + resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} + engines: {node: '>=4'} + + is-wsl@2.2.0: + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} + + is-yarn-global@0.3.0: + resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==} + + isarray@0.0.1: + resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + isobject@2.1.0: + resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} + engines: {node: '>=0.10.0'} + + isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + + isobject@4.0.0: + resolution: {integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==} + engines: {node: '>=0.10.0'} + + isomorphic-unfetch@3.1.0: + resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==} + + isstream@0.1.2: + resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} + + istanbul-lib-coverage@3.2.2: + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} + engines: {node: '>=8'} + + istanbul-lib-hook@3.0.0: + resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==} + engines: {node: '>=8'} + + istanbul-lib-instrument@4.0.3: + resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} + engines: {node: '>=8'} + + istanbul-lib-instrument@5.2.1: + resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} + engines: {node: '>=8'} + + istanbul-lib-instrument@6.0.3: + resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==} + engines: {node: '>=10'} + + istanbul-lib-processinfo@2.0.3: + resolution: {integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==} + engines: {node: '>=8'} + + istanbul-lib-report@3.0.1: + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} + + istanbul-lib-source-maps@4.0.1: + resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} + engines: {node: '>=10'} + + istanbul-reports@3.1.7: + resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} + engines: {node: '>=8'} + + iterate-iterator@1.0.2: + resolution: {integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==} + + iterate-value@1.0.2: + resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==} + + iterator.prototype@1.1.2: + resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} + + jackspeak@3.4.0: + resolution: {integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==} + engines: {node: '>=14'} + + jake@10.9.1: + resolution: {integrity: sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==} + engines: {node: '>=10'} + hasBin: true + + jest-changed-files@26.6.2: + resolution: {integrity: sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==} + engines: {node: '>= 10.14.2'} + + jest-changed-files@29.7.0: + resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-circus@29.7.0: + resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-cli@26.6.3: + resolution: {integrity: sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==} + engines: {node: '>= 10.14.2'} + hasBin: true + + jest-cli@29.7.0: + resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + jest-config@26.6.3: + resolution: {integrity: sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==} + engines: {node: '>= 10.14.2'} + peerDependencies: + ts-node: '>=9.0.0' + peerDependenciesMeta: + ts-node: + optional: true + + jest-config@29.7.0: + resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + + jest-diff@26.6.2: + resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==} + engines: {node: '>= 10.14.2'} + + jest-diff@29.7.0: + resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-docblock@26.0.0: + resolution: {integrity: sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==} + engines: {node: '>= 10.14.2'} + + jest-docblock@29.7.0: + resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-each@26.6.2: + resolution: {integrity: sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==} + engines: {node: '>= 10.14.2'} + + jest-each@29.7.0: + resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-environment-jsdom-global@2.0.4: + resolution: {integrity: sha512-1vB8q+PrszXW4Pf7Zgp3eQ4oNVbA7GY6+jmrg1qi6RtYRWDJ60/xdkhjqAbQpX8BRyvqQJYQi66LXER5YNeHXg==} + peerDependencies: + jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x + + jest-environment-jsdom-global@4.0.0: + resolution: {integrity: sha512-qEV8j61oV5XhOBUQbrld2nMYKnp/AGINUaoYTtkwJ9rjvMNRN7ZaZ/dgoPpW83oFtrSiVM1gie6ajdsKFBUlLA==} + engines: {node: '>= 14'} + peerDependencies: + jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x || 27.x || 28.x || 29.x + + jest-environment-jsdom@26.6.2: + resolution: {integrity: sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==} + engines: {node: '>= 10.14.2'} + + jest-environment-jsdom@29.7.0: + resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jest-environment-node@26.6.2: + resolution: {integrity: sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==} + engines: {node: '>= 10.14.2'} + + jest-environment-node@29.7.0: + resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-get-type@26.3.0: + resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==} + engines: {node: '>= 10.14.2'} + + jest-get-type@29.6.3: + resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-haste-map@26.6.2: + resolution: {integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==} + engines: {node: '>= 10.14.2'} + + jest-haste-map@29.7.0: + resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-jasmine2@26.6.3: + resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==} + engines: {node: '>= 10.14.2'} + + jest-leak-detector@26.6.2: + resolution: {integrity: sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==} + engines: {node: '>= 10.14.2'} + + jest-leak-detector@29.7.0: + resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-matcher-utils@26.6.2: + resolution: {integrity: sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==} + engines: {node: '>= 10.14.2'} + + jest-matcher-utils@29.7.0: + resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-message-util@26.6.2: + resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==} + engines: {node: '>= 10.14.2'} + + jest-message-util@29.7.0: + resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-mock@26.6.2: + resolution: {integrity: sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==} + engines: {node: '>= 10.14.2'} + + jest-mock@29.7.0: + resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-pnp-resolver@1.2.3: + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + + jest-regex-util@26.0.0: + resolution: {integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==} + engines: {node: '>= 10.14.2'} + + jest-regex-util@29.6.3: + resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-resolve-dependencies@26.6.3: + resolution: {integrity: sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==} + engines: {node: '>= 10.14.2'} + + jest-resolve-dependencies@29.7.0: + resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-resolve@26.6.2: + resolution: {integrity: sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==} + engines: {node: '>= 10.14.2'} + + jest-resolve@29.7.0: + resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-runner@26.6.3: + resolution: {integrity: sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==} + engines: {node: '>= 10.14.2'} + + jest-runner@29.7.0: + resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-runtime@26.6.3: + resolution: {integrity: sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==} + engines: {node: '>= 10.14.2'} + hasBin: true + + jest-runtime@29.7.0: + resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-serializer@26.6.2: + resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} + engines: {node: '>= 10.14.2'} + + jest-snapshot@26.6.2: + resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==} + engines: {node: '>= 10.14.2'} + + jest-snapshot@29.7.0: + resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-util@26.6.2: + resolution: {integrity: sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==} + engines: {node: '>= 10.14.2'} + + jest-util@29.7.0: + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-validate@26.6.2: + resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==} + engines: {node: '>= 10.14.2'} + + jest-validate@29.7.0: + resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-watcher@26.6.2: + resolution: {integrity: sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==} + engines: {node: '>= 10.14.2'} + + jest-watcher@29.7.0: + resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-worker@26.6.2: + resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} + engines: {node: '>= 10.13.0'} + + jest-worker@27.5.1: + resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} + engines: {node: '>= 10.13.0'} + + jest-worker@28.1.3: + resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-worker@29.7.0: + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest@26.6.3: + resolution: {integrity: sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==} + engines: {node: '>= 10.14.2'} + hasBin: true + + jest@29.4.3: + resolution: {integrity: sha512-XvK65feuEFGZT8OO0fB/QAQS+LGHvQpaadkH5p47/j3Ocqq3xf2pK9R+G0GzgfuhXVxEv76qCOOcMb5efLk6PA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + jest@29.7.0: + resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + jju@1.4.0: + resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} + + joi@17.13.3: + resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} + + jose@4.15.7: + resolution: {integrity: sha512-L7ioP+JAuZe8v+T5+zVI9Tx8LtU8BL7NxkyDFVMv+Qr3JW0jSoYDedLtodaXwfqMpeCyx4WXFNyu9tJt4WvC1A==} + + jquery@3.7.1: + resolution: {integrity: sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==} + + js-beautify@1.15.1: + resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==} + engines: {node: '>=14'} + hasBin: true + + js-cookie@3.0.5: + resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} + engines: {node: '>=14'} + + js-levenshtein@1.1.6: + resolution: {integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==} + engines: {node: '>=0.10.0'} + + js-string-escape@1.0.1: + resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} + engines: {node: '>= 0.8'} + + js-tokens@3.0.2: + resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-yaml@3.13.1: + resolution: {integrity: sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==} + hasBin: true + + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + jsbn@0.1.1: + resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + + jsbn@1.1.0: + resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} + + jscodeshift@0.13.1: + resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==} + hasBin: true + peerDependencies: + '@babel/preset-env': ^7.1.6 + + jscodeshift@0.15.2: + resolution: {integrity: sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==} + hasBin: true + peerDependencies: + '@babel/preset-env': ^7.1.6 + peerDependenciesMeta: + '@babel/preset-env': + optional: true + + jsdom@16.7.0: + resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} + engines: {node: '>=10'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jsdom@20.0.3: + resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} + engines: {node: '>=14'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jsesc@0.5.0: + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} + hasBin: true + + jsesc@2.5.2: + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} + hasBin: true + + jshint@2.13.6: + resolution: {integrity: sha512-IVdB4G0NTTeQZrBoM8C5JFVLjV2KtZ9APgybDA1MK73xb09qFs0jCXyQLnCOp1cSZZZbvhq/6mfXHUTaDkffuQ==} + hasBin: true + + json-buffer@3.0.0: + resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-minimizer-webpack-plugin@4.0.0: + resolution: {integrity: sha512-PJaNiSeZlZStdyLtJo/QOOC7uHRW9qvc//7F8M0ZH1huPSvmX5kR2qrq2Tn1ODYLi128bTkKepqtgYmtEOkPzQ==} + engines: {node: '>= 14.15.0'} + peerDependencies: + webpack: 5.84.1 + + json-minimizer-webpack-plugin@5.0.0: + resolution: {integrity: sha512-GT/SZolN2p405EMGjMTBvAVi2+y035p1tSOuLpWbp5QTMl080OHx4DEGXfUH6vbnGw5Z/QKfBe+KpP9Dj0qLmA==} + engines: {node: '>= 18.12.0'} + peerDependencies: + webpack: 5.84.1 + + json-parse-better-errors@1.0.2: + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + + json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + + json-schema@0.4.0: + resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + json-stringify-nice@1.1.4: + resolution: {integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==} + + json-stringify-safe@5.0.1: + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + + json5@1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsonc-eslint-parser@2.4.0: + resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + jsonc-parser@3.2.0: + resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} + + jsonfile@4.0.0: + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + + jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + + jsonparse@1.3.1: + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} + + jsprim@2.0.2: + resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==} + engines: {'0': node >=0.6.0} + + jsrsasign@10.9.0: + resolution: {integrity: sha512-QWLUikj1SBJGuyGK8tjKSx3K7Y69KYJnrs/pQ1KZ6wvZIkHkWjZ1PJDpuvc1/28c1uP0KW9qn1eI1LzHQqDOwQ==} + + jsx-ast-utils@3.3.5: + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} + engines: {node: '>=4.0'} + + junk@3.1.0: + resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==} + engines: {node: '>=8'} + + just-diff-apply@5.5.0: + resolution: {integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==} + + just-diff@5.2.0: + resolution: {integrity: sha512-6ufhP9SHjb7jibNFrNxyFZ6od3g+An6Ai9mhGRvcYe8UJlH0prseN64M+6ZBBUoKYHZsitDP42gAJ8+eVWr3lw==} + + keyboard-key@1.1.0: + resolution: {integrity: sha512-qkBzPTi3rlAKvX7k0/ub44sqOfXeLc/jcnGGmj5c7BJpU8eDrEVPyhCvNYAaoubbsLm9uGWwQJO1ytQK1a9/dQ==} + + keyv@3.1.0: + resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + killable@1.0.1: + resolution: {integrity: sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==} + + kind-of@2.0.1: + resolution: {integrity: sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==} + engines: {node: '>=0.10.0'} + + kind-of@3.2.2: + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} + engines: {node: '>=0.10.0'} + + kind-of@4.0.0: + resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} + engines: {node: '>=0.10.0'} + + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + + kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} + + kleur@4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + + klona@2.0.6: + resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} + engines: {node: '>= 8'} + + language-subtag-registry@0.3.23: + resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} + + language-tags@1.0.9: + resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} + engines: {node: '>=0.10'} + + latest-version@5.1.0: + resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==} + engines: {node: '>=8'} + + launch-editor@2.8.0: + resolution: {integrity: sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==} + + lazy-ass@1.6.0: + resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==} + engines: {node: '> 0.8'} + + lazy-cache@0.2.7: + resolution: {integrity: sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==} + engines: {node: '>=0.10.0'} + + lazy-cache@1.0.4: + resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==} + engines: {node: '>=0.10.0'} + + lazy-cache@2.0.2: + resolution: {integrity: sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==} + engines: {node: '>=0.10.0'} + + lazy-universal-dotenv@3.0.1: + resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==} + engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'} + + lazy-universal-dotenv@4.0.0: + resolution: {integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==} + engines: {node: '>=14.0.0'} + + lerna@5.6.2: + resolution: {integrity: sha512-Y0yMPslvnBnTZi7Nrs/gDyYZYauNf61xWNCehISHIORxZmmpoluNkcWTfcyb47is5uJQCv5QJX5xKKubbs+a6w==} + engines: {node: ^14.15.0 || >=16.0.0} + hasBin: true + + less-loader@11.1.0: + resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==} + engines: {node: '>= 14.15.0'} + peerDependencies: + less: ^3.5.0 || ^4.0.0 + webpack: 5.84.1 + + less-loader@5.0.0: + resolution: {integrity: sha512-bquCU89mO/yWLaUq0Clk7qCsKhsF/TZpJUzETRvJa9KSVEL9SO3ovCvdEHISBhrC81OwC8QSVX7E0bzElZj9cg==} + engines: {node: '>= 4.8.0'} + peerDependencies: + less: ^2.3.1 || ^3.0.0 + webpack: 5.84.1 + + less-plugin-inline-urls@1.2.0: + resolution: {integrity: sha512-QS9MLcg8Lo6ZHVS+9kncmHeLypIdnFgG/neqV3RPkXfiiSCJHn/jTQHKnXfDEL/F/JM+z6MQ6ukWr/xsOChHTA==} + engines: {node: '>=0.4.2'} + + less-plugin-npm-import@2.1.0: + resolution: {integrity: sha512-f7pVkEooRq2/jge/M/Y+spoPXj5rRIY30q1as+3kZsDG8Rs+loNJUCVQjzXB9Ao/9FeIJULiq2zrXymv+OMTbw==} + engines: {node: '>=0.4.2'} + + less-plugin-rewrite-import@0.1.1: + resolution: {integrity: sha512-8FnuGhF0rS6P9DkaEH2+6pphx7pJ9hV4mHF2MhsXKSXNvwTVX9YCt5HnX99mhTOyQzc+2hu5JPPoRl/b9DAwuQ==} + + less-plugin-rewrite-variable@0.1.0: + resolution: {integrity: sha512-cpIa1+wHssZRt2aUnoWODfDB0z0QM8ir9ZS/18802bX9S4+6s+/HXaK92C3VznniPjviKhA3u8o4/0K9HK0nEw==} + engines: {node: '>=0.4.2'} + + less-to-json@1.2.0: + resolution: {integrity: sha512-1ItmxVFw76yiQgr2MUTGy7bTHT2tT6CcZ28grgw/gWNy2Q3WwFfSHL88sWUBpTXGFonlKd2yCDhtJFJdGjzqHA==} + hasBin: true + + less-vars-to-js@1.3.0: + resolution: {integrity: sha512-xeiLLn/IMCGtdyCkYQnW8UuzoW2oYMCKg9boZRaGI58fLz5r90bNJDlqGzmVt/1Uqk75/DxIVtQSNCMkE5fRZQ==} + engines: {node: '>=8'} + + less@3.13.1: + resolution: {integrity: sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==} + engines: {node: '>=6'} + hasBin: true + + less@4.1.3: + resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==} + engines: {node: '>=6'} + hasBin: true + + leven@3.1.0: + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} + + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + + libnpmaccess@6.0.4: + resolution: {integrity: sha512-qZ3wcfIyUoW0+qSFkMBovcTrSGJ3ZeyvpR7d5N9pEYv/kXs8sHP2wiqEIXBKLFrZlmM0kR0RJD7mtfLngtlLag==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + libnpmpublish@6.0.5: + resolution: {integrity: sha512-LUR08JKSviZiqrYTDfywvtnsnxr+tOvBU0BF8H+9frt7HMvc6Qn6F8Ubm72g5hDTHbq8qupKfDvDAln2TVPvFg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + license-webpack-plugin@4.0.2: + resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==} + peerDependencies: + webpack: '*' + peerDependenciesMeta: + webpack: + optional: true + + lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + + lilconfig@3.1.2: + resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} + engines: {node: '>=14'} + + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + lines-and-columns@2.0.4: + resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + list-item@1.1.1: + resolution: {integrity: sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==} + engines: {node: '>=0.10.0'} + + listr2@3.14.0: + resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==} + engines: {node: '>=10.0.0'} + peerDependencies: + enquirer: '>= 2.3.0 < 3' + peerDependenciesMeta: + enquirer: + optional: true + + load-json-file@1.1.0: + resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==} + engines: {node: '>=0.10.0'} + + load-json-file@4.0.0: + resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} + engines: {node: '>=4'} + + load-json-file@6.2.0: + resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==} + engines: {node: '>=8'} + + load-yaml-file@0.2.0: + resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} + engines: {node: '>=6'} + + loader-runner@2.4.0: + resolution: {integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==} + engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} + + loader-runner@4.3.0: + resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} + engines: {node: '>=6.11.5'} + + loader-utils@1.4.2: + resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} + engines: {node: '>=4.0.0'} + + loader-utils@2.0.4: + resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} + engines: {node: '>=8.9.0'} + + loader-utils@3.3.1: + resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} + engines: {node: '>= 12.13.0'} + + locate-path@2.0.0: + resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} + engines: {node: '>=4'} + + locate-path@3.0.0: + resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} + engines: {node: '>=6'} + + locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + locate-path@7.2.0: + resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + lodash-es@4.17.21: + resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} + + lodash._reinterpolate@3.0.0: + resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==} + + lodash.camelcase@4.3.0: + resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + + lodash.debounce@4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + + lodash.flattendeep@4.4.0: + resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} + + lodash.ismatch@4.4.0: + resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} + + lodash.isplainobject@4.0.6: + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + + lodash.memoize@4.1.2: + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lodash.once@4.1.1: + resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} + + lodash.startcase@4.4.0: + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + + lodash.template@4.5.0: + resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==} + + lodash.templatesettings@4.2.0: + resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==} + + lodash.truncate@4.4.2: + resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} + + lodash.uniq@4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + log-symbols@2.2.0: + resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==} + engines: {node: '>=4'} + + log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} + + log-update@4.0.0: + resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} + engines: {node: '>=10'} + + log4js@4.5.1: + resolution: {integrity: sha512-EEEgFcE9bLgaYUKuozyFfytQM2wDHtXn4tAN41pkaxpNjAykv11GVdeI4tHtmPWW4Xrgh9R/2d7XYghDVjbKKw==} + engines: {node: '>=6.0'} + deprecated: 4.x is no longer supported. Please upgrade to 6.x or higher. + + loglevel@1.9.1: + resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==} + engines: {node: '>= 0.6.0'} + + loglevelnext@1.0.5: + resolution: {integrity: sha512-V/73qkPuJmx4BcBF19xPBr+0ZRVBhc4POxvZTZdMeXpJ4NItXSJ/MSwuFT0kQJlCbXvdlZoQQ/418bS1y9Jh6A==} + engines: {node: '>= 6'} + + longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + + loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + + loud-rejection@1.6.0: + resolution: {integrity: sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==} + engines: {node: '>=0.10.0'} + + lower-case@2.0.2: + resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + + lowercase-keys@1.0.1: + resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} + engines: {node: '>=0.10.0'} + + lowercase-keys@2.0.0: + resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} + engines: {node: '>=8'} + + lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + + lru-cache@4.1.5: + resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + + lru-cache@7.18.3: + resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} + engines: {node: '>=12'} + + lz-string@1.5.0: + resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} + hasBin: true + + magic-string@0.25.9: + resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + + magic-string@0.30.10: + resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} + + make-dir@2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} + + make-dir@3.1.0: + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} + + make-dir@4.0.0: + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} + + make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + + make-fetch-happen@10.2.1: + resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + makeerror@1.0.12: + resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + + map-age-cleaner@0.1.3: + resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==} + engines: {node: '>=6'} + + map-cache@0.2.2: + resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} + engines: {node: '>=0.10.0'} + + map-obj@1.0.1: + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} + + map-obj@4.3.0: + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} + + map-or-similar@1.5.0: + resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} + + map-visit@1.0.0: + resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} + engines: {node: '>=0.10.0'} + + markdown-escapes@1.0.4: + resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==} + + markdown-link@0.1.1: + resolution: {integrity: sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==} + engines: {node: '>=0.10.0'} + + markdown-toc@1.2.0: + resolution: {integrity: sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==} + engines: {node: '>=0.10.0'} + hasBin: true + + material-colors@1.2.6: + resolution: {integrity: sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==} + + math-random@1.0.4: + resolution: {integrity: sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==} + + mdast-squeeze-paragraphs@4.0.0: + resolution: {integrity: sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==} + + mdast-util-definitions@4.0.0: + resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==} + + mdast-util-from-markdown@2.0.1: + resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==} + + mdast-util-mdx-expression@2.0.0: + resolution: {integrity: sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==} + + mdast-util-mdx-jsx@3.1.2: + resolution: {integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==} + + mdast-util-mdxjs-esm@2.0.1: + resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==} + + mdast-util-phrasing@4.1.0: + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} + + mdast-util-to-hast@10.0.1: + resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==} + + mdast-util-to-hast@13.2.0: + resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} + + mdast-util-to-markdown@2.1.0: + resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==} + + mdast-util-to-string@1.1.0: + resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==} + + mdast-util-to-string@4.0.0: + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} + + mdn-data@2.0.14: + resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + + mdn-data@2.0.28: + resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} + + mdn-data@2.0.30: + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + + mdn-data@2.0.4: + resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} + + mdurl@1.0.1: + resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} + + media-typer@0.3.0: + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} + + mem@8.1.1: + resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==} + engines: {node: '>=10'} + + memfs@3.5.3: + resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} + engines: {node: '>= 4.0.0'} + + memoize-one@5.2.1: + resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} + + memoizerific@1.11.3: + resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==} + + memory-fs@0.4.1: + resolution: {integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==} + + memory-fs@0.5.0: + resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==} + engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} + + meow@3.7.0: + resolution: {integrity: sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==} + engines: {node: '>=0.10.0'} + + meow@6.1.1: + resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} + engines: {node: '>=8'} + + meow@8.1.2: + resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} + engines: {node: '>=10'} + + merge-anything@2.4.4: + resolution: {integrity: sha512-l5XlriUDJKQT12bH+rVhAHjwIuXWdAIecGwsYjv2LJo+dA1AeRTmeQS+3QBpO6lEthBMDi2IUMpLC1yyRvGlwQ==} + + merge-deep@3.0.3: + resolution: {integrity: sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==} + engines: {node: '>=0.10.0'} + + merge-descriptors@1.0.1: + resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} + + merge-files@0.1.2: + resolution: {integrity: sha512-WTvtH6ZwVy1/scvp1M+Re6PVni87QTjpSLAwxh0L+PlYIxc4VGFFpLjvP7jdJ43gaJ5n+RUIriJ6wKqmqvVVmg==} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + merge@1.2.1: + resolution: {integrity: sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==} + + methods@1.1.2: + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} + engines: {node: '>= 0.6'} + + microevent.ts@0.1.1: + resolution: {integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==} + + micromark-core-commonmark@2.0.1: + resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==} + + micromark-factory-destination@2.0.0: + resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==} + + micromark-factory-label@2.0.0: + resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==} + + micromark-factory-space@2.0.0: + resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==} + + micromark-factory-title@2.0.0: + resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==} + + micromark-factory-whitespace@2.0.0: + resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==} + + micromark-util-character@2.1.0: + resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} + + micromark-util-chunked@2.0.0: + resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==} + + micromark-util-classify-character@2.0.0: + resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==} + + micromark-util-combine-extensions@2.0.0: + resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==} + + micromark-util-decode-numeric-character-reference@2.0.1: + resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==} + + micromark-util-decode-string@2.0.0: + resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==} + + micromark-util-encode@2.0.0: + resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==} + + micromark-util-html-tag-name@2.0.0: + resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==} + + micromark-util-normalize-identifier@2.0.0: + resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==} + + micromark-util-resolve-all@2.0.0: + resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==} + + micromark-util-sanitize-uri@2.0.0: + resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} + + micromark-util-subtokenize@2.0.1: + resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==} + + micromark-util-symbol@2.0.0: + resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==} + + micromark-util-types@2.0.0: + resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==} + + micromark@4.0.0: + resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} + + micromatch@3.1.10: + resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} + engines: {node: '>=0.10.0'} + + micromatch@4.0.7: + resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} + engines: {node: '>=8.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + + mime@2.6.0: + resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} + engines: {node: '>=4.0.0'} + hasBin: true + + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + + mimic-fn@3.1.0: + resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} + engines: {node: '>=8'} + + mimic-fn@4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + + mimic-response@1.0.1: + resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} + engines: {node: '>=4'} + + mimic-response@3.1.0: + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} + engines: {node: '>=10'} + + min-document@2.19.0: + resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==} + + min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + + mini-css-extract-plugin@0.4.5: + resolution: {integrity: sha512-dqBanNfktnp2hwL2YguV9Jh91PFX7gu7nRLs4TGsbAfAG6WOtlynFRYzwDwmmeSb5uIwHo9nx1ta0f7vAZVp2w==} + engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 + + mini-css-extract-plugin@2.4.7: + resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: 5.84.1 + + mini-svg-data-uri@1.4.4: + resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} + hasBin: true + + minimalistic-assert@1.0.1: + resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} + + minimatch@3.0.5: + resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} + + minimatch@3.0.8: + resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + engines: {node: '>=10'} + + minimatch@9.0.1: + resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} + engines: {node: '>=16 || 14 >=14.17'} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist-options@4.1.0: + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + minipass-collect@1.0.2: + resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} + engines: {node: '>= 8'} + + minipass-fetch@2.1.2: + resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + minipass-flush@1.0.5: + resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} + engines: {node: '>= 8'} + + minipass-json-stream@1.0.1: + resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==} + + minipass-pipeline@1.2.4: + resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} + engines: {node: '>=8'} + + minipass-sized@1.0.3: + resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} + engines: {node: '>=8'} + + minipass@3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} + + minipass@5.0.0: + resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} + engines: {node: '>=8'} + + minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} + + minizlib@2.1.2: + resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} + engines: {node: '>= 8'} + + mixin-deep@1.3.2: + resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} + engines: {node: '>=0.10.0'} + + mixin-object@2.0.1: + resolution: {integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==} + engines: {node: '>=0.10.0'} + + mixme@0.5.10: + resolution: {integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==} + engines: {node: '>= 8.0.0'} + + mkdirp-classic@0.5.3: + resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} + + mkdirp-infer-owner@2.0.0: + resolution: {integrity: sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==} + engines: {node: '>=10'} + + mkdirp@0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true + + mkdirp@1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true + + mlly@1.7.1: + resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==} + + modify-values@1.0.1: + resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} + engines: {node: '>=0.10.0'} + + moment@2.30.1: + resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==} + + monaco-editor@0.50.0: + resolution: {integrity: sha512-8CclLCmrRRh+sul7C08BmPBP3P8wVWfBHomsTcndxg5NRCEPfu/mc2AGU8k37ajjDVXcXFc12ORAMUkmk+lkFA==} + + mrmime@2.0.0: + resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} + engines: {node: '>=10'} + + ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + + ms@2.1.1: + resolution: {integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==} + + ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + msw@0.36.8: + resolution: {integrity: sha512-K7lOQoYqhGhTSChsmHMQbf/SDCsxh/m0uhN6Ipt206lGoe81fpTmaGD0KLh4jUxCONMOUnwCSj0jtX2CM4pEdw==} + hasBin: true + + multicast-dns-service-types@1.1.0: + resolution: {integrity: sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==} + + multicast-dns@6.2.3: + resolution: {integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==} + hasBin: true + + multicast-dns@7.2.5: + resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} + hasBin: true + + multimatch@5.0.0: + resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} + engines: {node: '>=10'} + + multistream@2.1.1: + resolution: {integrity: sha512-xasv76hl6nr1dEy3lPvy7Ej7K/Lx3O/FCvwge8PeVJpciPPoNCbaANcNiBug3IpdvTveZUcAV0DJzdnUDMesNQ==} + + mustache@4.2.0: + resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} + hasBin: true + + mute-stream@0.0.8: + resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + + nan@2.20.0: + resolution: {integrity: sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==} + + nanoid@3.3.7: + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + nanomatch@1.2.13: + resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} + engines: {node: '>=0.10.0'} + + native-request@1.1.0: + resolution: {integrity: sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==} + + native-url@0.2.6: + resolution: {integrity: sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==} + + natural-compare-lite@1.4.0: + resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + needle@3.3.1: + resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==} + engines: {node: '>= 4.4.x'} + hasBin: true + + negotiator@0.6.3: + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} + + neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + + nested-error-stacks@2.1.1: + resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==} + + next-tick@1.1.0: + resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} + + nice-try@1.0.5: + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + + no-case@3.0.4: + resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + + node-abort-controller@3.1.1: + resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} + + node-addon-api@3.2.1: + resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} + + node-dir@0.1.17: + resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} + engines: {node: '>= 0.10.5'} + + node-fetch-native@1.6.4: + resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==} + + node-fetch@2.7.0: + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + + node-forge@0.10.0: + resolution: {integrity: sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==} + engines: {node: '>= 6.0.0'} + + node-forge@1.3.1: + resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} + engines: {node: '>= 6.13.0'} + + node-gyp-build@4.8.1: + resolution: {integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==} + hasBin: true + + node-gyp@9.4.1: + resolution: {integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==} + engines: {node: ^12.13 || ^14.13 || >=16} + hasBin: true + + node-int64@0.4.0: + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + + node-machine-id@1.1.12: + resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} + + node-notifier@8.0.2: + resolution: {integrity: sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==} + + node-preload@0.2.1: + resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} + engines: {node: '>=8'} + + node-releases@2.0.14: + resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + + nopt@5.0.0: + resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} + engines: {node: '>=6'} + hasBin: true + + nopt@6.0.0: + resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true + + nopt@7.2.1: + resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true + + normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + + normalize-package-data@3.0.3: + resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} + engines: {node: '>=10'} + + normalize-package-data@4.0.1: + resolution: {integrity: sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + normalize-path@2.1.1: + resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} + engines: {node: '>=0.10.0'} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + normalize-range@0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} + + normalize-url@4.5.1: + resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} + engines: {node: '>=8'} + + normalize-url@6.1.0: + resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} + engines: {node: '>=10'} + + npm-bundled@1.1.2: + resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==} + + npm-bundled@2.0.1: + resolution: {integrity: sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + npm-install-checks@5.0.0: + resolution: {integrity: sha512-65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + npm-normalize-package-bin@1.0.1: + resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} + + npm-normalize-package-bin@2.0.0: + resolution: {integrity: sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + npm-package-arg@11.0.1: + resolution: {integrity: sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==} + engines: {node: ^16.14.0 || >=18.0.0} + + npm-package-arg@8.1.1: + resolution: {integrity: sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==} + engines: {node: '>=10'} + + npm-package-arg@9.1.2: + resolution: {integrity: sha512-pzd9rLEx4TfNJkovvlBSLGhq31gGu2QDexFPWT19yCDh0JgnRhlBLNo5759N0AJmBk+kQ9Y/hXoLnlgFD+ukmg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + npm-packlist@5.1.3: + resolution: {integrity: sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true + + npm-pick-manifest@7.0.2: + resolution: {integrity: sha512-gk37SyRmlIjvTfcYl6RzDbSmS9Y4TOBXfsPnoYqTHARNgWbyDiCSMLUpmALDj4jjcTZpURiEfsSHJj9k7EV4Rw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + npm-registry-fetch@13.3.1: + resolution: {integrity: sha512-eukJPi++DKRTjSBRcDZSDDsGqRK3ehbxfFUcgaRd0Yp6kRwOwh2WVn0r+8rMB4nnuzvAk6rQVzl6K5CkYOmnvw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + npm-run-path@2.0.2: + resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} + engines: {node: '>=4'} + + npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + + npm-run-path@5.3.0: + resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + npmlog@5.0.1: + resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} + deprecated: This package is no longer supported. + + npmlog@6.0.2: + resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. + + nth-check@1.0.2: + resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} + + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + + num2fraction@1.2.2: + resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==} + + nwsapi@2.2.12: + resolution: {integrity: sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==} + + nx@15.9.3: + resolution: {integrity: sha512-GLwbykfTABc7/UZjQEEnV1bQbTVC53W+Zj4xWY640/45I4iZf/TUqKMBCgtLZ9v89gEsKOM4zsx55CqHT3bekA==} + hasBin: true + peerDependencies: + '@swc-node/register': ^1.4.2 + '@swc/core': ^1.2.173 + peerDependenciesMeta: + '@swc-node/register': + optional: true + '@swc/core': + optional: true + + nx@17.0.0: + resolution: {integrity: sha512-FLRcKQyrwauwyeb/biBctKFAOkjjnfXQ2hE7uNuitDxWEdD7mejrrsZYOr++KUyjkbxmq/t3TtBQiZXHosShaA==} + hasBin: true + peerDependencies: + '@swc-node/register': ^1.6.7 + '@swc/core': ^1.3.85 + peerDependenciesMeta: + '@swc-node/register': + optional: true + '@swc/core': + optional: true + + nyc@15.1.0: + resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} + engines: {node: '>=8.9'} + hasBin: true + + nypm@0.3.9: + resolution: {integrity: sha512-BI2SdqqTHg2d4wJh8P9A1W+bslg33vOE9IZDY6eR2QC+Pu1iNBVZUqczrd43rJb+fMzHU7ltAYKsEFY/kHMFcw==} + engines: {node: ^14.16.0 || >=16.10.0} + hasBin: true + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-copy@0.1.0: + resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} + engines: {node: '>=0.10.0'} + + object-inspect@1.13.2: + resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} + engines: {node: '>= 0.4'} + + object-is@1.1.6: + resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} + engines: {node: '>= 0.4'} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object-visit@1.0.1: + resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} + engines: {node: '>=0.10.0'} + + object.assign@4.1.5: + resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} + engines: {node: '>= 0.4'} + + object.entries@1.1.8: + resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} + engines: {node: '>= 0.4'} + + object.fromentries@2.0.8: + resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} + engines: {node: '>= 0.4'} + + object.getownpropertydescriptors@2.1.8: + resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==} + engines: {node: '>= 0.8'} + + object.groupby@1.0.3: + resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} + engines: {node: '>= 0.4'} + + object.hasown@1.1.4: + resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} + engines: {node: '>= 0.4'} + + object.pick@1.3.0: + resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} + engines: {node: '>=0.10.0'} + + object.values@1.2.0: + resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} + engines: {node: '>= 0.4'} + + objectorarray@1.0.5: + resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==} + + obuf@1.1.2: + resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} + + ohash@1.1.3: + resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} + + on-finished@2.4.1: + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + engines: {node: '>= 0.8'} + + on-headers@1.0.2: + resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} + engines: {node: '>= 0.8'} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + onetime@6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} + + open@7.4.2: + resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} + engines: {node: '>=8'} + + open@8.4.2: + resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} + engines: {node: '>=12'} + + opener@1.5.2: + resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} + hasBin: true + + opn@5.5.0: + resolution: {integrity: sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==} + engines: {node: '>=4'} + + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + + ora@5.3.0: + resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==} + engines: {node: '>=10'} + + ora@5.4.1: + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} + engines: {node: '>=10'} + + os-filter-obj@2.0.0: + resolution: {integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==} + engines: {node: '>=4'} + + os-homedir@1.0.2: + resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} + engines: {node: '>=0.10.0'} + + os-tmpdir@1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} + + ospath@1.2.2: + resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==} + + outdent@0.5.0: + resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} + + outvariant@1.4.2: + resolution: {integrity: sha512-Ou3dJ6bA/UJ5GVHxah4LnqDwZRwAmWxrG3wtrHrbGnP4RnLCtA64A4F+ae7Y8ww660JaddSoArUR5HjipWSHAQ==} + + p-all@2.1.0: + resolution: {integrity: sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==} + engines: {node: '>=6'} + + p-cancelable@1.1.0: + resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} + engines: {node: '>=6'} + + p-cancelable@2.1.1: + resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} + engines: {node: '>=8'} + + p-defer@1.0.0: + resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} + engines: {node: '>=4'} + + p-each-series@2.2.0: + resolution: {integrity: sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==} + engines: {node: '>=8'} + + p-event@4.2.0: + resolution: {integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==} + engines: {node: '>=8'} + + p-filter@2.1.0: + resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} + engines: {node: '>=8'} + + p-finally@1.0.0: + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} + + p-limit@1.3.0: + resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} + engines: {node: '>=4'} + + p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-limit@4.0.0: + resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + p-locate@2.0.0: + resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} + engines: {node: '>=4'} + + p-locate@3.0.0: + resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} + engines: {node: '>=6'} + + p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + p-locate@6.0.0: + resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + p-map-series@2.1.0: + resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==} + engines: {node: '>=8'} + + p-map@2.1.0: + resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} + engines: {node: '>=6'} + + p-map@3.0.0: + resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} + engines: {node: '>=8'} + + p-map@4.0.0: + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} + engines: {node: '>=10'} + + p-pipe@3.1.0: + resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==} + engines: {node: '>=8'} + + p-queue@6.6.2: + resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} + engines: {node: '>=8'} + + p-reduce@2.1.0: + resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} + engines: {node: '>=8'} + + p-retry@3.0.1: + resolution: {integrity: sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==} + engines: {node: '>=6'} + + p-retry@4.6.2: + resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} + engines: {node: '>=8'} + + p-timeout@3.2.0: + resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} + engines: {node: '>=8'} + + p-try@1.0.0: + resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} + engines: {node: '>=4'} + + p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + + p-waterfall@2.1.1: + resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==} + engines: {node: '>=8'} + + package-hash@4.0.0: + resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} + engines: {node: '>=8'} + + package-json-from-dist@1.0.0: + resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} + + package-json@6.5.0: + resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} + engines: {node: '>=8'} + + pacote@13.6.2: + resolution: {integrity: sha512-Gu8fU3GsvOPkak2CkbojR7vjs3k3P9cA6uazKTHdsdV0gpCEQq2opelnEv30KRQWgVzP5Vd/5umjcedma3MKtg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true + + pako@0.2.9: + resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} + + param-case@3.0.4: + resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-conflict-json@2.0.2: + resolution: {integrity: sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + parse-entities@2.0.0: + resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} + + parse-entities@4.0.1: + resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} + + parse-json@2.2.0: + resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==} + engines: {node: '>=0.10.0'} + + parse-json@4.0.0: + resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} + engines: {node: '>=4'} + + parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + + parse-node-version@1.0.1: + resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} + engines: {node: '>= 0.10'} + + parse-path@7.0.0: + resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} + + parse-url@8.1.0: + resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} + + parse5@4.0.0: + resolution: {integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==} + + parse5@6.0.1: + resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} + + parse5@7.1.2: + resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + + parseurl@1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} + + pascal-case@3.1.2: + resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} + + pascalcase@0.1.1: + resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} + engines: {node: '>=0.10.0'} + + path-browserify@1.0.1: + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + + path-dirname@1.0.2: + resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==} + + path-exists@2.1.0: + resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==} + engines: {node: '>=0.10.0'} + + path-exists@3.0.0: + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-exists@5.0.0: + resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-is-inside@1.0.2: + resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==} + + path-key@2.0.1: + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-key@4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + + path-to-regexp@0.1.7: + resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} + + path-to-regexp@1.8.0: + resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==} + + path-to-regexp@6.2.2: + resolution: {integrity: sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==} + + path-type@1.1.0: + resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==} + engines: {node: '>=0.10.0'} + + path-type@3.0.0: + resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} + engines: {node: '>=4'} + + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + path-type@5.0.0: + resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} + engines: {node: '>=12'} + + path@0.12.7: + resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} + + pathe@1.1.2: + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} + + peek-readable@5.1.1: + resolution: {integrity: sha512-4hEOSH7KeEaZpMDF/xfm1W9fS5rT7Ett3BkXWHqAEzRLLwLaHkwOL+GvvpIEh9UrvX9BDhzfkvteslgraoH69w==} + engines: {node: '>=14.16'} + + peek-stream@1.1.3: + resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==} + + pend@1.2.0: + resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + + performance-now@2.1.0: + resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + + picocolors@0.2.1: + resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==} + + picocolors@1.0.1: + resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + + pify@3.0.0: + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} + + pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + + pify@5.0.0: + resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} + engines: {node: '>=10'} + + pinkie-promise@2.0.1: + resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==} + engines: {node: '>=0.10.0'} + + pinkie@2.0.4: + resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==} + engines: {node: '>=0.10.0'} + + pirates@4.0.6: + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + engines: {node: '>= 6'} + + pkg-dir@3.0.0: + resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} + engines: {node: '>=6'} + + pkg-dir@4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} + + pkg-dir@5.0.0: + resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} + engines: {node: '>=10'} + + pkg-dir@7.0.0: + resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==} + engines: {node: '>=14.16'} + + pkg-types@1.1.3: + resolution: {integrity: sha512-+JrgthZG6m3ckicaOB74TwQ+tBWsFl3qVQg7mN8ulwSOElJ7gBhKzj2VkCPnZ4NlF6kEquYU+RIYNVAvzd54UA==} + + pnp-webpack-plugin@1.6.4: + resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} + engines: {node: '>=6'} + + polished@4.3.1: + resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==} + engines: {node: '>=10'} + + popper.js@1.16.1: + resolution: {integrity: sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==} + deprecated: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1 + + portfinder@1.0.32: + resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} + engines: {node: '>= 0.12.0'} + + posix-character-classes@0.1.1: + resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} + engines: {node: '>=0.10.0'} + + possible-typed-array-names@1.0.0: + resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} + engines: {node: '>= 0.4'} + + postcss-calc@8.2.4: + resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} + peerDependencies: + postcss: ^8.2.2 + + postcss-calc@9.0.1: + resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.2.2 + + postcss-colormin@5.3.1: + resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-colormin@6.1.0: + resolution: {integrity: sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-convert-values@5.1.3: + resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-convert-values@6.1.0: + resolution: {integrity: sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-discard-comments@5.1.2: + resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-comments@6.0.2: + resolution: {integrity: sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-discard-duplicates@5.1.0: + resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-duplicates@6.0.3: + resolution: {integrity: sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-discard-empty@5.1.1: + resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-empty@6.0.3: + resolution: {integrity: sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-discard-overridden@5.1.0: + resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-overridden@6.0.2: + resolution: {integrity: sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-flexbugs-fixes@4.2.1: + resolution: {integrity: sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==} + + postcss-import-ext-glob@2.1.1: + resolution: {integrity: sha512-qd4ELOx2G0hyjgtmLnf/fSVJXXPhkcxcxhLT1y1mAnk53JYbMLoGg+AFtnJowOSvnv4CvjPAzpLpAcfWeofP5g==} + peerDependencies: + postcss: ^8.2.0 + + postcss-import@14.1.0: + resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} + engines: {node: '>=10.0.0'} + peerDependencies: + postcss: ^8.0.0 + + postcss-load-config@2.1.2: + resolution: {integrity: sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==} + engines: {node: '>= 4'} + + postcss-load-config@3.1.4: + resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} + engines: {node: '>= 10'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + + postcss-loader@3.0.0: + resolution: {integrity: sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==} + engines: {node: '>= 6'} + + postcss-loader@4.3.0: + resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} + engines: {node: '>= 10.13.0'} + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: 5.84.1 + + postcss-loader@6.2.1: + resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} + engines: {node: '>= 12.13.0'} + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: 5.84.1 + + postcss-merge-longhand@5.1.7: + resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-merge-longhand@6.0.5: + resolution: {integrity: sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-merge-rules@5.1.4: + resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-merge-rules@6.1.1: + resolution: {integrity: sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-minify-font-values@5.1.0: + resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-font-values@6.1.0: + resolution: {integrity: sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-minify-gradients@5.1.1: + resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-gradients@6.0.3: + resolution: {integrity: sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-minify-params@5.1.4: + resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-params@6.1.0: + resolution: {integrity: sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-minify-selectors@5.2.1: + resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-selectors@6.0.4: + resolution: {integrity: sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-modules-extract-imports@1.2.1: + resolution: {integrity: sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==} + + postcss-modules-extract-imports@2.0.0: + resolution: {integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==} + engines: {node: '>= 6'} + + postcss-modules-extract-imports@3.1.0: + resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-local-by-default@1.2.0: + resolution: {integrity: sha512-X4cquUPIaAd86raVrBwO8fwRfkIdbwFu7CTfEOjiZQHVQwlHRSkTgH5NLDmMm5+1hQO8u6dZ+TOOJDbay1hYpA==} + + postcss-modules-local-by-default@3.0.3: + resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==} + engines: {node: '>= 6'} + + postcss-modules-local-by-default@4.0.5: + resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-scope@1.1.0: + resolution: {integrity: sha512-LTYwnA4C1He1BKZXIx1CYiHixdSe9LWYVKadq9lK5aCCMkoOkFyZ7aigt+srfjlRplJY3gIol6KUNefdMQJdlw==} + + postcss-modules-scope@2.2.0: + resolution: {integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==} + engines: {node: '>= 6'} + + postcss-modules-scope@3.2.0: + resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-values@1.3.0: + resolution: {integrity: sha512-i7IFaR9hlQ6/0UgFuqM6YWaCfA1Ej8WMg8A5DggnH1UGKJvTV/ugqq/KaULixzzOi3T/tF6ClBXcHGCzdd5unA==} + + postcss-modules-values@3.0.0: + resolution: {integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==} + + postcss-modules-values@4.0.0: + resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules@4.3.1: + resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==} + peerDependencies: + postcss: ^8.0.0 + + postcss-normalize-charset@5.1.0: + resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-charset@6.0.2: + resolution: {integrity: sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-normalize-display-values@5.1.0: + resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-display-values@6.0.2: + resolution: {integrity: sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-normalize-positions@5.1.1: + resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-positions@6.0.2: + resolution: {integrity: sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-normalize-repeat-style@5.1.1: + resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-repeat-style@6.0.2: + resolution: {integrity: sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-normalize-string@5.1.0: + resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-string@6.0.2: + resolution: {integrity: sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-normalize-timing-functions@5.1.0: + resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-timing-functions@6.0.2: + resolution: {integrity: sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-normalize-unicode@5.1.1: + resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-unicode@6.1.0: + resolution: {integrity: sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-normalize-url@5.1.0: + resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-url@6.0.2: + resolution: {integrity: sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-normalize-whitespace@5.1.1: + resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-whitespace@6.0.2: + resolution: {integrity: sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-ordered-values@5.1.3: + resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-ordered-values@6.0.2: + resolution: {integrity: sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-reduce-initial@5.1.2: + resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-reduce-initial@6.1.0: + resolution: {integrity: sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-reduce-transforms@5.1.0: + resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-reduce-transforms@6.0.2: + resolution: {integrity: sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-selector-parser@6.1.0: + resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==} + engines: {node: '>=4'} + + postcss-svgo@5.1.0: + resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-svgo@6.0.3: + resolution: {integrity: sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==} + engines: {node: ^14 || ^16 || >= 18} + peerDependencies: + postcss: ^8.4.31 + + postcss-unique-selectors@5.1.1: + resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-unique-selectors@6.0.4: + resolution: {integrity: sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + postcss-value-parser@3.3.1: + resolution: {integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==} + + postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + + postcss@6.0.23: + resolution: {integrity: sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==} + engines: {node: '>=4.0.0'} + + postcss@7.0.39: + resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==} + engines: {node: '>=6.0.0'} + + postcss@8.4.39: + resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==} + engines: {node: ^10 || ^12 || >=14} + + preferred-pm@3.1.4: + resolution: {integrity: sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==} + engines: {node: '>=10'} + + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + + prepend-http@2.0.0: + resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} + engines: {node: '>=4'} + + prettier@1.19.1: + resolution: {integrity: sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==} + engines: {node: '>=4'} + hasBin: true + + prettier@2.3.0: + resolution: {integrity: sha512-kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w==} + engines: {node: '>=10.13.0'} + hasBin: true + + prettier@2.8.8: + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} + engines: {node: '>=10.13.0'} + hasBin: true + + pretty-bytes@5.6.0: + resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} + engines: {node: '>=6'} + + pretty-error@2.1.2: + resolution: {integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==} + + pretty-error@4.0.0: + resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} + + pretty-format@26.6.2: + resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} + engines: {node: '>= 10'} + + pretty-format@27.5.1: + resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + pretty-format@29.7.0: + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + pretty-hrtime@1.0.3: + resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} + engines: {node: '>= 0.8'} + + private@0.1.8: + resolution: {integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==} + engines: {node: '>= 0.6'} + + proc-log@2.0.1: + resolution: {integrity: sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + proc-log@3.0.0: + resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + process-on-spawn@1.0.0: + resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==} + engines: {node: '>=8'} + + process@0.11.10: + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} + engines: {node: '>= 0.6.0'} + + progress@2.0.3: + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + engines: {node: '>=0.4.0'} + + promise-all-reject-late@1.0.1: + resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==} + + promise-call-limit@1.0.2: + resolution: {integrity: sha512-1vTUnfI2hzui8AEIixbdAJlFY4LFDXqQswy/2eOlThAscXCY4It8FdVuI0fMJGAB2aWGbdQf/gv0skKYXmdrHA==} + + promise-inflight@1.0.1: + resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} + peerDependencies: + bluebird: '*' + peerDependenciesMeta: + bluebird: + optional: true + + promise-retry@2.0.1: + resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} + engines: {node: '>=10'} + + promise.allsettled@1.0.7: + resolution: {integrity: sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==} + engines: {node: '>= 0.4'} + + promise.prototype.finally@3.1.8: + resolution: {integrity: sha512-aVDtsXOml9iuMJzUco9J1je/UrIT3oMYfWkCTiUhkt+AvZw72q4dUZnR/R/eB3h5GeAagQVXvM1ApoYniJiwoA==} + engines: {node: '>= 0.4'} + + promise.series@0.2.0: + resolution: {integrity: sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==} + engines: {node: '>=0.12'} + + promise@7.0.4: + resolution: {integrity: sha512-8z1gTSL9cMgqCx8zvMYhzT0eQURAQNSQqR8B2hGfCYkAzt1vjReVdKBv4YwGw3OXAPaxfm4aR0gLoBUon4VmmA==} + + promise@8.3.0: + resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} + + prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} + + promzard@0.3.0: + resolution: {integrity: sha512-JZeYqd7UAcHCwI+sTOeUDYkvEU+1bQ7iE0UT1MgB/tERkAPkesW46MrpIySzODi+owTjZtiF8Ay5j9m60KmMBw==} + + prop-types@15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + + property-information@5.6.0: + resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} + + property-information@6.5.0: + resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} + + proto-list@1.2.4: + resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} + + protocols@2.0.1: + resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} + + proxy-addr@2.0.7: + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + engines: {node: '>= 0.10'} + + proxy-from-env@1.0.0: + resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==} + + proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + + prr@1.0.1: + resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} + + pseudomap@1.0.2: + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} + + psl@1.9.0: + resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + + pump@2.0.1: + resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} + + pump@3.0.0: + resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + + pumpify@1.5.1: + resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} + + punycode@1.4.1: + resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + pupa@2.1.1: + resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==} + engines: {node: '>=8'} + + puppeteer-core@2.1.1: + resolution: {integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==} + engines: {node: '>=8.16.0'} + + pure-rand@6.1.0: + resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} + + q@1.5.1: + resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} + engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + deprecated: |- + You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. + + (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) + + qr.js@0.0.0: + resolution: {integrity: sha512-c4iYnWb+k2E+vYpRimHqSu575b1/wKl4XFeJGpFmrJQz5I88v9aY2czh7s0w36srfCM1sXgC/xpoJz5dJfq+OQ==} + + qrcode.react@1.0.1: + resolution: {integrity: sha512-8d3Tackk8IRLXTo67Y+c1rpaiXjoz/Dd2HpcMdW//62/x8J1Nbho14Kh8x974t9prsLHN6XqVgcnRiBGFptQmg==} + peerDependencies: + react: ^15.5.3 || ^16.0.0 || ^17.0.0 + + qs@6.10.4: + resolution: {integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==} + engines: {node: '>=0.6'} + + qs@6.11.0: + resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} + engines: {node: '>=0.6'} + + qs@6.12.3: + resolution: {integrity: sha512-AWJm14H1vVaO/iNZ4/hO+HyaTehuy9nRqVdkTqlJt0HWvBiBIEXFmb4C0DGeYo3Xes9rrEW+TxHsaigCbN5ICQ==} + engines: {node: '>=0.6'} + + query-string@7.1.3: + resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} + engines: {node: '>=6'} + + querystring@0.2.1: + resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} + engines: {node: '>=0.4.x'} + deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. + + querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + quick-lru@4.0.1: + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} + + quick-lru@5.1.1: + resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} + engines: {node: '>=10'} + + raf@3.4.1: + resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} + + ramda@0.28.0: + resolution: {integrity: sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA==} + + ramda@0.29.0: + resolution: {integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==} + + randomatic@3.1.1: + resolution: {integrity: sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==} + engines: {node: '>= 0.10.0'} + + randombytes@2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + + range-parser@1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} + + raw-body@2.5.2: + resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} + engines: {node: '>= 0.8'} + + raw-loader@4.0.2: + resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 + + rc-motion@2.9.2: + resolution: {integrity: sha512-fUAhHKLDdkAXIDLH0GYwof3raS58dtNUmzLF2MeiR8o6n4thNpSDQhOqQzWE4WfFZDCi9VEN8n7tiB7czREcyw==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + + rc-resize-observer@1.4.0: + resolution: {integrity: sha512-PnMVyRid9JLxFavTjeDXEXo65HCRqbmLBw9xX9gfC4BZiSzbLXKzW3jPz+J0P71pLbD5tBMTT+mkstV5gD0c9Q==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + + rc-tree@4.2.2: + resolution: {integrity: sha512-V1hkJt092VrOVjNyfj5IYbZKRMHxWihZarvA5hPL/eqm7o2+0SNkeidFYm7LVVBrAKBpOpa0l8xt04uiqOd+6w==} + engines: {node: '>=10.x'} + peerDependencies: + react: '*' + react-dom: '*' + + rc-util@5.43.0: + resolution: {integrity: sha512-AzC7KKOXFqAdIBqdGWepL9Xn7cm3vnAmjlHqUnoQaTMZYhM4VlXGLkkHHxj/BZ7Td0+SOPKB4RGPboBVKT9htw==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + + rc-virtual-list@3.14.3: + resolution: {integrity: sha512-6+6wiEhdqakNBnbRJymgMlh+90qpkgqherTRo1l1cX7mK6F9hWsazPczmP0lA+64yhC9/t+M9Dh5pjvDWimn8A==} + engines: {node: '>=8.x'} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + + rc@1.2.8: + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + hasBin: true + + react-app-polyfill@1.0.6: + resolution: {integrity: sha512-OfBnObtnGgLGfweORmdZbyEz+3dgVePQBb3zipiaDsMHV1NpWm0rDFYIVXFV/AK+x4VIIfWHhrdMIeoTLyRr2g==} + engines: {node: '>=6'} + + react-codemirror2@6.0.1: + resolution: {integrity: sha512-rutEKVgvFhWcy/GeVA1hFbqrO89qLqgqdhUr7YhYgIzdyICdlRQv+ztuNvOFQMXrO0fLt0VkaYOdMdYdQgsSUA==} + peerDependencies: + codemirror: 5.x + react: '>=15.5 <=16.x' + + react-color@2.19.3: + resolution: {integrity: sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==} + peerDependencies: + react: '*' + + react-docgen-typescript-loader@3.7.2: + resolution: {integrity: sha512-fNzUayyUGzSyoOl7E89VaPKJk9dpvdSgyXg81cUkwy0u+NBvkzQG3FC5WBIlXda0k/iaxS+PWi+OC+tUiGxzPA==} + peerDependencies: + typescript: '*' + + react-docgen-typescript@1.22.0: + resolution: {integrity: sha512-MPLbF8vzRwAG3GcjdL+OHQlhgtWsLTXs+7uJiHfEeT3Ur7IsZaNYqRTLQ9sj2nB6M6jylcPCeCmH7qbszJmecg==} + peerDependencies: + typescript: '>= 3.x' + + react-docgen-typescript@2.2.2: + resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} + peerDependencies: + typescript: '>= 4.3.x' + + react-docgen@5.4.3: + resolution: {integrity: sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA==} + engines: {node: '>=8.10.0'} + hasBin: true + + react-docgen@7.0.3: + resolution: {integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==} + engines: {node: '>=16.14.0'} + + react-dom@18.3.1: + resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + peerDependencies: + react: ^18.3.1 + + react-draggable@4.4.6: + resolution: {integrity: sha512-LtY5Xw1zTPqHkVmtM3X8MUOxNDOUhv/khTgBgrUvwaS064bwVvxT+q5El0uUFNx5IEPKXuRejr7UqLwBIg5pdw==} + peerDependencies: + react: '>= 16.3.0' + react-dom: '>= 16.3.0' + + react-element-to-jsx-string@14.3.4: + resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} + peerDependencies: + react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 + react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 + + react-element-to-jsx-string@15.0.0: + resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==} + peerDependencies: + react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 + react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 + + react-fast-compare@2.0.4: + resolution: {integrity: sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==} + + react-fast-compare@3.2.2: + resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} + + react-final-form@6.5.9: + resolution: {integrity: sha512-x3XYvozolECp3nIjly+4QqxdjSSWfcnpGEL5K8OBT6xmGrq5kBqbA6+/tOqoom9NwqIPPbxPNsOViFlbKgowbA==} + peerDependencies: + final-form: ^4.20.4 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + react-floater@0.7.9: + resolution: {integrity: sha512-NXqyp9o8FAXOATOEo0ZpyaQ2KPb4cmPMXGWkx377QtJkIXHlHRAGer7ai0r0C1kG5gf+KJ6Gy+gdNIiosvSicg==} + peerDependencies: + react: 15 - 18 + react-dom: 15 - 18 + + react-head@3.4.2: + resolution: {integrity: sha512-mnl6u7E0SSzY9w+mExKGVz8vW/oObUTnj+vpRaZF6jcdjFcCGs0vl8MRwlRws56dye3f1CpzU7C/hz3b3S2BBA==} + peerDependencies: + react: '>=16.3' + react-dom: '>=16.3' + + react-helmet@5.2.1: + resolution: {integrity: sha512-CnwD822LU8NDBnjCpZ4ySh8L6HYyngViTZLfBBb3NjtrpN8m49clH8hidHouq20I51Y6TpCTISCBbqiY5GamwA==} + peerDependencies: + react: '>=15.0.0' + + react-hot-loader@4.13.1: + resolution: {integrity: sha512-ZlqCfVRqDJmMXTulUGic4lN7Ic1SXgHAFw7y/Jb7t25GBgTR0fYAJ8uY4mrpxjRyWGWmqw77qJQGnYbzCvBU7g==} + engines: {node: '>= 6'} + peerDependencies: + '@types/react': 18.0.18 + react: ^15.0.0 || ^16.0.0 || ^17.0.0 + react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + react-i18next@11.18.6: + resolution: {integrity: sha512-yHb2F9BiT0lqoQDt8loZ5gWP331GwctHz9tYQ8A2EIEUu+CcEdjBLQWli1USG3RdWQt3W+jqQLg/d4rrQR96LA==} + peerDependencies: + i18next: '>= 19.0.0' + react: '>= 16.8.0' + react-dom: '*' + react-native: '*' + peerDependenciesMeta: + react-dom: + optional: true + react-native: + optional: true + + react-innertext@1.1.5: + resolution: {integrity: sha512-PWAqdqhxhHIv80dT9znP2KvS+hfkbRovFp4zFYHFFlOoQLRiawIic81gKb3U1wEyJZgMwgs3JoLtwryASRWP3Q==} + peerDependencies: + '@types/react': 18.0.18 + react: '>=0.0.0 <=99' + + react-inspector@5.1.1: + resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==} + peerDependencies: + react: ^16.8.4 || ^17.0.0 + + react-is@16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + + react-is@17.0.2: + resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + + react-is@18.1.0: + resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==} + + react-is@18.3.1: + resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} + + react-joyride@2.8.2: + resolution: {integrity: sha512-2QY8HB1G0I2OT0PKMUz7gg2HAjdkG2Bqi13r0Bb1V16PAwfb9khn4wWBTOJsGsjulbAWiQ3/0YrgNUHGFmuifw==} + peerDependencies: + react: 15 - 18 + react-dom: 15 - 18 + + react-lifecycles-compat@3.0.4: + resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} + + react-markdown@9.0.1: + resolution: {integrity: sha512-186Gw/vF1uRkydbsOIkcGXw7aHq0sZOCRFFjGrr7b9+nVZg4UfA4enXCaxm4fUzecU38sWfrNDitGhshuU7rdg==} + peerDependencies: + '@types/react': 18.0.18 + react: '>=18' + + react-notification-system@0.4.0: + resolution: {integrity: sha512-5WhXnjkYC07zqXruCiUXDU9iHjVxZlL1zgHpNgXk91A5ghV1AHrWVrJYo1XM4SnwlKy5NLdftkaTl+pTuVFAqw==} + peerDependencies: + react: "0.14.x || ^15.0.0 ||\_^16.0.0" + react-dom: 0.14.x || ^15.0.0 || ^16.0.0 + + react-popper@2.3.0: + resolution: {integrity: sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==} + peerDependencies: + '@popperjs/core': ^2.0.0 + react: ^16.8.0 || ^17 || ^18 + react-dom: ^16.8.0 || ^17 || ^18 + + react-property@2.0.0: + resolution: {integrity: sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw==} + + react-redux@7.2.9: + resolution: {integrity: sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==} + peerDependencies: + react: ^16.8.3 || ^17 || ^18 + react-dom: '*' + react-native: '*' + peerDependenciesMeta: + react-dom: + optional: true + react-native: + optional: true + + react-refresh@0.10.0: + resolution: {integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==} + engines: {node: '>=0.10.0'} + + react-refresh@0.11.0: + resolution: {integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==} + engines: {node: '>=0.10.0'} + + react-refresh@0.14.2: + resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} + engines: {node: '>=0.10.0'} + + react-refresh@0.9.0: + resolution: {integrity: sha512-Gvzk7OZpiqKSkxsQvO/mbTN1poglhmAV7gR/DdIrRrSMXraRQQlfikRJOr3Nb9GTMPC5kof948Zy6jJZIFtDvQ==} + engines: {node: '>=0.10.0'} + + react-router-dom@4.3.1: + resolution: {integrity: sha512-c/MlywfxDdCp7EnB7YfPMOfMD3tOtIjrQlj/CKfNMBxdmpJP8xcz5P/UAFn3JbnQCNUxsHyVVqllF9LhgVyFCA==} + peerDependencies: + react: '>=15' + + react-router-dom@6.24.1: + resolution: {integrity: sha512-U19KtXqooqw967Vw0Qcn5cOvrX5Ejo9ORmOtJMzYWtCT4/WOfFLIZGGsVLxcd9UkBO0mSTZtXqhZBsWlHr7+Sg==} + engines: {node: '>=14.0.0'} + peerDependencies: + react: '>=16.8' + react-dom: '>=16.8' + + react-router@4.3.1: + resolution: {integrity: sha512-yrvL8AogDh2X42Dt9iknk4wF4V8bWREPirFfS9gLU1huk6qK41sg7Z/1S81jjTrGHxa3B8R3J6xIkDAA6CVarg==} + peerDependencies: + react: '>=15' + + react-router@6.24.1: + resolution: {integrity: sha512-PTXFXGK2pyXpHzVo3rR9H7ip4lSPZZc0bHG5CARmj65fTT6qG7sTngmb6lcYu1gf3y/8KxORoy9yn59pGpCnpg==} + engines: {node: '>=14.0.0'} + peerDependencies: + react: '>=16.8' + + react-side-effect@1.2.0: + resolution: {integrity: sha512-v1ht1aHg5k/thv56DRcjw+WtojuuDHFUgGfc+bFHOWsF4ZK6C2V57DO0Or0GPsg6+LSTE0M6Ry/gfzhzSwbc5w==} + peerDependencies: + react: ^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0 + + react-smooth@4.0.1: + resolution: {integrity: sha512-OE4hm7XqR0jNOq3Qmk9mFLyd6p2+j6bvbPJ7qlB7+oo0eNcL2l7WQzG6MBnT3EXY6xzkLMUBec3AfewJdA0J8w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + react-top-loading-bar@1.2.0: + resolution: {integrity: sha512-5oNdy+DfD5JK06bcc/gsnnXHmml+d8eaBe3C8KQ3eLiH/BD8+FcwsgbAwqgOaRjuSeVQXdYN2JC2G1uVFtCLfA==} + engines: {node: '>=8', npm: '>=5'} + peerDependencies: + prop-types: ^15.5.4 + react: ^15.0.0 || ^16.0.0 + react-dom: ^15.0.0 || ^16.0.0 + + react-transition-group@4.4.5: + resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} + peerDependencies: + react: '>=16.6.0' + react-dom: '>=16.6.0' + + react-world-flags@1.6.0: + resolution: {integrity: sha512-eutSeAy5YKoVh14js/JUCSlA6EBk1n4k+bDaV+NkNB50VhnG+f4QDTpYycnTUTsZ5cqw/saPmk0Z4Fa0VVZ1Iw==} + peerDependencies: + react: '>=0.14' + + react@18.3.1: + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} + engines: {node: '>=0.10.0'} + + reactcss@1.2.3: + resolution: {integrity: sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==} + peerDependencies: + react: '*' + + reactflow@11.7.2: + resolution: {integrity: sha512-HBudD8BwZacOMqX8fbkiXbeBQs3nRezWVLCDurfc+tTeHsA7988uyaIOhrnKgYCcKtlpJaspsnxDZk+5JmmHxA==} + peerDependencies: + react: '>=17' + react-dom: '>=17' + + read-cache@1.0.0: + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + + read-cmd-shim@3.0.1: + resolution: {integrity: sha512-kEmDUoYf/CDy8yZbLTmhB1X9kkjf9Q80PCNsDMb7ufrGd6zZSQA1+UyjrO+pZm5K/S4OXCWJeiIt1JA8kAsa6g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + read-package-json-fast@2.0.3: + resolution: {integrity: sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==} + engines: {node: '>=10'} + + read-package-json@5.0.2: + resolution: {integrity: sha512-BSzugrt4kQ/Z0krro8zhTwV1Kd79ue25IhNN/VtHFy1mG/6Tluyi+msc0UpwaoQzxSHa28mntAjIZY6kEgfR9Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. Please use @npmcli/package-json instead. + + read-pkg-up@1.0.1: + resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==} + engines: {node: '>=0.10.0'} + + read-pkg-up@3.0.0: + resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} + engines: {node: '>=4'} + + read-pkg-up@7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} + + read-pkg@1.1.0: + resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==} + engines: {node: '>=0.10.0'} + + read-pkg@3.0.0: + resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} + engines: {node: '>=4'} + + read-pkg@5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} + + read-yaml-file@1.1.0: + resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} + engines: {node: '>=6'} + + read@1.0.7: + resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} + engines: {node: '>=0.8'} + + readable-stream@1.1.14: + resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==} + + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + readable-web-to-node-stream@3.0.2: + resolution: {integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==} + engines: {node: '>=8'} + + readdir-scoped-modules@1.1.0: + resolution: {integrity: sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==} + deprecated: This functionality has been moved to @npmcli/fs + + readdirp@2.2.1: + resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==} + engines: {node: '>=0.10'} + + readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + + recast@0.19.1: + resolution: {integrity: sha512-8FCjrBxjeEU2O6I+2hyHyBFH1siJbMBLwIRvVr1T3FD2cL754sOaJDsJ/8h3xYltasbJ8jqWRIhMuDGBSiSbjw==} + engines: {node: '>= 4'} + + recast@0.20.5: + resolution: {integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==} + engines: {node: '>= 4'} + + recast@0.23.9: + resolution: {integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==} + engines: {node: '>= 4'} + + recharts-scale@0.4.5: + resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==} + + recharts@2.12.7: + resolution: {integrity: sha512-hlLJMhPQfv4/3NBSAyq3gzGg4h2v69RJh6KU7b3pXYNNAELs9kEoXOjbkxdXpALqKBoVmVptGfLpxdaVYqjmXQ==} + engines: {node: '>=14'} + peerDependencies: + react: ^16.0.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 + + rechoir@0.6.2: + resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} + engines: {node: '>= 0.10'} + + rechoir@0.7.1: + resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==} + engines: {node: '>= 0.10'} + + redent@1.0.0: + resolution: {integrity: sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==} + engines: {node: '>=0.10.0'} + + redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + + reduce-reducers@1.0.4: + resolution: {integrity: sha512-Mb2WZ2bJF597exiqX7owBzrqJ74DHLK3yOQjCyPAaNifRncE8OD0wFIuoMhXxTnHK07+8zZ2SJEKy/qtiyR7vw==} + + redux-devtools-extension@2.13.9: + resolution: {integrity: sha512-cNJ8Q/EtjhQaZ71c8I9+BPySIBVEKssbPpskBfsXqb8HJ002A3KRVHfeRzwRo6mGPqsm7XuHTqNSNeS1Khig0A==} + deprecated: Package moved to @redux-devtools/extension. + peerDependencies: + redux: ^3.1.0 || ^4.0.0 + + redux-form@8.3.10: + resolution: {integrity: sha512-Eeog8dJYUxCSZI/oBoy7VkprvMjj1lpUnHa3LwjVNZvYDNeiRZMoZoaAT+6nlK2YQ4aiBopKUMiLe4ihUOHCGg==} + engines: {node: '>=8.10'} + peerDependencies: + immutable: ^3.8.2 || ^4.0.0 + react: ^16.4.2 || ^17.0.0 || ^18.0.0 + react-redux: ^6.0.1 || ^7.0.0 || ^8.0.0 + redux: ^3.7.2 || ^4.0.0 + peerDependenciesMeta: + immutable: + optional: true + + redux-mock-store@1.5.4: + resolution: {integrity: sha512-xmcA0O/tjCLXhh9Fuiq6pMrJCwFRaouA8436zcikdIpYWWCjU76CRk+i2bHx8EeiSiMGnB85/lZdU3wIJVXHTA==} + + redux-thunk@2.4.2: + resolution: {integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==} + peerDependencies: + redux: ^4 + + redux@4.2.1: + resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} + + reflect.getprototypeof@1.0.6: + resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} + engines: {node: '>= 0.4'} + + regenerate-unicode-properties@10.1.1: + resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} + engines: {node: '>=4'} + + regenerate@1.4.2: + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + + regenerator-runtime@0.10.5: + resolution: {integrity: sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==} + + regenerator-runtime@0.11.1: + resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} + + regenerator-runtime@0.13.11: + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + + regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + + regenerator-transform@0.15.2: + resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} + + regex-not@1.0.2: + resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} + engines: {node: '>=0.10.0'} + + regexp.prototype.flags@1.5.2: + resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} + engines: {node: '>= 0.4'} + + regexpp@3.2.0: + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} + engines: {node: '>=8'} + + regexpu-core@5.3.2: + resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} + engines: {node: '>=4'} + + registry-auth-token@4.2.2: + resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==} + engines: {node: '>=6.0.0'} + + registry-url@5.1.0: + resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} + engines: {node: '>=8'} + + regjsparser@0.9.1: + resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} + hasBin: true + + rehype-attr@3.0.3: + resolution: {integrity: sha512-Up50Xfra8tyxnkJdCzLBIBtxOcB2M1xdeKe1324U06RAvSjYm7ULSeoM+b/nYPQPVd7jsXJ9+39IG1WAJPXONw==} + engines: {node: '>=16'} + + relateurl@0.2.7: + resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} + engines: {node: '>= 0.10'} + + release-zalgo@1.0.0: + resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==} + engines: {node: '>=4'} + + remark-external-links@8.0.0: + resolution: {integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==} + + remark-footnotes@2.0.0: + resolution: {integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==} + + remark-mdx@1.6.22: + resolution: {integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==} + + remark-parse@11.0.0: + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} + + remark-parse@8.0.3: + resolution: {integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==} + + remark-rehype@11.1.0: + resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==} + + remark-slug@6.1.0: + resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==} + + remark-squeeze-paragraphs@4.0.0: + resolution: {integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==} + + remarkable@1.7.4: + resolution: {integrity: sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==} + engines: {node: '>= 0.10.0'} + hasBin: true + + remove-trailing-separator@1.1.0: + resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} + + renderkid@2.0.7: + resolution: {integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==} + + renderkid@3.0.0: + resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} + + repeat-element@1.1.4: + resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} + engines: {node: '>=0.10.0'} + + repeat-string@1.6.1: + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} + + repeating@2.0.1: + resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==} + engines: {node: '>=0.10.0'} + + replace@1.2.2: + resolution: {integrity: sha512-C4EDifm22XZM2b2JOYe6Mhn+lBsLBAvLbK8drfUQLTfD1KYl/n3VaW/CDju0Ny4w3xTtegBpg8YNSpFJPUDSjA==} + engines: {node: '>= 6'} + hasBin: true + + request-progress@3.0.0: + resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==} + + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + + require-main-filename@2.0.0: + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + + requireindex@1.2.0: + resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==} + engines: {node: '>=0.10.5'} + + requires-port@1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + + reselect@4.1.8: + resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==} + + resize-observer-polyfill@1.5.1: + resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==} + + resolve-alpn@1.2.1: + resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} + + resolve-cwd@2.0.0: + resolution: {integrity: sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==} + engines: {node: '>=4'} + + resolve-cwd@3.0.0: + resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + engines: {node: '>=8'} + + resolve-from@3.0.0: + resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} + engines: {node: '>=4'} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + + resolve-pathname@3.0.0: + resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==} + + resolve-url@0.2.1: + resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} + deprecated: https://github.com/lydell/resolve-url#deprecated + + resolve.exports@1.1.0: + resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} + engines: {node: '>=10'} + + resolve.exports@2.0.2: + resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} + engines: {node: '>=10'} + + resolve@1.1.7: + resolution: {integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==} + + resolve@1.19.0: + resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==} + + resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + hasBin: true + + resolve@2.0.0-next.5: + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} + hasBin: true + + responselike@1.0.2: + resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} + + responselike@2.0.1: + resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} + + restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} + + ret@0.1.15: + resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} + engines: {node: '>=0.12'} + + retry@0.12.0: + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} + engines: {node: '>= 4'} + + retry@0.13.1: + resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} + engines: {node: '>= 4'} + + reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rfdc@1.4.1: + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + + rimraf@2.6.3: + resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + rimraf@2.7.1: + resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + rollup-plugin-copy@3.5.0: + resolution: {integrity: sha512-wI8D5dvYovRMx/YYKtUNt3Yxaw4ORC9xo6Gt9t22kveWz1enG9QrhVlagzwrxSC455xD1dHMKhIJkbsQ7d48BA==} + engines: {node: '>=8.3'} + + rollup-plugin-dts@6.1.1: + resolution: {integrity: sha512-aSHRcJ6KG2IHIioYlvAOcEq6U99sVtqDDKVhnwt70rW6tsz3tv5OSjEiWcgzfsHdLyGXZ/3b/7b/+Za3Y6r1XA==} + engines: {node: '>=16'} + peerDependencies: + rollup: ^3.29.4 || ^4 + typescript: ^4.5 || ^5.0 + + rollup-plugin-generate-package-json@3.2.0: + resolution: {integrity: sha512-+Kq1kFVr+maxW/mZB+E+XuaieCXVZqjl2tNU9k3TtAMs3NOaeREa5sRHy67qKDmcnFtZZukIQ3dFCcnV+r0xyw==} + engines: {node: '>=8.3'} + peerDependencies: + rollup: '>=1.0.0' + + rollup-plugin-peer-deps-external@2.2.4: + resolution: {integrity: sha512-AWdukIM1+k5JDdAqV/Cxd+nejvno2FVLVeZ74NKggm3Q5s9cbbcOgUPGdbxPi4BXu7xGaZ8HG12F+thImYu/0g==} + peerDependencies: + rollup: '*' + + rollup-plugin-polyfill-node@0.13.0: + resolution: {integrity: sha512-FYEvpCaD5jGtyBuBFcQImEGmTxDTPbiHjJdrYIp+mFIwgXiXabxvKUK7ZT9P31ozu2Tqm9llYQMRWsfvTMTAOw==} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 + + rollup-plugin-postcss@4.0.2: + resolution: {integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==} + engines: {node: '>=10'} + peerDependencies: + postcss: 8.x + + rollup-plugin-scss@4.0.0: + resolution: {integrity: sha512-wxasNXDYC2m+fDxCMgK00WebVWYmeFvShyNABmjvSJZ6D1/SepwqFeaMFMQromveI79gfvb64yJjiZZxSZxEIA==} + + rollup-plugin-styles@4.0.0: + resolution: {integrity: sha512-A2K2sao84OsTmDxXG83JTCdXWrmgvQkkI38XDat46rdtpGMRm9tSYqeCdlwwGDJF4kKIafhV1mUidqu8MxUGig==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + peerDependencies: + rollup: ^2.63.0 + + rollup-plugin-svg@2.0.0: + resolution: {integrity: sha512-DmE7dSQHo1SC5L2uH2qul3Mjyd5oV6U1aVVkyvTLX/mUsRink7f1b1zaIm+32GEBA6EHu8H/JJi3DdWqM53ySQ==} + + rollup-plugin-typescript2@0.34.1: + resolution: {integrity: sha512-P4cHLtGikESmqi1CA+tdMDUv8WbQV48mzPYt77TSTOPJpERyZ9TXdDgjSDix8Fkqce6soYz3+fa4lrC93IEkcw==} + peerDependencies: + rollup: '>=1.26.3' + typescript: '>=2.4.0' + + rollup-pluginutils@1.5.2: + resolution: {integrity: sha512-SjdWWWO/CUoMpDy8RUbZ/pSpG68YHmhk5ROKNIoi2En9bJ8bTt3IhYi254RWiTclQmL7Awmrq+rZFOhZkJAHmQ==} + + rollup-pluginutils@2.8.2: + resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} + + rollup@2.79.1: + resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} + engines: {node: '>=10.0.0'} + hasBin: true + + rollup@4.18.1: + resolution: {integrity: sha512-Elx2UT8lzxxOXMpy5HWQGZqkrQOtrVDDa/bm9l10+U4rQnVzbL/LgZ4NOM1MPIDyHk69W4InuYDF5dzRh4Kw1A==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + rsvp@4.8.5: + resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==} + engines: {node: 6.* || >= 7.*} + + run-async@2.4.1: + resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} + engines: {node: '>=0.12.0'} + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + rxjs@7.8.1: + resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + + safe-array-concat@1.1.2: + resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} + engines: {node: '>=0.4'} + + safe-buffer@5.1.1: + resolution: {integrity: sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==} + + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-identifier@0.4.2: + resolution: {integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==} + + safe-regex-test@1.0.3: + resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} + engines: {node: '>= 0.4'} + + safe-regex@1.1.0: + resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + sane@4.1.0: + resolution: {integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==} + engines: {node: 6.* || 8.* || >= 10.*} + deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added + hasBin: true + + sass-loader@12.6.0: + resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} + engines: {node: '>= 12.13.0'} + peerDependencies: + fibers: '>= 3.1.0' + node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 + sass: ^1.3.0 + sass-embedded: '*' + webpack: 5.84.1 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + sass-embedded: + optional: true + + sass@1.77.6: + resolution: {integrity: sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==} + engines: {node: '>=14.0.0'} + hasBin: true + + sax@1.2.4: + resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} + + sax@1.4.1: + resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} + + saxes@5.0.1: + resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} + engines: {node: '>=10'} + + saxes@6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} + + scheduler@0.23.2: + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + + schema-utils@0.4.7: + resolution: {integrity: sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==} + engines: {node: '>= 4'} + + schema-utils@1.0.0: + resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==} + engines: {node: '>= 4'} + + schema-utils@2.7.0: + resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} + engines: {node: '>= 8.9.0'} + + schema-utils@2.7.1: + resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} + engines: {node: '>= 8.9.0'} + + schema-utils@3.3.0: + resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} + engines: {node: '>= 10.13.0'} + + schema-utils@4.2.0: + resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} + engines: {node: '>= 12.13.0'} + + scroll@3.0.1: + resolution: {integrity: sha512-pz7y517OVls1maEzlirKO5nPYle9AXsFzTMNJrRGmT951mzpIBy7sNHOg5o/0MQd/NqliCiWnAi0kZneMPFLcg==} + + scrollparent@2.1.0: + resolution: {integrity: sha512-bnnvJL28/Rtz/kz2+4wpBjHzWoEzXhVg/TE8BeVGJHUqE8THNIRnDxDWMktwM+qahvlRdvlLdsQfYe+cuqfZeA==} + + secure-compare@3.0.1: + resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==} + + select-hose@2.0.0: + resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} + + selfsigned@1.10.14: + resolution: {integrity: sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==} + + selfsigned@2.4.1: + resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} + engines: {node: '>=10'} + + semantic-ui-css@2.5.0: + resolution: {integrity: sha512-jIWn3WXXE2uSaWCcB+gVJVRG3masIKtTMNEP2X8Aw909H2rHpXGneYOxzO3hT8TpyvB5/dEEo9mBFCitGwoj1A==} + + semantic-ui-less@2.5.0: + resolution: {integrity: sha512-Nlp8iR0otCQB74Yqob2Dxpsm5H9YAp3NvQ3sWDediwFjrd/l3Leu9md2O82UU5n5hOSqu95xnTok55eIAhlTjg==} + + semantic-ui-react@2.1.5: + resolution: {integrity: sha512-nIqmmUNpFHfovEb+RI2w3E2/maZQutd8UIWyRjf1SLse+XF51hI559xbz/sLN3O6RpLjr/echLOOXwKCirPy3Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + semver-diff@3.1.1: + resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==} + engines: {node: '>=8'} + + semver-regex@4.0.5: + resolution: {integrity: sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==} + engines: {node: '>=12'} + + semver-truncate@3.0.0: + resolution: {integrity: sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==} + engines: {node: '>=12'} + + semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.3.4: + resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} + engines: {node: '>=10'} + hasBin: true + + semver@7.5.3: + resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} + engines: {node: '>=10'} + hasBin: true + + semver@7.5.4: + resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} + engines: {node: '>=10'} + hasBin: true + + semver@7.6.2: + resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} + engines: {node: '>=10'} + hasBin: true + + send@0.18.0: + resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} + engines: {node: '>= 0.8.0'} + + serialize-javascript@5.0.1: + resolution: {integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==} + + serialize-javascript@6.0.2: + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + + serve-favicon@2.5.0: + resolution: {integrity: sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==} + engines: {node: '>= 0.8.0'} + + serve-index@1.9.1: + resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} + engines: {node: '>= 0.8.0'} + + serve-static@1.15.0: + resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} + engines: {node: '>= 0.8.0'} + + set-blocking@2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + + set-cookie-parser@2.6.0: + resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==} + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + + set-getter@0.1.1: + resolution: {integrity: sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==} + engines: {node: '>=0.10.0'} + + set-value@2.0.1: + resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} + engines: {node: '>=0.10.0'} + + setprototypeof@1.1.0: + resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} + + setprototypeof@1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + + shallow-clone@0.1.2: + resolution: {integrity: sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==} + engines: {node: '>=0.10.0'} + + shallow-clone@3.0.1: + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} + + shallowequal@1.1.0: + resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} + + shebang-command@1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shell-quote@1.8.1: + resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} + + shelljs@0.8.5: + resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} + engines: {node: '>=4'} + hasBin: true + + shellwords@0.1.1: + resolution: {integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==} + + side-channel@1.0.6: + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} + engines: {node: '>= 0.4'} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + simple-git@1.132.0: + resolution: {integrity: sha512-xauHm1YqCTom1sC9eOjfq3/9RKiUA9iPnxBbrY2DdL8l4ADMu0jjM5l5lphQP5YWNqAL2aXC/OeuQ76vHtW5fg==} + + sirv@2.0.4: + resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} + engines: {node: '>= 10'} + + sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + + slash@2.0.0: + resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==} + engines: {node: '>=6'} + + slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + slash@4.0.0: + resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} + engines: {node: '>=12'} + + slash@5.1.0: + resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} + engines: {node: '>=14.16'} + + slashes@2.0.2: + resolution: {integrity: sha512-68p+QkFAQQRetIUzNXAdktNJr8AYLxJukjBegYQz8F7VATsBJG621UYtY/vS2j9jerxdJ1k6Tc25K4DXEw1d5w==} + + slice-ansi@3.0.0: + resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} + engines: {node: '>=8'} + + slice-ansi@4.0.0: + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} + engines: {node: '>=10'} + + smart-buffer@4.2.0: + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + + smartwrap@2.0.2: + resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} + engines: {node: '>=6'} + hasBin: true + + snake-case@3.0.4: + resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} + + snapdragon-node@2.1.1: + resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} + engines: {node: '>=0.10.0'} + + snapdragon-util@3.0.1: + resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} + engines: {node: '>=0.10.0'} + + snapdragon@0.8.2: + resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} + engines: {node: '>=0.10.0'} + + sockjs-client@1.6.1: + resolution: {integrity: sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==} + engines: {node: '>=12'} + + sockjs@0.3.24: + resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} + + socks-proxy-agent@7.0.0: + resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} + engines: {node: '>= 10'} + + socks@2.8.3: + resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} + engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} + + sort-keys-length@1.0.1: + resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==} + engines: {node: '>=0.10.0'} + + sort-keys@1.1.2: + resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==} + engines: {node: '>=0.10.0'} + + sort-keys@2.0.0: + resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} + engines: {node: '>=4'} + + sort-keys@4.2.0: + resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==} + engines: {node: '>=8'} + + source-list-map@2.0.1: + resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==} + + source-map-js@1.2.0: + resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} + engines: {node: '>=0.10.0'} + + source-map-loader@0.2.4: + resolution: {integrity: sha512-OU6UJUty+i2JDpTItnizPrlpOIBLmQbWMuBg9q5bVtnHACqw1tn9nNwqJLbv0/00JjnJb/Ee5g5WS5vrRv7zIQ==} + engines: {node: '>= 6'} + + source-map-loader@3.0.2: + resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: 5.84.1 + + source-map-resolve@0.5.3: + resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} + deprecated: See https://github.com/lydell/source-map-resolve#deprecated + + source-map-support@0.5.13: + resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + + source-map-support@0.5.19: + resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} + + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + + source-map-url@0.4.1: + resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} + deprecated: See https://github.com/lydell/source-map-url#deprecated + + source-map@0.5.7: + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + source-map@0.7.4: + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} + engines: {node: '>= 8'} + + sourcemap-codec@1.4.8: + resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} + deprecated: Please use @jridgewell/sourcemap-codec instead + + space-separated-tokens@1.1.5: + resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} + + space-separated-tokens@2.0.2: + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} + + spawn-wrap@2.0.0: + resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==} + engines: {node: '>=8'} + + spawndamnit@2.0.0: + resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} + + spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + + spdx-exceptions@2.5.0: + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + + spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + + spdx-license-ids@3.0.18: + resolution: {integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==} + + spdy-transport@3.0.0: + resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} + + spdy@4.0.2: + resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} + engines: {node: '>=6.0.0'} + + split-on-first@1.1.0: + resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} + engines: {node: '>=6'} + + split-string@3.1.0: + resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} + engines: {node: '>=0.10.0'} + + split2@3.2.2: + resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} + + split@1.0.1: + resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} + + sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + + sprintf-js@1.1.3: + resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} + + sshpk@1.18.0: + resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} + engines: {node: '>=0.10.0'} + hasBin: true + + ssri@8.0.1: + resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} + engines: {node: '>= 8'} + + ssri@9.0.1: + resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + stable@0.1.8: + resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} + deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' + + stack-utils@2.0.6: + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + engines: {node: '>=10'} + + stackframe@1.3.4: + resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} + + state-local@1.0.7: + resolution: {integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==} + + state-toggle@1.0.3: + resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==} + + static-extend@0.1.2: + resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} + engines: {node: '>=0.10.0'} + + statuses@1.5.0: + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} + engines: {node: '>= 0.6'} + + statuses@2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} + + stop-iteration-iterator@1.0.0: + resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} + engines: {node: '>= 0.4'} + + store2@2.14.3: + resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==} + + storybook@6.5.16: + resolution: {integrity: sha512-+Ychak5QtcTx8EuQzu7eilw+65sk6q1LdI68vb1VOIYD29PEEC7MsZGKPi6AKYNbdhGp0cGu0j3Bf1TxGOBFEA==} + hasBin: true + + storybook@7.6.9: + resolution: {integrity: sha512-zsPLvhbEfheqt9bN7X38vgrhLcxSyn7HdWbjZC+02hgNQ0U1jZ4VfrzNbJSqFxzxU+B5gdDZSFMui7OUx9A9Ew==} + hasBin: true + + stream-shift@1.0.3: + resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==} + + stream-transform@2.1.3: + resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} + + streamroller@1.0.6: + resolution: {integrity: sha512-3QC47Mhv3/aZNFpDDVO44qQb9gwB9QggMEE0sQmkTAwBVYdBRWISdsywlkfm5II1Q5y/pmrHflti/IgmIzdDBg==} + engines: {node: '>=6.0'} + deprecated: 1.x is no longer supported. Please upgrade to 3.x or higher. + + strict-event-emitter@0.2.8: + resolution: {integrity: sha512-KDf/ujU8Zud3YaLtMCcTI4xkZlZVIYxTLr+XIULexP+77EEVWixeXroLUXQXiVtH4XH2W7jr/3PT1v3zBuvc3A==} + + strict-uri-encode@2.0.0: + resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} + engines: {node: '>=4'} + + string-hash@1.1.3: + resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} + + string-length@4.0.2: + resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} + engines: {node: '>=10'} + + string-width@3.1.0: + resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==} + engines: {node: '>=6'} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + + string.prototype.matchall@4.0.11: + resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} + engines: {node: '>= 0.4'} + + string.prototype.padend@3.1.6: + resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==} + engines: {node: '>= 0.4'} + + string.prototype.padstart@3.1.6: + resolution: {integrity: sha512-1y15lz7otgfRTAVK5qbp3eHIga+w8j7+jIH+7HpUrOfnLVl6n0hbspi4EXf4tR+PNOpBjPstltemkx0SvViOCg==} + engines: {node: '>= 0.4'} + + string.prototype.trim@1.2.9: + resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} + engines: {node: '>= 0.4'} + + string.prototype.trimend@1.0.8: + resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} + + string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + + string_decoder@0.10.31: + resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} + + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + stringify-entities@4.0.4: + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} + + strip-ansi@3.0.1: + resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} + engines: {node: '>=0.10.0'} + + strip-ansi@4.0.0: + resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==} + engines: {node: '>=4'} + + strip-ansi@5.2.0: + resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} + engines: {node: '>=6'} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + + strip-bom@2.0.0: + resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} + engines: {node: '>=0.10.0'} + + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + + strip-bom@4.0.0: + resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + engines: {node: '>=8'} + + strip-color@0.1.0: + resolution: {integrity: sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==} + engines: {node: '>=0.10.0'} + + strip-eof@1.0.0: + resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} + engines: {node: '>=0.10.0'} + + strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + + strip-final-newline@3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + + strip-indent@1.0.1: + resolution: {integrity: sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==} + engines: {node: '>=0.10.0'} + hasBin: true + + strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + + strip-indent@4.0.0: + resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==} + engines: {node: '>=12'} + + strip-json-comments@1.0.4: + resolution: {integrity: sha512-AOPG8EBc5wAikaG1/7uFCNFJwnKOuQwFTpYBdTW6OvWHeZBQBrAA/amefHGrEiOnCPcLFZK6FUPtWVKpQVIRgg==} + engines: {node: '>=0.8.0'} + hasBin: true + + strip-json-comments@2.0.1: + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} + engines: {node: '>=0.10.0'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + strip-outer@2.0.0: + resolution: {integrity: sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + strnum@1.0.5: + resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} + + strong-log-transformer@2.1.0: + resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} + engines: {node: '>=4'} + hasBin: true + + strtok3@7.1.0: + resolution: {integrity: sha512-19dQEwG6Jd+VabjPRyBhymIF069vZiqWSZa2jJBoKJTsqGKnTxowGoQaLnz+yLARfDI041IUQekyPUMWElOgsQ==} + engines: {node: '>=14.16'} + + style-inject@0.3.0: + resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==} + + style-loader@0.23.1: + resolution: {integrity: sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==} + engines: {node: '>= 0.12.0'} + + style-loader@1.3.0: + resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==} + engines: {node: '>= 8.9.0'} + peerDependencies: + webpack: 5.84.1 + + style-loader@2.0.0: + resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 + + style-loader@3.3.4: + resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: 5.84.1 + + style-to-js@1.1.1: + resolution: {integrity: sha512-RJ18Z9t2B02sYhZtfWKQq5uplVctgvjTfLWT7+Eb1zjUjIrWzX5SdlkwLGQozrqarTmEzJJ/YmdNJCUNI47elg==} + + style-to-object@0.3.0: + resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==} + + style-to-object@1.0.6: + resolution: {integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==} + + styled-components@4.4.1: + resolution: {integrity: sha512-RNqj14kYzw++6Sr38n7197xG33ipEOktGElty4I70IKzQF1jzaD1U4xQ+Ny/i03UUhHlC5NWEO+d8olRCDji6g==} + peerDependencies: + react: '>= 16.3.0' + react-dom: '>= 16.3.0' + + stylehacks@5.1.1: + resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + stylehacks@6.1.1: + resolution: {integrity: sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 + + stylis-rule-sheet@0.0.10: + resolution: {integrity: sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==} + peerDependencies: + stylis: ^3.5.0 + + stylis@3.5.4: + resolution: {integrity: sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==} + + stylis@4.2.0: + resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} + + stylus-loader@7.1.3: + resolution: {integrity: sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==} + engines: {node: '>= 14.15.0'} + peerDependencies: + stylus: '>=0.52.4' + webpack: 5.84.1 + + stylus@0.59.0: + resolution: {integrity: sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==} + hasBin: true + + supports-color@2.0.0: + resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} + engines: {node: '>=0.8.0'} + + supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + + supports-color@6.1.0: + resolution: {integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==} + engines: {node: '>=6'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-color@8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + + supports-hyperlinks@2.3.0: + resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} + engines: {node: '>=8'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + svg-country-flags@1.2.10: + resolution: {integrity: sha512-xrqwo0TYf/h2cfPvGpjdSuSguUbri4vNNizBnwzoZnX0xGo3O5nGJMlbYEp7NOYcnPGBm6LE2axqDWSB847bLw==} + + svg-parser@2.0.4: + resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} + + svgo@1.3.2: + resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} + engines: {node: '>=4.0.0'} + deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. + hasBin: true + + svgo@2.8.0: + resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} + engines: {node: '>=10.13.0'} + hasBin: true + + svgo@3.3.2: + resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} + engines: {node: '>=14.0.0'} + hasBin: true + + swc-loader@0.2.6: + resolution: {integrity: sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg==} + peerDependencies: + '@swc/core': ^1.2.147 + webpack: 5.84.1 + + swr@2.2.5: + resolution: {integrity: sha512-QtxqyclFeAsxEUeZIYmsaQ0UjimSq1RZ9Un7I68/0ClKK/U3LoyQunwkQfJZr2fc22DfIXLNDc2wFyTEikCUpg==} + peerDependencies: + react: ^16.11.0 || ^17.0.0 || ^18.0.0 + + symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + + symbol.prototype.description@1.0.6: + resolution: {integrity: sha512-VgVgtEabORsQtmuindtO7v8fF+bsKxUkvEMFj+ecBK6bomrwv5JUSWdMoC3ypa9+Jaqp/wOzkWk4f6I+p5GzyA==} + engines: {node: '>= 0.4'} + + synchronous-promise@2.0.17: + resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==} + + synckit@0.6.2: + resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==} + engines: {node: '>=12.20'} + + table@6.8.2: + resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==} + engines: {node: '>=10.0.0'} + + tapable@1.1.3: + resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} + engines: {node: '>=6'} + + tapable@2.2.1: + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} + + tar-fs@2.1.1: + resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} + + tar-stream@2.2.0: + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} + engines: {node: '>=6'} + + tar@6.2.1: + resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} + engines: {node: '>=10'} + + telejson@6.0.8: + resolution: {integrity: sha512-nerNXi+j8NK1QEfBHtZUN/aLdDcyupA//9kAboYLrtzZlPLpUfqbVGWb9zz91f/mIjRbAYhbgtnJHY8I1b5MBg==} + + telejson@7.2.0: + resolution: {integrity: sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==} + + temp-dir@1.0.0: + resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==} + engines: {node: '>=4'} + + temp-dir@2.0.0: + resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} + engines: {node: '>=8'} + + temp@0.8.4: + resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} + engines: {node: '>=6.0.0'} + + tempy@1.0.1: + resolution: {integrity: sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==} + engines: {node: '>=10'} + + term-size@2.2.1: + resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} + engines: {node: '>=8'} + + terminal-link@2.1.1: + resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} + engines: {node: '>=8'} + + terser-webpack-plugin@4.2.3: + resolution: {integrity: sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 + + terser-webpack-plugin@5.3.10: + resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: 5.84.1 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + + terser@4.8.1: + resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} + engines: {node: '>=6.0.0'} + hasBin: true + + terser@5.31.1: + resolution: {integrity: sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==} + engines: {node: '>=10'} + hasBin: true + + test-exclude@6.0.0: + resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} + engines: {node: '>=8'} + + text-extensions@1.9.0: + resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} + engines: {node: '>=0.10'} + + text-table@0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + + thread-loader@2.1.3: + resolution: {integrity: sha512-wNrVKH2Lcf8ZrWxDF/khdlLlsTMczdcwPA9VEK4c2exlEPynYWxi9op3nPTo5lAnDIkE0rQEB3VBP+4Zncc9Hg==} + engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 + + throat@5.0.0: + resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} + + throttleit@1.0.1: + resolution: {integrity: sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==} + + through2@2.0.5: + resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + + through2@4.0.2: + resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} + + through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + + thunky@1.1.0: + resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} + + tiny-invariant@1.3.3: + resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} + + tiny-warning@1.0.3: + resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} + + tinycolor2@1.6.0: + resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} + + tinycolor@0.0.1: + resolution: {integrity: sha512-+CorETse1kl98xg0WAzii8DTT4ABF4R3nquhrkIbVGcw1T8JYs5Gfx9xEfGINPUZGDj9C4BmOtuKeaTtuuRolg==} + engines: {node: '>=0.4.0'} + + tmp@0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} + + tmp@0.2.3: + resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} + engines: {node: '>=14.14'} + + tmpl@1.0.5: + resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + + to-fast-properties@1.0.3: + resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==} + engines: {node: '>=0.10.0'} + + to-fast-properties@2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} + + to-object-path@0.3.0: + resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} + engines: {node: '>=0.10.0'} + + to-readable-stream@1.0.0: + resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} + engines: {node: '>=6'} + + to-regex-range@2.1.1: + resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} + engines: {node: '>=0.10.0'} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + to-regex@3.0.2: + resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} + engines: {node: '>=0.10.0'} + + toidentifier@1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + + token-types@5.0.1: + resolution: {integrity: sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==} + engines: {node: '>=14.16'} + + toml@2.3.6: + resolution: {integrity: sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==} + + totalist@3.0.1: + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} + + tough-cookie@4.1.4: + resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} + engines: {node: '>=6'} + + tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + + tr46@2.1.0: + resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} + engines: {node: '>=8'} + + tr46@3.0.0: + resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} + engines: {node: '>=12'} + + tree-changes@0.11.2: + resolution: {integrity: sha512-4gXlUthrl+RabZw6lLvcCDl6KfJOCmrC16BC5CRdut1EAH509Omgg0BfKLY+ViRlzrvYOTWR0FMS2SQTwzumrw==} + + tree-changes@0.9.3: + resolution: {integrity: sha512-vvvS+O6kEeGRzMglTKbc19ltLWNtmNt1cpBoSYLj/iEcPVvpJasemKOlxBrmZaCtDJoF+4bwv3m01UKYi8mukQ==} + + treeverse@2.0.0: + resolution: {integrity: sha512-N5gJCkLu1aXccpOTtqV6ddSEi6ZmGkh3hjmbu1IjcavJK4qyOVQmi0myQKM7z5jVGmD68SJoliaVrMmVObhj6A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + trim-lines@3.0.1: + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} + + trim-newlines@1.0.0: + resolution: {integrity: sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==} + engines: {node: '>=0.10.0'} + + trim-newlines@3.0.1: + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} + + trim-repeated@2.0.0: + resolution: {integrity: sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==} + engines: {node: '>=12'} + + trim-trailing-lines@1.1.4: + resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==} + + trim@0.0.1: + resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==} + deprecated: Use String.prototype.trim() instead + + trough@1.0.5: + resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} + + trough@2.2.0: + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + + ts-dedent@2.2.0: + resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} + engines: {node: '>=6.10'} + + ts-jest@26.5.6: + resolution: {integrity: sha512-rua+rCP8DxpA8b4DQD/6X2HQS8Zy/xzViVYfEs2OQu68tkCuKLV0Md8pmX55+W24uRIyAsf/BajRfxOs+R2MKA==} + engines: {node: '>= 10'} + hasBin: true + peerDependencies: + jest: '>=26 <27' + typescript: '>=3.8 <5.0' + + ts-jest@29.1.5: + resolution: {integrity: sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg==} + engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@babel/core': '>=7.0.0-beta.0 <8' + '@jest/transform': ^29.0.0 + '@jest/types': ^29.0.0 + babel-jest: ^29.0.0 + esbuild: '*' + jest: ^29.0.0 + typescript: '>=4.3 <6' + peerDependenciesMeta: + '@babel/core': + optional: true + '@jest/transform': + optional: true + '@jest/types': + optional: true + babel-jest: + optional: true + esbuild: + optional: true + + ts-loader@6.2.2: + resolution: {integrity: sha512-HDo5kXZCBml3EUPcc7RlZOV/JGlLHwppTLEHb3SHnr5V7NXD4klMEkrhJe5wgRbaWsSXi+Y1SIBN/K9B6zWGWQ==} + engines: {node: '>=8.6'} + peerDependencies: + typescript: '*' + + ts-loader@9.5.1: + resolution: {integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==} + engines: {node: '>=12.0.0'} + peerDependencies: + typescript: '*' + webpack: 5.84.1 + + ts-node@10.9.1: + resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + + ts-node@8.10.2: + resolution: {integrity: sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA==} + engines: {node: '>=6.0.0'} + hasBin: true + peerDependencies: + typescript: '>=2.7' + + ts-pnp@1.2.0: + resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} + engines: {node: '>=6'} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + tsconfig-paths-webpack-plugin@3.5.2: + resolution: {integrity: sha512-EhnfjHbzm5IYI9YPNVIxx1moxMI4bpHD2e0zTXeDNQcwjjRaGepP7IhTHJkyDBG0CAOoxRfe7jCG630Ou+C6Pw==} + + tsconfig-paths-webpack-plugin@4.0.0: + resolution: {integrity: sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==} + engines: {node: '>=10.13.0'} + + tsconfig-paths@3.15.0: + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + + tsconfig-paths@4.2.0: + resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} + engines: {node: '>=6'} + + tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + + tslib@2.6.3: + resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} + + tsutils@3.21.0: + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} + peerDependencies: + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + + tty-table@4.2.3: + resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==} + engines: {node: '>=8.0.0'} + hasBin: true + + tunnel-agent@0.6.0: + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + + tweetnacl@0.14.5: + resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + type-detect@4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} + + type-fest@0.13.1: + resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} + engines: {node: '>=10'} + + type-fest@0.16.0: + resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} + engines: {node: '>=10'} + + type-fest@0.18.1: + resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} + engines: {node: '>=10'} + + type-fest@0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + + type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} + + type-fest@0.4.1: + resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==} + engines: {node: '>=6'} + + type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} + + type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + + type-fest@1.4.0: + resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} + engines: {node: '>=10'} + + type-fest@2.19.0: + resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} + engines: {node: '>=12.20'} + + type-fest@4.20.1: + resolution: {integrity: sha512-R6wDsVsoS9xYOpy8vgeBlqpdOyzJ12HNfQhC/aAKWM3YoCV9TtunJzh/QpkMgeDhkoynDcw5f1y+qF9yc/HHyg==} + engines: {node: '>=16'} + + type-is@1.6.18: + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + engines: {node: '>= 0.6'} + + type@2.7.3: + resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==} + + typed-array-buffer@1.0.2: + resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} + engines: {node: '>= 0.4'} + + typed-array-byte-length@1.0.1: + resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} + engines: {node: '>= 0.4'} + + typed-array-byte-offset@1.0.2: + resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} + engines: {node: '>= 0.4'} + + typed-array-length@1.0.6: + resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} + engines: {node: '>= 0.4'} + + typed-assert@1.0.9: + resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==} + + typedarray-to-buffer@3.1.5: + resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + + typedarray@0.0.6: + resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} + + typescript@4.9.5: + resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} + engines: {node: '>=4.2.0'} + hasBin: true + + typescript@5.1.6: + resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==} + engines: {node: '>=14.17'} + hasBin: true + + ua-parser-js@0.7.28: + resolution: {integrity: sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g==} + + ufo@1.5.3: + resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==} + + uglify-js@3.18.0: + resolution: {integrity: sha512-SyVVbcNBCk0dzr9XL/R/ySrmYf0s372K6/hFklzgcp2lBFyXtw4I7BOdDjlLhE1aVqaI/SHWXWmYdlZxuyF38A==} + engines: {node: '>=0.8.0'} + hasBin: true + + unbox-primitive@1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + + underscore.deep@0.5.3: + resolution: {integrity: sha512-4OuSOlFNkiVFVc3khkeG112Pdu1gbitMj7t9B9ENb61uFmN70Jq7Iluhi3oflcSgexkKfDdJ5XAJET2gEq6ikA==} + engines: {node: '>=0.10.x'} + peerDependencies: + underscore: 1.x + + underscore@1.7.0: + resolution: {integrity: sha512-cp0oQQyZhUM1kpJDLdGO1jPZHgS/MpzoWYfe9+CM2h/QGDZlqwT2T3YGukuBdaNJ/CAPoeyAZRRHz8JFo176vA==} + + unfetch@4.2.0: + resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==} + + unherit@1.1.3: + resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==} + + unicode-canonical-property-names-ecmascript@2.0.0: + resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} + engines: {node: '>=4'} + + unicode-match-property-ecmascript@2.0.0: + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} + + unicode-match-property-value-ecmascript@2.1.0: + resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} + engines: {node: '>=4'} + + unicode-property-aliases-ecmascript@2.1.0: + resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} + engines: {node: '>=4'} + + unicorn-magic@0.1.0: + resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} + engines: {node: '>=18'} + + unified@11.0.5: + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} + + unified@9.2.0: + resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==} + + union-value@1.0.1: + resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} + engines: {node: '>=0.10.0'} + + union@0.5.0: + resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} + engines: {node: '>= 0.8.0'} + + unique-filename@1.1.1: + resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} + + unique-filename@2.0.1: + resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + unique-slug@2.0.2: + resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} + + unique-slug@3.0.0: + resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + unique-string@2.0.0: + resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} + engines: {node: '>=8'} + + unist-builder@2.0.3: + resolution: {integrity: sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==} + + unist-util-generated@1.1.6: + resolution: {integrity: sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==} + + unist-util-is@4.1.0: + resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} + + unist-util-is@6.0.0: + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} + + unist-util-position@3.1.0: + resolution: {integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==} + + unist-util-position@5.0.0: + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} + + unist-util-remove-position@2.0.1: + resolution: {integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==} + + unist-util-remove-position@5.0.0: + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} + + unist-util-remove@2.1.0: + resolution: {integrity: sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==} + + unist-util-stringify-position@2.0.3: + resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} + + unist-util-stringify-position@4.0.0: + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} + + unist-util-visit-parents@3.1.1: + resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} + + unist-util-visit-parents@6.0.1: + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} + + unist-util-visit@2.0.3: + resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} + + unist-util-visit@5.0.0: + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} + + universal-user-agent@6.0.1: + resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} + + universalify@0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} + + universalify@0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + unpipe@1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} + + unquote@1.1.1: + resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} + + unset-value@1.0.0: + resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} + engines: {node: '>=0.10.0'} + + untildify@2.1.0: + resolution: {integrity: sha512-sJjbDp2GodvkB0FZZcn7k6afVisqX5BZD7Yq3xp4nN2O15BBK0cLm3Vwn2vQaF7UDS0UUsrQMkkplmDI5fskig==} + engines: {node: '>=0.10.0'} + + untildify@4.0.0: + resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} + engines: {node: '>=8'} + + upath@1.2.0: + resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} + engines: {node: '>=4'} + + upath@2.0.1: + resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} + engines: {node: '>=4'} + + update-browserslist-db@1.0.16: + resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + update-notifier@5.1.0: + resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==} + engines: {node: '>=10'} + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + urix@0.1.0: + resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} + deprecated: Please see https://github.com/lydell/urix#deprecated + + url-join@4.0.1: + resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} + + url-loader@4.1.1: + resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + file-loader: '*' + webpack: 5.84.1 + peerDependenciesMeta: + file-loader: + optional: true + + url-parse-lax@3.0.0: + resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} + engines: {node: '>=4'} + + url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + + url@0.11.3: + resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==} + + use-sync-external-store@1.2.0: + resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + use-sync-external-store@1.2.2: + resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + use@3.1.1: + resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} + engines: {node: '>=0.10.0'} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + util.promisify@1.0.0: + resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==} + + util.promisify@1.0.1: + resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} + + util@0.10.4: + resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} + + util@0.12.5: + resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} + + utila@0.4.0: + resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} + + utils-merge@1.0.1: + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} + + uuid-browser@3.1.0: + resolution: {integrity: sha512-dsNgbLaTrd6l3MMxTtouOCFw4CBFc/3a+GgYA2YyrJvyQ1u6q4pcu3ktLoUZ/VN/Aw9WsauazbgsgdfVWgAKQg==} + deprecated: Package no longer supported and required. Use the uuid package or crypto.randomUUID instead + + uuid@3.4.0: + resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} + deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. + hasBin: true + + uuid@8.3.2: + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + hasBin: true + + v8-compile-cache-lib@3.0.1: + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + + v8-compile-cache@2.3.0: + resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} + + v8-compile-cache@2.4.0: + resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} + + v8-to-istanbul@7.1.2: + resolution: {integrity: sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==} + engines: {node: '>=10.10.0'} + + v8-to-istanbul@9.3.0: + resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} + engines: {node: '>=10.12.0'} + + validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + + validate-npm-package-name@3.0.0: + resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==} + + validate-npm-package-name@4.0.0: + resolution: {integrity: sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + validate-npm-package-name@5.0.1: + resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + value-equal@1.0.1: + resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==} + + vary@1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} + + verror@1.10.0: + resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} + engines: {'0': node >=0.6.0} + + vfile-location@3.2.0: + resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==} + + vfile-message@2.0.4: + resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==} + + vfile-message@4.0.2: + resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} + + vfile@4.2.1: + resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==} + + vfile@6.0.1: + resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==} + + victory-vendor@36.9.2: + resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==} + + void-elements@3.1.0: + resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} + engines: {node: '>=0.10.0'} + + w3c-hr-time@1.0.2: + resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} + deprecated: Use your platform's native performance.now() and performance.timeOrigin. + + w3c-xmlserializer@2.0.0: + resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} + engines: {node: '>=10'} + + w3c-xmlserializer@4.0.0: + resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} + engines: {node: '>=14'} + + walk-up-path@1.0.0: + resolution: {integrity: sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg==} + + walker@1.0.8: + resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + + warning@4.0.3: + resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==} + + watch@1.0.2: + resolution: {integrity: sha512-1u+Z5n9Jc1E2c7qDO8SinPoZuHj7FgbgU1olSFoyaklduDvvtX7GMMtlE6OC9FTXq4KvNAOfj6Zu4vI1e9bAKA==} + engines: {node: '>=0.1.95'} + hasBin: true + + watchpack@2.4.1: + resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==} + engines: {node: '>=10.13.0'} + + wbuf@1.7.3: + resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} + + wcwidth@1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + + web-namespaces@1.1.4: + resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==} + + webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + + webidl-conversions@5.0.0: + resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} + engines: {node: '>=8'} + + webidl-conversions@6.1.0: + resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} + engines: {node: '>=10.4'} + + webidl-conversions@7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} + + webpack-bundle-analyzer@4.10.2: + resolution: {integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==} + engines: {node: '>= 10.13.0'} + hasBin: true + + webpack-cli@4.10.0: + resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + '@webpack-cli/generators': '*' + '@webpack-cli/migrate': '*' + webpack: 5.84.1 + webpack-bundle-analyzer: '*' + webpack-dev-server: '*' + peerDependenciesMeta: + '@webpack-cli/generators': + optional: true + '@webpack-cli/migrate': + optional: true + webpack-bundle-analyzer: + optional: true + webpack-dev-server: + optional: true + + webpack-dev-middleware@3.7.3: + resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==} + engines: {node: '>= 6'} + peerDependencies: + webpack: 5.84.1 + + webpack-dev-middleware@4.3.0: + resolution: {integrity: sha512-PjwyVY95/bhBh6VUqt6z4THplYcsvQ8YNNBTBM873xLVmw8FLeALn0qurHbs9EmcfhzQis/eoqypSnZeuUz26w==} + engines: {node: '>= v10.23.3'} + peerDependencies: + webpack: 5.84.1 + + webpack-dev-middleware@5.3.4: + resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: 5.84.1 + + webpack-dev-middleware@6.1.3: + resolution: {integrity: sha512-A4ChP0Qj8oGociTs6UdlRUGANIGrCDL3y+pmQMc+dSsraXHCatFpmMey4mYELA+juqwUqwQsUgJJISXl1KWmiw==} + engines: {node: '>= 14.15.0'} + peerDependencies: + webpack: 5.84.1 + peerDependenciesMeta: + webpack: + optional: true + + webpack-dev-server@3.11.3: + resolution: {integrity: sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==} + engines: {node: '>= 6.11.5'} + hasBin: true + peerDependencies: + webpack: 5.84.1 + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + + webpack-dev-server@4.15.2: + resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==} + engines: {node: '>= 12.13.0'} + hasBin: true + peerDependencies: + webpack: 5.84.1 + webpack-cli: '*' + peerDependenciesMeta: + webpack: + optional: true + webpack-cli: + optional: true + + webpack-filter-warnings-plugin@1.2.1: + resolution: {integrity: sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==} + engines: {node: '>= 4.3 < 5.0.0 || >= 5.10'} + peerDependencies: + webpack: 5.84.1 + + webpack-hot-middleware@2.26.1: + resolution: {integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==} + + webpack-log@1.2.0: + resolution: {integrity: sha512-U9AnICnu50HXtiqiDxuli5gLB5PGBo7VvcHx36jRZHwK4vzOYLbImqT4lwWwoMHdQWwEKw736fCHEekokTEKHA==} + engines: {node: '>=6'} + + webpack-log@2.0.0: + resolution: {integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==} + engines: {node: '>= 6'} + + webpack-merge@5.10.0: + resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} + engines: {node: '>=10.0.0'} + + webpack-node-externals@3.0.0: + resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==} + engines: {node: '>=6'} + + webpack-sources@1.4.3: + resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==} + + webpack-sources@3.2.3: + resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} + engines: {node: '>=10.13.0'} + + webpack-subresource-integrity@5.1.0: + resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==} + engines: {node: '>= 12'} + peerDependencies: + html-webpack-plugin: '>= 5.0.0-beta.1 < 6' + webpack: 5.84.1 + peerDependenciesMeta: + html-webpack-plugin: + optional: true + + webpack-virtual-modules@0.2.2: + resolution: {integrity: sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==} + + webpack-virtual-modules@0.4.6: + resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==} + + webpack-virtual-modules@0.5.0: + resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==} + + webpack@5.84.1: + resolution: {integrity: sha512-ZP4qaZ7vVn/K8WN/p990SGATmrL1qg4heP/MrVneczYtpDGJWlrgZv55vxaV2ul885Kz+25MP2kSXkPe3LZfmg==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + + websocket-driver@0.7.4: + resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} + engines: {node: '>=0.8.0'} + + websocket-extensions@0.1.4: + resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} + engines: {node: '>=0.8.0'} + + whatwg-encoding@1.0.5: + resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} + + whatwg-encoding@2.0.0: + resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + engines: {node: '>=12'} + + whatwg-fetch@3.6.20: + resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} + + whatwg-mimetype@2.3.0: + resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} + + whatwg-mimetype@3.0.0: + resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} + engines: {node: '>=12'} + + whatwg-url@11.0.0: + resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} + engines: {node: '>=12'} + + whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + + whatwg-url@8.7.0: + resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} + engines: {node: '>=10'} + + which-boxed-primitive@1.0.2: + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + + which-builtin-type@1.1.3: + resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} + engines: {node: '>= 0.4'} + + which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + + which-module@2.0.1: + resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} + + which-pm@2.2.0: + resolution: {integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==} + engines: {node: '>=8.15'} + + which-typed-array@1.1.15: + resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} + engines: {node: '>= 0.4'} + + which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + wide-align@1.1.5: + resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + + widest-line@3.1.0: + resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} + engines: {node: '>=8'} + + wildcard@2.0.1: + resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + wordwrap@1.0.0: + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + + worker-loader@2.0.0: + resolution: {integrity: sha512-tnvNp4K3KQOpfRnD20m8xltE3eWh89Ye+5oj7wXEEHKac1P4oZ6p9oTj8/8ExqoSBnk9nu5Pr4nKfQ1hn2APJw==} + engines: {node: '>= 6.9.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 + + worker-rpc@0.1.1: + resolution: {integrity: sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==} + + world-countries@5.0.0: + resolution: {integrity: sha512-wAfOT9Y5i/xnxNOdKJKXdOCw9Q3yQLahBUeuRol+s+o20F6h2a4tLEbJ1lBCYwEQ30Sf9Meqeipk1gib3YwF5w==} + + wrap-ansi@5.1.0: + resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==} + engines: {node: '>=6'} + + wrap-ansi@6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + write-file-atomic@2.4.3: + resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} + + write-file-atomic@3.0.3: + resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + + write-file-atomic@4.0.2: + resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + write-file-webpack-plugin@4.5.1: + resolution: {integrity: sha512-AZ7qJUvhTCBiOtG21aFJUcNuLVo2FFM6JMGKvaUGAH+QDqQAp2iG0nq3GcuXmJOFQR2JjpjhyYkyPrbFKhdjNQ==} + engines: {node: '>=4'} + + write-json-file@3.2.0: + resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==} + engines: {node: '>=6'} + + write-json-file@4.3.0: + resolution: {integrity: sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ==} + engines: {node: '>=8.3'} + + write-pkg@4.0.0: + resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==} + engines: {node: '>=8'} + + ws@6.2.3: + resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + ws@7.5.10: + resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} + engines: {node: '>=8.3.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + ws@8.17.1: + resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + x-default-browser@0.4.0: + resolution: {integrity: sha512-7LKo7RtWfoFN/rHx1UELv/2zHGMx8MkZKDq1xENmOCTkfIqZJ0zZ26NEJX8czhnPXVcqS0ARjjfJB+eJ0/5Cvw==} + hasBin: true + + xdg-basedir@4.0.0: + resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} + engines: {node: '>=8'} + + xml-name-validator@3.0.0: + resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} + + xml-name-validator@4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} + + xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + + xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + + y18n@4.0.3: + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yallist@2.1.2: + resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + + yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + + yargs-parser@13.1.2: + resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==} + + yargs-parser@18.1.3: + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} + + yargs-parser@20.2.4: + resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} + engines: {node: '>=10'} + + yargs-parser@20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs@13.3.2: + resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==} + + yargs@15.4.1: + resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} + engines: {node: '>=8'} + + yargs@16.2.0: + resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} + engines: {node: '>=10'} + + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + + yauzl@2.10.0: + resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + + yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + yocto-queue@1.1.1: + resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} + engines: {node: '>=12.20'} + + zustand@4.5.4: + resolution: {integrity: sha512-/BPMyLKJPtFEvVL0E9E9BTUM63MNyhPGlvxk1XjrfWTUlV+BR8jufjsovHzrtR6YNcBEcL7cMHovL1n9xHawEg==} + engines: {node: '>=12.7.0'} + peerDependencies: + '@types/react': 18.0.18 + immer: '>=9.0.6' + react: '>=16.8' + peerDependenciesMeta: + '@types/react': + optional: true + immer: + optional: true + react: + optional: true + + zwitch@1.0.5: + resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==} + + zwitch@2.0.4: + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + +snapshots: + + '@adobe/css-tools@4.4.0': {} + + '@ampproject/remapping@2.3.0': + dependencies: + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + + '@artsy/fresnel@6.2.1(react@18.3.1)': + dependencies: + react: 18.3.1 + + '@asgardeo/auth-js@5.0.1': {} + + '@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@asgardeo/auth-spa': 3.0.3 + '@babel/runtime-corejs3': 7.24.7 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router-dom: 4.3.1(react@18.3.1) + transitivePeerDependencies: + - debug + + '@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.24.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': + dependencies: + '@asgardeo/auth-spa': 3.0.3 + '@babel/runtime-corejs3': 7.24.7 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router-dom: 6.24.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + transitivePeerDependencies: + - debug + + '@asgardeo/auth-spa@3.0.3': + dependencies: + '@asgardeo/auth-js': 5.0.1 + await-semaphore: 0.1.3 + axios: 0.26.1 + base64url: 3.0.1 + buffer: 6.0.3 + fast-sha256: 1.3.0 + jose: 4.15.7 + randombytes: 2.1.0 + transitivePeerDependencies: + - debug + + '@aw-web-design/x-default-browser@1.4.126': + dependencies: + default-browser-id: 3.0.0 + + '@babel/cli@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@jridgewell/trace-mapping': 0.3.25 + commander: 6.2.1 + convert-source-map: 2.0.0 + fs-readdir-recursive: 1.1.0 + glob: 7.2.3 + make-dir: 2.1.0 + slash: 2.0.0 + optionalDependencies: + '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3 + chokidar: 3.6.0 + + '@babel/code-frame@7.12.11': + dependencies: + '@babel/highlight': 7.24.7 + + '@babel/code-frame@7.24.7': + dependencies: + '@babel/highlight': 7.24.7 + picocolors: 1.0.1 + + '@babel/compat-data@7.24.7': {} + + '@babel/core@7.12.9': + dependencies: + '@babel/code-frame': 7.24.7 + '@babel/generator': 7.24.7 + '@babel/helper-module-transforms': 7.24.7(@babel/core@7.12.9) + '@babel/helpers': 7.24.7 + '@babel/parser': 7.24.7 + '@babel/template': 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + convert-source-map: 1.9.0 + debug: 4.3.5(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + lodash: 4.17.21 + resolve: 1.22.8 + semver: 5.7.2 + source-map: 0.5.7 + transitivePeerDependencies: + - supports-color + + '@babel/core@7.24.7': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.24.7 + '@babel/generator': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) + '@babel/helpers': 7.24.7 + '@babel/parser': 7.24.7 + '@babel/template': 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + convert-source-map: 2.0.0 + debug: 4.3.5(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/generator@7.24.7': + dependencies: + '@babel/types': 7.24.7 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 2.5.2 + + '@babel/helper-annotate-as-pure@7.24.7': + dependencies: + '@babel/types': 7.24.7 + + '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7': + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-compilation-targets@7.24.7': + dependencies: + '@babel/compat-data': 7.24.7 + '@babel/helper-validator-option': 7.24.7 + browserslist: 4.23.1 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-function-name': 7.24.7 + '@babel/helper-member-expression-to-functions': 7.24.7 + '@babel/helper-optimise-call-expression': 7.24.7 + '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7) + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/helper-split-export-declaration': 7.24.7 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + regexpu-core: 5.3.2 + semver: 6.3.1 + + '@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/traverse': 7.24.7 + debug: 4.3.5(supports-color@8.1.1) + lodash.debounce: 4.0.8 + resolve: 1.22.8 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + debug: 4.3.5(supports-color@8.1.1) + lodash.debounce: 4.0.8 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + + '@babel/helper-environment-visitor@7.24.7': + dependencies: + '@babel/types': 7.24.7 + + '@babel/helper-function-name@7.24.7': + dependencies: + '@babel/template': 7.24.7 + '@babel/types': 7.24.7 + + '@babel/helper-hoist-variables@7.24.7': + dependencies: + '@babel/types': 7.24.7 + + '@babel/helper-member-expression-to-functions@7.24.7': + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-imports@7.24.7': + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-imports@7.24.7(supports-color@5.5.0)': + dependencies: + '@babel/traverse': 7.24.7(supports-color@5.5.0) + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.24.7(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-simple-access': 7.24.7 + '@babel/helper-split-export-declaration': 7.24.7 + '@babel/helper-validator-identifier': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-simple-access': 7.24.7 + '@babel/helper-split-export-declaration': 7.24.7 + '@babel/helper-validator-identifier': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-optimise-call-expression@7.24.7': + dependencies: + '@babel/types': 7.24.7 + + '@babel/helper-plugin-utils@7.10.4': {} + + '@babel/helper-plugin-utils@7.24.7': {} + + '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-wrap-function': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-member-expression-to-functions': 7.24.7 + '@babel/helper-optimise-call-expression': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-simple-access@7.24.7': + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-skip-transparent-expression-wrappers@7.24.7': + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-split-export-declaration@7.24.7': + dependencies: + '@babel/types': 7.24.7 + + '@babel/helper-string-parser@7.24.7': {} + + '@babel/helper-validator-identifier@7.24.7': {} + + '@babel/helper-validator-option@7.24.7': {} + + '@babel/helper-wrap-function@7.24.7': + dependencies: + '@babel/helper-function-name': 7.24.7 + '@babel/template': 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helpers@7.24.7': + dependencies: + '@babel/template': 7.24.7 + '@babel/types': 7.24.7 + + '@babel/highlight@7.24.7': + dependencies: + '@babel/helper-validator-identifier': 7.24.7 + chalk: 2.4.2 + js-tokens: 4.0.0 + picocolors: 1.0.1 + + '@babel/parser@7.24.7': + dependencies: + '@babel/types': 7.24.7 + + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-export-default-from@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.24.7) + + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) + + '@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) + '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.12.9) + + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.7)': + dependencies: + '@babel/compat-data': 7.24.7 + '@babel/core': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7) + '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7) + + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + + '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-export-default-from@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-classes@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-function-name': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7) + '@babel/helper-split-export-declaration': 7.24.7 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/template': 7.24.7 + + '@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7) + + '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7) + + '@babel/plugin-transform-flow-strip-types@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.7) + + '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.7)': + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-function-name': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + + '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7) - /@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7) - /@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) @@ -20897,11 +34909,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) @@ -20910,11 +34918,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-hoist-variables': 7.24.7 @@ -20924,11 +34928,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) @@ -20936,50 +34936,30 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) - /@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7) - /@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-compilation-targets': 7.24.7 @@ -20987,11 +34967,7 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7) '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7) - /@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -20999,21 +34975,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7) - /@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -21022,29 +34990,17 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-parameters@7.24.7(@babel/core@7.12.9): - resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.12.9)': dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) @@ -21052,11 +35008,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 @@ -21066,49 +35018,29 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-react-constant-elements@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-7LidzZfUXyfZ8/buRW6qIIHBY8wAZ1OrY9c/wTr8YhZ6vMPo+Uc/CVFLYY1spZrEQlD4w5u8wjqk5NQ3OVqQKA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-constant-elements@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - /@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 @@ -21119,40 +35051,24 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 regenerator-transform: 0.15.2 - /@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-runtime@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-runtime@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-module-imports': 7.24.7 @@ -21163,22 +35079,13 @@ packages: semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -21186,38 +35093,22 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 @@ -21227,57 +35118,35 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - /@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - /@babel/polyfill@7.12.1: - resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==} - deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information. + '@babel/polyfill@7.12.1': dependencies: core-js: 2.6.12 regenerator-runtime: 0.13.11 - /@babel/preset-env@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/preset-env@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/compat-data': 7.24.7 '@babel/core': 7.24.7 @@ -21364,32 +35233,21 @@ packages: transitivePeerDependencies: - supports-color - /@babel/preset-flow@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/preset-flow@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/helper-validator-option': 7.24.7 '@babel/plugin-transform-flow-strip-types': 7.24.7(@babel/core@7.24.7) - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.7): - resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} - peerDependencies: - '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/types': 7.24.7 esutils: 2.0.3 - /@babel/preset-react@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/preset-react@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -21401,11 +35259,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/preset-typescript@7.24.7(@babel/core@7.24.7): - resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/preset-typescript@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -21416,11 +35270,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/register@7.24.6(@babel/core@7.24.7): - resolution: {integrity: sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/register@7.24.6(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 clone-deep: 4.0.1 @@ -21429,33 +35279,24 @@ packages: pirates: 4.0.6 source-map-support: 0.5.21 - /@babel/regjsgen@0.8.0: - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} + '@babel/regjsgen@0.8.0': {} - /@babel/runtime-corejs3@7.24.7: - resolution: {integrity: sha512-eytSX6JLBY6PVAeQa2bFlDx/7Mmln/gaEpsit5a3WEvjGfiIytEsgAwuIXCPM0xvw0v0cJn3ilq0/TvXrW0kgA==} - engines: {node: '>=6.9.0'} + '@babel/runtime-corejs3@7.24.7': dependencies: core-js-pure: 3.37.1 regenerator-runtime: 0.14.1 - /@babel/runtime@7.24.7: - resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==} - engines: {node: '>=6.9.0'} + '@babel/runtime@7.24.7': dependencies: regenerator-runtime: 0.14.1 - /@babel/template@7.24.7: - resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==} - engines: {node: '>=6.9.0'} + '@babel/template@7.24.7': dependencies: '@babel/code-frame': 7.24.7 '@babel/parser': 7.24.7 '@babel/types': 7.24.7 - /@babel/traverse@7.24.7: - resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==} - engines: {node: '>=6.9.0'} + '@babel/traverse@7.24.7': dependencies: '@babel/code-frame': 7.24.7 '@babel/generator': 7.24.7 @@ -21465,14 +35306,12 @@ packages: '@babel/helper-split-export-declaration': 7.24.7 '@babel/parser': 7.24.7 '@babel/types': 7.24.7 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/traverse@7.24.7(supports-color@5.5.0): - resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==} - engines: {node: '>=6.9.0'} + '@babel/traverse@7.24.7(supports-color@5.5.0)': dependencies: '@babel/code-frame': 7.24.7 '@babel/generator': 7.24.7 @@ -21486,29 +35325,20 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color - dev: false - /@babel/types@7.24.7: - resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==} - engines: {node: '>=6.9.0'} + '@babel/types@7.24.7': dependencies: '@babel/helper-string-parser': 7.24.7 '@babel/helper-validator-identifier': 7.24.7 to-fast-properties: 2.0.0 - /@base2/pretty-print-object@1.0.1: - resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} + '@base2/pretty-print-object@1.0.1': {} - /@bcoe/v8-coverage@0.2.3: - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + '@bcoe/v8-coverage@0.2.3': {} - /@braintree/sanitize-url@5.0.2: - resolution: {integrity: sha512-NBEJlHWrhQucLhZGHtSxM2loSaNUMajC7KOYJLyfcdW/6goVoff2HoYI3bz8YCDN0wKGbxtUL0gx2dvHpvnWlw==} - deprecated: Potential XSS vulnerability patched in v6.0.0. - dev: false + '@braintree/sanitize-url@5.0.2': {} - /@changesets/apply-release-plan@7.0.3: - resolution: {integrity: sha512-klL6LCdmfbEe9oyfLxnidIf/stFXmrbFO/3gT5LU5pcyoZytzJe4gWpTBx3BPmyNPl16dZ1xrkcW7b98e3tYkA==} + '@changesets/apply-release-plan@7.0.3': dependencies: '@babel/runtime': 7.24.7 '@changesets/config': 3.0.1 @@ -21524,10 +35354,8 @@ packages: prettier: 2.8.8 resolve-from: 5.0.0 semver: 7.6.2 - dev: true - /@changesets/assemble-release-plan@6.0.2: - resolution: {integrity: sha512-n9/Tdq+ze+iUtjmq0mZO3pEhJTKkku9hUxtUadW30jlN7kONqJG3O6ALeXrmc6gsi/nvoCuKjqEJ68Hk8RbMTQ==} + '@changesets/assemble-release-plan@6.0.2': dependencies: '@babel/runtime': 7.24.7 '@changesets/errors': 0.2.0 @@ -21536,27 +35364,20 @@ packages: '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 semver: 7.6.2 - dev: true - /@changesets/changelog-git@0.2.0: - resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} + '@changesets/changelog-git@0.2.0': dependencies: '@changesets/types': 6.0.0 - dev: true - /@changesets/changelog-github@0.4.8: - resolution: {integrity: sha512-jR1DHibkMAb5v/8ym77E4AMNWZKB5NPzw5a5Wtqm1JepAuIF+hrKp2u04NKM14oBZhHglkCfrla9uq8ORnK/dw==} + '@changesets/changelog-github@0.4.8(encoding@0.1.13)': dependencies: - '@changesets/get-github-info': 0.5.2 + '@changesets/get-github-info': 0.5.2(encoding@0.1.13) '@changesets/types': 5.2.1 dotenv: 8.6.0 transitivePeerDependencies: - encoding - dev: true - /@changesets/cli@2.27.5: - resolution: {integrity: sha512-UVppOvzCjjylBenFcwcZNG5IaZ8jsIaEVraV/pbXgukYNb0Oqa0d8UWb0LkYzA1Bf1HmUrOfccFcRLheRuA7pA==} - hasBin: true + '@changesets/cli@2.27.5': dependencies: '@babel/runtime': 7.24.7 '@changesets/apply-release-plan': 7.0.3 @@ -21583,7 +35404,6 @@ packages: fs-extra: 7.0.1 human-id: 1.0.2 meow: 6.1.1 - mri: 1.2.0 outdent: 0.5.0 p-limit: 2.3.0 preferred-pm: 3.1.4 @@ -21592,10 +35412,8 @@ packages: spawndamnit: 2.0.0 term-size: 2.2.1 tty-table: 4.2.3 - dev: true - /@changesets/config@3.0.1: - resolution: {integrity: sha512-nCr8pOemUjvGJ8aUu8TYVjqnUL+++bFOQHBVmtNbLvKzIDkN/uiP/Z4RKmr7NNaiujIURHySDEGFPftR4GbTUA==} + '@changesets/config@3.0.1': dependencies: '@changesets/errors': 0.2.0 '@changesets/get-dependents-graph': 2.1.0 @@ -21604,35 +35422,27 @@ packages: '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 micromatch: 4.0.7 - dev: true - /@changesets/errors@0.2.0: - resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} + '@changesets/errors@0.2.0': dependencies: extendable-error: 0.1.7 - dev: true - /@changesets/get-dependents-graph@2.1.0: - resolution: {integrity: sha512-QOt6pQq9RVXKGHPVvyKimJDYJumx7p4DO5MO9AhRJYgAPgv0emhNqAqqysSVKHBm4sxKlGN4S1zXOIb5yCFuhQ==} + '@changesets/get-dependents-graph@2.1.0': dependencies: '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 chalk: 2.4.2 fs-extra: 7.0.1 semver: 7.6.2 - dev: true - /@changesets/get-github-info@0.5.2: - resolution: {integrity: sha512-JppheLu7S114aEs157fOZDjFqUDpm7eHdq5E8SSR0gUBTEK0cNSHsrSR5a66xs0z3RWuo46QvA3vawp8BxDHvg==} + '@changesets/get-github-info@0.5.2(encoding@0.1.13)': dependencies: dataloader: 1.4.0 - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) transitivePeerDependencies: - encoding - dev: true - /@changesets/get-release-plan@4.0.2: - resolution: {integrity: sha512-rOalz7nMuMV2vyeP7KBeAhqEB7FM2GFPO5RQSoOoUKKH9L6wW3QyPA2K+/rG9kBrWl2HckPVES73/AuwPvbH3w==} + '@changesets/get-release-plan@4.0.2': dependencies: '@babel/runtime': 7.24.7 '@changesets/assemble-release-plan': 6.0.2 @@ -21641,14 +35451,10 @@ packages: '@changesets/read': 0.6.0 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 - dev: true - /@changesets/get-version-range-type@0.4.0: - resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} - dev: true + '@changesets/get-version-range-type@0.4.0': {} - /@changesets/git@3.0.0: - resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} + '@changesets/git@3.0.0': dependencies: '@babel/runtime': 7.24.7 '@changesets/errors': 0.2.0 @@ -21657,33 +35463,25 @@ packages: is-subdir: 1.2.0 micromatch: 4.0.7 spawndamnit: 2.0.0 - dev: true - /@changesets/logger@0.1.0: - resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} + '@changesets/logger@0.1.0': dependencies: chalk: 2.4.2 - dev: true - /@changesets/parse@0.4.0: - resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} + '@changesets/parse@0.4.0': dependencies: '@changesets/types': 6.0.0 js-yaml: 3.13.1 - dev: true - /@changesets/pre@2.0.0: - resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} + '@changesets/pre@2.0.0': dependencies: '@babel/runtime': 7.24.7 '@changesets/errors': 0.2.0 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 - dev: true - /@changesets/read@0.6.0: - resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} + '@changesets/read@0.6.0': dependencies: '@babel/runtime': 7.24.7 '@changesets/git': 3.0.0 @@ -21693,62 +35491,40 @@ packages: chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 - dev: true - /@changesets/should-skip-package@0.1.0: - resolution: {integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==} + '@changesets/should-skip-package@0.1.0': dependencies: '@babel/runtime': 7.24.7 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 - dev: true - /@changesets/types@4.1.0: - resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} - dev: true + '@changesets/types@4.1.0': {} - /@changesets/types@5.2.1: - resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==} - dev: true + '@changesets/types@5.2.1': {} - /@changesets/types@6.0.0: - resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} - dev: true + '@changesets/types@6.0.0': {} - /@changesets/write@0.3.1: - resolution: {integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==} + '@changesets/write@0.3.1': dependencies: '@babel/runtime': 7.24.7 '@changesets/types': 6.0.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 2.8.8 - dev: true - /@cnakazawa/watch@1.0.4: - resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==} - engines: {node: '>=0.1.95'} - hasBin: true + '@cnakazawa/watch@1.0.4': dependencies: exec-sh: 0.3.6 minimist: 1.2.8 - /@colors/colors@1.5.0: - resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} - engines: {node: '>=0.1.90'} - requiresBuild: true + '@colors/colors@1.5.0': optional: true - /@cspotcode/source-map-support@0.8.1: - resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} - engines: {node: '>=12'} + '@cspotcode/source-map-support@0.8.1': dependencies: '@jridgewell/trace-mapping': 0.3.9 - dev: true - /@cypress/request@2.88.12: - resolution: {integrity: sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==} - engines: {node: '>= 6'} + '@cypress/request@2.88.12': dependencies: aws-sign2: 0.7.0 aws4: 1.13.0 @@ -21768,23 +35544,17 @@ packages: tough-cookie: 4.1.4 tunnel-agent: 0.6.0 uuid: 8.3.2 - dev: true - /@cypress/xvfb@1.2.4(supports-color@8.1.1): - resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} + '@cypress/xvfb@1.2.4(supports-color@8.1.1)': dependencies: debug: 3.2.7(supports-color@8.1.1) lodash.once: 4.1.1 transitivePeerDependencies: - supports-color - dev: true - /@discoveryjs/json-ext@0.5.7: - resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} - engines: {node: '>=10.0.0'} + '@discoveryjs/json-ext@0.5.7': {} - /@emotion/babel-plugin@11.11.0: - resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} + '@emotion/babel-plugin@11.11.0': dependencies: '@babel/helper-module-imports': 7.24.7 '@babel/runtime': 7.24.7 @@ -21799,50 +35569,30 @@ packages: stylis: 4.2.0 transitivePeerDependencies: - supports-color - dev: false - /@emotion/cache@11.11.0: - resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==} + '@emotion/cache@11.11.0': dependencies: '@emotion/memoize': 0.8.1 '@emotion/sheet': 1.2.2 '@emotion/utils': 1.2.1 '@emotion/weak-memoize': 0.3.1 stylis: 4.2.0 - dev: false - /@emotion/hash@0.9.1: - resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==} - dev: false + '@emotion/hash@0.9.1': {} - /@emotion/is-prop-valid@0.8.8: - resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} + '@emotion/is-prop-valid@0.8.8': dependencies: '@emotion/memoize': 0.7.4 - dev: false - /@emotion/is-prop-valid@1.2.2: - resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==} + '@emotion/is-prop-valid@1.2.2': dependencies: '@emotion/memoize': 0.8.1 - dev: false - /@emotion/memoize@0.7.4: - resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} - dev: false + '@emotion/memoize@0.7.4': {} - /@emotion/memoize@0.8.1: - resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} - dev: false + '@emotion/memoize@0.8.1': {} - /@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1): - resolution: {integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==} - peerDependencies: - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@types/react': - optional: true + '@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 '@emotion/babel-plugin': 11.11.0 @@ -21851,36 +35601,24 @@ packages: '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@emotion/utils': 1.2.1 '@emotion/weak-memoize': 0.3.1 - '@types/react': 18.0.18 hoist-non-react-statics: 3.3.2 react: 18.3.1 + optionalDependencies: + '@types/react': 18.0.18 transitivePeerDependencies: - supports-color - dev: false - /@emotion/serialize@1.1.4: - resolution: {integrity: sha512-RIN04MBT8g+FnDwgvIUi8czvr1LU1alUMI05LekWB5DGyTm8cCBMCRpq3GqaiyEDRptEXOyXnvZ58GZYu4kBxQ==} + '@emotion/serialize@1.1.4': dependencies: '@emotion/hash': 0.9.1 '@emotion/memoize': 0.8.1 '@emotion/unitless': 0.8.1 '@emotion/utils': 1.2.1 csstype: 3.1.3 - dev: false - /@emotion/sheet@1.2.2: - resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} - dev: false + '@emotion/sheet@1.2.2': {} - /@emotion/styled@11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1): - resolution: {integrity: sha512-/ZjjnaNKvuMPxcIiUkf/9SHoG4Q196DRl1w82hQ3WCsjo1IUR8uaGWrC6a87CrYAW0Kb/pK7hk8BnLgLRi9KoQ==} - peerDependencies: - '@emotion/react': ^11.0.0-rc.0 - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@types/react': - optional: true + '@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 '@emotion/babel-plugin': 11.11.0 @@ -21889,243 +35627,106 @@ packages: '@emotion/serialize': 1.1.4 '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@emotion/utils': 1.2.1 - '@types/react': 18.0.18 react: 18.3.1 + optionalDependencies: + '@types/react': 18.0.18 transitivePeerDependencies: - supports-color - dev: false - /@emotion/unitless@0.7.5: - resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==} - dev: false + '@emotion/unitless@0.7.5': {} - /@emotion/unitless@0.8.1: - resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} - dev: false + '@emotion/unitless@0.8.1': {} - /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1): - resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} - peerDependencies: - react: '>=16.8.0' + '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1)': dependencies: react: 18.3.1 - dev: false - /@emotion/utils@1.2.1: - resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} - dev: false + '@emotion/utils@1.2.1': {} - /@emotion/weak-memoize@0.3.1: - resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==} - dev: false + '@emotion/weak-memoize@0.3.1': {} - /@esbuild/android-arm64@0.18.20: - resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true + '@esbuild/android-arm64@0.18.20': optional: true - /@esbuild/android-arm@0.18.20: - resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true + '@esbuild/android-arm@0.18.20': optional: true - /@esbuild/android-x64@0.18.20: - resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true + '@esbuild/android-x64@0.18.20': optional: true - /@esbuild/darwin-arm64@0.18.20: - resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true + '@esbuild/darwin-arm64@0.18.20': optional: true - /@esbuild/darwin-x64@0.18.20: - resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true + '@esbuild/darwin-x64@0.18.20': optional: true - /@esbuild/freebsd-arm64@0.18.20: - resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true + '@esbuild/freebsd-arm64@0.18.20': optional: true - /@esbuild/freebsd-x64@0.18.20: - resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true + '@esbuild/freebsd-x64@0.18.20': optional: true - /@esbuild/linux-arm64@0.18.20: - resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@esbuild/linux-arm64@0.18.20': optional: true - /@esbuild/linux-arm@0.18.20: - resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true + '@esbuild/linux-arm@0.18.20': optional: true - /@esbuild/linux-ia32@0.18.20: - resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true + '@esbuild/linux-ia32@0.18.20': optional: true - /@esbuild/linux-loong64@0.18.20: - resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true + '@esbuild/linux-loong64@0.18.20': optional: true - /@esbuild/linux-mips64el@0.18.20: - resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true + '@esbuild/linux-mips64el@0.18.20': optional: true - /@esbuild/linux-ppc64@0.18.20: - resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true + '@esbuild/linux-ppc64@0.18.20': optional: true - /@esbuild/linux-riscv64@0.18.20: - resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true + '@esbuild/linux-riscv64@0.18.20': optional: true - /@esbuild/linux-s390x@0.18.20: - resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true + '@esbuild/linux-s390x@0.18.20': optional: true - /@esbuild/linux-x64@0.18.20: - resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true + '@esbuild/linux-x64@0.18.20': optional: true - /@esbuild/netbsd-x64@0.18.20: - resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true + '@esbuild/netbsd-x64@0.18.20': optional: true - /@esbuild/openbsd-x64@0.18.20: - resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true + '@esbuild/openbsd-x64@0.18.20': optional: true - /@esbuild/sunos-x64@0.18.20: - resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true + '@esbuild/sunos-x64@0.18.20': optional: true - /@esbuild/win32-arm64@0.18.20: - resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true + '@esbuild/win32-arm64@0.18.20': optional: true - /@esbuild/win32-ia32@0.18.20: - resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true + '@esbuild/win32-ia32@0.18.20': optional: true - /@esbuild/win32-x64@0.18.20: - resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true + '@esbuild/win32-x64@0.18.20': optional: true - /@eslint-community/eslint-utils@4.4.0(eslint@7.32.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 + '@eslint-community/eslint-utils@4.4.0(eslint@7.32.0)': dependencies: eslint: 7.32.0 eslint-visitor-keys: 3.4.3 - 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 + '@eslint-community/eslint-utils@4.4.0(eslint@8.46.0)': dependencies: eslint: 8.46.0 eslint-visitor-keys: 3.4.3 - dev: true - /@eslint-community/regexpp@4.11.0: - resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - dev: true + '@eslint-community/regexpp@4.11.0': {} - /@eslint/eslintrc@0.4.3: - resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} - engines: {node: ^10.12.0 || >=12.0.0} + '@eslint/eslintrc@0.4.3': dependencies: ajv: 6.12.6 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) espree: 7.3.1 globals: 13.24.0 ignore: 4.0.6 @@ -22136,12 +35737,10 @@ packages: transitivePeerDependencies: - supports-color - /@eslint/eslintrc@2.1.4: - resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@eslint/eslintrc@2.1.4': dependencies: ajv: 6.12.6 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) espree: 9.6.1 globals: 13.24.0 ignore: 5.3.1 @@ -22151,129 +35750,76 @@ packages: strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color - dev: true - /@eslint/js@8.57.0: - resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true + '@eslint/js@8.57.0': {} - /@fal-works/esbuild-plugin-global-externals@2.1.2: - resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} - dev: true + '@fal-works/esbuild-plugin-global-externals@2.1.2': {} - /@fluentui/react-component-event-listener@0.63.1(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-gSMdOh6tI3IJKZFqxfQwbTpskpME0CvxdxGM2tdglmf6ZPVDi0L4+KKIm+2dN8nzb8Ya1A8ZT+Ddq0KmZtwVQg==} - peerDependencies: - react: ^16.8.0 || ^17 || ^18 - react-dom: ^16.8.0 || ^17 || ^18 + '@fluentui/react-component-event-listener@0.63.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false - /@fluentui/react-component-ref@0.63.1(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-8MkXX4+R3i80msdbD4rFpEB4WWq2UDvGwG386g3ckIWbekdvN9z2kWAd9OXhRGqB7QeOsoAGWocp6gAMCivRlw==} - peerDependencies: - react: ^16.8.0 || ^17 || ^18 - react-dom: ^16.8.0 || ^17 || ^18 + '@fluentui/react-component-ref@0.63.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 16.13.1 - dev: false - /@gar/promisify@1.1.3: - resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} + '@gar/promisify@1.1.3': {} - /@gilbarbara/deep-equal@0.1.2: - resolution: {integrity: sha512-jk+qzItoEb0D0xSSmrKDDzf9sheQj/BAPxlgNxgmOaA3mxpUa6ndJLYGZKsJnIVEQSD8zcTbyILz7I0HcnBCRA==} - dev: false + '@gilbarbara/deep-equal@0.1.2': {} - /@gilbarbara/deep-equal@0.3.1: - resolution: {integrity: sha512-I7xWjLs2YSVMc5gGx1Z3ZG1lgFpITPndpi8Ku55GeEIKpACCPQNS/OTqQbxgTCfq0Ncvcc+CrFov96itVh6Qvw==} - dev: false + '@gilbarbara/deep-equal@0.3.1': {} - /@hapi/hoek@9.3.0: - resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} - dev: false + '@hapi/hoek@9.3.0': {} - /@hapi/topo@5.1.0: - resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} + '@hapi/topo@5.1.0': dependencies: '@hapi/hoek': 9.3.0 - dev: false - /@humanwhocodes/config-array@0.11.14: - resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} - engines: {node: '>=10.10.0'} - deprecated: Use @eslint/config-array instead + '@humanwhocodes/config-array@0.11.14': dependencies: '@humanwhocodes/object-schema': 2.0.3 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) minimatch: 3.1.2 transitivePeerDependencies: - supports-color - dev: true - /@humanwhocodes/config-array@0.5.0: - resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} - engines: {node: '>=10.10.0'} - deprecated: Use @eslint/config-array instead + '@humanwhocodes/config-array@0.5.0': dependencies: '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) minimatch: 3.1.2 transitivePeerDependencies: - supports-color - /@humanwhocodes/module-importer@1.0.1: - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} - engines: {node: '>=12.22'} - dev: true + '@humanwhocodes/module-importer@1.0.1': {} - /@humanwhocodes/object-schema@1.2.1: - resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} - deprecated: Use @eslint/object-schema instead + '@humanwhocodes/object-schema@1.2.1': {} - /@humanwhocodes/object-schema@2.0.3: - resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} - deprecated: Use @eslint/object-schema instead - dev: true + '@humanwhocodes/object-schema@2.0.3': {} - /@hutson/parse-repository-url@3.0.2: - resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} - engines: {node: '>=6.9.0'} - dev: true + '@hutson/parse-repository-url@3.0.2': {} - /@icons/material@0.2.4(react@18.3.1): - resolution: {integrity: sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==} - peerDependencies: - react: '*' + '@icons/material@0.2.4(react@18.3.1)': dependencies: react: 18.3.1 - dev: false - /@isaacs/cliui@8.0.2: - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: '>=12'} + '@isaacs/cliui@8.0.2': dependencies: string-width: 5.1.2 - string-width-cjs: /string-width@4.2.3 + string-width-cjs: string-width@4.2.3 strip-ansi: 7.1.0 - strip-ansi-cjs: /strip-ansi@6.0.1 + strip-ansi-cjs: strip-ansi@6.0.1 wrap-ansi: 8.1.0 - wrap-ansi-cjs: /wrap-ansi@7.0.0 + wrap-ansi-cjs: wrap-ansi@7.0.0 - /@isaacs/string-locale-compare@1.1.0: - resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==} - dev: true + '@isaacs/string-locale-compare@1.1.0': {} - /@istanbuljs/load-nyc-config@1.1.0: - resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} - engines: {node: '>=8'} + '@istanbuljs/load-nyc-config@1.1.0': dependencies: camelcase: 5.3.1 find-up: 4.1.0 @@ -22281,13 +35827,9 @@ packages: js-yaml: 3.13.1 resolve-from: 5.0.0 - /@istanbuljs/schema@0.1.3: - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} - engines: {node: '>=8'} + '@istanbuljs/schema@0.1.3': {} - /@jest/console@26.6.2: - resolution: {integrity: sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==} - engines: {node: '>= 10.14.2'} + '@jest/console@26.6.2': dependencies: '@jest/types': 26.6.2 '@types/node': 13.13.52 @@ -22295,11 +35837,8 @@ packages: jest-message-util: 26.6.2 jest-util: 26.6.2 slash: 3.0.0 - dev: true - /@jest/console@29.7.0: - resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/console@29.7.0': dependencies: '@jest/types': 29.6.3 '@types/node': 13.13.52 @@ -22308,9 +35847,7 @@ packages: jest-util: 29.7.0 slash: 3.0.0 - /@jest/core@26.6.3: - resolution: {integrity: sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==} - engines: {node: '>= 10.14.2'} + '@jest/core@26.6.3(ts-node@8.10.2(typescript@4.9.5))': dependencies: '@jest/console': 26.6.2 '@jest/reporters': 26.6.2 @@ -22323,14 +35860,14 @@ packages: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 26.6.2 - jest-config: 26.6.3 + jest-config: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-haste-map: 26.6.2 jest-message-util: 26.6.2 jest-regex-util: 26.0.0 jest-resolve: 26.6.2 jest-resolve-dependencies: 26.6.3 - jest-runner: 26.6.3 - jest-runtime: 26.6.3 + jest-runner: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-runtime: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-snapshot: 26.6.2 jest-util: 26.6.2 jest-validate: 26.6.2 @@ -22346,19 +35883,48 @@ packages: - supports-color - ts-node - utf-8-validate - dev: true - /@jest/core@29.7.0(ts-node@8.10.2): - resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))': + dependencies: + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0(node-notifier@8.0.2) + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 13.13.52 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.9.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 + micromatch: 4.0.7 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-ansi: 6.0.1 + optionalDependencies: + node-notifier: 8.0.2 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + - ts-node + + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6))': dependencies: '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 + '@jest/reporters': 29.7.0(node-notifier@8.0.2) '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 @@ -22369,7 +35935,7 @@ packages: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -22385,48 +35951,39 @@ packages: pretty-format: 29.7.0 slash: 3.0.0 strip-ansi: 6.0.1 + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - babel-plugin-macros - supports-color - ts-node - /@jest/environment@26.6.2: - resolution: {integrity: sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==} - engines: {node: '>= 10.14.2'} + '@jest/environment@26.6.2': dependencies: '@jest/fake-timers': 26.6.2 '@jest/types': 26.6.2 '@types/node': 13.13.52 jest-mock: 26.6.2 - dev: true - /@jest/environment@29.7.0: - resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/environment@29.7.0': dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 '@types/node': 13.13.52 jest-mock: 29.7.0 - /@jest/expect-utils@29.7.0: - resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/expect-utils@29.7.0': dependencies: jest-get-type: 29.6.3 - /@jest/expect@29.7.0: - resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/expect@29.7.0': dependencies: expect: 29.7.0 jest-snapshot: 29.7.0 transitivePeerDependencies: - supports-color - /@jest/fake-timers@26.6.2: - resolution: {integrity: sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==} - engines: {node: '>= 10.14.2'} + '@jest/fake-timers@26.6.2': dependencies: '@jest/types': 26.6.2 '@sinonjs/fake-timers': 6.0.1 @@ -22434,11 +35991,8 @@ packages: jest-message-util: 26.6.2 jest-mock: 26.6.2 jest-util: 26.6.2 - dev: true - /@jest/fake-timers@29.7.0: - resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/fake-timers@29.7.0': dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 @@ -22447,18 +36001,13 @@ packages: jest-mock: 29.7.0 jest-util: 29.7.0 - /@jest/globals@26.6.2: - resolution: {integrity: sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==} - engines: {node: '>= 10.14.2'} + '@jest/globals@26.6.2': dependencies: '@jest/environment': 26.6.2 '@jest/types': 26.6.2 expect: 26.6.2 - dev: true - /@jest/globals@29.7.0: - resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/globals@29.7.0': dependencies: '@jest/environment': 29.7.0 '@jest/expect': 29.7.0 @@ -22467,9 +36016,7 @@ packages: transitivePeerDependencies: - supports-color - /@jest/reporters@26.6.2: - resolution: {integrity: sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==} - engines: {node: '>= 10.14.2'} + '@jest/reporters@26.6.2': dependencies: '@bcoe/v8-coverage': 0.2.3 '@jest/console': 26.6.2 @@ -22499,16 +36046,8 @@ packages: node-notifier: 8.0.2 transitivePeerDependencies: - supports-color - dev: true - /@jest/reporters@29.7.0: - resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + '@jest/reporters@29.7.0(node-notifier@8.0.2)': dependencies: '@bcoe/v8-coverage': 0.2.3 '@jest/console': 29.7.0 @@ -22534,80 +36073,63 @@ packages: string-length: 4.0.2 strip-ansi: 6.0.1 v8-to-istanbul: 9.3.0 + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - supports-color - /@jest/schemas@29.6.3: - resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/schemas@29.6.3': dependencies: '@sinclair/typebox': 0.27.8 - /@jest/source-map@26.6.2: - resolution: {integrity: sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==} - engines: {node: '>= 10.14.2'} + '@jest/source-map@26.6.2': dependencies: callsites: 3.1.0 graceful-fs: 4.2.11 source-map: 0.6.1 - dev: true - /@jest/source-map@29.6.3: - resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/source-map@29.6.3': dependencies: '@jridgewell/trace-mapping': 0.3.25 callsites: 3.1.0 graceful-fs: 4.2.11 - /@jest/test-result@26.6.2: - resolution: {integrity: sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==} - engines: {node: '>= 10.14.2'} + '@jest/test-result@26.6.2': dependencies: '@jest/console': 26.6.2 '@jest/types': 26.6.2 '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - dev: true - /@jest/test-result@29.7.0: - resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/test-result@29.7.0': dependencies: '@jest/console': 29.7.0 '@jest/types': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - /@jest/test-sequencer@26.6.3: - resolution: {integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==} - engines: {node: '>= 10.14.2'} + '@jest/test-sequencer@26.6.3(ts-node@8.10.2(typescript@4.9.5))': dependencies: '@jest/test-result': 26.6.2 graceful-fs: 4.2.11 jest-haste-map: 26.6.2 - jest-runner: 26.6.3 - jest-runtime: 26.6.3 + jest-runner: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-runtime: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) transitivePeerDependencies: - bufferutil - canvas - supports-color - ts-node - utf-8-validate - dev: true - /@jest/test-sequencer@29.7.0: - resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/test-sequencer@29.7.0': dependencies: '@jest/test-result': 29.7.0 graceful-fs: 4.2.11 jest-haste-map: 29.7.0 slash: 3.0.0 - /@jest/transform@26.6.2: - resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} - engines: {node: '>= 10.14.2'} + '@jest/transform@26.6.2': dependencies: '@babel/core': 7.24.7 '@jest/types': 26.6.2 @@ -22627,9 +36149,7 @@ packages: transitivePeerDependencies: - supports-color - /@jest/transform@29.7.0: - resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/transform@29.7.0': dependencies: '@babel/core': 7.24.7 '@jest/types': 29.6.3 @@ -22649,9 +36169,7 @@ packages: transitivePeerDependencies: - supports-color - /@jest/types@26.6.2: - resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} - engines: {node: '>= 10.14.2'} + '@jest/types@26.6.2': dependencies: '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 @@ -22659,9 +36177,7 @@ packages: '@types/yargs': 15.0.19 chalk: 4.1.2 - /@jest/types@29.6.3: - resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/types@29.6.3': dependencies: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 @@ -22670,52 +36186,36 @@ packages: '@types/yargs': 17.0.32 chalk: 4.1.2 - /@jridgewell/gen-mapping@0.3.5: - resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} - engines: {node: '>=6.0.0'} + '@jridgewell/gen-mapping@0.3.5': dependencies: '@jridgewell/set-array': 1.2.1 '@jridgewell/sourcemap-codec': 1.5.0 '@jridgewell/trace-mapping': 0.3.25 - /@jridgewell/resolve-uri@3.1.2: - resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} - engines: {node: '>=6.0.0'} + '@jridgewell/resolve-uri@3.1.2': {} - /@jridgewell/set-array@1.2.1: - resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} - engines: {node: '>=6.0.0'} + '@jridgewell/set-array@1.2.1': {} - /@jridgewell/source-map@0.3.6: - resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} + '@jridgewell/source-map@0.3.6': dependencies: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 - /@jridgewell/sourcemap-codec@1.5.0: - resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + '@jridgewell/sourcemap-codec@1.5.0': {} - /@jridgewell/trace-mapping@0.3.25: - resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + '@jridgewell/trace-mapping@0.3.25': dependencies: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 - /@jridgewell/trace-mapping@0.3.9: - resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + '@jridgewell/trace-mapping@0.3.9': dependencies: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 - dev: true - /@leichtgewicht/ip-codec@2.0.5: - resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} - dev: true + '@leichtgewicht/ip-codec@2.0.5': {} - /@lerna/add@5.6.2: - resolution: {integrity: sha512-NHrm7kYiqP+EviguY7/NltJ3G9vGmJW6v2BASUOhP9FZDhYbq3O+rCDlFdoVRNtcyrSg90rZFMOWHph4KOoCQQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/add@5.6.2': dependencies: '@lerna/bootstrap': 5.6.2 '@lerna/command': 5.6.2 @@ -22730,12 +36230,8 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@lerna/bootstrap@5.6.2: - resolution: {integrity: sha512-S2fMOEXbef7nrybQhzBywIGSLhuiQ5huPp1sU+v9Y6XEBsy/2IA+lb0gsZosvPqlRfMtiaFstL+QunaBhlWECA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/bootstrap@5.6.2': dependencies: '@lerna/command': 5.6.2 '@lerna/filter-options': 5.6.2 @@ -22762,42 +36258,27 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@lerna/changed@5.6.2: - resolution: {integrity: sha512-uUgrkdj1eYJHQGsXXlpH5oEAfu3x0qzeTjgvpdNrxHEdQWi7zWiW59hRadmiImc14uJJYIwVK5q/QLugrsdGFQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/changed@5.6.2': dependencies: '@lerna/collect-updates': 5.6.2 '@lerna/command': 5.6.2 '@lerna/listable': 5.6.2 '@lerna/output': 5.6.2 - dev: true - /@lerna/check-working-tree@5.6.2: - resolution: {integrity: sha512-6Vf3IB6p+iNIubwVgr8A/KOmGh5xb4SyRmhFtAVqe33yWl2p3yc+mU5nGoz4ET3JLF1T9MhsePj0hNt6qyOTLQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/check-working-tree@5.6.2': dependencies: '@lerna/collect-uncommitted': 5.6.2 '@lerna/describe-ref': 5.6.2 '@lerna/validation-error': 5.6.2 - dev: true - /@lerna/child-process@5.6.2: - resolution: {integrity: sha512-QIOQ3jIbWdduHd5892fbo3u7/dQgbhzEBB7cvf+Ys/iCPP8UQrBECi1lfRgA4kcTKC2MyMz0SoyXZz/lFcXc3A==} - engines: {node: ^14.15.0 || >=16.0.0} + '@lerna/child-process@5.6.2': dependencies: chalk: 4.1.2 execa: 5.1.1 strong-log-transformer: 2.1.0 - dev: true - /@lerna/clean@5.6.2: - resolution: {integrity: sha512-A7j8r0Hk2pGyLUyaCmx4keNHen1L/KdcOjb4nR6X8GtTJR5AeA47a8rRKOCz9wwdyMPlo2Dau7d3RV9viv7a5g==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/clean@5.6.2': dependencies: '@lerna/command': 5.6.2 '@lerna/filter-options': 5.6.2 @@ -22807,45 +36288,29 @@ packages: p-map: 4.0.0 p-map-series: 2.1.0 p-waterfall: 2.1.1 - dev: true - /@lerna/cli@5.6.2: - resolution: {integrity: sha512-w0NRIEqDOmYKlA5t0iyqx0hbY7zcozvApmfvwF0lhkuhf3k6LRAFSamtimGQWicC779a7J2NXw4ASuBV47Fs1Q==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/cli@5.6.2': dependencies: '@lerna/global-options': 5.6.2 dedent: 0.7.0 npmlog: 6.0.2 yargs: 16.2.0 - dev: true - /@lerna/collect-uncommitted@5.6.2: - resolution: {integrity: sha512-i0jhxpypyOsW2PpPwIw4xg6EPh7/N3YuiI6P2yL7PynZ8nOv8DkIdoyMkhUP4gALjBfckH8Bj94eIaKMviqW4w==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/collect-uncommitted@5.6.2': dependencies: '@lerna/child-process': 5.6.2 chalk: 4.1.2 npmlog: 6.0.2 - dev: true - /@lerna/collect-updates@5.6.2: - resolution: {integrity: sha512-DdTK13X6PIsh9HINiMniFeiivAizR/1FBB+hDVe6tOhsXFBfjHMw1xZhXlE+mYIoFmDm1UFK7zvQSexoaxRqFA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/collect-updates@5.6.2': dependencies: '@lerna/child-process': 5.6.2 '@lerna/describe-ref': 5.6.2 minimatch: 3.1.2 npmlog: 6.0.2 slash: 3.0.0 - dev: true - /@lerna/command@5.6.2: - resolution: {integrity: sha512-eLVGI9TmxcaGt1M7TXGhhBZoeWOtOedMiH7NuCGHtL6TMJ9k+SCExyx+KpNmE6ImyNOzws6EvYLPLjftiqmoaA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/command@5.6.2': dependencies: '@lerna/child-process': 5.6.2 '@lerna/package-graph': 5.6.2 @@ -22857,12 +36322,8 @@ packages: execa: 5.1.1 is-ci: 2.0.0 npmlog: 6.0.2 - dev: true - /@lerna/conventional-commits@5.6.2: - resolution: {integrity: sha512-fPrJpYJhxCgY2uyOCTcAAC6+T6lUAtpEGxLbjWHWTb13oKKEygp9THoFpe6SbAD0fYMb3jeZCZCqNofM62rmuA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/conventional-commits@5.6.2': dependencies: '@lerna/validation-error': 5.6.2 conventional-changelog-angular: 5.0.13 @@ -22874,21 +36335,14 @@ packages: npmlog: 6.0.2 pify: 5.0.0 semver: 7.6.2 - dev: true - /@lerna/create-symlink@5.6.2: - resolution: {integrity: sha512-0WIs3P6ohPVh2+t5axrLZDE5Dt7fe3Kv0Auj0sBiBd6MmKZ2oS76apIl0Bspdbv8jX8+TRKGv6ib0280D0dtEw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/create-symlink@5.6.2': dependencies: cmd-shim: 5.0.0 fs-extra: 9.1.0 npmlog: 6.0.2 - dev: true - /@lerna/create@5.6.2: - resolution: {integrity: sha512-+Y5cMUxMNXjTTU9IHpgRYIwKo39w+blui1P+s+qYlZUSCUAew0xNpOBG8iN0Nc5X9op4U094oIdHxv7Dyz6tWQ==} - engines: {node: ^14.15.0 || >=16.0.0} + '@lerna/create@5.6.2': dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 @@ -22909,32 +36363,20 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@lerna/describe-ref@5.6.2: - resolution: {integrity: sha512-UqU0N77aT1W8duYGir7R+Sk3jsY/c4lhcCEcnayMpFScMbAp0ETGsW04cYsHK29sgg+ZCc5zEwebBqabWhMhnA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/describe-ref@5.6.2': dependencies: '@lerna/child-process': 5.6.2 npmlog: 6.0.2 - dev: true - /@lerna/diff@5.6.2: - resolution: {integrity: sha512-aHKzKvUvUI8vOcshC2Za/bdz+plM3r/ycqUrPqaERzp+kc1pYHyPeXezydVdEmgmmwmyKI5hx4+2QNnzOnun2A==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/diff@5.6.2': dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 '@lerna/validation-error': 5.6.2 npmlog: 6.0.2 - dev: true - /@lerna/exec@5.6.2: - resolution: {integrity: sha512-meZozok5stK7S0oAVn+kdbTmU+kHj9GTXjW7V8kgwG9ld+JJMTH3nKK1L3mEKyk9TFu9vFWyEOF7HNK6yEOoVg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/exec@5.6.2': dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 @@ -22943,91 +36385,55 @@ packages: '@lerna/run-topologically': 5.6.2 '@lerna/validation-error': 5.6.2 p-map: 4.0.0 - dev: true - /@lerna/filter-options@5.6.2: - resolution: {integrity: sha512-4Z0HIhPak2TabTsUqEBQaQeOqgqEt0qyskvsY0oviYvqP/nrJfJBZh4H93jIiNQF59LJCn5Ce3KJJrLExxjlzw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/filter-options@5.6.2': dependencies: '@lerna/collect-updates': 5.6.2 '@lerna/filter-packages': 5.6.2 dedent: 0.7.0 npmlog: 6.0.2 - dev: true - /@lerna/filter-packages@5.6.2: - resolution: {integrity: sha512-el9V2lTEG0Bbz+Omo45hATkRVnChCTJhcTpth19cMJ6mQ4M5H4IgbWCJdFMBi/RpTnOhz9BhJxDbj95kuIvvzw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/filter-packages@5.6.2': dependencies: '@lerna/validation-error': 5.6.2 multimatch: 5.0.0 npmlog: 6.0.2 - dev: true - /@lerna/get-npm-exec-opts@5.6.2: - resolution: {integrity: sha512-0RbSDJ+QC9D5UWZJh3DN7mBIU1NhBmdHOE289oHSkjDY+uEjdzMPkEUy+wZ8fCzMLFnnNQkAEqNaOAzZ7dmFLA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/get-npm-exec-opts@5.6.2': dependencies: npmlog: 6.0.2 - dev: true - /@lerna/get-packed@5.6.2: - resolution: {integrity: sha512-pp5nNDmtrtd21aKHjwwOY5CS7XNIHxINzGa+Jholn1jMDYUtdskpN++ZqYbATGpW831++NJuiuBVyqAWi9xbXg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/get-packed@5.6.2': dependencies: fs-extra: 9.1.0 ssri: 9.0.1 tar: 6.2.1 - dev: true - /@lerna/github-client@5.6.2: - resolution: {integrity: sha512-pjALazZoRZtKqfwLBwmW3HPptVhQm54PvA8s3qhCQ+3JkqrZiIFwkkxNZxs3jwzr+aaSOzfhSzCndg0urb0GXA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/github-client@5.6.2(encoding@0.1.13)': dependencies: '@lerna/child-process': 5.6.2 '@octokit/plugin-enterprise-rest': 6.0.1 - '@octokit/rest': 19.0.13 + '@octokit/rest': 19.0.13(encoding@0.1.13) git-url-parse: 13.1.1 npmlog: 6.0.2 transitivePeerDependencies: - encoding - dev: true - /@lerna/gitlab-client@5.6.2: - resolution: {integrity: sha512-TInJmbrsmYIwUyrRxytjO82KjJbRwm67F7LoZs1shAq6rMvNqi4NxSY9j+hT/939alFmEq1zssoy/caeLXHRfQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/gitlab-client@5.6.2(encoding@0.1.13)': dependencies: - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) npmlog: 6.0.2 transitivePeerDependencies: - encoding - dev: true - /@lerna/global-options@5.6.2: - resolution: {integrity: sha512-kaKELURXTlczthNJskdOvh6GGMyt24qat0xMoJZ8plYMdofJfhz24h1OFcvB/EwCUwP/XV1+ohE5P+vdktbrEg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - dev: true + '@lerna/global-options@5.6.2': {} - /@lerna/has-npm-version@5.6.2: - resolution: {integrity: sha512-kXCnSzffmTWsaK0ol30coyCfO8WH26HFbmJjRBzKv7VGkuAIcB6gX2gqRRgNLLlvI+Yrp+JSlpVNVnu15SEH2g==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/has-npm-version@5.6.2': dependencies: '@lerna/child-process': 5.6.2 semver: 7.6.2 - dev: true - /@lerna/import@5.6.2: - resolution: {integrity: sha512-xQUE49mtcP0z3KUdXBsyvp8rGDz6phuYUoQbhcFRJ7WPcQKzMvtm0XYrER6c2YWEX7QOuDac6tU82P8zTrTBaA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/import@5.6.2': dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 @@ -23037,22 +36443,14 @@ packages: dedent: 0.7.0 fs-extra: 9.1.0 p-map-series: 2.1.0 - dev: true - /@lerna/info@5.6.2: - resolution: {integrity: sha512-MPjY5Olj+fiZHgfEdwXUFRKamdEuLr9Ob/qut8JsB/oQSQ4ALdQfnrOcMT8lJIcC2R67EA5yav2lHPBIkezm8A==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/info@5.6.2': dependencies: '@lerna/command': 5.6.2 '@lerna/output': 5.6.2 envinfo: 7.13.0 - dev: true - /@lerna/init@5.6.2: - resolution: {integrity: sha512-ahU3/lgF+J8kdJAQysihFJROHthkIDXfHmvhw7AYnzf94HjxGNXj7nz6i3At1/dM/1nQhR+4/uNR1/OU4tTYYQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/init@5.6.2': dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 @@ -23060,12 +36458,8 @@ packages: fs-extra: 9.1.0 p-map: 4.0.0 write-json-file: 4.3.0 - dev: true - /@lerna/link@5.6.2: - resolution: {integrity: sha512-hXxQ4R3z6rUF1v2x62oIzLyeHL96u7ZBhxqYMJrm763D1VMSDcHKF9CjJfc6J9vH5Z2ZbL6CQg50Hw5mUpJbjg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/link@5.6.2': dependencies: '@lerna/command': 5.6.2 '@lerna/package-graph': 5.6.2 @@ -23073,53 +36467,33 @@ packages: '@lerna/validation-error': 5.6.2 p-map: 4.0.0 slash: 3.0.0 - dev: true - /@lerna/list@5.6.2: - resolution: {integrity: sha512-WjE5O2tQ3TcS+8LqXUaxi0YdldhxUhNihT5+Gg4vzGdIlrPDioO50Zjo9d8jOU7i3LMIk6EzCma0sZr2CVfEGg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/list@5.6.2': dependencies: '@lerna/command': 5.6.2 '@lerna/filter-options': 5.6.2 '@lerna/listable': 5.6.2 '@lerna/output': 5.6.2 - dev: true - /@lerna/listable@5.6.2: - resolution: {integrity: sha512-8Yp49BwkY/5XqVru38Zko+6Wj/sgbwzJfIGEPy3Qu575r1NA/b9eI1gX22aMsEeXUeGOybR7nWT5ewnPQHjqvA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/listable@5.6.2': dependencies: '@lerna/query-graph': 5.6.2 chalk: 4.1.2 columnify: 1.6.0 - dev: true - /@lerna/log-packed@5.6.2: - resolution: {integrity: sha512-O9GODG7tMtWk+2fufn2MOkIDBYMRoKBhYMHshO5Aw/VIsH76DIxpX1koMzWfUngM/C70R4uNAKcVWineX4qzIw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/log-packed@5.6.2': dependencies: byte-size: 7.0.1 columnify: 1.6.0 has-unicode: 2.0.1 npmlog: 6.0.2 - dev: true - /@lerna/npm-conf@5.6.2: - resolution: {integrity: sha512-gWDPhw1wjXYXphk/PAghTLexO5T6abVFhXb+KOMCeem366mY0F5bM88PiorL73aErTNUoR8n+V4X29NTZzDZpQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/npm-conf@5.6.2': dependencies: config-chain: 1.1.13 pify: 5.0.0 - dev: true - /@lerna/npm-dist-tag@5.6.2: - resolution: {integrity: sha512-t2RmxV6Eog4acXkUI+EzWuYVbeVVY139pANIWS9qtdajfgp4GVXZi1S8mAIb70yeHdNpCp1mhK0xpCrFH9LvGQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/npm-dist-tag@5.6.2': dependencies: '@lerna/otplease': 5.6.2 npm-package-arg: 8.1.1 @@ -23128,12 +36502,8 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@lerna/npm-install@5.6.2: - resolution: {integrity: sha512-AT226zdEo+uGENd37jwYgdALKJAIJK4pNOfmXWZWzVb9oMOr8I2YSjPYvSYUNG7gOo2YJQU8x5Zd7OShv2924Q==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/npm-install@5.6.2': dependencies: '@lerna/child-process': 5.6.2 '@lerna/get-npm-exec-opts': 5.6.2 @@ -23142,12 +36512,8 @@ packages: npmlog: 6.0.2 signal-exit: 3.0.7 write-pkg: 4.0.0 - dev: true - /@lerna/npm-publish@5.6.2: - resolution: {integrity: sha512-ldSyewCfv9fAeC5xNjL0HKGSUxcC048EJoe/B+KRUmd+IPidvZxMEzRu08lSC/q3V9YeUv9ZvRnxATXOM8CffA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/npm-publish@5.6.2': dependencies: '@lerna/otplease': 5.6.2 '@lerna/run-lifecycle': 5.6.2 @@ -23160,38 +36526,22 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@lerna/npm-run-script@5.6.2: - resolution: {integrity: sha512-MOQoWNcAyJivM8SYp0zELM7vg/Dj07j4YMdxZkey+S1UO0T4/vKBxb575o16hH4WeNzC3Pd7WBlb7C8dLOfNwQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/npm-run-script@5.6.2': dependencies: '@lerna/child-process': 5.6.2 '@lerna/get-npm-exec-opts': 5.6.2 npmlog: 6.0.2 - dev: true - /@lerna/otplease@5.6.2: - resolution: {integrity: sha512-dGS4lzkEQVTMAgji82jp8RK6UK32wlzrBAO4P4iiVHCUTuwNLsY9oeBXvVXSMrosJnl6Hbe0NOvi43mqSucGoA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/otplease@5.6.2': dependencies: '@lerna/prompt': 5.6.2 - dev: true - /@lerna/output@5.6.2: - resolution: {integrity: sha512-++d+bfOQwY66yo7q1XuAvRcqtRHCG45e/awP5xQomTZ6R1rhWiZ3whWdc9Z6lF7+UtBB9toSYYffKU/xc3L0yQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/output@5.6.2': dependencies: npmlog: 6.0.2 - dev: true - /@lerna/pack-directory@5.6.2: - resolution: {integrity: sha512-w5Jk5fo+HkN4Le7WMOudTcmAymcf0xPd302TqAQncjXpk0cb8tZbj+5bbNHsGb58GRjOIm5icQbHXooQUxbHhA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/pack-directory@5.6.2': dependencies: '@lerna/get-packed': 5.6.2 '@lerna/package': 5.6.2 @@ -23203,52 +36553,32 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@lerna/package-graph@5.6.2: - resolution: {integrity: sha512-TmL61qBBvA3Tc4qICDirZzdFFwWOA6qicIXUruLiE2PblRowRmCO1bKrrP6XbDOspzwrkPef6N2F2/5gHQAnkQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/package-graph@5.6.2': dependencies: '@lerna/prerelease-id-from-version': 5.6.2 '@lerna/validation-error': 5.6.2 npm-package-arg: 8.1.1 npmlog: 6.0.2 semver: 7.6.2 - dev: true - /@lerna/package@5.6.2: - resolution: {integrity: sha512-LaOC8moyM5J9WnRiWZkedjOninSclBOJyPqhif6mHb2kCFX6jAroNYzE8KM4cphu8CunHuhI6Ixzswtv+Dultw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/package@5.6.2': dependencies: load-json-file: 6.2.0 npm-package-arg: 8.1.1 write-pkg: 4.0.0 - dev: true - /@lerna/prerelease-id-from-version@5.6.2: - resolution: {integrity: sha512-7gIm9fecWFVNy2kpj/KbH11bRcpyANAwpsft3X5m6J7y7A6FTUscCbEvl3ZNdpQKHNuvnHgCtkm3A5PMSCEgkA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/prerelease-id-from-version@5.6.2': dependencies: semver: 7.6.2 - dev: true - /@lerna/profiler@5.6.2: - resolution: {integrity: sha512-okwkagP5zyRIOYTceu/9/esW7UZFt7lyL6q6ZgpSG3TYC5Ay+FXLtS6Xiha/FQdVdumFqKULDWTGovzUlxcwaw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/profiler@5.6.2': dependencies: fs-extra: 9.1.0 npmlog: 6.0.2 upath: 2.0.1 - dev: true - /@lerna/project@5.6.2: - resolution: {integrity: sha512-kPIMcIy/0DVWM91FPMMFmXyAnCuuLm3NdhnA8NusE//VuY9wC6QC/3OwuCY39b2dbko/fPZheqKeAZkkMH6sGg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/project@5.6.2': dependencies: '@lerna/package': 5.6.2 '@lerna/validation-error': 5.6.2 @@ -23263,21 +36593,13 @@ packages: p-map: 4.0.0 resolve-from: 5.0.0 write-json-file: 4.3.0 - dev: true - /@lerna/prompt@5.6.2: - resolution: {integrity: sha512-4hTNmVYADEr0GJTMegWV+GW6n+dzKx1vN9v2ISqyle283Myv930WxuyO0PeYGqTrkneJsyPreCMovuEGCvZ0iQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/prompt@5.6.2': dependencies: inquirer: 8.2.6 npmlog: 6.0.2 - dev: true - /@lerna/publish@5.6.2(nx@15.9.3): - resolution: {integrity: sha512-QaW0GjMJMuWlRNjeDCjmY/vjriGSWgkLS23yu8VKNtV5U3dt5yIKA3DNGV3HgZACuu45kQxzMDsfLzgzbGNtYA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/publish@5.6.2(encoding@0.1.13)(nx@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))': dependencies: '@lerna/check-working-tree': 5.6.2 '@lerna/child-process': 5.6.2 @@ -23297,7 +36619,7 @@ packages: '@lerna/run-lifecycle': 5.6.2 '@lerna/run-topologically': 5.6.2 '@lerna/validation-error': 5.6.2 - '@lerna/version': 5.6.2(nx@15.9.3) + '@lerna/version': 5.6.2(encoding@0.1.13)(nx@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) fs-extra: 9.1.0 libnpmaccess: 6.0.4 npm-package-arg: 8.1.1 @@ -23312,49 +36634,29 @@ packages: - encoding - nx - supports-color - dev: true - /@lerna/pulse-till-done@5.6.2: - resolution: {integrity: sha512-eA/X1RCxU5YGMNZmbgPi+Kyfx1Q3bn4P9jo/LZy+/NRRr1po3ASXP2GJZ1auBh/9A2ELDvvKTOXCVHqczKC6rA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/pulse-till-done@5.6.2': dependencies: npmlog: 6.0.2 - dev: true - /@lerna/query-graph@5.6.2: - resolution: {integrity: sha512-KRngr96yBP8XYDi9/U62fnGO+ZXqm04Qk6a2HtoTr/ha8QvO1s7Tgm0xs/G7qWXDQHZgunWIbmK/LhxM7eFQrw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/query-graph@5.6.2': dependencies: '@lerna/package-graph': 5.6.2 - dev: true - /@lerna/resolve-symlink@5.6.2: - resolution: {integrity: sha512-PDQy+7M8JEFtwIVHJgWvSxHkxJf9zXCENkvIWDB+SsoDPhw9+caewt46bTeP5iGm9pOMu3oZukaWo/TvF7sNjg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/resolve-symlink@5.6.2': dependencies: fs-extra: 9.1.0 npmlog: 6.0.2 read-cmd-shim: 3.0.1 - dev: true - /@lerna/rimraf-dir@5.6.2: - resolution: {integrity: sha512-jgEfzz7uBUiQKteq3G8MtJiA2D2VoKmZSSY3VSiW/tPOSXYxxSHxEsClQdCeNa6+sYrDNDT8fP6MJ3lPLjDeLA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/rimraf-dir@5.6.2': dependencies: '@lerna/child-process': 5.6.2 npmlog: 6.0.2 path-exists: 4.0.0 rimraf: 3.0.2 - dev: true - /@lerna/run-lifecycle@5.6.2: - resolution: {integrity: sha512-u9gGgq/50Fm8dvfcc/TSHOCAQvzLD7poVanDMhHYWOAqRDnellJEEmA1K/Yka4vZmySrzluahkry9G6jcREt+g==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/run-lifecycle@5.6.2': dependencies: '@lerna/npm-conf': 5.6.2 '@npmcli/run-script': 4.2.1 @@ -23363,21 +36665,13 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@lerna/run-topologically@5.6.2: - resolution: {integrity: sha512-QQ/jGOIsVvUg3izShWsd67RlWYh9UOH2yw97Ol1zySX9+JspCMVQrn9eKq1Pk8twQOFhT87LpT/aaxbTBgREPw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/run-topologically@5.6.2': dependencies: '@lerna/query-graph': 5.6.2 p-queue: 6.6.2 - dev: true - /@lerna/run@5.6.2: - resolution: {integrity: sha512-c2kJxdFrNg5KOkrhmgwKKUOsfSrGNlFCe26EttufOJ3xfY0VnXlEw9rHOkTgwtu7969rfCdyaVP1qckMrF1Dgw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/run@5.6.2': dependencies: '@lerna/command': 5.6.2 '@lerna/filter-options': 5.6.2 @@ -23389,23 +36683,15 @@ packages: '@lerna/validation-error': 5.6.2 fs-extra: 9.1.0 p-map: 4.0.0 - dev: true - /@lerna/symlink-binary@5.6.2: - resolution: {integrity: sha512-Cth+miwYyO81WAmrQbPBrLHuF+F0UUc0el5kRXLH6j5zzaRS3kMM68r40M7MmfH8m3GPi7691UARoWFEotW5jw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/symlink-binary@5.6.2': dependencies: '@lerna/create-symlink': 5.6.2 '@lerna/package': 5.6.2 fs-extra: 9.1.0 p-map: 4.0.0 - dev: true - /@lerna/symlink-dependencies@5.6.2: - resolution: {integrity: sha512-dUVNQLEcjVOIQiT9OlSAKt0ykjyJPy8l9i4NJDe2/0XYaUjo8PWsxJ0vrutz27jzi2aZUy07ASmowQZEmnLHAw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/symlink-dependencies@5.6.2': dependencies: '@lerna/create-symlink': 5.6.2 '@lerna/resolve-symlink': 5.6.2 @@ -23413,45 +36699,30 @@ packages: fs-extra: 9.1.0 p-map: 4.0.0 p-map-series: 2.1.0 - dev: true - /@lerna/temp-write@5.6.2: - resolution: {integrity: sha512-S5ZNVTurSwWBmc9kh5alfSjmO3+BnRT6shYtOlmVIUYqWeYVYA5C1Htj322bbU4CSNCMFK6NQl4qGKL17HMuig==} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/temp-write@5.6.2': dependencies: graceful-fs: 4.2.11 is-stream: 2.0.1 make-dir: 3.1.0 temp-dir: 1.0.0 uuid: 8.3.2 - dev: true - /@lerna/timer@5.6.2: - resolution: {integrity: sha512-AjMOiLc2B+5Nzdd9hNORetAdZ/WK8YNGX/+2ypzM68TMAPfIT5C40hMlSva9Yg4RsBz22REopXgM5s2zQd5ZQA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - dev: true + '@lerna/timer@5.6.2': {} - /@lerna/validation-error@5.6.2: - resolution: {integrity: sha512-4WlDUHaa+RSJNyJRtX3gVIAPVzjZD2tle8AJ0ZYBfdZnZmG0VlB2pD1FIbOQPK8sY2h5m0cHLRvfLoLncqHvdQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/validation-error@5.6.2': dependencies: npmlog: 6.0.2 - dev: true - /@lerna/version@5.6.2(nx@15.9.3): - resolution: {integrity: sha512-odNSR2rTbHW++xMZSQKu/F6Syrd/sUvwDLPaMKktoOSPKmycHt/eWcuQQyACdtc43Iqeu4uQd7PCLsniqOVFrw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/version@5.6.2(encoding@0.1.13)(nx@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))': dependencies: '@lerna/check-working-tree': 5.6.2 '@lerna/child-process': 5.6.2 '@lerna/collect-updates': 5.6.2 '@lerna/command': 5.6.2 '@lerna/conventional-commits': 5.6.2 - '@lerna/github-client': 5.6.2 - '@lerna/gitlab-client': 5.6.2 + '@lerna/github-client': 5.6.2(encoding@0.1.13) + '@lerna/gitlab-client': 5.6.2(encoding@0.1.13) '@lerna/output': 5.6.2 '@lerna/prerelease-id-from-version': 5.6.2 '@lerna/prompt': 5.6.2 @@ -23459,7 +36730,7 @@ packages: '@lerna/run-topologically': 5.6.2 '@lerna/temp-write': 5.6.2 '@lerna/validation-error': 5.6.2 - '@nrwl/devkit': 15.9.7(nx@15.9.3) + '@nrwl/devkit': 15.9.7(nx@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) chalk: 4.1.2 dedent: 0.7.0 load-json-file: 6.2.0 @@ -23477,28 +36748,20 @@ packages: - encoding - nx - supports-color - dev: true - /@lerna/write-log-file@5.6.2: - resolution: {integrity: sha512-J09l18QnWQ3sXIRwuJkjXY3+KwPR2uO5NgbZGE3GXJK1V/LzOBRMvjGAIbuQHXw25uqe7vpLUpB8drtnFrubCQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + '@lerna/write-log-file@5.6.2': dependencies: npmlog: 6.0.2 write-file-atomic: 4.0.2 - dev: true - /@manypkg/find-root@1.1.0: - resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} + '@manypkg/find-root@1.1.0': dependencies: '@babel/runtime': 7.24.7 '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 - dev: true - /@manypkg/get-packages@1.1.3: - resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} + '@manypkg/get-packages@1.1.3': dependencies: '@babel/runtime': 7.24.7 '@changesets/types': 4.1.0 @@ -23506,10 +36769,8 @@ packages: fs-extra: 8.1.0 globby: 11.1.0 read-yaml-file: 1.1.0 - dev: true - /@mdx-js/mdx@1.6.22: - resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==} + '@mdx-js/mdx@1.6.22': dependencies: '@babel/core': 7.12.9 '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9) @@ -23533,21 +36794,13 @@ packages: transitivePeerDependencies: - supports-color - /@mdx-js/react@1.6.22(react@18.3.1): - resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} - peerDependencies: - react: ^16.13.1 || ^17.0.0 + '@mdx-js/react@1.6.22(react@18.3.1)': dependencies: react: 18.3.1 - dev: true - /@mdx-js/util@1.6.22: - resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==} + '@mdx-js/util@1.6.22': {} - /@microsoft/applicationinsights-analytics-js@3.2.1(tslib@2.6.3): - resolution: {integrity: sha512-BDFnV0WwLcUIqgPmC3Sl8Z35ybf4898WSbrfCC80BNbxi2zztyJSLlxWXKSw9j+DCkKZMYIJIsWnpKQfEtqA7g==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-analytics-js@3.2.1(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-common': 3.2.1(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 3.2.1(tslib@2.6.3) @@ -23555,12 +36808,8 @@ packages: '@microsoft/dynamicproto-js': 2.0.3 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-cfgsync-js@3.2.1(tslib@2.6.3): - resolution: {integrity: sha512-a0gf3czbRycOXwIRO/dYqmTThYkGRS26TVETRpSnW12IcAuLE82FJfWHlHRmSNX9xY/F+wWc0N7BqHcWjFIbeQ==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-cfgsync-js@3.2.1(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-common': 3.2.1(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 3.2.1(tslib@2.6.3) @@ -23569,12 +36818,8 @@ packages: '@nevware21/ts-async': 0.5.2 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-channel-js@3.2.1(tslib@2.6.3): - resolution: {integrity: sha512-+aWBBbIW4/Tf4sLGZmWhd5chktBpKQpnCbkuoTHGe+AWO8Q8fsDa4w2Y89OGuEg9OJ3kr2VKTUU7LgILKFz/cg==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-channel-js@3.2.1(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-common': 3.2.1(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 3.2.1(tslib@2.6.3) @@ -23583,57 +36828,37 @@ packages: '@nevware21/ts-async': 0.5.2 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-common@2.8.18(tslib@2.6.3): - resolution: {integrity: sha512-/PBRmRL6rFCoO3vWpIEHuFnu+TinEYRKWOj+I+XVUH5myZpv+nYvaRdwryVTkmCYxLyL9kxtNn7hQx8DBlhdSw==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-common@2.8.18(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-core-js': 2.8.18(tslib@2.6.3) '@microsoft/applicationinsights-shims': 2.0.2 '@microsoft/dynamicproto-js': 1.1.11 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-common@3.2.1(tslib@2.6.3): - resolution: {integrity: sha512-vRYQ1SIZJEz1eFbs2AQiLtev5L+zmjZ1Jkj3BWfIxJLd6n0cVR4NZETBSyMuk11KH7MIOrDLvh1CzjBIJIpDAg==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-common@3.2.1(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-core-js': 3.2.1(tslib@2.6.3) '@microsoft/applicationinsights-shims': 3.0.1 '@microsoft/dynamicproto-js': 2.0.3 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-core-js@2.8.18(tslib@2.6.3): - resolution: {integrity: sha512-yPHRZFLpnEO0uSgFPM1BLMRRwjoten9YBbn4pJRbCT4PigLnj748knmWsMwXIdcehtkRTYz78kPYa/LWP7nvmA==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-core-js@2.8.18(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-shims': 2.0.2 '@microsoft/dynamicproto-js': 1.1.11 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-core-js@3.2.1(tslib@2.6.3): - resolution: {integrity: sha512-euxkDrF5BroAY7wgviaTVZdMvRAENQtUW4pDTsIjJK26shi1m5fPCc5l+vMn7kO2wQEaEgAOVw+/kSQgXDHN+Q==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-core-js@3.2.1(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-shims': 3.0.1 '@microsoft/dynamicproto-js': 2.0.3 '@nevware21/ts-async': 0.5.2 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-dependencies-js@3.2.1(tslib@2.6.3): - resolution: {integrity: sha512-NZ7OY/7KYmJ6/TFsDZojsr9mA4uNv4ZTrNNXfWqtPxx0ClYalSm6Xyjna0N1d1wktrfecHe8K/ZrWJgxI2bfRw==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-dependencies-js@3.2.1(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-common': 3.2.1(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 3.2.1(tslib@2.6.3) @@ -23642,12 +36867,8 @@ packages: '@nevware21/ts-async': 0.5.2 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-properties-js@3.2.1(tslib@2.6.3): - resolution: {integrity: sha512-GO96t7tQ1eEHPENVXjOlf91h/Iz8p4I0XayALTSshHMc+eDfsi1a/b2JYrfNDC4fanPU44Kmx3QZkXrBb1ri5A==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-properties-js@3.2.1(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-common': 3.2.1(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 3.2.1(tslib@2.6.3) @@ -23655,14 +36876,8 @@ packages: '@microsoft/dynamicproto-js': 2.0.3 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-react-js@3.4.3(history@4.10.1)(react@18.3.1)(tslib@2.6.3): - resolution: {integrity: sha512-+IIPDYU7DKBwByN7lK/mkMGrnWMGdyIsEZfDzBh/fKDZgGGGgH9B3WHej+vIpdwBcVaPbYx++lonTshn56C9/A==} - peerDependencies: - history: '>= 4.10.1' - react: '>= 17.0.1' - tslib: '*' + '@microsoft/applicationinsights-react-js@3.4.3(history@4.10.1)(react@18.3.1)(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-common': 2.8.18(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 2.8.18(tslib@2.6.3) @@ -23671,22 +36886,14 @@ packages: history: 4.10.1 react: 18.3.1 tslib: 2.6.3 - dev: false - /@microsoft/applicationinsights-shims@2.0.2: - resolution: {integrity: sha512-PoHEgsnmcqruLNHZ/amACqdJ6YYQpED0KSRe6J7gIJTtpZC1FfFU9b1fmDKDKtFoUSrPzEh1qzO3kmRZP0betg==} - dev: false + '@microsoft/applicationinsights-shims@2.0.2': {} - /@microsoft/applicationinsights-shims@3.0.1: - resolution: {integrity: sha512-DKwboF47H1nb33rSUfjqI6ryX29v+2QWcTrRvcQDA32AZr5Ilkr7whOOSsD1aBzwqX0RJEIP1Z81jfE3NBm/Lg==} + '@microsoft/applicationinsights-shims@3.0.1': dependencies: '@nevware21/ts-utils': 0.11.3 - dev: false - /@microsoft/applicationinsights-web@3.2.1(tslib@2.6.3): - resolution: {integrity: sha512-+U0wsifFEmvdT2hckmsoNcMx/SQrAA8qBBM7y0zefT03wHbFh0jCL/kd2MFOyKZ39v9C4uIO5L8Ftu4hBpnYWA==} - peerDependencies: - tslib: '*' + '@microsoft/applicationinsights-web@3.2.1(tslib@2.6.3)': dependencies: '@microsoft/applicationinsights-analytics-js': 3.2.1(tslib@2.6.3) '@microsoft/applicationinsights-cfgsync-js': 3.2.1(tslib@2.6.3) @@ -23700,34 +36907,23 @@ packages: '@nevware21/ts-async': 0.5.2 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 - dev: false - /@microsoft/dynamicproto-js@1.1.11: - resolution: {integrity: sha512-gNw9z9LbqLV+WadZ6/MMrWwO3e0LuoUH1wve/1iPsBNbgqeVCiB0EZFNNj2lysxS2gkqoF9hmyVaG3MoM1BkxA==} - dev: false + '@microsoft/dynamicproto-js@1.1.11': {} - /@microsoft/dynamicproto-js@2.0.3: - resolution: {integrity: sha512-JTWTU80rMy3mdxOjjpaiDQsTLZ6YSGGqsjURsY6AUQtIj0udlF/jYmhdLZu8693ZIC0T1IwYnFa0+QeiMnziBA==} + '@microsoft/dynamicproto-js@2.0.3': dependencies: '@nevware21/ts-utils': 0.11.3 - dev: false - /@microsoft/tsdoc-config@0.16.2: - resolution: {integrity: sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==} + '@microsoft/tsdoc-config@0.16.2': dependencies: '@microsoft/tsdoc': 0.14.2 ajv: 6.12.6 jju: 1.4.0 resolve: 1.19.0 - dev: true - /@microsoft/tsdoc@0.14.2: - resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==} - dev: true + '@microsoft/tsdoc@0.14.2': {} - /@mole-inc/bin-wrapper@8.0.1: - resolution: {integrity: sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + '@mole-inc/bin-wrapper@8.0.1': dependencies: bin-check: 4.1.0 bin-version-check: 5.1.0 @@ -23737,245 +36933,106 @@ packages: filenamify: 5.1.1 got: 11.8.6 os-filter-obj: 2.0.0 - dev: true - /@monaco-editor/loader@1.4.0(monaco-editor@0.50.0): - resolution: {integrity: sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==} - peerDependencies: - monaco-editor: '>= 0.21.0 < 1' + '@monaco-editor/loader@1.4.0(monaco-editor@0.50.0)': dependencies: monaco-editor: 0.50.0 state-local: 1.0.7 - dev: false - /@monaco-editor/react@4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-RFkU9/i7cN2bsq/iTkurMWOEErmYcY6JiQI3Jn+WeR/FGISH8JbHERjpS9oRuSOPvDMJI0Z8nJeKkbOs9sBYQw==} - peerDependencies: - monaco-editor: '>= 0.25.0 < 1' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@monaco-editor/react@4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@monaco-editor/loader': 1.4.0(monaco-editor@0.50.0) monaco-editor: 0.50.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false - /@mrmlnc/readdir-enhanced@2.2.1: - resolution: {integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==} - engines: {node: '>=4'} + '@mrmlnc/readdir-enhanced@2.2.1': dependencies: call-me-maybe: 1.0.2 glob-to-regexp: 0.3.0 - dev: false - /@mswjs/cookies@0.1.7: - resolution: {integrity: sha512-bDg1ReMBx+PYDB4Pk7y1Q07Zz1iKIEUWQpkEXiA2lEWg9gvOZ8UBmGXilCEUvyYoRFlmr/9iXTRR69TrgSwX/Q==} + '@mswjs/cookies@0.1.7': dependencies: '@types/set-cookie-parser': 2.4.9 set-cookie-parser: 2.6.0 - dev: true - /@mswjs/interceptors@0.12.7: - resolution: {integrity: sha512-eGjZ3JRAt0Fzi5FgXiV/P3bJGj0NqsN7vBS0J0FO2AQRQ0jCKQS4lEFm4wvlSgKQNfeuc/Vz6d81VtU3Gkx/zg==} + '@mswjs/interceptors@0.12.7': dependencies: '@open-draft/until': 1.0.3 '@xmldom/xmldom': 0.7.13 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) headers-utils: 3.0.2 outvariant: 1.4.2 strict-event-emitter: 0.2.8 transitivePeerDependencies: - supports-color - dev: true - /@mui/base@5.0.0-alpha.108(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-KjzRUts2i/ODlMfywhFTqTzQl+Cr9nlDSZxJcnYjrbOV/iRyQNBTDoiFJt+XEdRi0fZBHnk74AFbnP56ehybsA==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@mui/base@5.0.0-alpha.128(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 '@emotion/is-prop-valid': 1.2.2 '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) '@popperjs/core': 2.11.8 - '@types/react': 18.0.18 clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - dev: false - - /@mui/base@5.0.0-alpha.128(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-wub3wxNN+hUp8hzilMlXX3sZrPo75vsy1cXEQpqdTfIFlE9HprP1jlulFiPg5tfPst2OKmygXr2hhmgvAKRrzQ==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@babel/runtime': 7.24.7 - '@emotion/is-prop-valid': 1.2.2 - '@mui/types': 7.2.14(@types/react@18.0.18) - '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@popperjs/core': 2.11.8 + optionalDependencies: '@types/react': 18.0.18 - clsx: 1.2.1 - prop-types: 15.8.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-is: 18.3.1 - dev: false - /@mui/base@5.0.0-beta.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-ap+juKvt8R8n3cBqd/pGtZydQ4v2I/hgJKnvJRGjpSh3RvsvnDHO4rXov8MHQlH6VqpOekwgilFLGxMZjNTucA==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@mui/base@5.0.0-beta.0(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 '@emotion/is-prop-valid': 1.2.2 '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) '@popperjs/core': 2.11.8 - '@types/react': 18.0.18 clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - dev: false + optionalDependencies: + '@types/react': 18.0.18 - /@mui/core-downloads-tracker@5.15.20: - resolution: {integrity: sha512-DoL2ppgldL16utL8nNyj/P12f8mCNdx/Hb/AJnX9rLY4b52hCMIx1kH83pbXQ6uMy6n54M3StmEbvSGoj2OFuA==} - dev: false + '@mui/core-downloads-tracker@5.15.20': {} - /@mui/icons-material@5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1): - resolution: {integrity: sha512-oGcKmCuHaYbAAoLN67WKSXtHmEgyWcJToT1uRtmPyxMj9N5uqwc/mRtEnst4Wj/eGr+zYH2FiZQ79v9k7kSk1Q==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@mui/material': 5.13.0 - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + '@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 - '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@types/react': 18.0.18 + '@mui/material': 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - dev: false - - /@mui/lab@5.0.0-alpha.110(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-SkX5QNbaWouO7BXvb8zpFzDizLt7UzgaebqKSvFJLF28OXiNDfPVCle6IIB4g7hAyb/o19Kbhxs9V+LwK5gQzA==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@mui/material': 5.13.0 + optionalDependencies: '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true + + '@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) - '@mui/base': 5.0.0-alpha.108(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + '@mui/base': 5.0.0-alpha.128(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@types/react': 18.0.18 clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - dev: false - - /@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-niv2mFgSTgdrRJXbWoX9pIivhe80BaFXfdWajXe1bS8VYH3Y5WyJpk8KiU3rbHyJswbFEGd8N6EBBrq11X8yMA==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@mui/material': 5.13.0 - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true - dependencies: - '@babel/runtime': 7.24.7 + optionalDependencies: '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) - '@mui/base': 5.0.0-alpha.128(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) - '@mui/types': 7.2.14(@types/react@18.0.18) - '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@types/react': 18.0.18 - clsx: 1.2.1 - prop-types: 15.8.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-is: 18.3.1 - dev: false - /@mui/material@5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-ckS+9tCpAzpdJdaTF+btF0b6mF9wbXg/EVKtnoAWYi0UKXoXBAVvEUMNpLGA5xdpCdf+A6fPbVUEHs9TsfU+Yw==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true + '@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) - '@mui/base': 5.0.0-beta.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/base': 5.0.0-beta.0(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mui/core-downloads-tracker': 5.15.20 - '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@types/react': 18.0.18 '@types/react-transition-group': 4.4.10 clsx: 1.2.1 csstype: 3.1.3 @@ -23983,119 +37040,67 @@ packages: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - react-transition-group: 4.4.5(react-dom@18.3.1)(react@18.3.1) - dev: false - - /@mui/private-theming@5.15.20(@types/react@18.0.18)(react@18.3.1): - resolution: {integrity: sha512-BK8F94AIqSrnaPYXf2KAOjGZJgWfvqAVQ2gVR3EryvQFtuBnG6RwodxrCvd3B48VuMy6Wsk897+lQMUxJyk+6g==} - engines: {node: '>=12.0.0'} - peerDependencies: + react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + optionalDependencies: + '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + + '@mui/private-theming@5.15.20(@types/react@18.0.18)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@types/react': 18.0.18 prop-types: 15.8.1 react: 18.3.1 - dev: false + optionalDependencies: + '@types/react': 18.0.18 - /@mui/styled-engine@5.15.14(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.3.1): - resolution: {integrity: sha512-RILkuVD8gY6PvjZjqnWhz8fu68dVkqhM5+jYWfB5yhlSQKg+2rHkmEwm75XIeAqI3qwOndK6zELK5H6Zxn4NHw==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.4.1 - '@emotion/styled': ^11.3.0 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true + '@mui/styled-engine@5.15.14(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 '@emotion/cache': 11.11.0 - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) csstype: 3.1.3 prop-types: 15.8.1 react: 18.3.1 - dev: false + optionalDependencies: + '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) - /@mui/system@5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1): - resolution: {integrity: sha512-LoMq4IlAAhxzL2VNUDBTQxAb4chnBe8JvRINVNDiMtHE2PiPOoHlhOPutSxEbaL5mkECPVWSv6p8JEV+uykwIA==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true + '@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@mui/private-theming': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@mui/styled-engine': 5.15.14(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.3.1) + '@mui/styled-engine': 5.15.14(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(react@18.3.1) '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@types/react': 18.0.18 clsx: 2.1.1 csstype: 3.1.3 prop-types: 15.8.1 react: 18.3.1 - dev: false - - /@mui/types@7.2.14(@types/react@18.0.18): - resolution: {integrity: sha512-MZsBZ4q4HfzBsywtXgM1Ksj6HDThtiwmOKUXH1pKYISI9gAVXCNHNpo7TlGoGrBaYWZTdNoirIN7JsQcQUjmQQ==} - peerDependencies: - '@types/react': 18.0.18 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: + optionalDependencies: + '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@types/react': 18.0.18 - dev: false - /@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1): - resolution: {integrity: sha512-mAbYx0sovrnpAu1zHc3MDIhPqL8RPVC5W5xcO1b7PiSCJPtckIZmBkp8hefamAvUiAV8gpfMOM6Zb+eSisbI2A==} - engines: {node: '>=12.0.0'} - peerDependencies: + '@mui/types@7.2.14(@types/react@18.0.18)': + optionalDependencies: '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + + '@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 '@types/prop-types': 15.7.12 - '@types/react': 18.0.18 prop-types: 15.8.1 react: 18.3.1 react-is: 18.3.1 - dev: false + optionalDependencies: + '@types/react': 18.0.18 - /@mui/x-data-grid@6.20.1(@mui/material@5.13.0)(@mui/system@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-x1muWWIG9otkk4FuvoTxH3I4foyA1caFu8ZC9TvMQ+7NSBKcfy/JeLQfKkZk8ACUUosvENdrRIkhqU2xdIqIVg==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@mui/material': 5.13.0 - '@mui/system': ^5.4.1 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 + '@mui/x-data-grid@6.20.1(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 - '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) clsx: 2.1.1 prop-types: 15.8.1 @@ -24104,59 +37109,37 @@ packages: reselect: 4.1.8 transitivePeerDependencies: - '@types/react' - dev: false - /@ndelangen/get-tarball@3.0.9: - resolution: {integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==} + '@ndelangen/get-tarball@3.0.9': dependencies: gunzip-maybe: 1.4.2 pump: 3.0.0 tar-fs: 2.1.1 - dev: true - /@nevware21/ts-async@0.5.2: - resolution: {integrity: sha512-Zf2vUNjCw2vJsiVKhWXA9hCNHsn59AOSGa5jGP4tWrp/vTH9XrI4eG/65khuoAgrS83migj0Xv5/j6fUAz69Zw==} + '@nevware21/ts-async@0.5.2': dependencies: '@nevware21/ts-utils': 0.11.3 - dev: false - /@nevware21/ts-utils@0.11.3: - resolution: {integrity: sha512-oipW+tyKN68bREjoESYAzOZiatM+1LF+ez1TX3BaeinhCkI18xsLgmpH9tvwHaVgKf1Tsth25sdbXVtYmgRYvQ==} - dev: false + '@nevware21/ts-utils@0.11.3': {} - /@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3: - resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==} - requiresBuild: true - dev: true + '@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3': optional: true - /@nodelib/fs.scandir@2.1.5: - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} + '@nodelib/fs.scandir@2.1.5': dependencies: '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 - /@nodelib/fs.stat@1.1.3: - resolution: {integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==} - engines: {node: '>= 6'} - dev: false + '@nodelib/fs.stat@1.1.3': {} - /@nodelib/fs.stat@2.0.5: - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} + '@nodelib/fs.stat@2.0.5': {} - /@nodelib/fs.walk@1.2.8: - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} + '@nodelib/fs.walk@1.2.8': dependencies: '@nodelib/fs.scandir': 2.1.5 fastq: 1.17.1 - /@npmcli/arborist@5.3.0: - resolution: {integrity: sha512-+rZ9zgL1lnbl8Xbb1NQdMjveOMwj4lIYfcDtyJHHi5x4X8jtR6m8SXooJMZy5vmFVZ8w7A2Bnd/oX9eTuU8w5A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true + '@npmcli/arborist@5.3.0': dependencies: '@isaacs/string-locale-compare': 1.1.0 '@npmcli/installed-package-contents': 1.0.7 @@ -24195,26 +37178,18 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@npmcli/fs@1.1.1: - resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} + '@npmcli/fs@1.1.1': dependencies: '@gar/promisify': 1.1.3 semver: 7.6.2 - dev: false - /@npmcli/fs@2.1.2: - resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + '@npmcli/fs@2.1.2': dependencies: '@gar/promisify': 1.1.3 semver: 7.6.2 - dev: true - /@npmcli/git@3.0.2: - resolution: {integrity: sha512-CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + '@npmcli/git@3.0.2': dependencies: '@npmcli/promise-spawn': 3.0.0 lru-cache: 7.18.3 @@ -24227,30 +37202,20 @@ packages: which: 2.0.2 transitivePeerDependencies: - bluebird - dev: true - /@npmcli/installed-package-contents@1.0.7: - resolution: {integrity: sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==} - engines: {node: '>= 10'} - hasBin: true + '@npmcli/installed-package-contents@1.0.7': dependencies: npm-bundled: 1.1.2 npm-normalize-package-bin: 1.0.1 - dev: true - /@npmcli/map-workspaces@2.0.4: - resolution: {integrity: sha512-bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + '@npmcli/map-workspaces@2.0.4': dependencies: '@npmcli/name-from-folder': 1.0.1 glob: 8.1.0 minimatch: 5.1.6 read-package-json-fast: 2.0.3 - dev: true - /@npmcli/metavuln-calculator@3.1.1: - resolution: {integrity: sha512-n69ygIaqAedecLeVH3KnO39M6ZHiJ2dEv5A7DGvcqCB8q17BGUgW8QaanIkbWUo2aYGZqJaOORTLAlIvKjNDKA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + '@npmcli/metavuln-calculator@3.1.1': dependencies: cacache: 16.1.3 json-parse-even-better-errors: 2.3.1 @@ -24259,52 +37224,30 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@npmcli/move-file@1.1.2: - resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} - engines: {node: '>=10'} - deprecated: This functionality has been moved to @npmcli/fs + '@npmcli/move-file@1.1.2': dependencies: mkdirp: 1.0.4 rimraf: 3.0.2 - dev: false - /@npmcli/move-file@2.0.1: - resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This functionality has been moved to @npmcli/fs + '@npmcli/move-file@2.0.1': dependencies: mkdirp: 1.0.4 rimraf: 3.0.2 - dev: true - /@npmcli/name-from-folder@1.0.1: - resolution: {integrity: sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA==} - dev: true + '@npmcli/name-from-folder@1.0.1': {} - /@npmcli/node-gyp@2.0.0: - resolution: {integrity: sha512-doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dev: true + '@npmcli/node-gyp@2.0.0': {} - /@npmcli/package-json@2.0.0: - resolution: {integrity: sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + '@npmcli/package-json@2.0.0': dependencies: json-parse-even-better-errors: 2.3.1 - dev: true - /@npmcli/promise-spawn@3.0.0: - resolution: {integrity: sha512-s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + '@npmcli/promise-spawn@3.0.0': dependencies: infer-owner: 1.0.4 - dev: true - /@npmcli/run-script@4.2.1: - resolution: {integrity: sha512-7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + '@npmcli/run-script@4.2.1': dependencies: '@npmcli/node-gyp': 2.0.0 '@npmcli/promise-spawn': 3.0.0 @@ -24314,22 +37257,18 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /@nrwl/cli@15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99): - resolution: {integrity: sha512-qiAKHkov3iBx6hroPTitUrkRSUZFQqVgNJiF9gXRFC6pNJe9RS4rlmcIaoUFOboi9CnH5jwblNJVcz8YSVYOvA==} + '@nrwl/cli@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))': dependencies: - nx: 15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) + nx: 15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug - dev: true - /@nrwl/cypress@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6): - resolution: {integrity: sha512-p7LcNa6q1yZXSp1BOlMrn79QB4BEioAwWzAyqbtsrOd+5JkgQwAetwI7VFktjXohbH0SmVASqXhVJgXacoPgOA==} + '@nrwl/cypress@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': dependencies: - '@nx/cypress': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6) + '@nx/cypress': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24343,33 +37282,25 @@ packages: - supports-color - typescript - verdaccio - dev: true - /@nrwl/devkit@15.9.7(nx@15.9.3): - resolution: {integrity: sha512-Sb7Am2TMT8AVq8e+vxOlk3AtOA2M0qCmhBzoM1OJbdHaPKc0g0UgSnWRml1kPGg5qfPk72tWclLoZJ5/ut0vTg==} - peerDependencies: - nx: '>= 14.1 <= 16' + '@nrwl/devkit@15.9.7(nx@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))': dependencies: ejs: 3.1.10 ignore: 5.3.1 - nx: 15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) + nx: 15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) semver: 7.5.4 tmp: 0.2.3 tslib: 2.6.3 - dev: true - /@nrwl/devkit@17.0.0(nx@17.0.0): - resolution: {integrity: sha512-HvV4GrohNxmN5niRu+XRWuy/gNXFkCLJTNqS3eeZ1h96BnVIiGQL6qHkXvwt0HShcse+Bn55BijKNO7JSo7oIQ==} + '@nrwl/devkit@17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))': dependencies: - '@nx/devkit': 17.0.0(nx@17.0.0) + '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) transitivePeerDependencies: - nx - dev: true - /@nrwl/eslint-plugin-nx@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0)(eslint-config-prettier@9.1.0)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6): - resolution: {integrity: sha512-kOYPAQMdS9qDkOG5CyAjerBN4UwxUipqZjjahVyA3GS5JwRe9DQUZ0vrFtMp5DSfJ+Cs9fNd4voHvZQEKanq2Q==} + '@nrwl/eslint-plugin-nx@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint-config-prettier@9.1.0(eslint@8.46.0))(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': dependencies: - '@nx/eslint-plugin': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0)(eslint-config-prettier@9.1.0)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6) + '@nx/eslint-plugin': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint-config-prettier@9.1.0(eslint@8.46.0))(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24384,12 +37315,10 @@ packages: - supports-color - typescript - verdaccio - dev: true - /@nrwl/jest@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6): - resolution: {integrity: sha512-j+7SM/y63c5zET9YQ6TAt8W6bxxagu3e3zIV68ccEq3pF1jdGnmx9r9RMaiFRo5LWA5gsIayDQDtJ8vpdH2M2g==} + '@nrwl/jest@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6)': dependencies: - '@nx/jest': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nx/jest': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24404,12 +37333,10 @@ packages: - ts-node - typescript - verdaccio - dev: true - /@nrwl/js@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6): - resolution: {integrity: sha512-Qjl21rnmwOzDmqAzBOLOQHgggGNpNXzRLTuV9fNGWSH/hMmYxC7oFqViaUVf53aTHpXgD5a/G6aj3hxThZWbdA==} + '@nrwl/js@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': dependencies: - '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24421,75 +37348,31 @@ packages: - supports-color - typescript - verdaccio - dev: true - /@nrwl/nx-darwin-arm64@15.9.3: - resolution: {integrity: sha512-2htJzVa+S/uLg5tj4nbO/tRz2SRMQIpT6EeWMgDGuEKQdpuRLVj2ez9hMpkRn9tl1tBUwR05hbV28DnOLRESVA==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true + '@nrwl/nx-darwin-arm64@15.9.3': optional: true - /@nrwl/nx-darwin-x64@15.9.3: - resolution: {integrity: sha512-p+8UkfC6KTLOX4XRt7NSP8DoTzEgs73+SN0csoXT9VsNO35+F0Z5zMZxpEc7RVo5Wen/4PGh2OWA+8gtgntsJQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true + '@nrwl/nx-darwin-x64@15.9.3': optional: true - /@nrwl/nx-linux-arm-gnueabihf@15.9.3: - resolution: {integrity: sha512-xwW7bZtggrxhFbYvvWWArtcSWwoxWzi/4wNgP3wPbcZFNZiraahVQSpIyJXrS9aajGbdvuDBM8cbDsMj9v7mwg==} - engines: {node: '>= 10'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true + '@nrwl/nx-linux-arm-gnueabihf@15.9.3': optional: true - /@nrwl/nx-linux-arm64-gnu@15.9.3: - resolution: {integrity: sha512-KNxDL2OAHxhFqztEjv2mNwXD6xrzoUury7NsYZYqlxJUNc3YYBfRSLEatnw491crvMBndbxfGVTWEO9S4YmRuw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@nrwl/nx-linux-arm64-gnu@15.9.3': optional: true - /@nrwl/nx-linux-arm64-musl@15.9.3: - resolution: {integrity: sha512-AxoZzfsXH7ZqDE+WrQtRumufIcSIBw4U/LikiDLaWWoGtNpAfKLkD/PHirZiNxHIeGy1Toi4ccMUolXbafLVFw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@nrwl/nx-linux-arm64-musl@15.9.3': optional: true - /@nrwl/nx-linux-x64-gnu@15.9.3: - resolution: {integrity: sha512-P8AOPRufvV4a5cSczNsw84zFAI7NgAiEBTybYcyymdNJmo0iArJXEmvj/G4mB20O8VCsCkwqMYAu6nQEnES1Kw==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@nrwl/nx-linux-x64-gnu@15.9.3': optional: true - /@nrwl/nx-linux-x64-musl@15.9.3: - resolution: {integrity: sha512-4ZYDp7T319+xbw7Z7KVtRefzaXJipZfgrM49r+Y1FAfYDc8y18zvKz3slK26wfWz+EUZwKsa/DfA2KmyRG3DvQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@nrwl/nx-linux-x64-musl@15.9.3': optional: true - /@nrwl/nx-plugin@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6): - resolution: {integrity: sha512-lVX/ec/reLrS2tb+9/2MbiEg4rEmKeNPTu1jpa24Sz7yCttMjEU+C8wjQnVZmMRre2xiQmFflZUR/tJ9f5/Jpw==} + '@nrwl/nx-plugin@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(eslint@8.46.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6)': dependencies: - '@nx/plugin': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6) + '@nx/plugin': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(eslint@8.46.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24505,30 +37388,16 @@ packages: - ts-node - typescript - verdaccio - dev: true - /@nrwl/nx-win32-arm64-msvc@15.9.3: - resolution: {integrity: sha512-UhgxIPgTZBKN1oxlLPSklkSzVL3hA4lAiVc9A0Utumpbp0ob/Xx+2vHzg3cnmNH3jWkZ+9OsC2dKyeMB6gAbSw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true + '@nrwl/nx-win32-arm64-msvc@15.9.3': optional: true - /@nrwl/nx-win32-x64-msvc@15.9.3: - resolution: {integrity: sha512-gdnvqURKnu0EQGOFJ6NUKq6wSB+viNb7Z8qtKhzSmFwVjT8akOnLWn7ZhL9v28TAjLM7/s1Mwvmz/IMj1PGlcQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true + '@nrwl/nx-win32-x64-msvc@15.9.3': optional: true - /@nrwl/react@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6)(webpack@5.84.1): - resolution: {integrity: sha512-YXm5of00b2wa/y4lRsddORtW5yRkG9tn7G2NRwcPUqvCfSOlZsr6iPXa45nW8/EcPjAhl73nA+rjsnTLDouUdA==} + '@nrwl/react@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: - '@nx/react': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6)(webpack@5.84.1) + '@nx/react': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24542,12 +37411,10 @@ packages: - typescript - verdaccio - webpack - dev: true - /@nrwl/rollup@17.0.0(@babel/core@7.24.7)(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6): - resolution: {integrity: sha512-WBTfMWZ2cH8QgC1EezbS3chPpwUmpE51Iv/GHM7Igkb7/BIPPHVnk1p1AUM+VUDqnrbkvF0y5MfCIQvhBcc6Mg==} + '@nrwl/rollup@17.0.0(@babel/core@7.24.7)(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/babel__core@7.20.5)(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6)': dependencies: - '@nx/rollup': 17.0.0(@babel/core@7.24.7)(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nx/rollup': 17.0.0(@babel/core@7.24.7)(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/babel__core@7.20.5)(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) transitivePeerDependencies: - '@babel/core' - '@babel/traverse' @@ -24562,12 +37429,10 @@ packages: - ts-node - typescript - verdaccio - dev: true - /@nrwl/storybook@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6): - resolution: {integrity: sha512-h/E47WNElhqvFInrCld8EBpOZqCo1P3taUu77nlwdmuOfe7hy/IYhGlPRt1c114Nc9DVZoVZ52xOhT6Xk2b74Q==} + '@nrwl/storybook@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': dependencies: - '@nx/storybook': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6) + '@nx/storybook': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24581,35 +37446,27 @@ packages: - supports-color - typescript - verdaccio - dev: true - /@nrwl/tao@15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99): - resolution: {integrity: sha512-NcjFCbuMa53C3fBrK7qLUImUBySyr9EVwmiZuAv9sZZtm4eILK8w3qihjrB4FFUuLjPU/SViriYXi+hF2tbP4w==} - hasBin: true + '@nrwl/tao@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))': dependencies: - nx: 15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) + nx: 15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug - dev: true - /@nrwl/tao@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99): - resolution: {integrity: sha512-ujvXd8yde1faH0zHKWWnZUhSym/+5SJT6NctBKNQTe8FVm0yBErsbxv8kdvVg/bizsRv+fbOkLdII0xX0aMkKQ==} - hasBin: true + '@nrwl/tao@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))': dependencies: - nx: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) + nx: 17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) tslib: 2.6.3 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug - dev: true - /@nrwl/web@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6): - resolution: {integrity: sha512-Kj6S5M9KA5/UVgAf0E/AqQXyDDpbNxdZeXsWoT1CDD7w3GewWOMh/BxDZyMKQ/GIZfX1yFCbPj5+zCtpQCk3jQ==} + '@nrwl/web@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': dependencies: - '@nx/web': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nx/web': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24621,12 +37478,10 @@ packages: - supports-color - typescript - verdaccio - dev: true - /@nrwl/webpack@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0)(nx@17.0.0)(typescript@5.1.6)(webpack-cli@4.10.0): - resolution: {integrity: sha512-RiYfqKrfb+xb3/jsi8sRn19hqF6nQPWYzlLIw0Y5kX8h7N7ZQjBFpLkJuZwEUhGPEb+VC9BBzC9cXuMgWwwiSQ==} + '@nrwl/webpack@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: - '@nx/webpack': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0)(nx@17.0.0)(typescript@5.1.6)(webpack-cli@4.10.0) + '@nx/webpack': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) transitivePeerDependencies: - '@babel/traverse' - '@parcel/css' @@ -24654,35 +37509,27 @@ packages: - verdaccio - vue-template-compiler - webpack-cli - dev: true - /@nrwl/workspace@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99): - resolution: {integrity: sha512-kh30WXFmrKnrFYuk/zo7yByDjo9JWwJ3SbgdXf1S4RtZXtiDcDpat2UQ2oOe8bB6fYLrGjudsVTIWmnNKTjmNw==} + '@nrwl/workspace@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))': dependencies: - '@nx/workspace': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) + '@nx/workspace': 17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug - dev: true - /@nx/cypress@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6): - resolution: {integrity: sha512-HDNMG/IazDaftBRRAsAVpaXo3QN6F8FjbdpWmx2vcbaG0fS0teHcQxPpHJqaT5jg/V17VEailepGOA+BoI4PWg==} - peerDependencies: - cypress: '>= 3 < 14' - peerDependenciesMeta: - cypress: - optional: true + '@nx/cypress@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': dependencies: - '@nrwl/cypress': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6) - '@nx/devkit': 17.0.0(nx@17.0.0) - '@nx/eslint': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0) - '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nrwl/cypress': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nx/eslint': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.1.6) - cypress: 9.7.0 detect-port: 1.6.1 semver: 7.5.3 tslib: 2.6.3 + optionalDependencies: + cypress: 9.7.0 transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24695,44 +37542,33 @@ packages: - supports-color - typescript - verdaccio - dev: true - /@nx/devkit@17.0.0(nx@17.0.0): - resolution: {integrity: sha512-NqN+I3R+Gxuy+gf04cdMg1Wo29CyhT2F87Yvu2JU355BfB3MOAFfOrQpPQt5sPlZRloZCrz0K3c2uftNkGSMUg==} - peerDependencies: - nx: '>= 16 <= 18' + '@nx/devkit@17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))': dependencies: - '@nrwl/devkit': 17.0.0(nx@17.0.0) + '@nrwl/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) ejs: 3.1.10 enquirer: 2.3.6 ignore: 5.3.1 - nx: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) + nx: 17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) semver: 7.5.3 tmp: 0.2.3 tslib: 2.6.3 - dev: true - /@nx/eslint-plugin@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0)(eslint-config-prettier@9.1.0)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6): - resolution: {integrity: sha512-q1kUSPRGHhbaXwJq+JthprIDVjL9mVaPeB/2mFmMFdsU6RPZsud8oJoQCamMKkGMMcN/VrtAm3L680EYv/abQw==} - peerDependencies: - '@typescript-eslint/parser': ^5.60.1 - eslint-config-prettier: ^9.0.0 - peerDependenciesMeta: - eslint-config-prettier: - optional: true + '@nx/eslint-plugin@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint-config-prettier@9.1.0(eslint@8.46.0))(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': dependencies: - '@nrwl/eslint-plugin-nx': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0)(eslint-config-prettier@9.1.0)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6) - '@nx/devkit': 17.0.0(nx@17.0.0) - '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nrwl/eslint-plugin-nx': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint-config-prettier@9.1.0(eslint@8.46.0))(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) '@typescript-eslint/parser': 5.62.0(eslint@8.46.0)(typescript@5.1.6) '@typescript-eslint/type-utils': 5.62.0(eslint@8.46.0)(typescript@5.1.6) '@typescript-eslint/utils': 5.62.0(eslint@8.46.0)(typescript@5.1.6) chalk: 4.1.2 confusing-browser-globals: 1.0.11 - eslint-config-prettier: 9.1.0(eslint@8.46.0) jsonc-eslint-parser: 2.4.0 semver: 7.5.3 tslib: 2.6.3 + optionalDependencies: + eslint-config-prettier: 9.1.0(eslint@8.46.0) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24745,22 +37581,16 @@ packages: - supports-color - typescript - verdaccio - dev: true - /@nx/eslint@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0): - resolution: {integrity: sha512-GWoEoxKgKrjwIB38a8JPhE6MM6wacaZfYZCAb5N2F8+7GPQUJxNW8gyhaCbLIrUglSJL+SLFtE91txOwHnDsBQ==} - peerDependencies: - eslint: ^8.0.0 - peerDependenciesMeta: - eslint: - optional: true + '@nx/eslint@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))': dependencies: - '@nx/devkit': 17.0.0(nx@17.0.0) - '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) - '@nx/linter': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0) - eslint: 8.46.0 + '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nx/linter': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) tslib: 2.6.3 typescript: 5.1.6 + optionalDependencies: + eslint: 8.46.0 transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24771,20 +37601,18 @@ packages: - nx - supports-color - verdaccio - dev: true - /@nx/jest@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6): - resolution: {integrity: sha512-ITl074j0tdDkPxMtwFQWWC+Zp23wklxlHjLfhf0CUbPqzQnofEToUd7MiuKkjzvVjXJxD/zYX9sMl6iXmFpGiA==} + '@nx/jest@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6)': dependencies: - '@jest/reporters': 29.7.0 + '@jest/reporters': 29.7.0(node-notifier@8.0.2) '@jest/test-result': 29.7.0 - '@nrwl/jest': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) - '@nx/devkit': 17.0.0(nx@17.0.0) - '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nrwl/jest': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) + '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.1.6) chalk: 4.1.2 identity-obj-proxy: 3.0.0 - jest-config: 29.7.0(@types/node@18.11.9) + jest-config: 29.7.0(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)) jest-resolve: 29.7.0 jest-util: 29.7.0 resolve.exports: 1.1.0 @@ -24803,15 +37631,8 @@ packages: - ts-node - typescript - verdaccio - dev: true - /@nx/js@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6): - resolution: {integrity: sha512-j0YzvINQWH7OseoJp6zlbIioOKRDQ746MKROCDBx50uRkkJ2FlpHPYkLwv0M721JHJqf0dM0sBDa+HTxFHPcIg==} - peerDependencies: - verdaccio: ^5.0.4 - peerDependenciesMeta: - verdaccio: - optional: true + '@nx/js@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': dependencies: '@babel/core': 7.24.7 '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.24.7) @@ -24819,13 +37640,13 @@ packages: '@babel/preset-env': 7.24.7(@babel/core@7.24.7) '@babel/preset-typescript': 7.24.7(@babel/core@7.24.7) '@babel/runtime': 7.24.7 - '@nrwl/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) - '@nx/devkit': 17.0.0(nx@17.0.0) - '@nx/workspace': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) + '@nrwl/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nx/workspace': 17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.1.6) babel-plugin-const-enum: 1.2.0(@babel/core@7.24.7) babel-plugin-macros: 2.8.0 - babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.24.7) + babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.24.7)(@babel/traverse@7.24.7) chalk: 4.1.2 columnify: 1.6.0 detect-port: 1.6.1 @@ -24839,7 +37660,7 @@ packages: ora: 5.3.0 semver: 7.5.3 source-map-support: 0.5.19 - ts-node: 10.9.1(@swc/core@1.3.99)(@types/node@18.11.9)(typescript@5.1.6) + ts-node: 10.9.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(typescript@5.1.6) tsconfig-paths: 4.2.0 tslib: 2.6.3 transitivePeerDependencies: @@ -24852,12 +37673,10 @@ packages: - nx - supports-color - typescript - dev: true - /@nx/linter@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0): - resolution: {integrity: sha512-4rDylew15CAlAsFxYvXzY6EvmGqG7uE7qWtBlkGFoDnGCNfVakzTpU6b4GJGLE1QMToKFgehrxOHL1SVzdkogg==} + '@nx/linter@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))': dependencies: - '@nx/eslint': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0) + '@nx/eslint': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24869,106 +37688,44 @@ packages: - nx - supports-color - verdaccio - dev: true - /@nx/nx-darwin-arm64@17.0.0: - resolution: {integrity: sha512-ZPW6uTVskpIbNJrH3I60lmYgXBnbszsmIX6haEhb4NKCwgPdZzMdbPqNNjIxKn6eL1A6FGKZYFh519OM8+z91A==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true + '@nx/nx-darwin-arm64@17.0.0': optional: true - /@nx/nx-darwin-x64@17.0.0: - resolution: {integrity: sha512-pAPqfyfhSIogaUfsp5P3rbha5Xa4yZ3bHG5agi6AE9P62N/Om4r8utdZpHPKyXbWywsJZM0lL5llSfiruuO+fg==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true + '@nx/nx-darwin-x64@17.0.0': optional: true - /@nx/nx-freebsd-x64@17.0.0: - resolution: {integrity: sha512-DbbsthLTE+cKVUP6HDE6sza/8wRey2vy/6HfNuVnu7A/ZQaxWJUudkKviQidh7QEhHWiJoyEkjskExYTow6OoQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true + '@nx/nx-freebsd-x64@17.0.0': optional: true - /@nx/nx-linux-arm-gnueabihf@17.0.0: - resolution: {integrity: sha512-ZYgYLscl4Zj/Ux7N5DJ0it9sTODEiqZjfx80w05q18GjXUWAcozFp/CZgXdT7AxONtESl/ZKDdqM+p8Hv0rI2Q==} - engines: {node: '>= 10'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true + '@nx/nx-linux-arm-gnueabihf@17.0.0': optional: true - /@nx/nx-linux-arm64-gnu@17.0.0: - resolution: {integrity: sha512-Mb0ffRV3X43OQtY5sY9wuAxFZ8VUQGM5LPwX908M2gAJH8FYtnWl06rfJAGhFAMf1Dt3bWsNebMC5iJprtF3SQ==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@nx/nx-linux-arm64-gnu@17.0.0': optional: true - /@nx/nx-linux-arm64-musl@17.0.0: - resolution: {integrity: sha512-Xwzy3QysngtXVCJ3YRJ9rl8JL13yqluknftwxiHsMaYD7BMlh2YXdyt5D7g4yvLywq+6SezKS6cB+X4/OQlQUA==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@nx/nx-linux-arm64-musl@17.0.0': optional: true - /@nx/nx-linux-x64-gnu@17.0.0: - resolution: {integrity: sha512-KNbLZCNhFK/cRMavh5b7ruWX2J6KA1rR1LV5rF/liDM0scyARkJzy5PcwwhXqxaUPQD+EXWWiRkKKRYk+mwVLA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@nx/nx-linux-x64-gnu@17.0.0': optional: true - /@nx/nx-linux-x64-musl@17.0.0: - resolution: {integrity: sha512-T8xJTO+kac3l8528YxpAjOeke3QbRYmdSY09E6f0OrSL43D3sfJcWB8NNatx3k5q0bJ9TVl7VVJG/3Rwux/99A==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@nx/nx-linux-x64-musl@17.0.0': optional: true - /@nx/nx-win32-arm64-msvc@17.0.0: - resolution: {integrity: sha512-Y/g9w6lLWMKvr9htS3ZD3jbVzMVWPq01+Bw440E5gBexAp1mvrv1cih0lKkduuIAlVppyjJu+htpEdp2wxUv9Q==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true + '@nx/nx-win32-arm64-msvc@17.0.0': optional: true - /@nx/nx-win32-x64-msvc@17.0.0: - resolution: {integrity: sha512-VIF01yfR2jSMQi/1x04TqJxhbKCzrdRG6QBjPCXTl6ZLnb7eGolKVPxDJd3blhYtRsS3pp20u2ra6i7C1oRrMQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true + '@nx/nx-win32-x64-msvc@17.0.0': optional: true - /@nx/plugin@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6): - resolution: {integrity: sha512-47evs4zB6DtpRzYhRednjZXdCA0XS6uhkLddz7DZveaBHGJds7qMAgZ3YDkbsTf7VoBtI7uYuWYt/Z9IoVfHjA==} + '@nx/plugin@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(eslint@8.46.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6)': dependencies: - '@nrwl/nx-plugin': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6) - '@nx/devkit': 17.0.0(nx@17.0.0) - '@nx/eslint': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0) - '@nx/jest': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) - '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nrwl/nx-plugin': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(eslint@8.46.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) + '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nx/eslint': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nx/jest': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) + '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.1.6) fs-extra: 11.2.0 tslib: 2.6.3 @@ -24987,20 +37744,18 @@ packages: - ts-node - typescript - verdaccio - dev: true - /@nx/react@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6)(webpack@5.84.1): - resolution: {integrity: sha512-YHYyM0RA5+SEDgT5gSBv+a2hOBcRVrzEuRiLaOY+Za3ACxrOoO3Z0ZV0QdWLBc2hI+aYIiZkHVp9F9ro8Lx8SQ==} + '@nx/react@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: - '@nrwl/react': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6)(webpack@5.84.1) - '@nx/devkit': 17.0.0(nx@17.0.0) - '@nx/eslint': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0) - '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) - '@nx/web': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nrwl/react': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nx/eslint': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nx/web': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.1.6) '@svgr/webpack': 8.1.0(typescript@5.1.6) chalk: 4.1.2 - file-loader: 6.2.0(webpack@5.84.1) + file-loader: 6.2.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) minimatch: 3.0.5 tslib: 2.6.3 transitivePeerDependencies: @@ -25016,15 +37771,13 @@ packages: - typescript - verdaccio - webpack - dev: true - /@nx/rollup@17.0.0(@babel/core@7.24.7)(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6): - resolution: {integrity: sha512-cGTrhZRXd+0m2R8xS/rlxNiGh2mqxPp0T/bNT9FarwNKEDeWwqNBx51d27kfEBC1pSWbf7AFFmXvZzR/sSrjJA==} + '@nx/rollup@17.0.0(@babel/core@7.24.7)(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/babel__core@7.20.5)(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6)': dependencies: - '@nrwl/rollup': 17.0.0(@babel/core@7.24.7)(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) - '@nx/devkit': 17.0.0(nx@17.0.0) - '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) - '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.7)(rollup@2.79.1) + '@nrwl/rollup': 17.0.0(@babel/core@7.24.7)(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/babel__core@7.20.5)(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) + '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.7)(@types/babel__core@7.20.5)(rollup@2.79.1) '@rollup/plugin-commonjs': 20.0.0(rollup@2.79.1) '@rollup/plugin-image': 2.1.1(rollup@2.79.1) '@rollup/plugin-json': 4.1.0(rollup@2.79.1) @@ -25037,7 +37790,7 @@ packages: rollup: 2.79.1 rollup-plugin-copy: 3.5.0 rollup-plugin-peer-deps-external: 2.2.4(rollup@2.79.1) - rollup-plugin-postcss: 4.0.2(postcss@8.4.39) + rollup-plugin-postcss: 4.0.2(postcss@8.4.39)(ts-node@8.10.2(typescript@5.1.6)) rollup-plugin-typescript2: 0.34.1(rollup@2.79.1)(typescript@5.1.6) rxjs: 7.8.1 tslib: 2.6.3 @@ -25055,16 +37808,14 @@ packages: - ts-node - typescript - verdaccio - dev: true - /@nx/storybook@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6): - resolution: {integrity: sha512-LpxUVrt/LdO39sTPDHWVfNuxxbukmmfxyIFk/XtWoi0rFn7Ut/Zc3SdD9+7lEhIklnXu90ob5aALl4YG9OtY9A==} + '@nx/storybook@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': dependencies: - '@nrwl/storybook': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6) - '@nx/cypress': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0)(typescript@5.1.6) - '@nx/devkit': 17.0.0(nx@17.0.0) - '@nx/eslint': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0) - '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nrwl/storybook': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nx/cypress': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nx/eslint': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.1.6) semver: 7.5.3 tslib: 2.6.3 @@ -25081,14 +37832,12 @@ packages: - supports-color - typescript - verdaccio - dev: true - /@nx/web@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6): - resolution: {integrity: sha512-H8R3QRs7nBKFei+KBvn4D8h9b4YEH8v4vfigFFD2Px1WCi0S8fWUqr9mF/EUUt6pUAf7Qgq3qp+EHArQ19X8MA==} + '@nx/web@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': dependencies: - '@nrwl/web': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) - '@nx/devkit': 17.0.0(nx@17.0.0) - '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nrwl/web': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) chalk: 4.1.2 detect-port: 1.6.1 http-server: 14.1.1 @@ -25104,45 +37853,43 @@ packages: - supports-color - typescript - verdaccio - dev: true - /@nx/webpack@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0)(nx@17.0.0)(typescript@5.1.6)(webpack-cli@4.10.0): - resolution: {integrity: sha512-/qDyFGMCVvNPUW7T/qCh1CvRIcLDgCWcAz7KCeM5v90jRajSnfZDM0z7oQ4h/IClNQ3c57JJ8Mdm6rpY0XoMgw==} + '@nx/webpack@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 - '@nrwl/webpack': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0)(nx@17.0.0)(typescript@5.1.6)(webpack-cli@4.10.0) - '@nx/devkit': 17.0.0(nx@17.0.0) - '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nrwl/webpack': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) autoprefixer: 10.4.13(postcss@8.4.39) - babel-loader: 9.1.3(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 9.1.3(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) browserslist: 4.23.1 chalk: 4.1.2 - copy-webpack-plugin: 10.2.4(webpack@5.84.1) - css-loader: 6.11.0(webpack@5.84.1) - css-minimizer-webpack-plugin: 5.0.1(esbuild@0.18.20)(webpack@5.84.1) - fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.1.6)(webpack@5.84.1) + copy-webpack-plugin: 10.2.4(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + css-loader: 6.11.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + css-minimizer-webpack-plugin: 5.0.1(esbuild@0.18.20)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) less: 4.1.3 - less-loader: 11.1.0(less@4.1.3)(webpack@5.84.1) - license-webpack-plugin: 4.0.2(webpack@5.84.1) + less-loader: 11.1.0(less@4.1.3)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + license-webpack-plugin: 4.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) loader-utils: 2.0.4 - mini-css-extract-plugin: 2.4.7(webpack@5.84.1) + mini-css-extract-plugin: 2.4.7(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) parse5: 4.0.0 postcss: 8.4.39 postcss-import: 14.1.0(postcss@8.4.39) - postcss-loader: 6.2.1(postcss@8.4.39)(webpack@5.84.1) + postcss-loader: 6.2.1(postcss@8.4.39)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) rxjs: 7.8.1 sass: 1.77.6 - sass-loader: 12.6.0(sass@1.77.6)(webpack@5.84.1) - source-map-loader: 3.0.2(webpack@5.84.1) - style-loader: 3.3.4(webpack@5.84.1) - terser-webpack-plugin: 5.3.10(@swc/core@1.3.99)(esbuild@0.18.20)(webpack@5.84.1) - ts-loader: 9.5.1(typescript@5.1.6)(webpack@5.84.1) + sass-loader: 12.6.0(sass@1.77.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + source-map-loader: 3.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + style-loader: 3.3.4(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + terser-webpack-plugin: 5.3.10(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + ts-loader: 9.5.1(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) tsconfig-paths-webpack-plugin: 4.0.0 tslib: 2.6.3 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - webpack-dev-server: 4.15.2(webpack-cli@4.10.0)(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-dev-server: 4.15.2(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) webpack-node-externals: 3.0.0 - webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0)(webpack@5.84.1) + webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) transitivePeerDependencies: - '@babel/traverse' - '@parcel/css' @@ -25170,337 +37917,169 @@ packages: - verdaccio - vue-template-compiler - webpack-cli - dev: true - /@nx/workspace@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99): - resolution: {integrity: sha512-7rG+7S7f6CyxrvLSduSyvJZ4DYfpCO1WZkEfZDpp9cuQVJudeZqrXqolupkmQqymTTWyNSRASvLbL1GBRLtU3w==} + '@nx/workspace@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))': dependencies: - '@nrwl/workspace': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) - '@nx/devkit': 17.0.0(nx@17.0.0) + '@nrwl/workspace': 17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) + '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) chalk: 4.1.2 enquirer: 2.3.6 - nx: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) + nx: 17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) tslib: 2.6.3 yargs-parser: 21.1.1 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug - dev: true - /@octokit/auth-token@3.0.4: - resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==} - engines: {node: '>= 14'} - dev: true + '@octokit/auth-token@3.0.4': {} - /@octokit/core@4.2.4: - resolution: {integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==} - engines: {node: '>= 14'} + '@octokit/core@4.2.4(encoding@0.1.13)': dependencies: '@octokit/auth-token': 3.0.4 - '@octokit/graphql': 5.0.6 - '@octokit/request': 6.2.8 + '@octokit/graphql': 5.0.6(encoding@0.1.13) + '@octokit/request': 6.2.8(encoding@0.1.13) '@octokit/request-error': 3.0.3 '@octokit/types': 9.3.2 before-after-hook: 2.2.3 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding - dev: true - /@octokit/endpoint@7.0.6: - resolution: {integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==} - engines: {node: '>= 14'} + '@octokit/endpoint@7.0.6': dependencies: '@octokit/types': 9.3.2 is-plain-object: 5.0.0 universal-user-agent: 6.0.1 - dev: true - /@octokit/graphql@5.0.6: - resolution: {integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==} - engines: {node: '>= 14'} + '@octokit/graphql@5.0.6(encoding@0.1.13)': dependencies: - '@octokit/request': 6.2.8 + '@octokit/request': 6.2.8(encoding@0.1.13) '@octokit/types': 9.3.2 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding - dev: true - /@octokit/openapi-types@18.1.1: - resolution: {integrity: sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==} - dev: true + '@octokit/openapi-types@18.1.1': {} - /@octokit/plugin-enterprise-rest@6.0.1: - resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==} - dev: true + '@octokit/plugin-enterprise-rest@6.0.1': {} - /@octokit/plugin-paginate-rest@6.1.2(@octokit/core@4.2.4): - resolution: {integrity: sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==} - engines: {node: '>= 14'} - peerDependencies: - '@octokit/core': '>=4' + '@octokit/plugin-paginate-rest@6.1.2(@octokit/core@4.2.4(encoding@0.1.13))': dependencies: - '@octokit/core': 4.2.4 + '@octokit/core': 4.2.4(encoding@0.1.13) '@octokit/tsconfig': 1.0.2 '@octokit/types': 9.3.2 - dev: true - /@octokit/plugin-request-log@1.0.4(@octokit/core@4.2.4): - resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} - peerDependencies: - '@octokit/core': '>=3' + '@octokit/plugin-request-log@1.0.4(@octokit/core@4.2.4(encoding@0.1.13))': dependencies: - '@octokit/core': 4.2.4 - dev: true + '@octokit/core': 4.2.4(encoding@0.1.13) - /@octokit/plugin-rest-endpoint-methods@7.2.3(@octokit/core@4.2.4): - resolution: {integrity: sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==} - engines: {node: '>= 14'} - peerDependencies: - '@octokit/core': '>=3' + '@octokit/plugin-rest-endpoint-methods@7.2.3(@octokit/core@4.2.4(encoding@0.1.13))': dependencies: - '@octokit/core': 4.2.4 + '@octokit/core': 4.2.4(encoding@0.1.13) '@octokit/types': 10.0.0 - dev: true - /@octokit/request-error@3.0.3: - resolution: {integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==} - engines: {node: '>= 14'} + '@octokit/request-error@3.0.3': dependencies: '@octokit/types': 9.3.2 deprecation: 2.3.1 once: 1.4.0 - dev: true - /@octokit/request@6.2.8: - resolution: {integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==} - engines: {node: '>= 14'} + '@octokit/request@6.2.8(encoding@0.1.13)': dependencies: '@octokit/endpoint': 7.0.6 '@octokit/request-error': 3.0.3 '@octokit/types': 9.3.2 is-plain-object: 5.0.0 - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding - dev: true - /@octokit/rest@19.0.13: - resolution: {integrity: sha512-/EzVox5V9gYGdbAI+ovYj3nXQT1TtTHRT+0eZPcuC05UFSWO3mdO9UY1C0i2eLF9Un1ONJkAk+IEtYGAC+TahA==} - engines: {node: '>= 14'} + '@octokit/rest@19.0.13(encoding@0.1.13)': dependencies: - '@octokit/core': 4.2.4 - '@octokit/plugin-paginate-rest': 6.1.2(@octokit/core@4.2.4) - '@octokit/plugin-request-log': 1.0.4(@octokit/core@4.2.4) - '@octokit/plugin-rest-endpoint-methods': 7.2.3(@octokit/core@4.2.4) + '@octokit/core': 4.2.4(encoding@0.1.13) + '@octokit/plugin-paginate-rest': 6.1.2(@octokit/core@4.2.4(encoding@0.1.13)) + '@octokit/plugin-request-log': 1.0.4(@octokit/core@4.2.4(encoding@0.1.13)) + '@octokit/plugin-rest-endpoint-methods': 7.2.3(@octokit/core@4.2.4(encoding@0.1.13)) transitivePeerDependencies: - encoding - dev: true - /@octokit/tsconfig@1.0.2: - resolution: {integrity: sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==} - dev: true + '@octokit/tsconfig@1.0.2': {} - /@octokit/types@10.0.0: - resolution: {integrity: sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==} + '@octokit/types@10.0.0': dependencies: '@octokit/openapi-types': 18.1.1 - dev: true - /@octokit/types@9.3.2: - resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==} + '@octokit/types@9.3.2': dependencies: '@octokit/openapi-types': 18.1.1 - dev: true - /@one-ini/wasm@0.1.1: - resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} - dev: false + '@one-ini/wasm@0.1.1': {} - /@open-draft/until@1.0.3: - resolution: {integrity: sha512-Aq58f5HiWdyDlFffbbSjAlv596h/cOnt2DO1w3DOC7OJ5EHs0hd/nycJfiu9RJbT6Yk6F1knnRRXNSpxoIVZ9Q==} - dev: true + '@open-draft/until@1.0.3': {} - /@oxygen-ui/primitives@1.11.0: - resolution: {integrity: sha512-z1d75MVfkYYrLiBRFPJJNvcMc1/j5qd9eZZGMXH04Ipg1VbVHj3DGl6BvqRGIHeBdNtm3NgjBwx8VfqHQ/i6HA==} - dev: false + '@oxygen-ui/primitives@1.11.0': {} - /@oxygen-ui/react-icons@1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5): - resolution: {integrity: sha512-qb1bCzC6c0xecRHneQy6T0LlGNLMvqomw1kuExubstn1kcebF7Y+TH8hjlrr4F3tp+upTBRXNEsVAUeq24Xnpw==} - peerDependencies: - react: '>=18.0.0' - react-dom: '>=18.0.0' - typescript: '>=4.0.0' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - typescript: 4.9.5 - dev: false - - /@oxygen-ui/react@1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5): - resolution: {integrity: sha512-Ij9E3CvX/fNGQkWbH6ic9LNsldFHeuy/2adksNsJLQgVsbvPct/coXyPYF8duH17dPEu6nksEHJwIfxoz9ekww==} - peerDependencies: - '@emotion/react': ^11.10.5 - '@emotion/styled': ^11.10.5 - '@mui/icons-material': ^5.10.16 - '@mui/lab': 5.0.0-alpha.110 - '@mui/material': 5.13.0 - '@mui/system': ^5.10.16 - '@mui/utils': ^5.10.16 - react: '>=18.0.0' - react-dom: '>=18.0.0' - typescript: '>=4.0.0' - peerDependenciesMeta: - typescript: - optional: true + '@oxygen-ui/react-icons@1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)': dependencies: - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) - '@mui/icons-material': 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) - '@mui/lab': 5.0.0-alpha.110(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) - '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@mui/x-data-grid': 6.20.1(@mui/material@5.13.0)(@mui/system@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@oxygen-ui/primitives': 1.11.0 - '@oxygen-ui/react-icons': 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) - clsx: 1.2.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-world-flags: 1.6.0(react@18.3.1) + optionalDependencies: typescript: 4.9.5 - transitivePeerDependencies: - - '@types/react' - dev: false - /@oxygen-ui/react@1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5): - resolution: {integrity: sha512-Ij9E3CvX/fNGQkWbH6ic9LNsldFHeuy/2adksNsJLQgVsbvPct/coXyPYF8duH17dPEu6nksEHJwIfxoz9ekww==} - peerDependencies: - '@emotion/react': ^11.10.5 - '@emotion/styled': ^11.10.5 - '@mui/icons-material': ^5.10.16 - '@mui/lab': 5.0.0-alpha.110 - '@mui/material': 5.13.0 - '@mui/system': ^5.10.16 - '@mui/utils': ^5.10.16 - react: '>=18.0.0' - react-dom: '>=18.0.0' - typescript: '>=4.0.0' - peerDependenciesMeta: - typescript: - optional: true - dependencies: + ? '@oxygen-ui/react@1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)' + : dependencies: '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) - '@mui/icons-material': 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) - '@mui/lab': 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + '@mui/icons-material': 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + '@mui/lab': 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@mui/x-data-grid': 6.20.1(@mui/material@5.13.0)(@mui/system@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/x-data-grid': 6.20.1(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@oxygen-ui/primitives': 1.11.0 - '@oxygen-ui/react-icons': 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + '@oxygen-ui/react-icons': 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) clsx: 1.2.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-world-flags: 1.6.0(react@18.3.1) + optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - '@types/react' - dev: false - /@parcel/watcher@2.0.4: - resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==} - engines: {node: '>= 10.0.0'} - requiresBuild: true + '@parcel/watcher@2.0.4': dependencies: node-addon-api: 3.2.1 node-gyp-build: 4.8.1 - dev: true - /@phenomnomnominal/tsquery@5.0.1(typescript@5.1.6): - resolution: {integrity: sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==} - peerDependencies: - typescript: ^3 || ^4 || ^5 + '@phenomnomnominal/tsquery@5.0.1(typescript@5.1.6)': dependencies: - esquery: 1.6.0 - typescript: 5.1.6 - dev: true - - /@pkgjs/parseargs@0.11.0: - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: '>=14'} - requiresBuild: true - optional: true - - /@pmmmwh/react-refresh-webpack-plugin@0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1): - resolution: {integrity: sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==} - engines: {node: '>= 10.x'} - peerDependencies: - '@types/webpack': 4.x - react-refresh: '>=0.8.3 <0.10.0' - sockjs-client: ^1.4.0 - type-fest: ^0.13.1 - webpack: 5.84.1 - webpack-dev-server: 3.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - '@types/webpack': - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true - dependencies: - ansi-html: 0.0.7 - error-stack-parser: 2.1.4 - html-entities: 1.4.0 - native-url: 0.2.6 - react-refresh: 0.9.0 - schema-utils: 2.7.1 - source-map: 0.7.4 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) - dev: true - - /@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.10.0)(webpack-dev-server@3.11.3)(webpack@5.84.1): - resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==} - engines: {node: '>= 10.13'} - peerDependencies: - '@types/webpack': 4.x || 5.x - react-refresh: '>=0.10.0 <1.0.0' - sockjs-client: ^1.4.0 - type-fest: '>=0.17.0 <5.0.0' - webpack: 5.84.1 - webpack-dev-server: 3.x || 4.x || 5.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - '@types/webpack': - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true + esquery: 1.6.0 + typescript: 5.1.6 + + '@pkgjs/parseargs@0.11.0': + optional: true + + '@pmmmwh/react-refresh-webpack-plugin@0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + dependencies: + ansi-html: 0.0.7 + error-stack-parser: 2.1.4 + html-entities: 1.4.0 + native-url: 0.2.6 + react-refresh: 0.9.0 + schema-utils: 2.7.1 + source-map: 0.7.4 + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + '@types/webpack': 4.41.38 + sockjs-client: 1.6.1 + type-fest: 4.20.1 + webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack-hot-middleware: 2.26.1 + + '@pmmmwh/react-refresh-webpack-plugin@0.5.15(@types/webpack@4.41.38)(react-refresh@0.10.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: ansi-html: 0.0.9 core-js-pure: 3.37.1 @@ -25510,35 +38089,15 @@ packages: react-refresh: 0.10.0 schema-utils: 4.2.0 source-map: 0.7.4 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + '@types/webpack': 4.41.38 + sockjs-client: 1.6.1 + type-fest: 4.20.1 + webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack-hot-middleware: 2.26.1 - /@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.11.0)(webpack-dev-server@3.11.3)(webpack@5.84.1): - resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==} - engines: {node: '>= 10.13'} - peerDependencies: - '@types/webpack': 4.x || 5.x - react-refresh: '>=0.10.0 <1.0.0' - sockjs-client: ^1.4.0 - type-fest: '>=0.17.0 <5.0.0' - webpack: 5.84.1 - webpack-dev-server: 3.x || 4.x || 5.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - '@types/webpack': - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true + '@pmmmwh/react-refresh-webpack-plugin@0.5.15(@types/webpack@4.41.38)(react-refresh@0.11.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: ansi-html: 0.0.9 core-js-pure: 3.37.1 @@ -25548,35 +38107,15 @@ packages: react-refresh: 0.11.0 schema-utils: 4.2.0 source-map: 0.7.4 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) - dev: false + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + '@types/webpack': 4.41.38 + sockjs-client: 1.6.1 + type-fest: 4.20.1 + webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack-hot-middleware: 2.26.1 - /@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.2)(webpack-dev-server@3.11.3)(webpack@5.84.1): - resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==} - engines: {node: '>= 10.13'} - peerDependencies: - '@types/webpack': 4.x || 5.x - react-refresh: '>=0.10.0 <1.0.0' - sockjs-client: ^1.4.0 - type-fest: '>=0.17.0 <5.0.0' - webpack: 5.84.1 - webpack-dev-server: 3.x || 4.x || 5.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - '@types/webpack': - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true + '@pmmmwh/react-refresh-webpack-plugin@0.5.15(@types/webpack@4.41.38)(react-refresh@0.14.2)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: ansi-html: 0.0.9 core-js-pure: 3.37.1 @@ -25586,24 +38125,21 @@ packages: react-refresh: 0.14.2 schema-utils: 4.2.0 source-map: 0.7.4 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + '@types/webpack': 4.41.38 + sockjs-client: 1.6.1 + type-fest: 4.20.1 + webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack-hot-middleware: 2.26.1 - /@polka/url@1.0.0-next.25: - resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} + '@polka/url@1.0.0-next.25': {} - /@popperjs/core@2.11.8: - resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} - dev: false + '@popperjs/core@2.11.8': {} - /@reactflow/background@11.2.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-gOtae79Zx1zOs9tD4tmKfuiQQOyG0O81BWBCHqlAQgemKlYExElFKOC67lgTDZ4GGFK+4sXrgrWQ5h14hzaFgg==} - peerDependencies: - react: '>=17' - react-dom: '>=17' + '@reactflow/background@11.2.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classcat: 5.0.5 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -25611,15 +38147,10 @@ packages: transitivePeerDependencies: - '@types/react' - immer - dev: false - /@reactflow/controls@11.1.13(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-rA74+mbt2bnz9Fba6JL1JsKHNNEK6Nl70+ssfOLKMpRFIg512IroayBWufgPJB82X9dgMIzZfx/UcEFFUFJQ8Q==} - peerDependencies: - react: '>=17' - react-dom: '>=17' + '@reactflow/controls@11.1.13(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classcat: 5.0.5 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -25627,13 +38158,8 @@ packages: transitivePeerDependencies: - '@types/react' - immer - dev: false - /@reactflow/core@11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-AhszxILp1RNk3SwrnC/eYh1XsOil5yzthYG5k+oTpvLH5H3BtIWIVkeLEJwmL611lPKL3JuScfjliUxBm9128w==} - peerDependencies: - react: '>=17' - react-dom: '>=17' + '@reactflow/core@11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@types/d3': 7.4.3 '@types/d3-drag': 3.0.7 @@ -25649,15 +38175,10 @@ packages: transitivePeerDependencies: - '@types/react' - immer - dev: false - /@reactflow/minimap@11.5.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-564gP/GMZKaJjVRGIrVLv2gIjgc89+qvNwuZzHnQLXjBw5+nS/QkW57Qx/M33MxVAaM+Z5rJ8gKknMSnxekwvQ==} - peerDependencies: - react: '>=17' - react-dom: '>=17' + '@reactflow/minimap@11.5.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/d3-selection': 3.0.10 '@types/d3-zoom': 3.0.8 classcat: 5.0.5 @@ -25669,15 +38190,10 @@ packages: transitivePeerDependencies: - '@types/react' - immer - dev: false - /@reactflow/node-resizer@2.1.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-DVL8nnWsltP8/iANadAcTaDB4wsEkx2mOLlBEPNE3yc5loSm3u9l5m4enXRcBym61MiMuTtDPzZMyYYQUjuYIg==} - peerDependencies: - react: '>=17' - react-dom: '>=17' + '@reactflow/node-resizer@2.1.0(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classcat: 5.0.5 d3-drag: 3.0.0 d3-selection: 3.0.0 @@ -25687,15 +38203,10 @@ packages: transitivePeerDependencies: - '@types/react' - immer - dev: false - /@reactflow/node-toolbar@1.2.1(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-EcMUMzJGAACYQTiUaBm3zxeiiKCPwU2MaoDeZdnEMbvq+2SfohKOur6JklANjv30kL+Pf3xj8QopEtyKTS4XrA==} - peerDependencies: - react: '>=17' - react-dom: '>=17' + '@reactflow/node-toolbar@1.2.1(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classcat: 5.0.5 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -25703,36 +38214,21 @@ packages: transitivePeerDependencies: - '@types/react' - immer - dev: false - /@remix-run/router@1.17.1: - resolution: {integrity: sha512-mCOMec4BKd6BRGBZeSnGiIgwsbLGp3yhVqAD8H+PxiRNEHgDpZb8J1TnrSDlg97t0ySKMQJTHCWBCmBpSmkF6Q==} - engines: {node: '>=14.0.0'} + '@remix-run/router@1.17.1': {} - /@rollup/plugin-babel@5.3.1(@babel/core@7.24.7)(rollup@2.79.1): - resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} - engines: {node: '>= 10.0.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@types/babel__core': ^7.1.9 - rollup: ^1.20.0||^2.0.0 - peerDependenciesMeta: - '@types/babel__core': - optional: true + '@rollup/plugin-babel@5.3.1(@babel/core@7.24.7)(@types/babel__core@7.20.5)(rollup@2.79.1)': dependencies: '@babel/core': 7.24.7 '@babel/helper-module-imports': 7.24.7 '@rollup/pluginutils': 3.1.0(rollup@2.79.1) rollup: 2.79.1 + optionalDependencies: + '@types/babel__core': 7.20.5 transitivePeerDependencies: - supports-color - dev: true - /@rollup/plugin-commonjs@20.0.0(rollup@2.79.1): - resolution: {integrity: sha512-5K0g5W2Ol8hAcTHqcTBHiA7M58tfmYi1o9KxeJuuRNpGaTa5iLjcyemBitCBcKXaHamOBBEH2dGom6v6Unmqjg==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^2.38.3 + '@rollup/plugin-commonjs@20.0.0(rollup@2.79.1)': dependencies: '@rollup/pluginutils': 3.1.0(rollup@2.79.1) commondir: 1.0.1 @@ -25742,16 +38238,8 @@ packages: magic-string: 0.25.9 resolve: 1.22.8 rollup: 2.79.1 - dev: true - /@rollup/plugin-commonjs@25.0.8(rollup@4.18.1): - resolution: {integrity: sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.68.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-commonjs@25.0.8(rollup@4.18.1)': dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.1) commondir: 1.0.1 @@ -25759,93 +38247,52 @@ packages: glob: 8.1.0 is-reference: 1.2.1 magic-string: 0.30.10 + optionalDependencies: rollup: 4.18.1 - dev: true - /@rollup/plugin-dynamic-import-vars@2.1.2(rollup@4.18.1): - resolution: {integrity: sha512-4lr2oXxs9hcxtGGaK8s0i9evfjzDrAs7ngw28TqruWKTEm0+U4Eljb+F6HXGYdFv8xRojQlrQwV7M/yxeh3yzQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-dynamic-import-vars@2.1.2(rollup@4.18.1)': dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.1) astring: 1.8.6 estree-walker: 2.0.2 fast-glob: 3.3.2 magic-string: 0.30.10 + optionalDependencies: rollup: 4.18.1 - dev: true - /@rollup/plugin-image@2.1.1(rollup@2.79.1): - resolution: {integrity: sha512-AgP4U85zuQJdUopLUCM+hTf45RepgXeTb8EJsleExVy99dIoYpt3ZlDYJdKmAc2KLkNntCDg6BPJvgJU3uGF+g==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 + '@rollup/plugin-image@2.1.1(rollup@2.79.1)': dependencies: '@rollup/pluginutils': 3.1.0(rollup@2.79.1) mini-svg-data-uri: 1.4.4 rollup: 2.79.1 - dev: true - /@rollup/plugin-image@3.0.3(rollup@4.18.1): - resolution: {integrity: sha512-qXWQwsXpvD4trSb8PeFPFajp8JLpRtqqOeNYRUKnEQNHm7e5UP7fuSRcbjQAJ7wDZBbnJvSdY5ujNBQd9B1iFg==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-image@3.0.3(rollup@4.18.1)': dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.1) mini-svg-data-uri: 1.4.4 + optionalDependencies: rollup: 4.18.1 - dev: true - /@rollup/plugin-inject@5.0.5(rollup@4.18.1): - resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-inject@5.0.5(rollup@4.18.1)': dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.1) estree-walker: 2.0.2 magic-string: 0.30.10 + optionalDependencies: rollup: 4.18.1 - dev: true - /@rollup/plugin-json@4.1.0(rollup@2.79.1): - resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 + '@rollup/plugin-json@4.1.0(rollup@2.79.1)': dependencies: '@rollup/pluginutils': 3.1.0(rollup@2.79.1) rollup: 2.79.1 - dev: true - /@rollup/plugin-json@6.1.0(rollup@4.18.1): - resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-json@6.1.0(rollup@4.18.1)': dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.1) + optionalDependencies: rollup: 4.18.1 - dev: true - /@rollup/plugin-node-resolve@13.3.0(rollup@2.79.1): - resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} - engines: {node: '>= 10.0.0'} - peerDependencies: - rollup: ^2.42.0 + '@rollup/plugin-node-resolve@13.3.0(rollup@2.79.1)': dependencies: '@rollup/pluginutils': 3.1.0(rollup@2.79.1) '@types/resolve': 1.17.1 @@ -25854,16 +38301,8 @@ packages: is-module: 1.0.0 resolve: 1.22.8 rollup: 2.79.1 - dev: true - /@rollup/plugin-node-resolve@15.2.3(rollup@4.18.1): - resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.78.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/plugin-node-resolve@15.2.3(rollup@4.18.1)': dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.1) '@types/resolve': 1.20.2 @@ -25871,357 +38310,202 @@ packages: is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.8 + optionalDependencies: rollup: 4.18.1 - dev: true - /@rollup/plugin-typescript@11.1.6(rollup@4.18.1)(tslib@2.6.3)(typescript@4.9.5): - resolution: {integrity: sha512-R92yOmIACgYdJ7dJ97p4K69I8gg6IEHt8M7dUBxN3W6nrO8uUxX5ixl0yU/N3aZTi8WhPuICvOHXQvF6FaykAA==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.14.0||^3.0.0||^4.0.0 - tslib: '*' - typescript: '>=3.7.0' - peerDependenciesMeta: - rollup: - optional: true - tslib: - optional: true + '@rollup/plugin-typescript@11.1.6(rollup@4.18.1)(tslib@2.6.3)(typescript@4.9.5)': + dependencies: + '@rollup/pluginutils': 5.1.0(rollup@4.18.1) + resolve: 1.22.8 + typescript: 4.9.5 + optionalDependencies: + rollup: 4.18.1 + tslib: 2.6.3 + + '@rollup/plugin-typescript@11.1.6(rollup@4.18.1)(tslib@2.6.3)(typescript@5.1.6)': dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.1) resolve: 1.22.8 + typescript: 5.1.6 + optionalDependencies: rollup: 4.18.1 tslib: 2.6.3 - typescript: 4.9.5 - dev: true - /@rollup/plugin-url@7.0.0(rollup@2.79.1): - resolution: {integrity: sha512-cIWcEObrmEPAU8q8NluGWlCPlQDuoSKvkyI3eOFO4fx6W02mLNj4ZEiUT0X2mKMIvQzoWL1feEK9d1yr1ICgrw==} - engines: {node: '>=10.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 + '@rollup/plugin-url@7.0.0(rollup@4.18.1)': dependencies: '@rollup/pluginutils': 4.2.1 make-dir: 3.1.0 mime: 2.6.0 - rollup: 2.79.1 - dev: true + rollup: 4.18.1 - /@rollup/pluginutils@3.1.0(rollup@2.79.1): - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 + '@rollup/pluginutils@3.1.0(rollup@2.79.1)': dependencies: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.3.1 rollup: 2.79.1 - dev: true - /@rollup/pluginutils@4.2.1: - resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} - engines: {node: '>= 8.0.0'} + '@rollup/pluginutils@4.2.1': dependencies: estree-walker: 2.0.2 picomatch: 2.3.1 - dev: true - /@rollup/pluginutils@5.1.0(rollup@4.18.1): - resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@rollup/pluginutils@5.1.0(rollup@4.18.1)': dependencies: '@types/estree': 1.0.5 estree-walker: 2.0.2 picomatch: 2.3.1 + optionalDependencies: rollup: 4.18.1 - dev: true - /@rollup/rollup-android-arm-eabi@4.18.1: - resolution: {integrity: sha512-lncuC4aHicncmbORnx+dUaAgzee9cm/PbIqgWz1PpXuwc+sa1Ct83tnqUDy/GFKleLiN7ZIeytM6KJ4cAn1SxA==} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true + '@rollup/rollup-android-arm-eabi@4.18.1': optional: true - /@rollup/rollup-android-arm64@4.18.1: - resolution: {integrity: sha512-F/tkdw0WSs4ojqz5Ovrw5r9odqzFjb5LIgHdHZG65dFI1lWTWRVy32KDJLKRISHgJvqUeUhdIvy43fX41znyDg==} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true + '@rollup/rollup-android-arm64@4.18.1': optional: true - /@rollup/rollup-darwin-arm64@4.18.1: - resolution: {integrity: sha512-vk+ma8iC1ebje/ahpxpnrfVQJibTMyHdWpOGZ3JpQ7Mgn/3QNHmPq7YwjZbIE7km73dH5M1e6MRRsnEBW7v5CQ==} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true + '@rollup/rollup-darwin-arm64@4.18.1': optional: true - /@rollup/rollup-darwin-x64@4.18.1: - resolution: {integrity: sha512-IgpzXKauRe1Tafcej9STjSSuG0Ghu/xGYH+qG6JwsAUxXrnkvNHcq/NL6nz1+jzvWAnQkuAJ4uIwGB48K9OCGA==} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true + '@rollup/rollup-darwin-x64@4.18.1': optional: true - /@rollup/rollup-linux-arm-gnueabihf@4.18.1: - resolution: {integrity: sha512-P9bSiAUnSSM7EmyRK+e5wgpqai86QOSv8BwvkGjLwYuOpaeomiZWifEos517CwbG+aZl1T4clSE1YqqH2JRs+g==} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm-gnueabihf@4.18.1': optional: true - /@rollup/rollup-linux-arm-musleabihf@4.18.1: - resolution: {integrity: sha512-5RnjpACoxtS+aWOI1dURKno11d7krfpGDEn19jI8BuWmSBbUC4ytIADfROM1FZrFhQPSoP+KEa3NlEScznBTyQ==} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm-musleabihf@4.18.1': optional: true - /@rollup/rollup-linux-arm64-gnu@4.18.1: - resolution: {integrity: sha512-8mwmGD668m8WaGbthrEYZ9CBmPug2QPGWxhJxh/vCgBjro5o96gL04WLlg5BA233OCWLqERy4YUzX3bJGXaJgQ==} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm64-gnu@4.18.1': optional: true - /@rollup/rollup-linux-arm64-musl@4.18.1: - resolution: {integrity: sha512-dJX9u4r4bqInMGOAQoGYdwDP8lQiisWb9et+T84l2WXk41yEej8v2iGKodmdKimT8cTAYt0jFb+UEBxnPkbXEQ==} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-arm64-musl@4.18.1': optional: true - /@rollup/rollup-linux-powerpc64le-gnu@4.18.1: - resolution: {integrity: sha512-V72cXdTl4EI0x6FNmho4D502sy7ed+LuVW6Ym8aI6DRQ9hQZdp5sj0a2usYOlqvFBNKQnLQGwmYnujo2HvjCxQ==} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-powerpc64le-gnu@4.18.1': optional: true - /@rollup/rollup-linux-riscv64-gnu@4.18.1: - resolution: {integrity: sha512-f+pJih7sxoKmbjghrM2RkWo2WHUW8UbfxIQiWo5yeCaCM0TveMEuAzKJte4QskBp1TIinpnRcxkquY+4WuY/tg==} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-riscv64-gnu@4.18.1': optional: true - /@rollup/rollup-linux-s390x-gnu@4.18.1: - resolution: {integrity: sha512-qb1hMMT3Fr/Qz1OKovCuUM11MUNLUuHeBC2DPPAWUYYUAOFWaxInaTwTQmc7Fl5La7DShTEpmYwgdt2hG+4TEg==} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-s390x-gnu@4.18.1': optional: true - /@rollup/rollup-linux-x64-gnu@4.18.1: - resolution: {integrity: sha512-7O5u/p6oKUFYjRbZkL2FLbwsyoJAjyeXHCU3O4ndvzg2OFO2GinFPSJFGbiwFDaCFc+k7gs9CF243PwdPQFh5g==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-x64-gnu@4.18.1': optional: true - /@rollup/rollup-linux-x64-musl@4.18.1: - resolution: {integrity: sha512-pDLkYITdYrH/9Cv/Vlj8HppDuLMDUBmgsM0+N+xLtFd18aXgM9Nyqupb/Uw+HeidhfYg2lD6CXvz6CjoVOaKjQ==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@rollup/rollup-linux-x64-musl@4.18.1': optional: true - /@rollup/rollup-win32-arm64-msvc@4.18.1: - resolution: {integrity: sha512-W2ZNI323O/8pJdBGil1oCauuCzmVd9lDmWBBqxYZcOqWD6aWqJtVBQ1dFrF4dYpZPks6F+xCZHfzG5hYlSHZ6g==} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true + '@rollup/rollup-win32-arm64-msvc@4.18.1': optional: true - /@rollup/rollup-win32-ia32-msvc@4.18.1: - resolution: {integrity: sha512-ELfEX1/+eGZYMaCIbK4jqLxO1gyTSOIlZr6pbC4SRYFaSIDVKOnZNMdoZ+ON0mrFDp4+H5MhwNC1H/AhE3zQLg==} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true + '@rollup/rollup-win32-ia32-msvc@4.18.1': optional: true - /@rollup/rollup-win32-x64-msvc@4.18.1: - resolution: {integrity: sha512-yjk2MAkQmoaPYCSu35RLJ62+dz358nE83VfTePJRp8CG7aMg25mEJYpXFiD+NcevhX8LxD5OP5tktPXnXN7GDw==} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true + '@rollup/rollup-win32-x64-msvc@4.18.1': optional: true - /@semantic-ui-react/event-stack@3.1.3(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-FdTmJyWvJaYinHrKRsMLDrz4tTMGdFfds299Qory53hBugiDvGC0tEJf+cHsi5igDwWb/CLOgOiChInHwq8URQ==} - peerDependencies: - react: ^16.0.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 + '@semantic-ui-react/event-stack@3.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: exenv: 1.2.2 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false - /@sideway/address@4.1.5: - resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} + '@sideway/address@4.1.5': dependencies: '@hapi/hoek': 9.3.0 - dev: false - /@sideway/formula@3.0.1: - resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} - dev: false + '@sideway/formula@3.0.1': {} - /@sideway/pinpoint@2.0.0: - resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} - dev: false + '@sideway/pinpoint@2.0.0': {} - /@sinclair/typebox@0.27.8: - resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + '@sinclair/typebox@0.27.8': {} - /@sindresorhus/is@0.14.0: - resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} - engines: {node: '>=6'} - dev: false + '@sindresorhus/is@0.14.0': {} - /@sindresorhus/is@4.6.0: - resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} - engines: {node: '>=10'} - dev: true + '@sindresorhus/is@4.6.0': {} - /@sindresorhus/merge-streams@2.3.0: - resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} - engines: {node: '>=18'} - dev: true + '@sindresorhus/merge-streams@2.3.0': {} - /@sinonjs/commons@1.8.6: - resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} + '@sinonjs/commons@1.8.6': dependencies: type-detect: 4.0.8 - dev: true - /@sinonjs/commons@3.0.1: - resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} + '@sinonjs/commons@3.0.1': dependencies: type-detect: 4.0.8 - /@sinonjs/fake-timers@10.3.0: - resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} + '@sinonjs/fake-timers@10.3.0': dependencies: '@sinonjs/commons': 3.0.1 - /@sinonjs/fake-timers@6.0.1: - resolution: {integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==} + '@sinonjs/fake-timers@6.0.1': dependencies: '@sinonjs/commons': 1.8.6 - dev: true - /@storybook/addon-actions@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-aADjilFmuD6TNGz2CRPSupnyiA/IGkPJHDBTqMpsDXTUr8xnuD122xkIhg6UxmCM2y1c+ncwYXy3WPK2xXK57g==} - 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 + '@storybook/addon-actions@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.37.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 polished: 4.3.1 prop-types: 15.8.1 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) react-inspector: 5.1.1(react@18.3.1) regenerator-runtime: 0.13.11 telejson: 6.0.8 ts-dedent: 2.2.0 util-deprecate: 1.0.2 uuid-browser: 3.1.0 - dev: true + optionalDependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@storybook/addon-backgrounds@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-t7qooZ892BruhilFmzYPbysFwpULt/q4zYXNSmKVbAYta8UVvitjcU4F18p8FpWd9WvhiTr0SDlyhNZuzvDfug==} - 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 + '@storybook/addon-backgrounds@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.37.1 global: 4.4.0 memoizerific: 1.11.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - dev: true + optionalDependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@storybook/addon-controls@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-kShSGjq1MjmmyL3l8i+uPz6yddtf82mzys0l82VKtcuyjrr5944wYFJ5NTXMfZxrO/U6FeFsfuFZE/k6ex3EMg==} - 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 + '@storybook/addon-controls@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/node-logger': 6.5.16 - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.37.1 lodash: 4.17.21 + ts-dedent: 2.2.0 + optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - ts-dedent: 2.2.0 transitivePeerDependencies: - '@swc/core' - esbuild @@ -26231,52 +38515,40 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: true - /@storybook/addon-docs@6.5.16(@babel/core@7.24.7)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1): - resolution: {integrity: sha512-QM9WDZG9P02UvbzLu947a8ZngOrQeAKAT8jCibQFM/+RJ39xBlfm8rm+cQy3dm94wgtjmVkA3mKGOV/yrrsddg==} - peerDependencies: - '@storybook/mdx2-csf': ^0.0.3 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@storybook/mdx2-csf': - optional: true - react: - optional: true - react-dom: - optional: true + '@storybook/addon-docs@6.5.16(@babel/core@7.24.7)(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.7) '@babel/preset-env': 7.24.7(@babel/core@7.24.7) '@jest/transform': 26.6.2 '@mdx-js/react': 1.6.22(react@18.3.1) - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/docs-tools': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/docs-tools': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/mdx1-csf': 0.0.1(@babel/core@7.24.7) '@storybook/node-logger': 6.5.16 '@storybook/postinstall': 6.5.16 - '@storybook/preview-web': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/source-loader': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + '@storybook/preview-web': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/source-loader': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) core-js: 3.37.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 remark-external-links: 8.0.0 remark-slug: 6.1.0 ts-dedent: 2.2.0 util-deprecate: 1.0.2 + optionalDependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@babel/core' - '@swc/core' @@ -26288,144 +38560,94 @@ packages: - vue-template-compiler - webpack - webpack-cli - dev: true - /@storybook/addon-links@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-P/mmqK57NGXnR0i3d/T5B0rIt0Lg8Yq+qionRr3LK3AwG/4yGnYt4GNomLEknn/eEwABYq1Q/Z1aOpgIhNdq5A==} - 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 + '@storybook/addon-links@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/qs': 6.9.15 core-js: 3.37.1 global: 4.4.0 prop-types: 15.8.1 qs: 6.12.3 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 - dev: true + optionalDependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@storybook/addon-measure@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-DMwnXkmM2L6POTh4KaOWvOAtQ2p9Tr1UUNxz6VXiN5cKFohpCs6x0txdLU5WN8eWIq0VFsO7u5ZX34CGCc6gCg==} - 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 + '@storybook/addon-measure@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.37.1 global: 4.4.0 + optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: true - /@storybook/addon-outline@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-0du96nha4qltexO0Xq1xB7LeRSbqjC9XqtZLflXG7/X3ABoPD2cXgOV97eeaXUodIyb2qYBbHUfftBeA75x0+w==} - 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 + '@storybook/addon-outline@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.37.1 global: 4.4.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 - dev: true + optionalDependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - /@storybook/addon-toolbars@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-y3PuUKiwOWrAvqx1YdUvArg0UaAwmboXFeR2bkrowk1xcT+xnRO3rML4npFeUl26OQ1FzwxX/cw6nknREBBLEA==} - 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 + '@storybook/addon-toolbars@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.37.1 + regenerator-runtime: 0.13.11 + optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - regenerator-runtime: 0.13.11 - dev: true - /@storybook/addon-viewport@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-1Vyqf1U6Qng6TXlf4SdqUKyizlw1Wn6+qW8YeA2q1lbkJqn3UlnHXIp8Q0t/5q1dK5BFtREox3+jkGwbJrzkmA==} - 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 + '@storybook/addon-viewport@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 6.5.16 - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.37.1 global: 4.4.0 memoizerific: 1.11.3 prop-types: 15.8.1 + regenerator-runtime: 0.13.11 + optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - regenerator-runtime: 0.13.11 - dev: true - /@storybook/addons@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-p3DqQi+8QRL5k7jXhXmJZLsE/GqHqyY6PcoA1oNTJr0try48uhTGUOYkgzmqtDaa/qPFO5LP+xCPzZXckGtquQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/addons@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/webpack-env': 1.18.5 core-js: 3.37.1 global: 4.4.0 @@ -26433,19 +38655,15 @@ packages: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 - /@storybook/api@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-HOsuT8iomqeTMQJrRx5U8nsC7lJTwRr1DhdD0SzlqL4c80S/7uuCy4IZvOt4sYQjOzW5fOo/kamcoBXyLproTA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/api@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.37.1 fast-deep-equal: 3.1.3 global: 4.4.0 @@ -26459,11 +38677,10 @@ packages: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - /@storybook/builder-manager@7.6.9: - resolution: {integrity: sha512-F9Fujde0G4g7Df6mYu6VQy26c3B1hcAC0KLbjKrrp1v9+E5mE12hSq/y+mYQUGmCe86YBVuQiazO4W3Mm/HRsw==} + '@storybook/builder-manager@7.6.9(encoding@0.1.13)': dependencies: '@fal-works/esbuild-plugin-global-externals': 2.1.2 - '@storybook/core-common': 7.6.9 + '@storybook/core-common': 7.6.9(encoding@0.1.13) '@storybook/manager': 7.6.9 '@storybook/node-logger': 7.6.9 '@types/ejs': 3.1.5 @@ -26481,68 +38698,60 @@ packages: transitivePeerDependencies: - encoding - supports-color - dev: true - /@storybook/builder-webpack4@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-YqDIrVNsUo8r9xc6AxsYDLxVYtMgl5Bxk+8/h1adsOko+jAFhdg6hOcAVxEmoSI0TMASOOVMFlT2hr23ppN2rQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/builder-webpack4@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/channels': 6.5.16 - '@storybook/client-api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/client-api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/core-events': 6.5.16 '@storybook/node-logger': 6.5.16 - '@storybook/preview-web': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/preview-web': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/ui': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/ui': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/node': 16.18.101 '@types/webpack': 4.41.38 autoprefixer: 9.8.8 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.37.1 - css-loader: 3.6.0(webpack@5.84.1) - file-loader: 6.2.0(webpack@5.84.1) + css-loader: 3.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + file-loader: 6.2.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + fork-ts-checker-webpack-plugin: 4.1.6(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) glob: 7.2.3 glob-promise: 3.4.0(glob@7.2.3) global: 4.4.0 - html-webpack-plugin: 4.5.2(webpack@5.84.1) + html-webpack-plugin: 4.5.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) pnp-webpack-plugin: 1.6.4(typescript@4.9.5) postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 - postcss-loader: 4.3.0(postcss@7.0.39)(webpack@5.84.1) - raw-loader: 4.0.2(webpack@5.84.1) + postcss-loader: 4.3.0(postcss@7.0.39)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + raw-loader: 4.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) stable: 0.1.8 - style-loader: 1.3.0(webpack@5.84.1) - terser-webpack-plugin: 4.2.3(webpack@5.84.1) + style-loader: 1.3.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + terser-webpack-plugin: 4.2.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-dedent: 2.2.0 - typescript: 4.9.5 - url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.84.1) + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - webpack-dev-middleware: 3.7.3(webpack@5.84.1) - webpack-filter-warnings-plugin: 1.2.1(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-dev-middleware: 3.7.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack-filter-warnings-plugin: 1.2.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) webpack-hot-middleware: 2.26.1 webpack-virtual-modules: 0.2.2 + optionalDependencies: + typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - bluebird @@ -26552,59 +38761,51 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: false - /@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-kh8Sofm1sbijaHDWtm0sXabqACHVFjikU/fIkkW786kpjoPIPIec1a+hrLgDsZxMU3I7XapSOaCFzWt6FjVXjg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/channels': 6.5.16 - '@storybook/client-api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/client-api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/core-events': 6.5.16 '@storybook/node-logger': 6.5.16 - '@storybook/preview-web': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/preview-web': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/node': 16.18.101 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) babel-plugin-named-exports-order: 0.0.2 browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.37.1 - css-loader: 5.2.7(webpack@5.84.1) - fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + css-loader: 5.2.7(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) glob: 7.2.3 glob-promise: 3.4.0(glob@7.2.3) - html-webpack-plugin: 5.6.0(webpack@5.84.1) + html-webpack-plugin: 5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) path-browserify: 1.0.1 process: 0.11.10 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) stable: 0.1.8 - style-loader: 2.0.0(webpack@5.84.1) - terser-webpack-plugin: 5.3.10(@swc/core@1.3.99)(esbuild@0.18.20)(webpack@5.84.1) + style-loader: 2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + terser-webpack-plugin: 5.3.10(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-dedent: 2.2.0 - typescript: 4.9.5 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - webpack-dev-middleware: 4.3.0(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-dev-middleware: 4.3.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) webpack-hot-middleware: 2.26.1 webpack-virtual-modules: 0.4.6 + optionalDependencies: + typescript: 4.9.5 transitivePeerDependencies: - '@rspack/core' - '@swc/core' @@ -26614,55 +38815,49 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: false - /@storybook/builder-webpack5@7.6.9(@swc/helpers@0.5.9)(esbuild@0.18.20)(typescript@5.1.6)(webpack-cli@4.10.0): - resolution: {integrity: sha512-LDwD1chjTVRKxJebkN4GkMl/aR7jzVYIx+0VuFKjDM/6er341ixE5GMIlvXKdYb8JWI8bI7suknSjbsd3LeBoA==} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/builder-webpack5@7.6.9(@swc/helpers@0.5.9)(encoding@0.1.13)(esbuild@0.18.20)(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 '@storybook/channels': 7.6.9 '@storybook/client-logger': 7.6.9 - '@storybook/core-common': 7.6.9 + '@storybook/core-common': 7.6.9(encoding@0.1.13) '@storybook/core-events': 7.6.9 - '@storybook/core-webpack': 7.6.9 + '@storybook/core-webpack': 7.6.9(encoding@0.1.13) '@storybook/node-logger': 7.6.9 '@storybook/preview': 7.6.9 '@storybook/preview-api': 7.6.9 '@swc/core': 1.3.99(@swc/helpers@0.5.9) '@types/node': 18.11.9 '@types/semver': 7.5.8 - babel-loader: 9.1.3(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 9.1.3(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 cjs-module-lexer: 1.3.1 constants-browserify: 1.0.0 - css-loader: 6.11.0(webpack@5.84.1) + css-loader: 6.11.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) es-module-lexer: 1.5.4 express: 4.19.2(supports-color@6.1.0) - fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.1.6)(webpack@5.84.1) + fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fs-extra: 11.2.0 - html-webpack-plugin: 5.6.0(webpack@5.84.1) + html-webpack-plugin: 5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) magic-string: 0.30.10 path-browserify: 1.0.1 process: 0.11.10 semver: 7.6.2 - style-loader: 3.3.4(webpack@5.84.1) - swc-loader: 0.2.6(@swc/core@1.3.99)(webpack@5.84.1) - terser-webpack-plugin: 5.3.10(@swc/core@1.3.99)(esbuild@0.18.20)(webpack@5.84.1) + style-loader: 3.3.4(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + swc-loader: 0.2.6(@swc/core@1.3.99(@swc/helpers@0.5.9))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + terser-webpack-plugin: 5.3.10(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-dedent: 2.2.0 - typescript: 5.1.6 url: 0.11.3 util: 0.12.5 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - webpack-dev-middleware: 6.1.3(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-dev-middleware: 6.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) webpack-hot-middleware: 2.26.1 webpack-virtual-modules: 0.5.0 + optionalDependencies: + typescript: 5.1.6 transitivePeerDependencies: - '@rspack/core' - '@swc/helpers' @@ -26671,10 +38866,8 @@ packages: - supports-color - uglify-js - webpack-cli - dev: true - /@storybook/channel-postmessage@6.5.16: - resolution: {integrity: sha512-fZZSN29dsUArWOx7e7lTdMA9+7zijVwCwbvi2Fo4fqhRLh1DsTb/VXfz1FKMCWAjNlcX7QQvV25tnxbqsD6lyw==} + '@storybook/channel-postmessage@6.5.16': dependencies: '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 @@ -26684,25 +38877,21 @@ packages: qs: 6.12.3 telejson: 6.0.8 - /@storybook/channel-websocket@6.5.16: - resolution: {integrity: sha512-wJg2lpBjmRC2GJFzmhB9kxlh109VE58r/0WhFtLbwKvPqsvGf82xkBEl6BtBCvIQ4stzYnj/XijjA8qSi2zpOg==} + '@storybook/channel-websocket@6.5.16': dependencies: '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 core-js: 3.37.1 global: 4.4.0 telejson: 6.0.8 - dev: false - /@storybook/channels@6.5.16: - resolution: {integrity: sha512-VylzaWQZaMozEwZPJdyJoz+0jpDa8GRyaqu9TGG6QGv+KU5POoZaGLDkRE7TzWkyyP0KQLo80K99MssZCpgSeg==} + '@storybook/channels@6.5.16': dependencies: core-js: 3.37.1 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - /@storybook/channels@7.6.9: - resolution: {integrity: sha512-goGGZPT294CS1QDF65Fs+PCauvM/nTMseU913ZVSZbFTk4uvqIXOaOraqhQze8A/C8a0yls4qu2Wp00tCnyaTA==} + '@storybook/channels@7.6.9': dependencies: '@storybook/client-logger': 7.6.9 '@storybook/core-events': 7.6.9 @@ -26710,20 +38899,17 @@ packages: qs: 6.12.3 telejson: 7.2.0 tiny-invariant: 1.3.3 - dev: true - /@storybook/cli@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-6hcIUvoQxmK9OZ/dmt2eXMbdeCJseRjLwIk4y2SdWd3chpjMDUVhIMJHU4qc2+6rbK+iwL7JAsOUEu/ywkgEow==} - hasBin: true + '@storybook/cli@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 '@babel/preset-env': 7.24.7(@babel/core@7.24.7) - '@storybook/codemod': 6.5.16(@babel/preset-env@7.24.7) - '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/codemod': 6.5.16(@babel/preset-env@7.24.7(@babel/core@7.24.7)) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/csf-tools': 6.5.16 '@storybook/node-logger': 6.5.16 '@storybook/semver': 7.3.2 - '@storybook/telemetry': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/telemetry': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) boxen: 5.1.2 chalk: 4.1.2 commander: 6.2.1 @@ -26735,7 +38921,7 @@ packages: fs-extra: 9.1.0 get-port: 5.1.1 globby: 11.1.0 - jscodeshift: 0.13.1(@babel/preset-env@7.24.7) + jscodeshift: 0.13.1(@babel/preset-env@7.24.7(@babel/core@7.24.7)) json5: 2.2.3 leven: 3.1.0 prompts: 2.4.2 @@ -26760,23 +38946,20 @@ packages: - utf-8-validate - vue-template-compiler - webpack-cli - dev: false - /@storybook/cli@7.6.9: - resolution: {integrity: sha512-HXxr8m1S9wsCtVZ/iQy/bHIUcGlNZ6bMo8jBcFh2V5EgDi350LGQ8q1w/zbwNMD0z0OhmPiv84okksBrOMW6pw==} - hasBin: true + '@storybook/cli@7.6.9(encoding@0.1.13)': dependencies: '@babel/core': 7.24.7 '@babel/preset-env': 7.24.7(@babel/core@7.24.7) '@babel/types': 7.24.7 '@ndelangen/get-tarball': 3.0.9 '@storybook/codemod': 7.6.9 - '@storybook/core-common': 7.6.9 + '@storybook/core-common': 7.6.9(encoding@0.1.13) '@storybook/core-events': 7.6.9 - '@storybook/core-server': 7.6.9 + '@storybook/core-server': 7.6.9(encoding@0.1.13) '@storybook/csf-tools': 7.6.9 '@storybook/node-logger': 7.6.9 - '@storybook/telemetry': 7.6.9 + '@storybook/telemetry': 7.6.9(encoding@0.1.13) '@storybook/types': 7.6.9 '@types/semver': 7.5.8 '@yarnpkg/fslib': 2.10.3 @@ -26794,7 +38977,7 @@ packages: get-port: 5.1.1 giget: 1.2.3 globby: 11.1.0 - jscodeshift: 0.15.2(@babel/preset-env@7.24.7) + jscodeshift: 0.15.2(@babel/preset-env@7.24.7(@babel/core@7.24.7)) leven: 3.1.0 ora: 5.4.1 prettier: 2.8.8 @@ -26811,21 +38994,16 @@ packages: - encoding - supports-color - utf-8-validate - dev: true - /@storybook/client-api@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-i3UwkzzUFw8I+E6fOcgB5sc4oU2fhvaKnqC1mpd9IYGJ9JN9MnGIaVl3Ko28DtFItu/QabC9JsLIJVripFLktQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/client-api@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/qs': 6.9.15 '@types/webpack-env': 1.18.5 core-js: 3.37.1 @@ -26841,22 +39019,17 @@ packages: synchronous-promise: 2.0.17 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - dev: false - /@storybook/client-logger@6.5.16: - resolution: {integrity: sha512-pxcNaCj3ItDdicPTXTtmYJE3YC1SjxFrBmHcyrN+nffeNyiMuViJdOOZzzzucTUG0wcOOX8jaSyak+nnHg5H1Q==} + '@storybook/client-logger@6.5.16': dependencies: core-js: 3.37.1 global: 4.4.0 - /@storybook/client-logger@7.6.9: - resolution: {integrity: sha512-Xm6fa6AR3cjxabauMldBv/66OOp5IhDiUEpp4D/a7hXfvCWqwmjVJ6EPz9WzkMhcPbMJr8vWJBaS3glkFqsRng==} + '@storybook/client-logger@7.6.9': dependencies: '@storybook/global': 5.0.0 - dev: true - /@storybook/codemod@6.5.16(@babel/preset-env@7.24.7): - resolution: {integrity: sha512-bYu0QzkWpgILFdQnbIsnICfL08Z4xmLSmL0Rq9WWGRnSnNnGzX5P57gz+fW7+NHFGxdCTCuHJPvwAXGuJQApPQ==} + '@storybook/codemod@6.5.16(@babel/preset-env@7.24.7(@babel/core@7.24.7))': dependencies: '@babel/types': 7.24.7 '@mdx-js/mdx': 1.6.22 @@ -26866,7 +39039,7 @@ packages: core-js: 3.37.1 cross-spawn: 7.0.3 globby: 11.1.0 - jscodeshift: 0.13.1(@babel/preset-env@7.24.7) + jscodeshift: 0.13.1(@babel/preset-env@7.24.7(@babel/core@7.24.7)) lodash: 4.17.21 prettier: 2.3.0 recast: 0.19.1 @@ -26875,10 +39048,8 @@ packages: - '@babel/preset-env' - '@storybook/mdx2-csf' - supports-color - dev: false - /@storybook/codemod@7.6.9: - resolution: {integrity: sha512-7vj5zVu4GmBpY6fxrRsJby5ttN/tN5Z8RFil06PhTy8SI8JxFoJCWBaPwtOvICObdBAqDx9idGVzbcVpdVdJEg==} + '@storybook/codemod@7.6.9': dependencies: '@babel/core': 7.24.7 '@babel/preset-env': 7.24.7(@babel/core@7.24.7) @@ -26890,23 +39061,18 @@ packages: '@types/cross-spawn': 6.0.6 cross-spawn: 7.0.3 globby: 11.1.0 - jscodeshift: 0.15.2(@babel/preset-env@7.24.7) + jscodeshift: 0.15.2(@babel/preset-env@7.24.7(@babel/core@7.24.7)) lodash: 4.17.21 prettier: 2.8.8 recast: 0.23.9 transitivePeerDependencies: - supports-color - dev: true - /@storybook/components@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-LzBOFJKITLtDcbW9jXl0/PaG+4xAz25PK8JxPZpIALbmOpYWOAPcO6V9C2heX6e6NgWFMUxjplkULEk9RCQMNA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/components@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.37.1 memoizerific: 1.11.3 qs: 6.12.3 @@ -26915,27 +39081,18 @@ packages: regenerator-runtime: 0.13.11 util-deprecate: 1.0.2 - /@storybook/core-client@6.5.16(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1): - resolution: {integrity: sha512-14IRaDrVtKrQ+gNWC0wPwkCNfkZOKghYV/swCUnQX3rP99defsZK8Hc7xHIYoAiOP5+sc3sweRAxgmFiJeQ1Ig==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - webpack: 5.84.1 - peerDependenciesMeta: - typescript: - optional: true + '@storybook/core-client@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/channel-websocket': 6.5.16 - '@storybook/client-api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/client-api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/preview-web': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/ui': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/preview-web': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/ui': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 core-js: 3.37.1 @@ -26946,28 +39103,18 @@ packages: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 - typescript: 4.9.5 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: false + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + typescript: 4.9.5 - /@storybook/core-client@7.6.9: - resolution: {integrity: sha512-a94YHpRilFhhfPLmCsnEuGQld7ZY7VfQPtzKL/a8MjNEYiJTghquLx20ZPAeO/CjKZmtTfLVhO95InkNtKz33A==} + '@storybook/core-client@7.6.9': dependencies: '@storybook/client-logger': 7.6.9 '@storybook/preview-api': 7.6.9 - dev: true - /@storybook/core-common@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-2qtnKP3TTOzt2cp6LXKRTh7XrI9z5VanMnMTgeoFcA5ebnndD4V6BExQUdYPClE/QooLx6blUWNgS9dFEpjSqQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/core-common@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.7) @@ -26995,7 +39142,7 @@ packages: '@storybook/semver': 7.3.2 '@types/node': 16.18.101 '@types/pretty-hrtime': 1.0.3 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) babel-plugin-macros: 3.1.0 babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.24.7) chalk: 4.1.2 @@ -27003,7 +39150,7 @@ packages: express: 4.19.2(supports-color@6.1.0) file-system-cache: 1.1.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) fs-extra: 9.1.0 glob: 7.2.3 handlebars: 4.7.8 @@ -27019,9 +39166,10 @@ packages: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 - typescript: 4.9.5 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - esbuild @@ -27031,8 +39179,7 @@ packages: - vue-template-compiler - webpack-cli - /@storybook/core-common@7.6.9: - resolution: {integrity: sha512-K3xHn2wvyTRXv+boAei5mVqO6P+5EGdGAILF+iSINrdNfz899HAovlnj68dBZguiHqFibhYyFIv1PyGuPgVn6g==} + '@storybook/core-common@7.6.9(encoding@0.1.13)': dependencies: '@storybook/core-events': 7.6.9 '@storybook/node-logger': 7.6.9 @@ -27051,7 +39198,7 @@ packages: glob: 10.4.2 handlebars: 4.7.8 lazy-universal-dotenv: 4.0.0 - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) picomatch: 2.3.1 pkg-dir: 5.0.0 pretty-hrtime: 1.0.3 @@ -27060,49 +39207,29 @@ packages: transitivePeerDependencies: - encoding - supports-color - dev: true - /@storybook/core-events@6.5.16: - resolution: {integrity: sha512-qMZQwmvzpH5F2uwNUllTPg6eZXr2OaYZQRRN8VZJiuorZzDNdAFmiVWMWdkThwmyLEJuQKXxqCL8lMj/7PPM+g==} + '@storybook/core-events@6.5.16': dependencies: core-js: 3.37.1 - /@storybook/core-events@7.6.9: - resolution: {integrity: sha512-YCds7AA6sbnnZ2qq5l+AIxhQqYlXB8eVTkjj6phgczsLjkqKapYFxAFc3ppRnE0FcsL2iji17ikHzZ8+eHYznA==} + '@storybook/core-events@7.6.9': dependencies: ts-dedent: 2.2.0 - dev: true - /@storybook/core-server@6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-/3NPfmNyply395Dm0zaVZ8P9aruwO+tPx4D6/jpw8aqrRSwvAMndPMpoMCm0NXcpSm5rdX+Je4S3JW6JcggFkA==} - peerDependencies: - '@storybook/builder-webpack5': '*' - '@storybook/manager-webpack5': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - '@storybook/builder-webpack5': - optional: true - '@storybook/manager-webpack5': - optional: true - typescript: - optional: true + '@storybook/core-server@6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@storybook/builder-webpack5': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@storybook/core-client': 6.5.16(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1) - '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/builder-webpack4': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/core-client': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/csf-tools': 6.5.16 - '@storybook/manager-webpack4': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@storybook/manager-webpack5': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/manager-webpack4': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/node-logger': 6.5.16 '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/telemetry': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/telemetry': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@types/node': 16.18.101 '@types/node-fetch': 2.6.11 '@types/pretty-hrtime': 1.0.3 @@ -27122,7 +39249,7 @@ packages: globby: 11.1.0 ip: 2.0.1 lodash: 4.17.21 - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) open: 8.4.2 pretty-hrtime: 1.0.3 prompts: 2.4.2 @@ -27133,12 +39260,15 @@ packages: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 - typescript: 4.9.5 util-deprecate: 1.0.2 watchpack: 2.4.1 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) ws: 8.17.1 x-default-browser: 0.4.0 + optionalDependencies: + '@storybook/builder-webpack5': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/manager-webpack5': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + typescript: 4.9.5 transitivePeerDependencies: - '@storybook/mdx2-csf' - '@swc/core' @@ -27152,16 +39282,14 @@ packages: - utf-8-validate - vue-template-compiler - webpack-cli - dev: false - /@storybook/core-server@7.6.9: - resolution: {integrity: sha512-zRzKmdYhDiIxX+K3i/Ri6v3uuWzwFcdNaKkWnUSDsIR40kI5vCQB6aad/4Lrf/qMVvjWCOkLNFxOD2X4cXMM6w==} + '@storybook/core-server@7.6.9(encoding@0.1.13)': dependencies: '@aw-web-design/x-default-browser': 1.4.126 '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-manager': 7.6.9 + '@storybook/builder-manager': 7.6.9(encoding@0.1.13) '@storybook/channels': 7.6.9 - '@storybook/core-common': 7.6.9 + '@storybook/core-common': 7.6.9(encoding@0.1.13) '@storybook/core-events': 7.6.9 '@storybook/csf': 0.1.11 '@storybook/csf-tools': 7.6.9 @@ -27170,7 +39298,7 @@ packages: '@storybook/manager': 7.6.9 '@storybook/node-logger': 7.6.9 '@storybook/preview-api': 7.6.9 - '@storybook/telemetry': 7.6.9 + '@storybook/telemetry': 7.6.9(encoding@0.1.13) '@storybook/types': 7.6.9 '@types/detect-port': 1.3.5 '@types/node': 18.11.9 @@ -27203,12 +39331,10 @@ packages: - encoding - supports-color - utf-8-validate - dev: true - /@storybook/core-webpack@7.6.9: - resolution: {integrity: sha512-2nDHBFY4fxSsESL0bhnWapfRHMZyIYsW9dQvtjkPLKf2v8d7iF8NNM7Rn8j862s2HoMWd8otRW4r3UrG5+FNKw==} + '@storybook/core-webpack@7.6.9(encoding@0.1.13)': dependencies: - '@storybook/core-common': 7.6.9 + '@storybook/core-common': 7.6.9(encoding@0.1.13) '@storybook/node-logger': 7.6.9 '@storybook/types': 7.6.9 '@types/node': 18.11.9 @@ -27216,33 +39342,18 @@ packages: transitivePeerDependencies: - encoding - supports-color - dev: true - /@storybook/core@6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1): - resolution: {integrity: sha512-CEF3QFTsm/VMnMKtRNr4rRdLeIkIG0g1t26WcmxTdSThNPBd8CsWzQJ7Jqu7CKiut+MU4A1LMOwbwCE5F2gmyA==} - peerDependencies: - '@storybook/builder-webpack5': '*' - '@storybook/manager-webpack5': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - webpack: 5.84.1 - peerDependenciesMeta: - '@storybook/builder-webpack5': - optional: true - '@storybook/manager-webpack5': - optional: true - typescript: - optional: true + '@storybook/core@6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: - '@storybook/builder-webpack5': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@storybook/core-client': 6.5.16(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1) - '@storybook/core-server': 6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) - '@storybook/manager-webpack5': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/core-client': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/core-server': 6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + '@storybook/builder-webpack5': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/manager-webpack5': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) typescript: 4.9.5 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) transitivePeerDependencies: - '@storybook/mdx2-csf' - '@swc/core' @@ -27256,15 +39367,8 @@ packages: - utf-8-validate - vue-template-compiler - webpack-cli - dev: false - /@storybook/csf-tools@6.5.16: - resolution: {integrity: sha512-+WD4sH/OwAfXZX3IN6/LOZ9D9iGEFcN+Vvgv9wOsLRgsAZ10DG/NK6c1unXKDM/ogJtJYccNI8Hd+qNE/GFV6A==} - peerDependencies: - '@storybook/mdx2-csf': ^0.0.3 - peerDependenciesMeta: - '@storybook/mdx2-csf': - optional: true + '@storybook/csf-tools@6.5.16': dependencies: '@babel/core': 7.24.7 '@babel/generator': 7.24.7 @@ -27282,10 +39386,8 @@ packages: ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color - dev: false - /@storybook/csf-tools@7.6.9: - resolution: {integrity: sha512-1Lfq+d3NBhmCq07Tz3Fc5Y2szpXKFtQ8Xx9/Ht0NC/dihn8ZgRlFa8uak9BKNWh5kTQb4EP7e0PMmwyowR1JWQ==} + '@storybook/csf-tools@7.6.9': dependencies: '@babel/generator': 7.24.7 '@babel/parser': 7.24.7 @@ -27298,29 +39400,22 @@ packages: ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color - dev: true - /@storybook/csf@0.0.2--canary.4566f4d.1: - resolution: {integrity: sha512-9OVvMVh3t9znYZwb0Svf/YQoxX2gVOeQTGe2bses2yj+a3+OJnCrUF3/hGv6Em7KujtOdL2LL+JnG49oMVGFgQ==} + '@storybook/csf@0.0.2--canary.4566f4d.1': dependencies: lodash: 4.17.21 - /@storybook/csf@0.1.11: - resolution: {integrity: sha512-dHYFQH3mA+EtnCkHXzicbLgsvzYjcDJ1JWsogbItZogkPHgSJM/Wr71uMkcvw8v9mmCyP4NpXJuu6bPoVsOnzg==} + '@storybook/csf@0.1.11': dependencies: type-fest: 2.19.0 - dev: true - /@storybook/docs-mdx@0.1.0: - resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==} - dev: true + '@storybook/docs-mdx@0.1.0': {} - /@storybook/docs-tools@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-o+rAWPRGifjBF5xZzTKOqnHN3XQWkl0QFJYVDIiJYJrVll7ExCkpEq/PahOGzIBBV+tpMstJgmKM3lr/lu/jmg==} + '@storybook/docs-tools@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/core': 7.24.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.37.1 doctrine: 3.0.0 lodash: 4.17.21 @@ -27330,10 +39425,9 @@ packages: - react-dom - supports-color - /@storybook/docs-tools@7.6.9: - resolution: {integrity: sha512-p5+jkQk+9cTIjnHYqytJARtoupxn7fORAtk33+DOiSv026cSx5LsW2rZwZuGeH+bloVeLoxiwhQWeK61PN14Jw==} + '@storybook/docs-tools@7.6.9(encoding@0.1.13)': dependencies: - '@storybook/core-common': 7.6.9 + '@storybook/core-common': 7.6.9(encoding@0.1.13) '@storybook/preview-api': 7.6.9 '@storybook/types': 7.6.9 '@types/doctrine': 0.0.3 @@ -27343,60 +39437,50 @@ packages: transitivePeerDependencies: - encoding - supports-color - dev: true - /@storybook/global@5.0.0: - resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} - dev: true + '@storybook/global@5.0.0': {} - /@storybook/manager-webpack4@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-5VJZwmQU6AgdsBPsYdu886UKBHQ9SJEnFMaeUxKEclXk+iRsmbzlL4GHKyVd6oGX/ZaecZtcHPR6xrzmA4Ziew==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/manager-webpack4@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.7) '@babel/preset-react': 7.24.7(@babel/core@7.24.7) - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/core-client': 6.5.16(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1) - '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/core-client': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/node-logger': 6.5.16 - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/ui': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/ui': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/node': 16.18.101 '@types/webpack': 4.41.38 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.37.1 - css-loader: 3.6.0(webpack@5.84.1) + css-loader: 3.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) express: 4.19.2(supports-color@6.1.0) - file-loader: 6.2.0(webpack@5.84.1) + file-loader: 6.2.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) find-up: 5.0.0 fs-extra: 9.1.0 - html-webpack-plugin: 4.5.2(webpack@5.84.1) - node-fetch: 2.7.0 + html-webpack-plugin: 4.5.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + node-fetch: 2.7.0(encoding@0.1.13) pnp-webpack-plugin: 1.6.4(typescript@4.9.5) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 resolve-from: 5.0.0 - style-loader: 1.3.0(webpack@5.84.1) + style-loader: 1.3.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) telejson: 6.0.8 - terser-webpack-plugin: 4.2.3(webpack@5.84.1) + terser-webpack-plugin: 4.2.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-dedent: 2.2.0 - typescript: 4.9.5 - url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.84.1) + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - webpack-dev-middleware: 3.7.3(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-dev-middleware: 3.7.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) webpack-virtual-modules: 0.2.2 + optionalDependencies: + typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - bluebird @@ -27407,53 +39491,45 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: false - /@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-OtxXv8JCe0r/0rE5HxaFicsNsXA+fqZxzokxquFFgrYf/1Jg4d7QX6/pG5wINF+5qInJfVkRG6xhPzv1s5bk9Q==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.7) '@babel/preset-react': 7.24.7(@babel/core@7.24.7) - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/core-client': 6.5.16(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1) - '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/core-client': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/node-logger': 6.5.16 - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/ui': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/ui': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/node': 16.18.101 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.37.1 - css-loader: 5.2.7(webpack@5.84.1) + css-loader: 5.2.7(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) express: 4.19.2(supports-color@6.1.0) find-up: 5.0.0 fs-extra: 9.1.0 - html-webpack-plugin: 5.6.0(webpack@5.84.1) - node-fetch: 2.7.0 + html-webpack-plugin: 5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + node-fetch: 2.7.0(encoding@0.1.13) process: 0.11.10 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 resolve-from: 5.0.0 - style-loader: 2.0.0(webpack@5.84.1) + style-loader: 2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) telejson: 6.0.8 - terser-webpack-plugin: 5.3.10(@swc/core@1.3.99)(esbuild@0.18.20)(webpack@5.84.1) + terser-webpack-plugin: 5.3.10(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ts-dedent: 2.2.0 - typescript: 4.9.5 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - webpack-dev-middleware: 4.3.0(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-dev-middleware: 4.3.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) webpack-virtual-modules: 0.4.6 + optionalDependencies: + typescript: 4.9.5 transitivePeerDependencies: - '@rspack/core' - '@swc/core' @@ -27464,14 +39540,10 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: false - /@storybook/manager@7.6.9: - resolution: {integrity: sha512-FGY4Dsttg1P9fPVeXuQyIEpXdQYHMMvqUoCpEc0hkDBf4cu6tbQCLOeP7EPKN4oVW+zKh4BanJlrOlqGAD5jWA==} - dev: true + '@storybook/manager@7.6.9': {} - /@storybook/mdx1-csf@0.0.1(@babel/core@7.24.7): - resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} + '@storybook/mdx1-csf@0.0.1(@babel/core@7.24.7)': dependencies: '@babel/generator': 7.24.7 '@babel/parser': 7.24.7 @@ -27488,8 +39560,7 @@ packages: - '@babel/core' - supports-color - /@storybook/node-logger@6.5.16: - resolution: {integrity: sha512-YjhBKrclQtjhqFNSO+BZK+RXOx6EQypAELJKoLFaawg331e8VUfvUuRCNB3fcEWp8G9oH13PQQte0OTjLyyOYg==} + '@storybook/node-logger@6.5.16': dependencies: '@types/npmlog': 4.1.6 chalk: 4.1.2 @@ -27497,39 +39568,22 @@ packages: npmlog: 5.0.1 pretty-hrtime: 1.0.3 - /@storybook/node-logger@7.6.9: - resolution: {integrity: sha512-JoK5mJkjjpFfbiXbCdCiQceIUzIfeHpYCDd6+Jpx9+Sk4osR3BgdW2qYBviosato9c9D3dvKyrfhzbSp5rX+bQ==} - dev: true + '@storybook/node-logger@7.6.9': {} - /@storybook/postinstall@6.5.16: - resolution: {integrity: sha512-08K2q+qN6pqyPW7PHLCZ5G5Xa6Wosd6t0F16PQ4abX2ItlJLabVoJN5mZ0gm/aeLTjD8QYr8IDvacu4eXh0SVA==} + '@storybook/postinstall@6.5.16': dependencies: core-js: 3.37.1 - dev: true - /@storybook/preset-react-webpack@7.6.9(@babel/core@7.24.7)(@swc/core@1.3.99)(esbuild@0.18.20)(typescript@5.1.6)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3): - resolution: {integrity: sha512-53zfRsr+YeP6SkoIBXCQjKhAMlVTRNtSpzuvhd7MvLoaU3YO9xE1ZzHMljk1r6gXt+GOMdEzZhFRGc/z/M62Vg==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@babel/core': ^7.22.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - '@babel/core': - optional: true - typescript: - optional: true + '@storybook/preset-react-webpack@7.6.9(@babel/core@7.24.7)(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/webpack@4.41.38)(encoding@0.1.13)(esbuild@0.18.20)(sockjs-client@1.6.1)(type-fest@4.20.1)(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)': dependencies: - '@babel/core': 7.24.7 '@babel/preset-flow': 7.24.7(@babel/core@7.24.7) '@babel/preset-react': 7.24.7(@babel/core@7.24.7) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.14.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) - '@storybook/core-webpack': 7.6.9 - '@storybook/docs-tools': 7.6.9 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(@types/webpack@4.41.38)(react-refresh@0.14.2)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/core-webpack': 7.6.9(encoding@0.1.13) + '@storybook/docs-tools': 7.6.9(encoding@0.1.13) '@storybook/node-logger': 7.6.9 - '@storybook/react': 7.6.9(typescript@5.1.6) - '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.1.6)(webpack@5.84.1) + '@storybook/react': 7.6.9(encoding@0.1.13)(typescript@5.1.6) + '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@types/node': 18.11.9 '@types/semver': 7.5.8 babel-plugin-add-react-displayname: 0.0.5 @@ -27538,8 +39592,10 @@ packages: react-docgen: 7.0.3 react-refresh: 0.14.2 semver: 7.6.2 + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + '@babel/core': 7.24.7 typescript: 5.1.6 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) transitivePeerDependencies: - '@swc/core' - '@types/webpack' @@ -27553,10 +39609,8 @@ packages: - webpack-dev-server - webpack-hot-middleware - webpack-plugin-serve - dev: true - /@storybook/preview-api@7.6.9: - resolution: {integrity: sha512-qVRylkOc70Ivz/oRE3cXaQA9r60qXSCXhY8xFjnBvZFjoYr0ImGx+tt0818YzSkhTf6LsNbx9HxwW4+x7JD6dw==} + '@storybook/preview-api@7.6.9': dependencies: '@storybook/channels': 7.6.9 '@storybook/client-logger': 7.6.9 @@ -27572,20 +39626,15 @@ packages: synchronous-promise: 2.0.17 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - dev: true - /@storybook/preview-web@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-IJnvfe2sKCfk7apN9Fu9U8qibbarrPX5JB55ZzK1amSHVmSDuYk5MIMc/U3NnSQNnvd1DO5v/zMcGgj563hrtg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/preview-web@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) ansi-to-html: 0.6.15 core-js: 3.37.1 global: 4.4.0 @@ -27599,17 +39648,11 @@ packages: unfetch: 4.2.0 util-deprecate: 1.0.2 - /@storybook/preview@7.6.9: - resolution: {integrity: sha512-cQbejRzUYghU913ZWLc37YinzU4Ziv5eYonQzGk7C5O2hP2MoDYqIL9CIll00tNb9lXDuK1kYz7AVJNrsDrvCg==} - dev: true + '@storybook/preview@7.6.9': {} - /@storybook/react-docgen-typescript-plugin@1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.84.1): - resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==} - peerDependencies: - typescript: '>= 3.x' - webpack: 5.84.1 + '@storybook/react-docgen-typescript-plugin@1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) endent: 2.1.0 find-cache-dir: 3.3.2 flat-cache: 3.2.0 @@ -27617,18 +39660,13 @@ packages: react-docgen-typescript: 2.2.2(typescript@4.9.5) tslib: 2.6.3 typescript: 4.9.5 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) transitivePeerDependencies: - supports-color - dev: false - /@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.1.6)(webpack@5.84.1): - resolution: {integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==} - peerDependencies: - typescript: '>= 4.x' - webpack: 5.84.1 + '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) endent: 2.1.0 find-cache-dir: 3.3.2 flat-cache: 3.2.0 @@ -27636,37 +39674,20 @@ packages: react-docgen-typescript: 2.2.2(typescript@5.1.6) tslib: 2.6.3 typescript: 5.1.6 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) transitivePeerDependencies: - supports-color - dev: true - /@storybook/react-dom-shim@7.6.9: - resolution: {integrity: sha512-8n0MFq52lKGPHmqLN8PHueAE+5Kj+LMUTg7Sw0PeQhuaLYRT/1v0QpQXxuiwpkwEbrQr/u9MzZ8B0KsZHKxROQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - dev: true + '@storybook/react-dom-shim@7.6.9': {} - /@storybook/react-webpack5@7.6.9(@babel/core@7.24.7)(@swc/core@1.3.99)(@swc/helpers@0.5.9)(esbuild@0.18.20)(typescript@5.1.6)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3): - resolution: {integrity: sha512-J0LzsLYJ4vkTcep4u3kwnblyTJSh4E+KPQPGLMd8KmQ9/Z1i4JFONNrs0yn5PofhnBGvfD9Y8iNBhh3NDAH4XA==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@babel/core': ^7.22.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - '@babel/core': - optional: true - typescript: - optional: true + '@storybook/react-webpack5@7.6.9(@babel/core@7.24.7)(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)(@types/webpack@4.41.38)(encoding@0.1.13)(esbuild@0.18.20)(sockjs-client@1.6.1)(type-fest@4.20.1)(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)': dependencies: - '@babel/core': 7.24.7 - '@storybook/builder-webpack5': 7.6.9(@swc/helpers@0.5.9)(esbuild@0.18.20)(typescript@5.1.6)(webpack-cli@4.10.0) - '@storybook/preset-react-webpack': 7.6.9(@babel/core@7.24.7)(@swc/core@1.3.99)(esbuild@0.18.20)(typescript@5.1.6)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3) - '@storybook/react': 7.6.9(typescript@5.1.6) + '@storybook/builder-webpack5': 7.6.9(@swc/helpers@0.5.9)(encoding@0.1.13)(esbuild@0.18.20)(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/preset-react-webpack': 7.6.9(@babel/core@7.24.7)(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/webpack@4.41.38)(encoding@0.1.13)(esbuild@0.18.20)(sockjs-client@1.6.1)(type-fest@4.20.1)(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1) + '@storybook/react': 7.6.9(encoding@0.1.13)(typescript@5.1.6) '@types/node': 18.11.9 + optionalDependencies: + '@babel/core': 7.24.7 typescript: 5.1.6 transitivePeerDependencies: - '@rspack/core' @@ -27683,52 +39704,22 @@ packages: - webpack-dev-server - webpack-hot-middleware - webpack-plugin-serve - dev: true - /@storybook/react@6.5.16(@babel/core@7.24.7)(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(require-from-string@2.0.2)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3): - resolution: {integrity: sha512-cBtNlOzf/MySpNLBK22lJ8wFU22HnfTB2xJyBk7W7Zi71Lm7Uxkhv1Pz8HdiQndJ0SlsAAQOWjQYsSZsGkZIaA==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - '@babel/core': ^7.11.5 - '@storybook/builder-webpack4': '*' - '@storybook/builder-webpack5': '*' - '@storybook/manager-webpack4': '*' - '@storybook/manager-webpack5': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - require-from-string: ^2.0.2 - typescript: '*' - peerDependenciesMeta: - '@babel/core': - optional: true - '@storybook/builder-webpack4': - optional: true - '@storybook/builder-webpack5': - optional: true - '@storybook/manager-webpack4': - optional: true - '@storybook/manager-webpack5': - optional: true - typescript: - optional: true - dependencies: - '@babel/core': 7.24.7 + ? '@storybook/react@6.5.16(@babel/core@7.24.7)(@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/webpack@4.41.38)(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(require-from-string@2.0.2)(sockjs-client@1.6.1)(type-fest@4.20.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)' + : dependencies: '@babel/preset-flow': 7.24.7(@babel/core@7.24.7) '@babel/preset-react': 7.24.7(@babel/core@7.24.7) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.11.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/builder-webpack5': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(@types/webpack@4.41.38)(react-refresh@0.11.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/core': 6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1) - '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/core': 6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/docs-tools': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/manager-webpack5': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/docs-tools': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/node-logger': 6.5.16 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.84.1) + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/estree': 0.0.51 '@types/node': 16.18.101 '@types/webpack-env': 1.18.5 @@ -27746,15 +39737,19 @@ packages: prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-element-to-jsx-string: 14.3.4(react-dom@18.3.1)(react@18.3.1) + react-element-to-jsx-string: 14.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-refresh: 0.11.0 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 require-from-string: 2.0.2 ts-dedent: 2.2.0 - typescript: 4.9.5 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + '@babel/core': 7.24.7 + '@storybook/builder-webpack5': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/manager-webpack5': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + typescript: 4.9.5 transitivePeerDependencies: - '@storybook/mdx2-csf' - '@swc/core' @@ -27774,22 +39769,12 @@ packages: - webpack-dev-server - webpack-hot-middleware - webpack-plugin-serve - dev: false - /@storybook/react@7.6.9(typescript@5.1.6): - resolution: {integrity: sha512-nKBiI0wVyN3yj9xgNjIVKaaYSwe+qBqn0pxmiHSY20mUY4GH1thEY2KMtL0BLIU/mvcp6cw/Sj3oDFKCe+G0MA==} - engines: {node: '>=16.0.0'} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@storybook/react@7.6.9(encoding@0.1.13)(typescript@5.1.6)': dependencies: '@storybook/client-logger': 7.6.9 '@storybook/core-client': 7.6.9 - '@storybook/docs-tools': 7.6.9 + '@storybook/docs-tools': 7.6.9(encoding@0.1.13) '@storybook/global': 5.0.0 '@storybook/preview-api': 7.6.9 '@storybook/react-dom-shim': 7.6.9 @@ -27807,18 +39792,14 @@ packages: react-element-to-jsx-string: 15.0.0 ts-dedent: 2.2.0 type-fest: 2.19.0 - typescript: 5.1.6 util-deprecate: 1.0.2 + optionalDependencies: + typescript: 5.1.6 transitivePeerDependencies: - encoding - supports-color - dev: true - /@storybook/router@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-ZgeP8a5YV/iuKbv31V8DjPxlV4AzorRiR8OuSt/KqaiYXNXlOoQDz/qMmiNcrshrfLpmkzoq7fSo4T8lWo2UwQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/router@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 6.5.16 core-js: 3.37.1 @@ -27828,21 +39809,14 @@ packages: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 - /@storybook/semver@7.3.2: - resolution: {integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==} - engines: {node: '>=10'} - hasBin: true + '@storybook/semver@7.3.2': dependencies: core-js: 3.37.1 find-up: 4.1.0 - /@storybook/source-loader@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-fyVl4jrM/5JLrb48aqXPu7sTsmySQaVGFp1zfeqvPPlJRFMastDrePm5XGPN7Qjv1wsKmpuBvuweFKOT1pru3g==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/source-loader@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.37.1 @@ -27854,15 +39828,10 @@ packages: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 - dev: true - /@storybook/store@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-g+bVL5hmMq/9cM51K04e37OviUPHT0rHHrRm5wj/hrf18Kd9120b3sxdQ5Dc+HZ292yuME0n+cyrQPTYx9Epmw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/store@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 @@ -27880,18 +39849,17 @@ packages: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - /@storybook/telemetry@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-CWr5Uko1l9jJW88yTXsZTj/3GTabPvw0o7pDPOXPp8JRZiJTxv1JFaFCafhK9UzYbgcRuGfCC8kEWPZims7iKA==} + '@storybook/telemetry@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: '@storybook/client-logger': 6.5.16 - '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) chalk: 4.1.2 core-js: 3.37.1 detect-package-manager: 2.0.1 fetch-retry: 5.0.6 fs-extra: 9.1.0 global: 4.4.0 - isomorphic-unfetch: 3.1.0 + isomorphic-unfetch: 3.1.0(encoding@0.1.13) nanoid: 3.3.7 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 @@ -27907,13 +39875,11 @@ packages: - uglify-js - vue-template-compiler - webpack-cli - dev: false - /@storybook/telemetry@7.6.9: - resolution: {integrity: sha512-0Dj2RH5oAL1mY72OcZKmiOlAcWyex2bwYJZUnsFrA+RFvOr7FbHAVWwudz4orWzIkYFTESixF4wuF0mYk8ds6g==} + '@storybook/telemetry@7.6.9(encoding@0.1.13)': dependencies: '@storybook/client-logger': 7.6.9 - '@storybook/core-common': 7.6.9 + '@storybook/core-common': 7.6.9(encoding@0.1.13) '@storybook/csf-tools': 7.6.9 chalk: 4.1.2 detect-package-manager: 2.0.1 @@ -27923,13 +39889,8 @@ packages: transitivePeerDependencies: - encoding - supports-color - dev: true - /@storybook/theming@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-hNLctkjaYLRdk1+xYTkC1mg4dYz2wSv6SqbLpcKMbkPHTE0ElhddGPHQqB362md/w9emYXNkt1LSMD8Xk9JzVQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/theming@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 6.5.16 core-js: 3.37.1 @@ -27938,30 +39899,24 @@ packages: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 - /@storybook/types@7.6.9: - resolution: {integrity: sha512-Qnx7exS6bO1MrqasHl12h8/HeBuxrwg2oMXROO7t0qmprV6+DGb6OxztsVIgbKR+m6uqFFM1q+f/Q5soI1qJ6g==} + '@storybook/types@7.6.9': dependencies: '@storybook/channels': 7.6.9 '@types/babel__core': 7.20.5 '@types/express': 4.17.21 file-system-cache: 2.3.0 - dev: true - /@storybook/ui@6.5.16(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-rHn/n12WM8BaXtZ3IApNZCiS+C4Oc5+Lkl4MoctX8V7QSml0SxZBB5hsJ/AiWkgbRxjQpa/L/Nt7/Qw0FjTH/A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + '@storybook/ui@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 6.5.16 - '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) core-js: 3.37.1 memoizerific: 1.11.3 qs: 6.12.3 @@ -27969,209 +39924,96 @@ packages: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 resolve-from: 5.0.0 - dev: false - /@svgr/babel-plugin-add-jsx-attribute@4.2.0: - resolution: {integrity: sha512-j7KnilGyZzYr/jhcrSYS3FGWMZVaqyCG0vzMCwzvei0coIkczuYMcniK07nI0aHJINciujjH11T72ICW5eL5Ig==} - engines: {node: '>=8'} - dev: true + '@svgr/babel-plugin-add-jsx-attribute@4.2.0': {} - /@svgr/babel-plugin-add-jsx-attribute@5.4.0: - resolution: {integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==} - engines: {node: '>=10'} - dev: true + '@svgr/babel-plugin-add-jsx-attribute@5.4.0': {} - /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.24.7): - resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.24.7): - resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - dev: true - /@svgr/babel-plugin-remove-jsx-attribute@4.2.0: - resolution: {integrity: sha512-3XHLtJ+HbRCH4n28S7y/yZoEQnRpl0tvTZQsHqvaeNXPra+6vE5tbRliH3ox1yZYPCxrlqaJT/Mg+75GpDKlvQ==} - engines: {node: '>=8'} - dev: true + '@svgr/babel-plugin-remove-jsx-attribute@4.2.0': {} - /@svgr/babel-plugin-remove-jsx-attribute@5.4.0: - resolution: {integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==} - engines: {node: '>=10'} - dev: true + '@svgr/babel-plugin-remove-jsx-attribute@5.4.0': {} - /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.7): - resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - /@svgr/babel-plugin-remove-jsx-empty-expression@4.2.0: - resolution: {integrity: sha512-yTr2iLdf6oEuUE9MsRdvt0NmdpMBAkgK8Bjhl6epb+eQWk6abBaX3d65UZ3E3FWaOwePyUgNyNCMVG61gGCQ7w==} - engines: {node: '>=8'} - dev: true + '@svgr/babel-plugin-remove-jsx-empty-expression@4.2.0': {} - /@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1: - resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==} - engines: {node: '>=10'} - dev: true + '@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1': {} - /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.7): - resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - /@svgr/babel-plugin-replace-jsx-attribute-value@4.2.0: - resolution: {integrity: sha512-U9m870Kqm0ko8beHawRXLGLvSi/ZMrl89gJ5BNcT452fAjtF2p4uRzXkdzvGJJJYBgx7BmqlDjBN/eCp5AAX2w==} - engines: {node: '>=8'} - dev: true + '@svgr/babel-plugin-replace-jsx-attribute-value@4.2.0': {} - /@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1: - resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==} - engines: {node: '>=10'} - dev: true + '@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1': {} - /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.24.7): - resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.24.7): - resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - dev: true - /@svgr/babel-plugin-svg-dynamic-title@4.3.3: - resolution: {integrity: sha512-w3Be6xUNdwgParsvxkkeZb545VhXEwjGMwExMVBIdPQJeyMQHqm9Msnb2a1teHBqUYL66qtwfhNkbj1iarCG7w==} - engines: {node: '>=8'} - dev: true + '@svgr/babel-plugin-svg-dynamic-title@4.3.3': {} - /@svgr/babel-plugin-svg-dynamic-title@5.4.0: - resolution: {integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==} - engines: {node: '>=10'} - dev: true + '@svgr/babel-plugin-svg-dynamic-title@5.4.0': {} - /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.24.7): - resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.24.7): - resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - dev: true - /@svgr/babel-plugin-svg-em-dimensions@4.2.0: - resolution: {integrity: sha512-C0Uy+BHolCHGOZ8Dnr1zXy/KgpBOkEUYY9kI/HseHVPeMbluaX3CijJr7D4C5uR8zrc1T64nnq/k63ydQuGt4w==} - engines: {node: '>=8'} - dev: true + '@svgr/babel-plugin-svg-em-dimensions@4.2.0': {} - /@svgr/babel-plugin-svg-em-dimensions@5.4.0: - resolution: {integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==} - engines: {node: '>=10'} - dev: true + '@svgr/babel-plugin-svg-em-dimensions@5.4.0': {} - /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.24.7): - resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.24.7): - resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - dev: true - /@svgr/babel-plugin-transform-react-native-svg@4.2.0: - resolution: {integrity: sha512-7YvynOpZDpCOUoIVlaaOUU87J4Z6RdD6spYN4eUb5tfPoKGSF9OG2NuhgYnq4jSkAxcpMaXWPf1cePkzmqTPNw==} - engines: {node: '>=8'} - dev: true + '@svgr/babel-plugin-transform-react-native-svg@4.2.0': {} - /@svgr/babel-plugin-transform-react-native-svg@5.4.0: - resolution: {integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==} - engines: {node: '>=10'} - dev: true + '@svgr/babel-plugin-transform-react-native-svg@5.4.0': {} - /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.24.7): - resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - /@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.24.7): - resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - dev: true - - /@svgr/babel-plugin-transform-svg-component@4.2.0: - resolution: {integrity: sha512-hYfYuZhQPCBVotABsXKSCfel2slf/yvJY8heTVX1PCTaq/IgASq1IyxPPKJ0chWREEKewIU/JMSsIGBtK1KKxw==} - engines: {node: '>=8'} - dev: true - - /@svgr/babel-plugin-transform-svg-component@5.5.0: - resolution: {integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==} - engines: {node: '>=10'} - dev: true - /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.24.7): - resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} - engines: {node: '>=12'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-transform-svg-component@4.2.0': {} + + '@svgr/babel-plugin-transform-svg-component@5.5.0': {} + + '@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.24.7): - resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==} - engines: {node: '>=12'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - dev: true - /@svgr/babel-preset@4.3.3: - resolution: {integrity: sha512-6PG80tdz4eAlYUN3g5GZiUjg2FMcp+Wn6rtnz5WJG9ITGEF1pmFdzq02597Hn0OmnQuCVaBYQE1OVFAnwOl+0A==} - engines: {node: '>=8'} + '@svgr/babel-preset@4.3.3': dependencies: '@svgr/babel-plugin-add-jsx-attribute': 4.2.0 '@svgr/babel-plugin-remove-jsx-attribute': 4.2.0 @@ -28181,11 +40023,8 @@ packages: '@svgr/babel-plugin-svg-em-dimensions': 4.2.0 '@svgr/babel-plugin-transform-react-native-svg': 4.2.0 '@svgr/babel-plugin-transform-svg-component': 4.2.0 - dev: true - /@svgr/babel-preset@5.5.0: - resolution: {integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==} - engines: {node: '>=10'} + '@svgr/babel-preset@5.5.0': dependencies: '@svgr/babel-plugin-add-jsx-attribute': 5.4.0 '@svgr/babel-plugin-remove-jsx-attribute': 5.4.0 @@ -28195,13 +40034,8 @@ packages: '@svgr/babel-plugin-svg-em-dimensions': 5.4.0 '@svgr/babel-plugin-transform-react-native-svg': 5.4.0 '@svgr/babel-plugin-transform-svg-component': 5.5.0 - dev: true - /@svgr/babel-preset@6.5.1(@babel/core@7.24.7): - resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-preset@6.5.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.24.7) @@ -28213,11 +40047,7 @@ packages: '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.24.7) '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.24.7) - /@svgr/babel-preset@8.1.0(@babel/core@7.24.7): - resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@svgr/babel-preset@8.1.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.24.7) @@ -28228,33 +40058,24 @@ packages: '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.24.7) '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.24.7) '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.24.7) - dev: true - /@svgr/core@4.3.3: - resolution: {integrity: sha512-qNuGF1QON1626UCaZamWt5yedpgOytvLj5BQZe2j1k1B8DUG4OyugZyfEwBeXozCUwhLEpsrgPrE+eCu4fY17w==} - engines: {node: '>=8'} + '@svgr/core@4.3.3': dependencies: '@svgr/plugin-jsx': 4.3.3 camelcase: 5.3.1 cosmiconfig: 5.2.1 transitivePeerDependencies: - supports-color - dev: true - /@svgr/core@5.5.0: - resolution: {integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==} - engines: {node: '>=10'} + '@svgr/core@5.5.0': dependencies: '@svgr/plugin-jsx': 5.5.0 camelcase: 6.3.0 cosmiconfig: 7.1.0 transitivePeerDependencies: - supports-color - dev: true - /@svgr/core@6.5.1: - resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} - engines: {node: '>=10'} + '@svgr/core@6.5.1': dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 6.5.1(@babel/core@7.24.7) @@ -28264,9 +40085,7 @@ packages: transitivePeerDependencies: - supports-color - /@svgr/core@8.1.0(typescript@5.1.6): - resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==} - engines: {node: '>=14'} + '@svgr/core@8.1.0(typescript@5.1.6)': dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 8.1.0(@babel/core@7.24.7) @@ -28276,40 +40095,26 @@ packages: transitivePeerDependencies: - supports-color - typescript - dev: true - /@svgr/hast-util-to-babel-ast@4.3.2: - resolution: {integrity: sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg==} - engines: {node: '>=8'} + '@svgr/hast-util-to-babel-ast@4.3.2': dependencies: '@babel/types': 7.24.7 - dev: true - /@svgr/hast-util-to-babel-ast@5.5.0: - resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} - engines: {node: '>=10'} + '@svgr/hast-util-to-babel-ast@5.5.0': dependencies: '@babel/types': 7.24.7 - dev: true - /@svgr/hast-util-to-babel-ast@6.5.1: - resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} - engines: {node: '>=10'} + '@svgr/hast-util-to-babel-ast@6.5.1': dependencies: '@babel/types': 7.24.7 entities: 4.5.0 - /@svgr/hast-util-to-babel-ast@8.0.0: - resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==} - engines: {node: '>=14'} + '@svgr/hast-util-to-babel-ast@8.0.0': dependencies: '@babel/types': 7.24.7 entities: 4.5.0 - dev: true - /@svgr/plugin-jsx@4.3.3: - resolution: {integrity: sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w==} - engines: {node: '>=8'} + '@svgr/plugin-jsx@4.3.3': dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 4.3.3 @@ -28317,11 +40122,8 @@ packages: svg-parser: 2.0.4 transitivePeerDependencies: - supports-color - dev: true - /@svgr/plugin-jsx@5.5.0: - resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} - engines: {node: '>=10'} + '@svgr/plugin-jsx@5.5.0': dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 5.5.0 @@ -28329,13 +40131,8 @@ packages: svg-parser: 2.0.4 transitivePeerDependencies: - supports-color - dev: true - /@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1): - resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==} - engines: {node: '>=10'} - peerDependencies: - '@svgr/core': ^6.0.0 + '@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1)': dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 6.5.1(@babel/core@7.24.7) @@ -28345,11 +40142,7 @@ packages: transitivePeerDependencies: - supports-color - /@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0): - resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==} - engines: {node: '>=14'} - peerDependencies: - '@svgr/core': '*' + '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.1.6))': dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 8.1.0(@babel/core@7.24.7) @@ -28358,42 +40151,27 @@ packages: svg-parser: 2.0.4 transitivePeerDependencies: - supports-color - dev: true - /@svgr/plugin-svgo@4.3.1: - resolution: {integrity: sha512-PrMtEDUWjX3Ea65JsVCwTIXuSqa3CG9px+DluF1/eo9mlDrgrtFE7NE/DjdhjJgSM9wenlVBzkzneSIUgfUI/w==} - engines: {node: '>=8'} + '@svgr/plugin-svgo@4.3.1': dependencies: cosmiconfig: 5.2.1 merge-deep: 3.0.3 svgo: 1.3.2 - dev: true - /@svgr/plugin-svgo@5.5.0: - resolution: {integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==} - engines: {node: '>=10'} + '@svgr/plugin-svgo@5.5.0': dependencies: cosmiconfig: 7.1.0 deepmerge: 4.3.1 svgo: 1.3.2 - dev: true - /@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1): - resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==} - engines: {node: '>=10'} - peerDependencies: - '@svgr/core': '*' + '@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1)': dependencies: '@svgr/core': 6.5.1 cosmiconfig: 7.1.0 deepmerge: 4.3.1 svgo: 2.8.0 - /@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0)(typescript@5.1.6): - resolution: {integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==} - engines: {node: '>=14'} - peerDependencies: - '@svgr/core': '*' + '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.1.6))(typescript@5.1.6)': dependencies: '@svgr/core': 8.1.0(typescript@5.1.6) cosmiconfig: 8.3.6(typescript@5.1.6) @@ -28401,11 +40179,8 @@ packages: svgo: 3.3.2 transitivePeerDependencies: - typescript - dev: true - /@svgr/rollup@6.5.1: - resolution: {integrity: sha512-GeUfq0grJfpcn2jRWRaZ4npn27nnWK21vUj6MqDqknuJnEqGADcZZjO9wrUAaPLr3InAnQi0Z7nwiNUdzkaj6A==} - engines: {node: '>=10'} + '@svgr/rollup@6.5.1': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) @@ -28418,11 +40193,8 @@ packages: '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1) transitivePeerDependencies: - supports-color - dev: true - /@svgr/webpack@4.3.2: - resolution: {integrity: sha512-F3VE5OvyOWBEd2bF7BdtFRyI6E9it3mN7teDw0JQTlVtc4HZEYiiLSl+Uf9Uub6IYHVGc+qIrxxDyeedkQru2w==} - engines: {node: '>=8'} + '@svgr/webpack@4.3.2': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) @@ -28434,11 +40206,8 @@ packages: loader-utils: 1.4.2 transitivePeerDependencies: - supports-color - dev: true - /@svgr/webpack@5.5.0: - resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==} - engines: {node: '>=10'} + '@svgr/webpack@5.5.0': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) @@ -28450,11 +40219,8 @@ packages: loader-utils: 2.0.4 transitivePeerDependencies: - supports-color - dev: true - /@svgr/webpack@6.5.1: - resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==} - engines: {node: '>=10'} + '@svgr/webpack@6.5.1': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) @@ -28466,11 +40232,8 @@ packages: '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1) transitivePeerDependencies: - supports-color - dev: false - /@svgr/webpack@8.1.0(typescript@5.1.6): - resolution: {integrity: sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==} - engines: {node: '>=14'} + '@svgr/webpack@8.1.0(typescript@5.1.6)': dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) @@ -28478,60 +40241,37 @@ packages: '@babel/preset-react': 7.24.7(@babel/core@7.24.7) '@babel/preset-typescript': 7.24.7(@babel/core@7.24.7) '@svgr/core': 8.1.0(typescript@5.1.6) - '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0) - '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0)(typescript@5.1.6) + '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.1.6)) + '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.1.6))(typescript@5.1.6) transitivePeerDependencies: - supports-color - typescript - dev: true - /@swc-node/core@1.13.1(@swc/core@1.3.99)(@swc/types@0.1.9): - resolution: {integrity: sha512-emB5l2nZsXjUEAuusqjYvWnQMLWZp6K039Mv8aq5SX1rsNM/N7DNhw1i4/DX7AyzNZ0tT+ASWyTvqEURldp5HA==} - engines: {node: '>= 10'} - peerDependencies: - '@swc/core': '>= 1.4.13' - '@swc/types': '>= 0.1' + '@swc-node/core@1.13.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)': dependencies: '@swc/core': 1.3.99(@swc/helpers@0.5.9) '@swc/types': 0.1.9 - dev: true - /@swc-node/register@1.6.8(@swc/core@1.3.99)(@swc/types@0.1.9)(typescript@5.1.6): - resolution: {integrity: sha512-74ijy7J9CWr1Z88yO+ykXphV29giCrSpANQPQRooE0bObpkTO1g4RzQovIfbIaniBiGDDVsYwDoQ3FIrCE8HcQ==} - peerDependencies: - '@swc/core': '>= 1.3' - typescript: '>= 4.3' + '@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6)': dependencies: - '@swc-node/core': 1.13.1(@swc/core@1.3.99)(@swc/types@0.1.9) + '@swc-node/core': 1.13.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9) '@swc-node/sourcemap-support': 0.3.0 '@swc/core': 1.3.99(@swc/helpers@0.5.9) colorette: 2.0.20 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) pirates: 4.0.6 tslib: 2.6.3 typescript: 5.1.6 transitivePeerDependencies: - '@swc/types' - supports-color - dev: true - /@swc-node/sourcemap-support@0.3.0: - resolution: {integrity: sha512-gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA==} + '@swc-node/sourcemap-support@0.3.0': dependencies: source-map-support: 0.5.21 tslib: 2.6.3 - dev: true - /@swc/cli@0.1.65(@swc/core@1.3.99): - resolution: {integrity: sha512-4NcgsvJVHhA7trDnMmkGLLvWMHu2kSy+qHx6QwRhhJhdiYdNUrhdp+ERxen73sYtaeEOYeLJcWrQ60nzKi6rpg==} - engines: {node: '>= 12.13'} - hasBin: true - peerDependencies: - '@swc/core': ^1.2.66 - chokidar: ^3.5.1 - peerDependenciesMeta: - chokidar: - optional: true + '@swc/cli@0.1.65(@swc/core@1.3.99(@swc/helpers@0.5.9))(chokidar@3.6.0)': dependencies: '@mole-inc/bin-wrapper': 8.0.1 '@swc/core': 1.3.99(@swc/helpers@0.5.9) @@ -28541,92 +40281,39 @@ packages: semver: 7.6.2 slash: 3.0.0 source-map: 0.7.4 - dev: true + optionalDependencies: + chokidar: 3.6.0 - /@swc/core-darwin-arm64@1.3.99: - resolution: {integrity: sha512-Qj7Jct68q3ZKeuJrjPx7k8SxzWN6PqLh+VFxzA+KwLDpQDPzOlKRZwkIMzuFjLhITO4RHgSnXoDk/Syz0ZeN+Q==} - engines: {node: '>=10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true + '@swc/core-darwin-arm64@1.3.99': optional: true - /@swc/core-darwin-x64@1.3.99: - resolution: {integrity: sha512-wR7m9QVJjgiBu1PSOHy7s66uJPa45Kf9bZExXUL+JAa9OQxt5y+XVzr+n+F045VXQOwdGWplgPnWjgbUUHEVyw==} - engines: {node: '>=10'} - cpu: [x64] - os: [darwin] - requiresBuild: true + '@swc/core-darwin-x64@1.3.99': optional: true - /@swc/core-linux-arm64-gnu@1.3.99: - resolution: {integrity: sha512-gcGv1l5t0DScEONmw5OhdVmEI/o49HCe9Ik38zzH0NtDkc+PDYaCcXU5rvfZP2qJFaAAr8cua8iJcOunOSLmnA==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@swc/core-linux-arm64-gnu@1.3.99': optional: true - /@swc/core-linux-arm64-musl@1.3.99: - resolution: {integrity: sha512-XL1/eUsTO8BiKsWq9i3iWh7H99iPO61+9HYiWVKhSavknfj4Plbn+XyajDpxsauln5o8t+BRGitymtnAWJM4UQ==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@swc/core-linux-arm64-musl@1.3.99': optional: true - /@swc/core-linux-x64-gnu@1.3.99: - resolution: {integrity: sha512-fGrXYE6DbTfGNIGQmBefYxSk3rp/1lgbD0nVg4rl4mfFRQPi7CgGhrrqSuqZ/ezXInUIgoCyvYGWFSwjLXt/Qg==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - requiresBuild: true + '@swc/core-linux-x64-gnu@1.3.99': optional: true - /@swc/core-linux-x64-musl@1.3.99: - resolution: {integrity: sha512-kvgZp/mqf3IJ806gUOL6gN6VU15+DfzM1Zv4Udn8GqgXiUAvbQehrtruid4Snn5pZTLj4PEpSCBbxgxK1jbssA==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - requiresBuild: true + '@swc/core-linux-x64-musl@1.3.99': optional: true - /@swc/core-win32-arm64-msvc@1.3.99: - resolution: {integrity: sha512-yt8RtZ4W/QgFF+JUemOUQAkVW58cCST7mbfKFZ1v16w3pl3NcWd9OrtppFIXpbjU1rrUX2zp2R7HZZzZ2Zk/aQ==} - engines: {node: '>=10'} - cpu: [arm64] - os: [win32] - requiresBuild: true + '@swc/core-win32-arm64-msvc@1.3.99': optional: true - /@swc/core-win32-ia32-msvc@1.3.99: - resolution: {integrity: sha512-62p5fWnOJR/rlbmbUIpQEVRconICy5KDScWVuJg1v3GPLBrmacjphyHiJC1mp6dYvvoEWCk/77c/jcQwlXrDXw==} - engines: {node: '>=10'} - cpu: [ia32] - os: [win32] - requiresBuild: true + '@swc/core-win32-ia32-msvc@1.3.99': optional: true - /@swc/core-win32-x64-msvc@1.3.99: - resolution: {integrity: sha512-PdppWhkoS45VGdMBxvClVgF1hVjqamtvYd82Gab1i4IV45OSym2KinoDCKE1b6j3LwBLOn2J9fvChGSgGfDCHQ==} - engines: {node: '>=10'} - cpu: [x64] - os: [win32] - requiresBuild: true + '@swc/core-win32-x64-msvc@1.3.99': optional: true - /@swc/core@1.3.99(@swc/helpers@0.5.9): - resolution: {integrity: sha512-8O996RfuPC4ieb4zbYMfbyCU9k4gSOpyCNnr7qBQ+o7IEmh8JCV6B8wwu+fT/Om/6Lp34KJe1IpJ/24axKS6TQ==} - engines: {node: '>=10'} - requiresBuild: true - peerDependencies: - '@swc/helpers': ^0.5.0 - peerDependenciesMeta: - '@swc/helpers': - optional: true + '@swc/core@1.3.99(@swc/helpers@0.5.9)': dependencies: '@swc/counter': 0.1.3 - '@swc/helpers': 0.5.9 '@swc/types': 0.1.9 optionalDependencies: '@swc/core-darwin-arm64': 1.3.99 @@ -28638,37 +40325,27 @@ packages: '@swc/core-win32-arm64-msvc': 1.3.99 '@swc/core-win32-ia32-msvc': 1.3.99 '@swc/core-win32-x64-msvc': 1.3.99 + '@swc/helpers': 0.5.9 - /@swc/counter@0.1.3: - resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} + '@swc/counter@0.1.3': {} - /@swc/helpers@0.5.9: - resolution: {integrity: sha512-XI76sLwMJoLjJTOK5RblBZkouOJG3X3hjxLCzLnyN1ifAiKQc6Hck3uvnU4Z/dV/Dyk36Ffj8FLvDLV2oWvKTw==} + '@swc/helpers@0.5.9': dependencies: tslib: 2.6.3 - /@swc/types@0.1.9: - resolution: {integrity: sha512-qKnCno++jzcJ4lM4NTfYifm1EFSCeIfKiAHAfkENZAV5Kl9PjJIyd2yeeVv6c/2CckuLyv2NmRC5pv6pm2WQBg==} + '@swc/types@0.1.9': dependencies: '@swc/counter': 0.1.3 - /@szmarczak/http-timer@1.1.2: - resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} - engines: {node: '>=6'} + '@szmarczak/http-timer@1.1.2': dependencies: defer-to-connect: 1.1.3 - dev: false - /@szmarczak/http-timer@4.0.6: - resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} - engines: {node: '>=10'} + '@szmarczak/http-timer@4.0.6': dependencies: defer-to-connect: 2.0.1 - dev: true - /@testing-library/dom@7.31.2: - resolution: {integrity: sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==} - engines: {node: '>=10'} + '@testing-library/dom@7.31.2': dependencies: '@babel/code-frame': 7.24.7 '@babel/runtime': 7.24.7 @@ -28678,11 +40355,8 @@ packages: dom-accessibility-api: 0.5.16 lz-string: 1.5.0 pretty-format: 26.6.2 - dev: true - /@testing-library/dom@8.20.1: - resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==} - engines: {node: '>=12'} + '@testing-library/dom@8.20.1': dependencies: '@babel/code-frame': 7.24.7 '@babel/runtime': 7.24.7 @@ -28692,11 +40366,8 @@ packages: dom-accessibility-api: 0.5.16 lz-string: 1.5.0 pretty-format: 27.5.1 - dev: true - /@testing-library/dom@9.3.4: - resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} - engines: {node: '>=14'} + '@testing-library/dom@9.3.4': dependencies: '@babel/code-frame': 7.24.7 '@babel/runtime': 7.24.7 @@ -28706,11 +40377,8 @@ packages: dom-accessibility-api: 0.5.16 lz-string: 1.5.0 pretty-format: 27.5.1 - dev: true - /@testing-library/jest-dom@5.17.0: - resolution: {integrity: sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==} - engines: {node: '>=8', npm: '>=6', yarn: '>=1'} + '@testing-library/jest-dom@5.17.0': dependencies: '@adobe/css-tools': 4.4.0 '@babel/runtime': 7.24.7 @@ -28721,151 +40389,75 @@ packages: dom-accessibility-api: 0.5.16 lodash: 4.17.21 redent: 3.0.0 - dev: true - /@testing-library/jest-dom@6.4.6(@types/jest@29.4.4)(jest@29.4.3): - resolution: {integrity: sha512-8qpnGVincVDLEcQXWaHOf6zmlbwTKc6Us6PPu4CRnPXCzo2OGBS5cwgMMOWdxDpEz1mkbvXHpEy99M5Yvt682w==} - engines: {node: '>=14', npm: '>=6', yarn: '>=1'} - peerDependencies: - '@jest/globals': '>= 28' - '@types/bun': latest - '@types/jest': '>= 28' - jest: '>= 28' - vitest: '>= 0.32' - peerDependenciesMeta: - '@jest/globals': - optional: true - '@types/bun': - optional: true - '@types/jest': - optional: true - jest: - optional: true - vitest: - optional: true + '@testing-library/jest-dom@6.4.6(@jest/globals@29.7.0)(@types/jest@29.4.4)(jest@29.4.3(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)))': dependencies: '@adobe/css-tools': 4.4.0 '@babel/runtime': 7.24.7 - '@types/jest': 29.4.4 aria-query: 5.3.0 chalk: 3.0.0 css.escape: 1.5.1 dom-accessibility-api: 0.6.3 - jest: 29.4.3(@types/node@18.11.9) lodash: 4.17.21 redent: 3.0.0 - dev: true + optionalDependencies: + '@jest/globals': 29.7.0 + '@types/jest': 29.4.4 + jest: 29.4.3(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) - /@testing-library/jest-dom@6.4.6(@types/jest@29.5.12)(jest@29.7.0): - resolution: {integrity: sha512-8qpnGVincVDLEcQXWaHOf6zmlbwTKc6Us6PPu4CRnPXCzo2OGBS5cwgMMOWdxDpEz1mkbvXHpEy99M5Yvt682w==} - engines: {node: '>=14', npm: '>=6', yarn: '>=1'} - peerDependencies: - '@jest/globals': '>= 28' - '@types/bun': latest - '@types/jest': '>= 28' - jest: '>= 28' - vitest: '>= 0.32' - peerDependenciesMeta: - '@jest/globals': - optional: true - '@types/bun': - optional: true - '@types/jest': - optional: true - jest: - optional: true - vitest: - optional: true + '@testing-library/jest-dom@6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))': dependencies: '@adobe/css-tools': 4.4.0 '@babel/runtime': 7.24.7 - '@types/jest': 29.5.12 aria-query: 5.3.0 chalk: 3.0.0 css.escape: 1.5.1 dom-accessibility-api: 0.6.3 - jest: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) lodash: 4.17.21 redent: 3.0.0 - dev: true + optionalDependencies: + '@jest/globals': 29.7.0 + '@types/jest': 29.5.12 + jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) - /@testing-library/react@14.3.1(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==} - engines: {node: '>=14'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 + '@testing-library/react@14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.7 '@testing-library/dom': 9.3.4 '@types/react-dom': 18.3.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: true - /@testing-library/user-event@12.8.3(@testing-library/dom@7.31.2): - resolution: {integrity: sha512-IR0iWbFkgd56Bu5ZI/ej8yQwrkCv8Qydx6RzwbKz9faXazR/+5tvYKsZQgyXJiwgpcva127YO6JcWy7YlCfofQ==} - engines: {node: '>=10', npm: '>=6'} - peerDependencies: - '@testing-library/dom': '>=7.21.4' + '@testing-library/user-event@12.8.3(@testing-library/dom@7.31.2)': dependencies: '@babel/runtime': 7.24.7 '@testing-library/dom': 7.31.2 - dev: true - /@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4): - resolution: {integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==} - engines: {node: '>=12', npm: '>=6'} - peerDependencies: - '@testing-library/dom': '>=7.21.4' + '@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4)': dependencies: '@testing-library/dom': 9.3.4 - dev: true - /@tokenizer/token@0.3.0: - resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} - dev: true + '@tokenizer/token@0.3.0': {} - /@tootallnate/once@1.1.2: - resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} - engines: {node: '>= 6'} - dev: true + '@tootallnate/once@1.1.2': {} - /@tootallnate/once@2.0.0: - resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} - engines: {node: '>= 10'} - dev: true + '@tootallnate/once@2.0.0': {} - /@trysound/sax@0.2.0: - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} - engines: {node: '>=10.13.0'} + '@trysound/sax@0.2.0': {} - /@tsconfig/node10@1.0.11: - resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} - dev: true + '@tsconfig/node10@1.0.11': {} - /@tsconfig/node12@1.0.11: - resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} - dev: true + '@tsconfig/node12@1.0.11': {} - /@tsconfig/node14@1.0.3: - resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} - dev: true + '@tsconfig/node14@1.0.3': {} - /@tsconfig/node16@1.0.4: - resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} - dev: true + '@tsconfig/node16@1.0.4': {} - /@types/aria-query@4.2.2: - resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} - dev: true + '@types/aria-query@4.2.2': {} - /@types/aria-query@5.0.4: - resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} - dev: true + '@types/aria-query@5.0.4': {} - /@types/babel__core@7.20.5: - resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + '@types/babel__core@7.20.5': dependencies: '@babel/parser': 7.24.7 '@babel/types': 7.24.7 @@ -28873,226 +40465,143 @@ packages: '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.6 - /@types/babel__generator@7.6.8: - resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} + '@types/babel__generator@7.6.8': dependencies: '@babel/types': 7.24.7 - /@types/babel__template@7.4.4: - resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + '@types/babel__template@7.4.4': dependencies: '@babel/parser': 7.24.7 '@babel/types': 7.24.7 - /@types/babel__traverse@7.20.6: - resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} + '@types/babel__traverse@7.20.6': dependencies: '@babel/types': 7.24.7 - /@types/body-parser@1.19.5: - resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} + '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 '@types/node': 13.13.52 - dev: true - /@types/bonjour@3.5.13: - resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} + '@types/bonjour@3.5.13': dependencies: '@types/node': 13.13.52 - dev: true - /@types/cacheable-request@6.0.3: - resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} + '@types/cacheable-request@6.0.3': dependencies: '@types/http-cache-semantics': 4.0.4 '@types/keyv': 3.1.4 '@types/node': 13.13.52 '@types/responselike': 1.0.3 - dev: true - /@types/connect-history-api-fallback@1.5.4: - resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} + '@types/connect-history-api-fallback@1.5.4': dependencies: '@types/express-serve-static-core': 4.19.5 '@types/node': 13.13.52 - dev: true - /@types/connect@3.4.38: - resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + '@types/connect@3.4.38': dependencies: '@types/node': 13.13.52 - dev: true - /@types/cookie@0.4.1: - resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==} - dev: true + '@types/cookie@0.4.1': {} - /@types/cross-spawn@6.0.6: - resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==} + '@types/cross-spawn@6.0.6': dependencies: '@types/node': 13.13.52 - dev: true - /@types/crypto-js@3.1.47: - resolution: {integrity: sha512-eI6gvpcGHLk3dAuHYnRCAjX+41gMv1nz/VP55wAe5HtmAKDOoPSfr3f6vkMc08ov1S0NsjvUBxDtHHxqQY1LGA==} - dev: true + '@types/crypto-js@3.1.47': {} - /@types/cssnano@5.1.0(postcss@8.4.39): - resolution: {integrity: sha512-ikR+18UpFGgvaWSur4og6SJYF/6QEYHXvrIt36dp81p1MG3cAPTYDMBJGeyWa3LCnqEbgNMHKRb+FP0NrXtoWQ==} - deprecated: This is a stub types definition. cssnano provides its own type definitions, so you do not need this installed. + '@types/cssnano@5.1.0(postcss@8.4.39)': dependencies: cssnano: 5.1.15(postcss@8.4.39) transitivePeerDependencies: - postcss - dev: true - /@types/d3-array@3.2.1: - resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==} - dev: false + '@types/d3-array@3.2.1': {} - /@types/d3-axis@3.0.6: - resolution: {integrity: sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==} + '@types/d3-axis@3.0.6': dependencies: '@types/d3-selection': 3.0.10 - dev: false - /@types/d3-brush@3.0.6: - resolution: {integrity: sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==} + '@types/d3-brush@3.0.6': dependencies: '@types/d3-selection': 3.0.10 - dev: false - /@types/d3-chord@3.0.6: - resolution: {integrity: sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==} - dev: false + '@types/d3-chord@3.0.6': {} - /@types/d3-color@3.1.3: - resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==} - dev: false + '@types/d3-color@3.1.3': {} - /@types/d3-contour@3.0.6: - resolution: {integrity: sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==} + '@types/d3-contour@3.0.6': dependencies: '@types/d3-array': 3.2.1 '@types/geojson': 7946.0.14 - dev: false - /@types/d3-delaunay@6.0.4: - resolution: {integrity: sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==} - dev: false + '@types/d3-delaunay@6.0.4': {} - /@types/d3-dispatch@3.0.6: - resolution: {integrity: sha512-4fvZhzMeeuBJYZXRXrRIQnvUYfyXwYmLsdiN7XXmVNQKKw1cM8a5WdID0g1hVFZDqT9ZqZEY5pD44p24VS7iZQ==} - dev: false + '@types/d3-dispatch@3.0.6': {} - /@types/d3-drag@3.0.7: - resolution: {integrity: sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==} + '@types/d3-drag@3.0.7': dependencies: '@types/d3-selection': 3.0.10 - dev: false - /@types/d3-dsv@3.0.7: - resolution: {integrity: sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==} - dev: false + '@types/d3-dsv@3.0.7': {} - /@types/d3-ease@3.0.2: - resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==} - dev: false + '@types/d3-ease@3.0.2': {} - /@types/d3-fetch@3.0.7: - resolution: {integrity: sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==} + '@types/d3-fetch@3.0.7': dependencies: '@types/d3-dsv': 3.0.7 - dev: false - /@types/d3-force@3.0.10: - resolution: {integrity: sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==} - dev: false + '@types/d3-force@3.0.10': {} - /@types/d3-format@3.0.4: - resolution: {integrity: sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==} - dev: false + '@types/d3-format@3.0.4': {} - /@types/d3-geo@3.1.0: - resolution: {integrity: sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==} + '@types/d3-geo@3.1.0': dependencies: '@types/geojson': 7946.0.14 - dev: false - /@types/d3-hierarchy@3.1.7: - resolution: {integrity: sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==} - dev: false + '@types/d3-hierarchy@3.1.7': {} - /@types/d3-interpolate@3.0.4: - resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==} + '@types/d3-interpolate@3.0.4': dependencies: '@types/d3-color': 3.1.3 - dev: false - /@types/d3-path@3.1.0: - resolution: {integrity: sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==} - dev: false + '@types/d3-path@3.1.0': {} - /@types/d3-polygon@3.0.2: - resolution: {integrity: sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==} - dev: false + '@types/d3-polygon@3.0.2': {} - /@types/d3-quadtree@3.0.6: - resolution: {integrity: sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==} - dev: false + '@types/d3-quadtree@3.0.6': {} - /@types/d3-random@3.0.3: - resolution: {integrity: sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==} - dev: false + '@types/d3-random@3.0.3': {} - /@types/d3-scale-chromatic@3.0.3: - resolution: {integrity: sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==} - dev: false + '@types/d3-scale-chromatic@3.0.3': {} - /@types/d3-scale@4.0.8: - resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==} + '@types/d3-scale@4.0.8': dependencies: '@types/d3-time': 3.0.3 - dev: false - /@types/d3-selection@3.0.10: - resolution: {integrity: sha512-cuHoUgS/V3hLdjJOLTT691+G2QoqAjCVLmr4kJXR4ha56w1Zdu8UUQ5TxLRqudgNjwXeQxKMq4j+lyf9sWuslg==} - dev: false + '@types/d3-selection@3.0.10': {} - /@types/d3-shape@3.1.6: - resolution: {integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==} + '@types/d3-shape@3.1.6': dependencies: '@types/d3-path': 3.1.0 - dev: false - /@types/d3-time-format@4.0.3: - resolution: {integrity: sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==} - dev: false + '@types/d3-time-format@4.0.3': {} - /@types/d3-time@3.0.3: - resolution: {integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==} - dev: false + '@types/d3-time@3.0.3': {} - /@types/d3-timer@3.0.2: - resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==} - dev: false + '@types/d3-timer@3.0.2': {} - /@types/d3-transition@3.0.8: - resolution: {integrity: sha512-ew63aJfQ/ms7QQ4X7pk5NxQ9fZH/z+i24ZfJ6tJSfqxJMrYLiK01EAs2/Rtw/JreGUsS3pLPNV644qXFGnoZNQ==} + '@types/d3-transition@3.0.8': dependencies: '@types/d3-selection': 3.0.10 - dev: false - /@types/d3-zoom@3.0.8: - resolution: {integrity: sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==} + '@types/d3-zoom@3.0.8': dependencies: '@types/d3-interpolate': 3.0.4 '@types/d3-selection': 3.0.10 - dev: false - /@types/d3@7.4.3: - resolution: {integrity: sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==} + '@types/d3@7.4.3': dependencies: '@types/d3-array': 3.2.1 '@types/d3-axis': 3.0.6 @@ -29124,544 +40633,379 @@ packages: '@types/d3-timer': 3.0.2 '@types/d3-transition': 3.0.8 '@types/d3-zoom': 3.0.8 - dev: false - /@types/detect-port@1.3.5: - resolution: {integrity: sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==} - dev: true + '@types/debug@4.1.12': + dependencies: + '@types/ms': 0.7.34 - /@types/doctrine@0.0.3: - resolution: {integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==} - dev: true + '@types/detect-port@1.3.5': {} - /@types/doctrine@0.0.9: - resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==} - dev: true + '@types/doctrine@0.0.3': {} - /@types/ejs@3.1.5: - resolution: {integrity: sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==} - dev: true + '@types/doctrine@0.0.9': {} - /@types/emscripten@1.39.13: - resolution: {integrity: sha512-cFq+fO/isvhvmuP/+Sl4K4jtU6E23DoivtbO4r50e3odaxAiVdbfSYRDdJ4gCdxx+3aRjhphS5ZMwIH4hFy/Cw==} - dev: true + '@types/ejs@3.1.5': {} - /@types/escodegen@0.0.6: - resolution: {integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==} - dev: true + '@types/emscripten@1.39.13': {} - /@types/eslint-scope@3.7.7: - resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} + '@types/escodegen@0.0.6': {} + + '@types/eslint-scope@3.7.7': dependencies: '@types/eslint': 8.56.10 '@types/estree': 1.0.5 - /@types/eslint@7.29.0: - resolution: {integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==} + '@types/eslint@7.29.0': dependencies: '@types/estree': 1.0.5 '@types/json-schema': 7.0.15 - dev: true - /@types/eslint@8.56.10: - resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==} + '@types/eslint@8.56.10': dependencies: '@types/estree': 1.0.5 '@types/json-schema': 7.0.15 - /@types/estree@0.0.39: - resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} - dev: true + '@types/estree-jsx@1.0.5': + dependencies: + '@types/estree': 1.0.5 - /@types/estree@0.0.51: - resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} + '@types/estree@0.0.39': {} - /@types/estree@1.0.5: - resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + '@types/estree@0.0.51': {} - /@types/express-serve-static-core@4.19.5: - resolution: {integrity: sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==} + '@types/estree@1.0.5': {} + + '@types/express-serve-static-core@4.19.5': dependencies: '@types/node': 13.13.52 '@types/qs': 6.9.15 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 - dev: true - /@types/express@4.17.21: - resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} + '@types/express@4.17.21': dependencies: '@types/body-parser': 1.19.5 '@types/express-serve-static-core': 4.19.5 '@types/qs': 6.9.15 '@types/serve-static': 1.15.7 - dev: true - /@types/file-saver@2.0.7: - resolution: {integrity: sha512-dNKVfHd/jk0SkR/exKGj2ggkB45MAkzvWCaqLUUgkyjITkGNzH8H+yUwr+BLJUBjZOe9w8X3wgmXhZDRg1ED6A==} - dev: true + '@types/file-saver@2.0.7': {} - /@types/find-cache-dir@3.2.1: - resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==} - dev: true + '@types/find-cache-dir@3.2.1': {} - /@types/fs-extra@8.1.5: - resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==} + '@types/fs-extra@8.1.5': dependencies: '@types/node': 13.13.52 - dev: true - /@types/geojson@7946.0.14: - resolution: {integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==} - dev: false + '@types/geojson@7946.0.14': {} - /@types/glob@7.2.0: - resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} + '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 '@types/node': 13.13.52 - /@types/glob@8.1.0: - resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==} + '@types/glob@8.1.0': dependencies: '@types/minimatch': 5.1.2 '@types/node': 13.13.52 - dev: false - /@types/graceful-fs@4.1.9: - resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} + '@types/graceful-fs@4.1.9': dependencies: '@types/node': 13.13.52 - /@types/hast@2.3.10: - resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} + '@types/hast@2.3.10': dependencies: '@types/unist': 2.0.10 - /@types/history@4.7.11: - resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==} - dev: true + '@types/hast@3.0.4': + dependencies: + '@types/unist': 2.0.10 - /@types/hoist-non-react-statics@3.3.5: - resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==} + '@types/history@4.7.11': {} + + '@types/hoist-non-react-statics@3.3.5': dependencies: '@types/react': 18.0.18 hoist-non-react-statics: 3.3.2 - /@types/html-minifier-terser@5.1.2: - resolution: {integrity: sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==} - dev: false + '@types/html-minifier-terser@5.1.2': {} - /@types/html-minifier-terser@6.1.0: - resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} + '@types/html-minifier-terser@6.1.0': {} - /@types/http-cache-semantics@4.0.4: - resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} - dev: true + '@types/http-cache-semantics@4.0.4': {} - /@types/http-errors@2.0.4: - resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} - dev: true + '@types/http-errors@2.0.4': {} - /@types/http-proxy@1.17.14: - resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} + '@types/http-proxy@1.17.14': dependencies: '@types/node': 13.13.52 - dev: true - /@types/i18next-xhr-backend@1.4.2: - resolution: {integrity: sha512-uykS5BvdSoN+G7j7D19xzR12pEVkWmUrIEIxMsj2brVVzjc3gIthWCQKYqbe/b1q87SLbWb/ZHN9bR4qxi1H6A==} - deprecated: This is a stub types definition. i18next-xhr-backend provides its own type definitions, so you do not need this installed. + '@types/i18next-xhr-backend@1.4.2': dependencies: i18next-xhr-backend: 3.2.2 - dev: true - /@types/i18next@8.4.3: - resolution: {integrity: sha512-ayqHEU+i9H7/Fkefnhyvml1ChKEZXcDwmVqo3jmrxy7PoAtTSY1t4/hr58Xz8hkXLPoCGS1hTc6bLJOUaOAjfQ==} - dev: true + '@types/i18next@8.4.3': {} - /@types/inquirer@8.2.10: - resolution: {integrity: sha512-IdD5NmHyVjWM8SHWo/kPBgtzXatwPkfwzyP3fN1jF2g9BWt5WO+8hL2F4o2GKIYsU40PpqeevuUWvkS/roXJkA==} + '@types/inquirer@8.2.10': dependencies: '@types/through': 0.0.33 rxjs: 7.8.1 - dev: true - /@types/is-function@1.0.3: - resolution: {integrity: sha512-/CLhCW79JUeLKznI6mbVieGbl4QU5Hfn+6udw1YHZoofASjbQ5zaP5LzAUZYDpRYEjS4/P+DhEgyJ/PQmGGTWw==} + '@types/is-function@1.0.3': {} - /@types/istanbul-lib-coverage@2.0.6: - resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} + '@types/istanbul-lib-coverage@2.0.6': {} - /@types/istanbul-lib-report@3.0.3: - resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} + '@types/istanbul-lib-report@3.0.3': dependencies: '@types/istanbul-lib-coverage': 2.0.6 - /@types/istanbul-reports@3.0.4: - resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + '@types/istanbul-reports@3.0.4': dependencies: '@types/istanbul-lib-report': 3.0.3 - /@types/jest@26.0.24: - resolution: {integrity: sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==} + '@types/jest@26.0.24': dependencies: jest-diff: 26.6.2 pretty-format: 26.6.2 - dev: true - /@types/jest@29.4.4: - resolution: {integrity: sha512-qezb65VIH7X1wobSnd6Lvdve7PXSyQRa3dljTkhTtDhi603RvHQCshSlJcuyMLHJpeHgY3NKwvDJWxMOOHxGDQ==} + '@types/jest@29.4.4': dependencies: expect: 29.7.0 pretty-format: 29.7.0 - dev: true - /@types/jest@29.5.12: - resolution: {integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==} + '@types/jest@29.5.12': dependencies: expect: 29.7.0 pretty-format: 29.7.0 - /@types/js-beautify@1.14.3: - resolution: {integrity: sha512-FMbQHz+qd9DoGvgLHxeqqVPaNRffpIu5ZjozwV8hf9JAGpIOzuAf4wGbRSo8LNITHqGjmmVjaMggTT5P4v4IHg==} - dev: true + '@types/js-beautify@1.14.3': {} - /@types/js-levenshtein@1.1.3: - resolution: {integrity: sha512-jd+Q+sD20Qfu9e2aEXogiO3vpOC1PYJOUdyN9gvs4Qrvkg4wF43L5OhqrPeokdv8TL0/mXoYfpkcoGZMNN2pkQ==} - dev: true + '@types/js-levenshtein@1.1.3': {} - /@types/js-yaml@3.12.3: - resolution: {integrity: sha512-otRe77JNNWzoVGLKw8TCspKswRoQToys4tuL6XYVBFxjgeM0RUrx7m3jkaTdxILxeGry3zM8mGYkGXMeQ02guA==} - dev: true + '@types/js-yaml@3.12.3': {} - /@types/jsdom@20.0.1: - resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} + '@types/jsdom@20.0.1': dependencies: '@types/node': 13.13.52 '@types/tough-cookie': 4.0.5 parse5: 7.1.2 - dev: true - /@types/json-schema@7.0.15: - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + '@types/json-schema@7.0.15': {} - /@types/json5@0.0.29: - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} - dev: true + '@types/json5@0.0.29': {} - /@types/keyv@3.1.4: - resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} + '@types/keyv@3.1.4': dependencies: '@types/node': 13.13.52 - /@types/lodash-es@4.17.12: - resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==} + '@types/lodash-es@4.17.12': dependencies: '@types/lodash': 4.17.5 - dev: true - /@types/lodash@4.17.5: - resolution: {integrity: sha512-MBIOHVZqVqgfro1euRDWX7OO0fBVUUMrN6Pwm8LQsz8cWhEpihlvR70ENj3f40j58TNxZaWv2ndSkInykNBBJw==} + '@types/lodash@4.17.5': {} - /@types/mdast@3.0.15: - resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} + '@types/mdast@3.0.15': dependencies: '@types/unist': 2.0.10 - /@types/mime-types@2.1.4: - resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==} + '@types/mdast@4.0.4': + dependencies: + '@types/unist': 2.0.10 - /@types/mime@1.3.5: - resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} - dev: true + '@types/mime-types@2.1.4': {} - /@types/minimatch@3.0.5: - resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} - dev: true + '@types/mime@1.3.5': {} - /@types/minimatch@5.1.2: - resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} + '@types/minimatch@3.0.5': {} - /@types/minimist@1.2.5: - resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} - dev: true + '@types/minimatch@5.1.2': {} - /@types/node-fetch@2.6.11: - resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==} + '@types/minimist@1.2.5': {} + + '@types/ms@0.7.34': {} + + '@types/node-fetch@2.6.11': dependencies: '@types/node': 13.13.52 form-data: 4.0.0 - /@types/node-forge@0.9.10: - resolution: {integrity: sha512-+BbPlhZeYs/WETWftQi2LeRx9VviWSwawNo+Pid5qNrSZHb60loYjpph3OrbwXMMseadu9rE9NeK34r4BHT+QQ==} + '@types/node-forge@0.9.10': dependencies: '@types/node': 13.13.52 - dev: true - /@types/node-forge@1.3.11: - resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} + '@types/node-forge@1.3.11': dependencies: '@types/node': 13.13.52 - dev: true - /@types/node@12.20.55: - resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - dev: true + '@types/node@12.20.55': {} - /@types/node@13.13.52: - resolution: {integrity: sha512-s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ==} + '@types/node@13.13.52': {} - /@types/node@14.18.63: - resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==} - dev: true + '@types/node@14.18.63': {} - /@types/node@16.18.101: - resolution: {integrity: sha512-AAsx9Rgz2IzG8KJ6tXd6ndNkVcu+GYB6U/SnFAaokSPNx2N7dcIIfnighYUNumvj6YS2q39Dejz5tT0NCV7CWA==} + '@types/node@16.18.101': {} - /@types/node@18.11.9: - resolution: {integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==} + '@types/node@18.11.9': {} - /@types/normalize-package-data@2.4.4: - resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + '@types/normalize-package-data@2.4.4': {} - /@types/npmlog@4.1.6: - resolution: {integrity: sha512-0l3z16vnlJGl2Mi/rgJFrdwfLZ4jfNYgE6ZShEpjqhHuGTqdEzNles03NpYHwUMVYZa+Tj46UxKIEpE78lQ3DQ==} + '@types/npmlog@4.1.6': dependencies: '@types/node': 13.13.52 - /@types/parse-json@4.0.2: - resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + '@types/parse-json@4.0.2': {} - /@types/parse5@5.0.3: - resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==} + '@types/parse5@5.0.3': {} - /@types/prettier@2.7.3: - resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} - dev: true + '@types/prettier@2.7.3': {} - /@types/pretty-hrtime@1.0.3: - resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==} + '@types/pretty-hrtime@1.0.3': {} - /@types/prop-types@15.7.12: - resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} + '@types/prop-types@15.7.12': {} - /@types/q@1.5.8: - resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==} - dev: true + '@types/q@1.5.8': {} - /@types/qs@6.9.15: - resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==} + '@types/qs@6.9.15': {} - /@types/range-parser@1.2.7: - resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - dev: true + '@types/range-parser@1.2.7': {} - /@types/react-color@3.0.12: - resolution: {integrity: sha512-pr3uKE3lSvf7GFo1Rn2K3QktiZQFFrSgSGJ/3iMvSOYWt2pPAJ97rVdVfhWxYJZ8prAEXzoP2XX//3qGSQgu7Q==} + '@types/react-color@3.0.12': dependencies: '@types/react': 18.0.18 '@types/reactcss': 1.2.12 - dev: true - /@types/react-dom@18.3.0: - resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} + '@types/react-dom@18.3.0': dependencies: '@types/react': 18.0.18 - dev: true - /@types/react-notification-system@0.2.39: - resolution: {integrity: sha512-yfptO86dbfW4qaw34CIedfakdKWV3sPM0xb4T5EQZOza80WLvOUUKjdmZTeGyEKk/7n2za8RJa6aZpz/A+2Qbw==} + '@types/react-notification-system@0.2.39': dependencies: '@types/react': 18.0.18 - dev: true - /@types/react-redux@7.1.33: - resolution: {integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==} + '@types/react-redux@7.1.33': dependencies: '@types/hoist-non-react-statics': 3.3.5 '@types/react': 18.0.18 hoist-non-react-statics: 3.3.2 redux: 4.2.1 - /@types/react-router-dom@5.3.3: - resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==} + '@types/react-router-dom@5.3.3': dependencies: '@types/history': 4.7.11 '@types/react': 18.0.18 '@types/react-router': 5.1.20 - dev: true - /@types/react-router@5.1.20: - resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==} + '@types/react-router@5.1.20': dependencies: '@types/history': 4.7.11 '@types/react': 18.0.18 - dev: true - /@types/react-transition-group@4.4.10: - resolution: {integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==} + '@types/react-transition-group@4.4.10': dependencies: '@types/react': 18.0.18 - dev: false - /@types/react@18.0.18: - resolution: {integrity: sha512-6hI08umYs6NaiHFEEGioXnxJ+oEhY3eRz8VCUaudZmGdtvPviCJB8mgaMxaDWAdPSYd4eFavrPk2QIolwbLYrg==} + '@types/react@18.0.18': dependencies: '@types/prop-types': 15.7.12 '@types/scheduler': 0.23.0 csstype: 3.1.3 - /@types/reactcss@1.2.12: - resolution: {integrity: sha512-BrXUQ86/wbbFiZv8h/Q1/Q1XOsaHneYmCb/tHe9+M8XBAAUc2EHfdY0DY22ZZjVSaXr5ix7j+zsqO2eGZub8lQ==} + '@types/reactcss@1.2.12': dependencies: '@types/react': 18.0.18 - dev: true - /@types/reactour@1.18.5: - resolution: {integrity: sha512-Pl5yh9bXeXaFcioDk6XVmUzdJGZDAKesVmwoh2KvN/1FXSd9saN8pIprLvfspnXANMcgl3AtSlD4zs0cJIhGIw==} + '@types/reactour@1.18.5': dependencies: '@types/react': 18.0.18 - dev: true - /@types/redux-mock-store@1.0.6: - resolution: {integrity: sha512-eg5RDfhJTXuoJjOMyXiJbaDb1B8tfTaJixscmu+jOusj6adGC0Krntz09Tf4gJgXeCqCrM5bBMd+B7ez0izcAQ==} + '@types/redux-mock-store@1.0.6': dependencies: redux: 4.2.1 - dev: true - /@types/resolve@1.17.1: - resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} + '@types/resolve@1.17.1': dependencies: '@types/node': 13.13.52 - dev: true - /@types/resolve@1.20.2: - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} - dev: true + '@types/resolve@1.20.2': {} - /@types/resolve@1.20.6: - resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} - dev: true + '@types/resolve@1.20.6': {} - /@types/responselike@1.0.3: - resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} + '@types/responselike@1.0.3': dependencies: '@types/node': 13.13.52 - /@types/retry@0.12.0: - resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} - dev: true + '@types/retry@0.12.0': {} - /@types/scheduler@0.23.0: - resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==} + '@types/scheduler@0.23.0': {} - /@types/semver@7.5.8: - resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} - dev: true + '@types/semver@7.5.8': {} - /@types/send@0.17.4: - resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} + '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 '@types/node': 13.13.52 - dev: true - /@types/serve-index@1.9.4: - resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} + '@types/serve-index@1.9.4': dependencies: '@types/express': 4.17.21 - dev: true - /@types/serve-static@1.15.7: - resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} + '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 '@types/node': 13.13.52 '@types/send': 0.17.4 - dev: true - /@types/set-cookie-parser@2.4.9: - resolution: {integrity: sha512-bCorlULvl0xTdjj4BPUHX4cqs9I+go2TfW/7Do1nnFYWS0CPP429Qr1AY42kiFhCwLpvAkWFr1XIBHd8j6/MCQ==} + '@types/set-cookie-parser@2.4.9': dependencies: '@types/node': 13.13.52 - dev: true - /@types/sinonjs__fake-timers@8.1.1: - resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} - dev: true + '@types/sinonjs__fake-timers@8.1.1': {} - /@types/sizzle@2.3.8: - resolution: {integrity: sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==} - dev: true + '@types/sizzle@2.3.8': {} - /@types/sockjs@0.3.36: - resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} + '@types/sockjs@0.3.36': dependencies: '@types/node': 13.13.52 - dev: true - /@types/source-list-map@0.1.6: - resolution: {integrity: sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==} - dev: false + '@types/source-list-map@0.1.6': {} - /@types/stack-utils@2.0.3: - resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} + '@types/stack-utils@2.0.3': {} - /@types/tapable@1.0.12: - resolution: {integrity: sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==} - dev: false + '@types/tapable@1.0.12': {} - /@types/testing-library__jest-dom@5.14.9: - resolution: {integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==} + '@types/testing-library__jest-dom@5.14.9': dependencies: '@types/jest': 29.5.12 - dev: true - /@types/through@0.0.33: - resolution: {integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==} + '@types/through@0.0.33': dependencies: '@types/node': 13.13.52 - dev: true - /@types/tough-cookie@4.0.5: - resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} - dev: true + '@types/tough-cookie@4.0.5': {} - /@types/ua-parser-js@0.7.36: - resolution: {integrity: sha512-N1rW+njavs70y2cApeIw1vLMYXRwfBy+7trgavGuuTfOd7j1Yh7QTRc/yqsPl6ncokt72ZXuxEU0PiCp9bSwNQ==} - dev: true + '@types/ua-parser-js@0.7.36': {} - /@types/uglify-js@3.17.5: - resolution: {integrity: sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==} + '@types/uglify-js@3.17.5': dependencies: source-map: 0.6.1 - dev: false - /@types/unist@2.0.10: - resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} + '@types/unist@2.0.10': {} - /@types/uuid@9.0.8: - resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==} - dev: true + '@types/unist@3.0.2': {} - /@types/webappsec-credential-management@0.6.8: - resolution: {integrity: sha512-DES/SkK54U7AG8hmMkGCJkOSlywM3R+TzaWT+rBnX3lQTJ3K57jWr+UccWY8ImkuKekC9BjB+AH4zLJB4JKpvQ==} - dev: true + '@types/uuid@9.0.8': {} - /@types/webpack-env@1.18.5: - resolution: {integrity: sha512-wz7kjjRRj8/Lty4B+Kr0LN6Ypc/3SymeCCGSbaXp2leH0ZVg/PriNiOwNj4bD4uphI7A8NXS4b6Gl373sfO5mA==} + '@types/webappsec-credential-management@0.6.8': {} - /@types/webpack-sources@3.2.3: - resolution: {integrity: sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==} + '@types/webpack-env@1.18.5': {} + + '@types/webpack-sources@3.2.3': dependencies: '@types/node': 13.13.52 '@types/source-list-map': 0.1.6 source-map: 0.7.4 - dev: false - /@types/webpack@4.41.38: - resolution: {integrity: sha512-oOW7E931XJU1mVfCnxCVgv8GLFL768pDO5u2Gzk82i8yTIgX6i7cntyZOkZYb/JtYM8252SN9bQp9tgkVDSsRw==} + '@types/webpack@4.41.38': dependencies: '@types/node': 13.13.52 '@types/tapable': 1.0.12 @@ -29669,94 +41013,80 @@ packages: '@types/webpack-sources': 3.2.3 anymatch: 3.1.3 source-map: 0.6.1 - dev: false - /@types/ws@8.5.10: - resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} + '@types/ws@8.5.10': dependencies: '@types/node': 13.13.52 - dev: true - /@types/yargs-parser@21.0.3: - resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} + '@types/yargs-parser@21.0.3': {} - /@types/yargs@15.0.19: - resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} + '@types/yargs@15.0.19': dependencies: '@types/yargs-parser': 21.0.3 - /@types/yargs@17.0.32: - resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} + '@types/yargs@17.0.32': dependencies: '@types/yargs-parser': 21.0.3 - /@types/yauzl@2.10.3: - resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} - requiresBuild: true + '@types/yauzl@2.10.3': dependencies: '@types/node': 13.13.52 - dev: true optional: true - /@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5): - resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - '@typescript-eslint/parser': ^4.0.0 - eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5)': dependencies: '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/scope-manager': 4.33.0 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) eslint: 7.32.0 functional-red-black-tree: 1.0.1 ignore: 5.3.1 regexpp: 3.2.0 semver: 7.6.2 tsutils: 3.21.0(typescript@4.9.5) + optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.46.0)(typescript@5.1.6): - 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 + '@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.1.6))(eslint@7.32.0)(typescript@5.1.6)': + dependencies: + '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@5.1.6) + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@5.1.6) + '@typescript-eslint/scope-manager': 4.33.0 + debug: 4.3.5(supports-color@8.1.1) + eslint: 7.32.0 + functional-red-black-tree: 1.0.1 + ignore: 5.3.1 + regexpp: 3.2.0 + semver: 7.6.2 + tsutils: 3.21.0(typescript@5.1.6) + optionalDependencies: + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint@8.46.0)(typescript@5.1.6)': dependencies: '@eslint-community/regexpp': 4.11.0 '@typescript-eslint/parser': 5.62.0(eslint@8.46.0)(typescript@5.1.6) '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/type-utils': 5.62.0(eslint@8.46.0)(typescript@5.1.6) '@typescript-eslint/utils': 5.62.0(eslint@8.46.0)(typescript@5.1.6) - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) eslint: 8.46.0 graphemer: 1.4.0 ignore: 5.3.1 natural-compare-lite: 1.4.0 semver: 7.6.2 tsutils: 3.21.0(typescript@5.1.6) + optionalDependencies: typescript: 5.1.6 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/experimental-utils@4.33.0(eslint@7.32.0)(typescript@4.9.5): - resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - eslint: '*' + '@typescript-eslint/experimental-utils@4.33.0(eslint@7.32.0)(typescript@4.9.5)': dependencies: '@types/json-schema': 7.0.15 '@typescript-eslint/scope-manager': 4.33.0 @@ -29768,162 +41098,139 @@ packages: transitivePeerDependencies: - supports-color - typescript - dev: true - /@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5): - resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@typescript-eslint/experimental-utils@4.33.0(eslint@7.32.0)(typescript@5.1.6)': + dependencies: + '@types/json-schema': 7.0.15 + '@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: 7.32.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0(eslint@7.32.0) + transitivePeerDependencies: + - supports-color + - typescript + + '@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5)': dependencies: '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.5) - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) eslint: 7.32.0 + optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6): - 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 + '@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.1.6)': + dependencies: + '@typescript-eslint/scope-manager': 4.33.0 + '@typescript-eslint/types': 4.33.0 + '@typescript-eslint/typescript-estree': 4.33.0(typescript@5.1.6) + debug: 4.3.5(supports-color@8.1.1) + eslint: 7.32.0 + optionalDependencies: + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6)': dependencies: '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6) - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) eslint: 8.46.0 + optionalDependencies: typescript: 5.1.6 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/scope-manager@4.33.0: - resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + '@typescript-eslint/scope-manager@4.33.0': dependencies: '@typescript-eslint/types': 4.33.0 '@typescript-eslint/visitor-keys': 4.33.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} + '@typescript-eslint/scope-manager@5.62.0': dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - dev: true - /@typescript-eslint/type-utils@5.62.0(eslint@8.46.0)(typescript@5.1.6): - resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '*' - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@typescript-eslint/type-utils@5.62.0(eslint@8.46.0)(typescript@5.1.6)': dependencies: '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6) '@typescript-eslint/utils': 5.62.0(eslint@8.46.0)(typescript@5.1.6) - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) eslint: 8.46.0 tsutils: 3.21.0(typescript@5.1.6) + optionalDependencies: typescript: 5.1.6 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} - 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} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + + '@typescript-eslint/types@4.33.0': {} + + '@typescript-eslint/types@5.62.0': {} + + '@typescript-eslint/typescript-estree@4.33.0(typescript@4.9.5)': dependencies: '@typescript-eslint/types': 4.33.0 '@typescript-eslint/visitor-keys': 4.33.0 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.2 tsutils: 3.21.0(typescript@4.9.5) + optionalDependencies: typescript: 4.9.5 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 + '@typescript-eslint/typescript-estree@4.33.0(typescript@5.1.6)': + dependencies: + '@typescript-eslint/types': 4.33.0 + '@typescript-eslint/visitor-keys': 4.33.0 + debug: 4.3.5(supports-color@8.1.1) + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.6.2 + tsutils: 3.21.0(typescript@5.1.6) + optionalDependencies: + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5)': dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.2 tsutils: 3.21.0(typescript@4.9.5) + optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/typescript-estree@5.62.0(typescript@5.1.6): - 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 + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.1.6)': dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.2 tsutils: 3.21.0(typescript@5.1.6) + optionalDependencies: typescript: 5.1.6 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/utils@5.62.0(eslint@7.32.0)(typescript@4.9.5): - resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + '@typescript-eslint/utils@5.62.0(eslint@7.32.0)(typescript@4.9.5)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0) '@types/json-schema': 7.0.15 @@ -29937,13 +41244,8 @@ packages: transitivePeerDependencies: - supports-color - typescript - dev: true - /@typescript-eslint/utils@5.62.0(eslint@8.46.0)(typescript@5.1.6): - resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + '@typescript-eslint/utils@5.62.0(eslint@8.46.0)(typescript@5.1.6)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0) '@types/json-schema': 7.0.15 @@ -29957,72 +41259,56 @@ packages: transitivePeerDependencies: - supports-color - typescript - dev: true - /@typescript-eslint/visitor-keys@4.33.0: - resolution: {integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + '@typescript-eslint/visitor-keys@4.33.0': dependencies: '@typescript-eslint/types': 4.33.0 eslint-visitor-keys: 2.1.0 - 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} + '@typescript-eslint/visitor-keys@5.62.0': dependencies: '@typescript-eslint/types': 5.62.0 eslint-visitor-keys: 3.4.3 - dev: true - /@webassemblyjs/ast@1.12.1: - resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} + '@ungap/structured-clone@1.2.0': {} + + '@webassemblyjs/ast@1.12.1': dependencies: '@webassemblyjs/helper-numbers': 1.11.6 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - /@webassemblyjs/floating-point-hex-parser@1.11.6: - resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} + '@webassemblyjs/floating-point-hex-parser@1.11.6': {} - /@webassemblyjs/helper-api-error@1.11.6: - resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} + '@webassemblyjs/helper-api-error@1.11.6': {} - /@webassemblyjs/helper-buffer@1.12.1: - resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==} + '@webassemblyjs/helper-buffer@1.12.1': {} - /@webassemblyjs/helper-numbers@1.11.6: - resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} + '@webassemblyjs/helper-numbers@1.11.6': dependencies: '@webassemblyjs/floating-point-hex-parser': 1.11.6 '@webassemblyjs/helper-api-error': 1.11.6 '@xtuc/long': 4.2.2 - /@webassemblyjs/helper-wasm-bytecode@1.11.6: - resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} + '@webassemblyjs/helper-wasm-bytecode@1.11.6': {} - /@webassemblyjs/helper-wasm-section@1.12.1: - resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==} + '@webassemblyjs/helper-wasm-section@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-buffer': 1.12.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 '@webassemblyjs/wasm-gen': 1.12.1 - /@webassemblyjs/ieee754@1.11.6: - resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} + '@webassemblyjs/ieee754@1.11.6': dependencies: '@xtuc/ieee754': 1.2.0 - /@webassemblyjs/leb128@1.11.6: - resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} + '@webassemblyjs/leb128@1.11.6': dependencies: '@xtuc/long': 4.2.2 - /@webassemblyjs/utf8@1.11.6: - resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} + '@webassemblyjs/utf8@1.11.6': {} - /@webassemblyjs/wasm-edit@1.12.1: - resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==} + '@webassemblyjs/wasm-edit@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-buffer': 1.12.1 @@ -30033,8 +41319,7 @@ packages: '@webassemblyjs/wasm-parser': 1.12.1 '@webassemblyjs/wast-printer': 1.12.1 - /@webassemblyjs/wasm-gen@1.12.1: - resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==} + '@webassemblyjs/wasm-gen@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 @@ -30042,16 +41327,14 @@ packages: '@webassemblyjs/leb128': 1.11.6 '@webassemblyjs/utf8': 1.11.6 - /@webassemblyjs/wasm-opt@1.12.1: - resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==} + '@webassemblyjs/wasm-opt@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-buffer': 1.12.1 '@webassemblyjs/wasm-gen': 1.12.1 '@webassemblyjs/wasm-parser': 1.12.1 - /@webassemblyjs/wasm-parser@1.12.1: - resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==} + '@webassemblyjs/wasm-parser@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-api-error': 1.11.6 @@ -30060,234 +41343,139 @@ packages: '@webassemblyjs/leb128': 1.11.6 '@webassemblyjs/utf8': 1.11.6 - /@webassemblyjs/wast-printer@1.12.1: - resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==} + '@webassemblyjs/wast-printer@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 '@xtuc/long': 4.2.2 - /@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0)(webpack@5.84.1): - resolution: {integrity: sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==} - peerDependencies: - webpack: 5.84.1 - webpack-cli: 4.x.x + '@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) - /@webpack-cli/info@1.5.0(webpack-cli@4.10.0): - resolution: {integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==} - peerDependencies: - webpack-cli: 4.x.x + '@webpack-cli/info@1.5.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': dependencies: envinfo: 7.13.0 webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) - /@webpack-cli/serve@1.7.0(webpack-cli@4.10.0)(webpack-dev-server@3.11.3): - resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==} - peerDependencies: - webpack-cli: 4.x.x - webpack-dev-server: '*' - peerDependenciesMeta: - webpack-dev-server: - optional: true + '@webpack-cli/serve@1.7.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))': dependencies: webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) - webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) + optionalDependencies: + webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - /@webpack-contrib/schema-utils@1.0.0-beta.0(webpack@5.84.1): - resolution: {integrity: sha512-LonryJP+FxQQHsjGBi6W786TQB1Oym+agTpY0c+Kj8alnIw+DLUJb6SI8Y1GHGhLCH1yPRrucjObUmxNICQ1pg==} - engines: {node: '>= 6.9.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 + '@webpack-contrib/schema-utils@1.0.0-beta.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': dependencies: ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) chalk: 2.4.2 strip-ansi: 4.0.0 text-table: 0.2.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) webpack-log: 1.2.0 - dev: true - /@xmldom/xmldom@0.7.13: - resolution: {integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==} - engines: {node: '>=10.0.0'} - dev: true + '@xmldom/xmldom@0.7.13': {} - /@xtuc/ieee754@1.2.0: - resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + '@xtuc/ieee754@1.2.0': {} - /@xtuc/long@4.2.2: - resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + '@xtuc/long@4.2.2': {} - /@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20): - resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==} - engines: {node: '>=14.15.0'} - peerDependencies: - esbuild: '>=0.10.0' + '@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20)': dependencies: esbuild: 0.18.20 tslib: 2.6.3 - dev: true - /@yarnpkg/fslib@2.10.3: - resolution: {integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==} - engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} + '@yarnpkg/fslib@2.10.3': dependencies: '@yarnpkg/libzip': 2.3.0 tslib: 1.14.1 - dev: true - /@yarnpkg/libzip@2.3.0: - resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==} - engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} + '@yarnpkg/libzip@2.3.0': dependencies: '@types/emscripten': 1.39.13 tslib: 1.14.1 - dev: true - /@yarnpkg/lockfile@1.1.0: - resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} - dev: true + '@yarnpkg/lockfile@1.1.0': {} - /@yarnpkg/parsers@3.0.0-rc.46: - resolution: {integrity: sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==} - engines: {node: '>=14.15.0'} + '@yarnpkg/parsers@3.0.0-rc.46': dependencies: js-yaml: 3.13.1 tslib: 2.6.3 - dev: true - /@zkochan/js-yaml@0.0.6: - resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} - hasBin: true + '@zkochan/js-yaml@0.0.6': dependencies: argparse: 2.0.1 - dev: true - /JSONStream@1.3.5: - resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} - hasBin: true + JSONStream@1.3.5: dependencies: jsonparse: 1.3.1 through: 2.3.8 - dev: true - /abab@2.0.6: - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} - deprecated: Use your platform's native atob() and btoa() methods instead - dev: true + abab@2.0.6: {} - /abbrev@1.1.1: - resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} - dev: true + abbrev@1.1.1: {} - /abbrev@2.0.0: - resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: false + abbrev@2.0.0: {} - /accepts@1.3.8: - resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} - engines: {node: '>= 0.6'} + accepts@1.3.8: dependencies: mime-types: 2.1.35 negotiator: 0.6.3 - /acorn-globals@6.0.0: - resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} + acorn-globals@6.0.0: dependencies: acorn: 7.4.1 acorn-walk: 7.2.0 - dev: true - /acorn-globals@7.0.1: - resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} + acorn-globals@7.0.1: dependencies: acorn: 8.12.0 acorn-walk: 8.3.3 - dev: true - /acorn-import-assertions@1.9.0(acorn@8.12.0): - resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} - peerDependencies: - acorn: ^8 + acorn-import-assertions@1.9.0(acorn@8.12.0): dependencies: acorn: 8.12.0 - /acorn-jsx@5.3.2(acorn@7.4.1): - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + acorn-jsx@5.3.2(acorn@7.4.1): dependencies: acorn: 7.4.1 - /acorn-jsx@5.3.2(acorn@8.12.0): - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + acorn-jsx@5.3.2(acorn@8.12.0): dependencies: acorn: 8.12.0 - dev: true - /acorn-walk@7.2.0: - resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} - engines: {node: '>=0.4.0'} + acorn-walk@7.2.0: {} - /acorn-walk@8.3.3: - resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==} - engines: {node: '>=0.4.0'} + acorn-walk@8.3.3: dependencies: acorn: 8.12.0 - /acorn@7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: '>=0.4.0'} - hasBin: true + acorn@7.4.1: {} - /acorn@8.12.0: - resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==} - engines: {node: '>=0.4.0'} - hasBin: true + acorn@8.12.0: {} - /add-stream@1.0.0: - resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} - dev: true + add-stream@1.0.0: {} - /address@1.2.2: - resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} - engines: {node: '>= 10.0.0'} + address@1.2.2: {} - /agent-base@5.1.1: - resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==} - engines: {node: '>= 6.0.0'} + agent-base@5.1.1: {} - /agent-base@6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} - engines: {node: '>= 6.0.0'} + agent-base@6.0.2: dependencies: - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: true - /agentkeepalive@4.5.0: - resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} - engines: {node: '>= 8.0.0'} + agentkeepalive@4.5.0: dependencies: humanize-ms: 1.2.1 - dev: true - /aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} + aggregate-error@3.1.0: dependencies: clean-stack: 2.2.0 indent-string: 4.0.0 - /airbnb-js-shims@2.2.1: - resolution: {integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==} + airbnb-js-shims@2.2.1: dependencies: array-includes: 3.1.8 array.prototype.flat: 1.3.2 @@ -30306,286 +41494,168 @@ packages: string.prototype.padend: 3.1.6 string.prototype.padstart: 3.1.6 symbol.prototype.description: 1.0.6 - dev: false - /ajv-errors@1.0.1(ajv@6.12.6): - resolution: {integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==} - peerDependencies: - ajv: '>=5.0.0' + ajv-errors@1.0.1(ajv@6.12.6): dependencies: ajv: 6.12.6 - /ajv-formats@2.1.1(ajv@8.16.0): - resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} - peerDependencies: - ajv: ^8.0.0 - peerDependenciesMeta: - ajv: - optional: true - dependencies: + ajv-formats@2.1.1(ajv@8.16.0): + optionalDependencies: ajv: 8.16.0 - /ajv-keywords@3.5.2(ajv@6.12.6): - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} - peerDependencies: - ajv: ^6.9.1 + ajv-keywords@3.5.2(ajv@6.12.6): dependencies: ajv: 6.12.6 - /ajv-keywords@5.1.0(ajv@8.16.0): - resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} - peerDependencies: - ajv: ^8.8.2 + ajv-keywords@5.1.0(ajv@8.16.0): dependencies: ajv: 8.16.0 fast-deep-equal: 3.1.3 - /ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + ajv@6.12.6: dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 json-schema-traverse: 0.4.1 uri-js: 4.4.1 - /ajv@8.16.0: - resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==} + ajv@8.16.0: dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 uri-js: 4.4.1 - /ansi-align@3.0.1: - resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + ansi-align@3.0.1: dependencies: string-width: 4.2.3 - dev: false - /ansi-colors@3.2.4: - resolution: {integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==} - engines: {node: '>=6'} + ansi-colors@3.2.4: {} - /ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} + ansi-colors@4.1.3: {} - /ansi-escapes@4.3.2: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} - engines: {node: '>=8'} + ansi-escapes@4.3.2: dependencies: type-fest: 0.21.3 - /ansi-html-community@0.0.8: - resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} - engines: {'0': node >= 0.8.0} - hasBin: true + ansi-html-community@0.0.8: {} - /ansi-html@0.0.7: - resolution: {integrity: sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA==} - engines: {'0': node >= 0.8.0} - hasBin: true - dev: true + ansi-html@0.0.7: {} - /ansi-html@0.0.9: - resolution: {integrity: sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==} - engines: {'0': node >= 0.8.0} - hasBin: true + ansi-html@0.0.9: {} - /ansi-red@0.1.1: - resolution: {integrity: sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==} - engines: {node: '>=0.10.0'} + ansi-red@0.1.1: dependencies: ansi-wrap: 0.1.0 - dev: true - /ansi-regex@2.1.1: - resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} - engines: {node: '>=0.10.0'} + ansi-regex@2.1.1: {} - /ansi-regex@3.0.1: - resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} - engines: {node: '>=4'} - dev: true + ansi-regex@3.0.1: {} - /ansi-regex@4.1.1: - resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} - engines: {node: '>=6'} + ansi-regex@4.1.1: {} - /ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} + ansi-regex@5.0.1: {} - /ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} - engines: {node: '>=12'} + ansi-regex@6.0.1: {} - /ansi-styles@2.2.1: - resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} - engines: {node: '>=0.10.0'} - dev: true + ansi-styles@2.2.1: {} - /ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} + ansi-styles@3.2.1: dependencies: color-convert: 1.9.3 - /ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} + ansi-styles@4.3.0: dependencies: color-convert: 2.0.1 - /ansi-styles@5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} - engines: {node: '>=10'} + ansi-styles@5.2.0: {} - /ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} + ansi-styles@6.2.1: {} - /ansi-to-html@0.6.15: - resolution: {integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==} - engines: {node: '>=8.0.0'} - hasBin: true + ansi-to-html@0.6.15: dependencies: entities: 2.2.0 - /ansi-wrap@0.1.0: - resolution: {integrity: sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==} - engines: {node: '>=0.10.0'} - dev: true + ansi-wrap@0.1.0: {} - /anymatch@2.0.0(supports-color@6.1.0): - resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==} + anymatch@2.0.0(supports-color@6.1.0): dependencies: micromatch: 3.1.10(supports-color@6.1.0) normalize-path: 2.1.1 transitivePeerDependencies: - supports-color - /anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} + anymatch@3.1.3: dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 - /app-root-dir@1.0.2: - resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==} + app-root-dir@1.0.2: {} - /append-transform@2.0.0: - resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==} - engines: {node: '>=8'} + append-transform@2.0.0: dependencies: default-require-extensions: 3.0.1 - dev: true - /aproba@2.0.0: - resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} + aproba@2.0.0: {} - /arch@2.2.0: - resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} - dev: true + arch@2.2.0: {} - /archy@1.0.0: - resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} - dev: true + archy@1.0.0: {} - /are-we-there-yet@2.0.0: - resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} - engines: {node: '>=10'} - deprecated: This package is no longer supported. + are-we-there-yet@2.0.0: dependencies: delegates: 1.0.0 readable-stream: 3.6.2 - /are-we-there-yet@3.0.1: - resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. + are-we-there-yet@3.0.1: dependencies: delegates: 1.0.0 readable-stream: 3.6.2 - dev: true - /arg@4.1.3: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + arg@4.1.3: {} - /argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + argparse@1.0.10: dependencies: sprintf-js: 1.0.3 - /argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - dev: true + argparse@2.0.1: {} - /aria-query@4.2.2: - resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} - engines: {node: '>=6.0'} + aria-query@4.2.2: dependencies: '@babel/runtime': 7.24.7 '@babel/runtime-corejs3': 7.24.7 - dev: true - /aria-query@5.1.3: - resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + aria-query@5.1.3: dependencies: deep-equal: 2.2.3 - dev: true - /aria-query@5.3.0: - resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + aria-query@5.3.0: dependencies: dequal: 2.0.3 - dev: true - /arr-diff@4.0.0: - resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} - engines: {node: '>=0.10.0'} + arr-diff@4.0.0: {} - /arr-flatten@1.1.0: - resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} - engines: {node: '>=0.10.0'} + arr-flatten@1.1.0: {} - /arr-union@3.1.0: - resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} - engines: {node: '>=0.10.0'} + arr-union@3.1.0: {} - /array-buffer-byte-length@1.0.1: - resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} - engines: {node: '>= 0.4'} + array-buffer-byte-length@1.0.1: dependencies: call-bind: 1.0.7 is-array-buffer: 3.0.4 - /array-differ@3.0.0: - resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} - engines: {node: '>=8'} - dev: true + array-differ@3.0.0: {} - /array-find-index@1.0.2: - resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} - engines: {node: '>=0.10.0'} - requiresBuild: true - dev: false + array-find-index@1.0.2: optional: true - /array-flatten@1.1.1: - resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} + array-flatten@1.1.1: {} - /array-flatten@2.1.2: - resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} + array-flatten@2.1.2: {} - /array-ify@1.0.0: - resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} - dev: true + array-ify@1.0.0: {} - /array-includes@3.1.8: - resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} - engines: {node: '>= 0.4'} + array-includes@3.1.8: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -30594,32 +41664,19 @@ packages: get-intrinsic: 1.2.4 is-string: 1.0.7 - /array-union@1.0.2: - resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==} - engines: {node: '>=0.10.0'} + array-union@1.0.2: dependencies: array-uniq: 1.0.3 - /array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} + array-union@2.1.0: {} - /array-union@3.0.1: - resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==} - engines: {node: '>=12'} - dev: true + array-union@3.0.1: {} - /array-uniq@1.0.3: - resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} - engines: {node: '>=0.10.0'} + array-uniq@1.0.3: {} - /array-unique@0.3.2: - resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} - engines: {node: '>=0.10.0'} + array-unique@0.3.2: {} - /array.prototype.findlast@1.2.5: - resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} - engines: {node: '>= 0.4'} + array.prototype.findlast@1.2.5: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -30627,11 +41684,8 @@ packages: es-errors: 1.3.0 es-object-atoms: 1.0.0 es-shim-unscopables: 1.0.2 - dev: true - /array.prototype.findlastindex@1.2.5: - resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} - engines: {node: '>= 0.4'} + array.prototype.findlastindex@1.2.5: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -30639,29 +41693,22 @@ packages: es-errors: 1.3.0 es-object-atoms: 1.0.0 es-shim-unscopables: 1.0.2 - dev: true - /array.prototype.flat@1.3.2: - resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} - engines: {node: '>= 0.4'} + array.prototype.flat@1.3.2: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-shim-unscopables: 1.0.2 - /array.prototype.flatmap@1.3.2: - resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} - engines: {node: '>= 0.4'} + array.prototype.flatmap@1.3.2: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-shim-unscopables: 1.0.2 - /array.prototype.map@1.0.7: - resolution: {integrity: sha512-XpcFfLoBEAhezrrNw1V+yLXkE7M6uR7xJEsxbG6c/V9v043qurwVJB9r9UTnoSioFDoz1i1VOydpWGmJpfVZbg==} - engines: {node: '>= 0.4'} + array.prototype.map@1.0.7: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -30669,11 +41716,8 @@ packages: es-array-method-boxes-properly: 1.0.0 es-object-atoms: 1.0.0 is-string: 1.0.7 - dev: false - /array.prototype.reduce@1.0.7: - resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==} - engines: {node: '>= 0.4'} + array.prototype.reduce@1.0.7: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -30683,29 +41727,22 @@ packages: es-object-atoms: 1.0.0 is-string: 1.0.7 - /array.prototype.toreversed@1.1.2: - resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==} + array.prototype.toreversed@1.1.2: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-shim-unscopables: 1.0.2 - dev: true - /array.prototype.tosorted@1.1.4: - resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} - engines: {node: '>= 0.4'} + array.prototype.tosorted@1.1.4: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-errors: 1.3.0 es-shim-unscopables: 1.0.2 - dev: true - /arraybuffer.prototype.slice@1.0.3: - resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} - engines: {node: '>= 0.4'} + arraybuffer.prototype.slice@1.0.3: dependencies: array-buffer-byte-length: 1.0.1 call-bind: 1.0.7 @@ -30716,114 +41753,65 @@ packages: is-array-buffer: 3.0.4 is-shared-array-buffer: 1.0.3 - /arrify@1.0.1: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: '>=0.10.0'} - dev: true + arrify@1.0.1: {} - /arrify@2.0.1: - resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} - engines: {node: '>=8'} + arrify@2.0.1: {} - /asap@2.0.6: - resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} + asap@2.0.6: {} - /asn1@0.2.6: - resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} + asn1@0.2.6: dependencies: safer-buffer: 2.1.2 - dev: true - /assert-plus@1.0.0: - resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} - engines: {node: '>=0.8'} - dev: true + assert-plus@1.0.0: {} - /assert@2.1.0: - resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} + assert@2.1.0: dependencies: call-bind: 1.0.7 is-nan: 1.3.2 object-is: 1.1.6 object.assign: 4.1.5 util: 0.12.5 - dev: true - /assign-symbols@1.0.0: - resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} - engines: {node: '>=0.10.0'} + assign-symbols@1.0.0: {} - /ast-types-flow@0.0.7: - resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} - dev: true + ast-types-flow@0.0.7: {} - /ast-types@0.13.3: - resolution: {integrity: sha512-XTZ7xGML849LkQP86sWdQzfhwbt3YwIO6MqbX9mUNYY98VKaaVZP7YNNm70IpwecbkkxmfC5IYAzOQ/2p29zRA==} - engines: {node: '>=4'} - dev: false + ast-types@0.13.3: {} - /ast-types@0.14.2: - resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==} - engines: {node: '>=4'} + ast-types@0.14.2: dependencies: tslib: 2.6.3 - dev: false - /ast-types@0.16.1: - resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} - engines: {node: '>=4'} + ast-types@0.16.1: dependencies: tslib: 2.6.3 - dev: true - /astral-regex@2.0.0: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} - engines: {node: '>=8'} + astral-regex@2.0.0: {} - /astring@1.8.6: - resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==} - hasBin: true - dev: true + astring@1.8.6: {} - /async-each@1.0.6: - resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==} + async-each@1.0.6: {} - /async-limiter@1.0.1: - resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} + async-limiter@1.0.1: {} - /async@2.6.4: - resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} + async@2.6.4: dependencies: lodash: 4.17.21 - /async@3.2.5: - resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} - dev: true + async@3.2.5: {} - /asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + asynckit@0.4.0: {} - /at-least-node@1.0.0: - resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} - engines: {node: '>= 4.0.0'} + at-least-node@1.0.0: {} - /atob@2.1.2: - resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} - engines: {node: '>= 4.5.0'} - hasBin: true + atob@2.1.2: {} - /autolinker@0.28.1: - resolution: {integrity: sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==} + autolinker@0.28.1: dependencies: gulp-header: 1.8.12 - dev: true - /autoprefixer@10.4.13(postcss@8.4.39): - resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} - engines: {node: ^10 || ^12 || >=14} - hasBin: true - peerDependencies: - postcss: ^8.1.0 + autoprefixer@10.4.13(postcss@8.4.39): dependencies: browserslist: 4.23.1 caniuse-lite: 1.0.30001636 @@ -30832,11 +41820,8 @@ packages: picocolors: 1.0.1 postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /autoprefixer@9.8.8: - resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} - hasBin: true + autoprefixer@9.8.8: dependencies: browserslist: 4.23.1 caniuse-lite: 1.0.30001636 @@ -30845,136 +41830,58 @@ packages: picocolors: 0.2.1 postcss: 7.0.39 postcss-value-parser: 4.2.0 - dev: false - /available-typed-arrays@1.0.7: - resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} - engines: {node: '>= 0.4'} + available-typed-arrays@1.0.7: dependencies: possible-typed-array-names: 1.0.0 - /await-semaphore@0.1.3: - resolution: {integrity: sha512-d1W2aNSYcz/sxYO4pMGX9vq65qOTu0P800epMud+6cYYX0QcT7zyqcxec3VWzpgvdXo57UWmVbZpLMjX2m1I7Q==} + await-semaphore@0.1.3: {} - /aws-sign2@0.7.0: - resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} - dev: true + aws-sign2@0.7.0: {} - /aws4@1.13.0: - resolution: {integrity: sha512-3AungXC4I8kKsS9PuS4JH2nc+0bVY/mjgrephHTIi8fpEeGsTHBUJeosp0Wc1myYMElmD0B3Oc4XL/HVJ4PV2g==} - dev: true + aws4@1.13.0: {} - /axe-core@4.9.1: - resolution: {integrity: sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==} - engines: {node: '>=4'} - dev: true + axe-core@4.9.1: {} - /axios@0.19.2: - resolution: {integrity: sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==} - deprecated: Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410 + axios@0.19.2: dependencies: follow-redirects: 1.5.10 transitivePeerDependencies: - supports-color - dev: false - /axios@0.21.4: - resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} + axios@0.21.4: dependencies: - follow-redirects: 1.15.6(debug@4.3.5) + follow-redirects: 1.15.6(debug@4.3.5(supports-color@6.1.0)) transitivePeerDependencies: - debug - dev: false - /axios@0.26.1: - resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==} + axios@0.26.1: dependencies: - follow-redirects: 1.15.6(debug@4.3.5) + follow-redirects: 1.15.6(debug@4.3.5(supports-color@6.1.0)) transitivePeerDependencies: - debug - /axios@1.7.2: - resolution: {integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==} + axios@1.7.2: dependencies: - follow-redirects: 1.15.6(debug@4.3.5) + follow-redirects: 1.15.6(debug@4.3.5(supports-color@6.1.0)) form-data: 4.0.0 proxy-from-env: 1.1.0 transitivePeerDependencies: - debug - dev: true - /axobject-query@2.2.0: - resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} - dev: true + axobject-query@2.2.0: {} - /babel-code-frame@6.26.0: - resolution: {integrity: sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==} + babel-code-frame@6.26.0: dependencies: chalk: 1.1.3 esutils: 2.0.3 js-tokens: 3.0.2 - dev: true - - /babel-core@6.26.3: - resolution: {integrity: sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==} - dependencies: - babel-code-frame: 6.26.0 - babel-generator: 6.26.1 - babel-helpers: 6.24.1 - babel-messages: 6.23.0 - babel-register: 6.26.0 - babel-runtime: 6.26.0 - babel-template: 6.26.0 - babel-traverse: 6.26.0 - babel-types: 6.26.0 - babylon: 6.18.0 - convert-source-map: 1.9.0 - debug: 2.6.9(supports-color@6.1.0) - json5: 0.5.1 - lodash: 4.17.21 - minimatch: 3.1.2 - path-is-absolute: 1.0.1 - private: 0.1.8 - slash: 1.0.0 - source-map: 0.5.7 - transitivePeerDependencies: - - supports-color - dev: true - /babel-core@7.0.0-bridge.0(@babel/core@7.24.7): - resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} - peerDependencies: - '@babel/core': ^7.0.0-0 + babel-core@7.0.0-bridge.0(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 - /babel-generator@6.26.1: - resolution: {integrity: sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==} - dependencies: - babel-messages: 6.23.0 - babel-runtime: 6.26.0 - babel-types: 6.26.0 - detect-indent: 4.0.0 - jsesc: 1.3.0 - lodash: 4.17.21 - source-map: 0.5.7 - trim-right: 1.0.1 - dev: true - - /babel-helpers@6.24.1: - resolution: {integrity: sha512-n7pFrqQm44TCYvrCDb0MqabAF+JUBq+ijBvNMUxpkLjJaAu32faIexewMumrH5KLLJ1HDyT0PTEqRyAe/GwwuQ==} - dependencies: - babel-runtime: 6.26.0 - babel-template: 6.26.0 - transitivePeerDependencies: - - supports-color - dev: true - - /babel-jest@26.6.3(@babel/core@7.24.7): - resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} - engines: {node: '>= 10.14.2'} - peerDependencies: - '@babel/core': ^7.0.0 + babel-jest@26.6.3(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 '@jest/transform': 26.6.2 @@ -30988,11 +41895,7 @@ packages: transitivePeerDependencies: - supports-color - /babel-jest@29.7.0(@babel/core@7.24.7): - resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': ^7.8.0 + babel-jest@29.7.0(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 '@jest/transform': 29.7.0 @@ -31005,55 +41908,35 @@ packages: transitivePeerDependencies: - supports-color - /babel-loader@8.3.0(@babel/core@7.24.7)(webpack@5.84.1): - resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} - engines: {node: '>= 8.9'} - peerDependencies: - '@babel/core': ^7.0.0 - webpack: 5.84.1 + babel-loader@8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@babel/core': 7.24.7 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /babel-loader@9.1.3(@babel/core@7.24.7)(webpack@5.84.1): - resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==} - engines: {node: '>= 14.15.0'} - peerDependencies: - '@babel/core': ^7.12.0 - webpack: 5.84.1 + babel-loader@9.1.3(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@babel/core': 7.24.7 find-cache-dir: 4.0.0 schema-utils: 4.2.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /babel-messages@6.23.0: - resolution: {integrity: sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==} + babel-messages@6.23.0: dependencies: babel-runtime: 6.26.0 - dev: true - /babel-plugin-add-react-displayname@0.0.5: - resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} + babel-plugin-add-react-displayname@0.0.5: {} - /babel-plugin-apply-mdx-type-prop@1.6.22(@babel/core@7.12.9): - resolution: {integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==} - peerDependencies: - '@babel/core': ^7.11.6 + babel-plugin-apply-mdx-type-prop@1.6.22(@babel/core@7.12.9): dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 '@mdx-js/util': 1.6.22 - /babel-plugin-const-enum@1.2.0(@babel/core@7.24.7): - resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==} - peerDependencies: - '@babel/core': ^7.0.0-0 + babel-plugin-const-enum@1.2.0(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -31061,16 +41944,12 @@ packages: '@babel/traverse': 7.24.7 transitivePeerDependencies: - supports-color - dev: true - /babel-plugin-extract-import-names@1.6.22: - resolution: {integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==} + babel-plugin-extract-import-names@1.6.22: dependencies: '@babel/helper-plugin-utils': 7.10.4 - /babel-plugin-istanbul@6.1.1: - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} - engines: {node: '>=8'} + babel-plugin-istanbul@6.1.1: dependencies: '@babel/helper-plugin-utils': 7.24.7 '@istanbuljs/load-nyc-config': 1.1.0 @@ -31080,48 +41959,35 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-jest-hoist@26.6.2: - resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==} - engines: {node: '>= 10.14.2'} + babel-plugin-jest-hoist@26.6.2: dependencies: '@babel/template': 7.24.7 '@babel/types': 7.24.7 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.6 - /babel-plugin-jest-hoist@29.6.3: - resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + babel-plugin-jest-hoist@29.6.3: dependencies: '@babel/template': 7.24.7 '@babel/types': 7.24.7 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.6 - /babel-plugin-macros@2.8.0: - resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} + babel-plugin-macros@2.8.0: dependencies: '@babel/runtime': 7.24.7 cosmiconfig: 6.0.0 resolve: 1.22.8 - dev: true - /babel-plugin-macros@3.1.0: - resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} - engines: {node: '>=10', npm: '>=6'} + babel-plugin-macros@3.1.0: dependencies: '@babel/runtime': 7.24.7 cosmiconfig: 7.1.0 resolve: 1.22.8 - /babel-plugin-named-exports-order@0.0.2: - resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==} - dev: false + babel-plugin-named-exports-order@0.0.2: {} - /babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.7): - resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.7): dependencies: '@babel/compat-data': 7.24.7 '@babel/core': 7.24.7 @@ -31130,10 +41996,7 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.24.7): - resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} - peerDependencies: - '@babel/core': ^7.0.0-0 + babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.24.7) @@ -31141,10 +42004,7 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.7): - resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7) @@ -31152,56 +42012,40 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.7): - resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - /babel-plugin-react-docgen@4.2.1: - resolution: {integrity: sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==} + babel-plugin-react-docgen@4.2.1: dependencies: ast-types: 0.14.2 lodash: 4.17.21 react-docgen: 5.4.3 transitivePeerDependencies: - supports-color - dev: false - /babel-plugin-rename-jsx-attribute@0.2.4(babel-core@6.26.3): - resolution: {integrity: sha512-R3kRggMmkXAd465a2q2Y2IceIUJHoyw9q/c0I7i3JdQDHGbUj59OTOR6QjRuB/bII1yH2Xuy/KM5+NNs9NzCGw==} - peerDependencies: - babel-core: ^6.26.3 + babel-plugin-rename-jsx-attribute@0.2.4(babel-core@7.0.0-bridge.0(@babel/core@7.24.7)): dependencies: - babel-core: 6.26.3 - dev: true + babel-core: 7.0.0-bridge.0(@babel/core@7.24.7) - /babel-plugin-styled-components@2.1.4(@babel/core@7.24.7)(styled-components@4.4.1)(supports-color@5.5.0): - resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==} - peerDependencies: - styled-components: '>= 2' + babel-plugin-styled-components@2.1.4(@babel/core@7.24.7)(styled-components@4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(supports-color@5.5.0): dependencies: '@babel/helper-annotate-as-pure': 7.24.7 '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0) '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7) lodash: 4.17.21 picomatch: 2.3.1 - styled-components: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + styled-components: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - '@babel/core' - supports-color - dev: false - /babel-plugin-transform-async-to-promises@0.8.18: - resolution: {integrity: sha512-WpOrF76nUHijnNn10eBGOHZmXQC8JYRME9rOLxStOga7Av2VO53ehVFvVNImMksVtQuL2/7ZNxEgxnx7oo/3Hw==} - dev: true + babel-plugin-transform-async-to-promises@0.8.18: {} - /babel-plugin-transform-es2015-modules-commonjs@6.26.2: - resolution: {integrity: sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==} + babel-plugin-transform-es2015-modules-commonjs@6.26.2: dependencies: babel-plugin-transform-strict-mode: 6.24.1 babel-runtime: 6.26.0 @@ -31209,39 +42053,26 @@ packages: babel-types: 6.26.0 transitivePeerDependencies: - supports-color - dev: true - /babel-plugin-transform-strict-mode@6.24.1: - resolution: {integrity: sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw==} + babel-plugin-transform-strict-mode@6.24.1: dependencies: babel-runtime: 6.26.0 babel-types: 6.26.0 - dev: true - /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.24.7): - resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} - peerDependencies: - '@babel/core': ^7 - '@babel/traverse': ^7 - peerDependenciesMeta: - '@babel/traverse': - optional: true + babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.24.7)(@babel/traverse@7.24.7): dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - dev: true + optionalDependencies: + '@babel/traverse': 7.24.7 - /babel-polyfill@6.26.0: - resolution: {integrity: sha512-F2rZGQnAdaHWQ8YAoeRbukc7HS9QgdgeyJ0rQDd485v9opwuPvjpPFcOOT/WmkKTdgy9ESgSPXDcTNpzrGr6iQ==} + babel-polyfill@6.26.0: dependencies: babel-runtime: 6.26.0 core-js: 2.6.12 regenerator-runtime: 0.10.5 - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.7): - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} - peerDependencies: - '@babel/core': ^7.0.0 + babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7) @@ -31257,48 +42088,24 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.7) - /babel-preset-jest@26.6.2(@babel/core@7.24.7): - resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} - engines: {node: '>= 10.14.2'} - peerDependencies: - '@babel/core': ^7.0.0 + babel-preset-jest@26.6.2(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 babel-plugin-jest-hoist: 26.6.2 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7) - /babel-preset-jest@29.6.3(@babel/core@7.24.7): - resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': ^7.0.0 + babel-preset-jest@29.6.3(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 babel-plugin-jest-hoist: 29.6.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7) - /babel-register@6.26.0: - resolution: {integrity: sha512-veliHlHX06wjaeY8xNITbveXSiI+ASFnOqvne/LaIJIqOWi2Ogmj91KOugEz/hoh/fwMhXNBJPCv8Xaz5CyM4A==} - dependencies: - babel-core: 6.26.3 - babel-runtime: 6.26.0 - core-js: 2.6.12 - home-or-tmp: 2.0.0 - lodash: 4.17.21 - mkdirp: 0.5.6 - source-map-support: 0.4.18 - transitivePeerDependencies: - - supports-color - dev: true - - /babel-runtime@6.26.0: - resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==} + babel-runtime@6.26.0: dependencies: core-js: 2.6.12 regenerator-runtime: 0.11.1 - /babel-template@6.26.0: - resolution: {integrity: sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg==} + babel-template@6.26.0: dependencies: babel-runtime: 6.26.0 babel-traverse: 6.26.0 @@ -31307,10 +42114,8 @@ packages: lodash: 4.17.21 transitivePeerDependencies: - supports-color - dev: true - /babel-traverse@6.26.0: - resolution: {integrity: sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA==} + babel-traverse@6.26.0: dependencies: babel-code-frame: 6.26.0 babel-messages: 6.23.0 @@ -31323,38 +42128,27 @@ packages: lodash: 4.17.21 transitivePeerDependencies: - supports-color - dev: true - /babel-types@6.26.0: - resolution: {integrity: sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==} + babel-types@6.26.0: dependencies: babel-runtime: 6.26.0 esutils: 2.0.3 lodash: 4.17.21 to-fast-properties: 1.0.3 - dev: true - /babylon@6.18.0: - resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==} - hasBin: true - dev: true + babylon@6.18.0: {} - /bail@1.0.5: - resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} + bail@1.0.5: {} - /balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + bail@2.0.2: {} - /base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + balanced-match@1.0.2: {} - /base64url@3.0.1: - resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==} - engines: {node: '>=6.0.0'} + base64-js@1.5.1: {} - /base@0.11.2: - resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} - engines: {node: '>=0.10.0'} + base64url@3.0.1: {} + + base@0.11.2: dependencies: cache-base: 1.0.1 class-utils: 0.3.6 @@ -31364,65 +42158,40 @@ packages: mixin-deep: 1.3.2 pascalcase: 0.1.1 - /basic-auth@2.0.1: - resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} - engines: {node: '>= 0.8'} + basic-auth@2.0.1: dependencies: safe-buffer: 5.1.2 - dev: true - /batch@0.6.1: - resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} + batch@0.6.1: {} - /bcrypt-pbkdf@1.0.2: - resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} + bcrypt-pbkdf@1.0.2: dependencies: tweetnacl: 0.14.5 - dev: true - /before-after-hook@2.2.3: - resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} - dev: true + before-after-hook@2.2.3: {} - /better-opn@2.1.1: - resolution: {integrity: sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==} - engines: {node: '>8.0.0'} + better-opn@2.1.1: dependencies: open: 7.4.2 - dev: false - /better-opn@3.0.2: - resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==} - engines: {node: '>=12.0.0'} + better-opn@3.0.2: dependencies: open: 8.4.2 - dev: true - /better-path-resolve@1.0.0: - resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} - engines: {node: '>=4'} + better-path-resolve@1.0.0: dependencies: is-windows: 1.0.2 - dev: true - /big-integer@1.6.52: - resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} - engines: {node: '>=0.6'} + big-integer@1.6.52: {} - /big.js@5.2.2: - resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + big.js@5.2.2: {} - /bin-check@4.1.0: - resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==} - engines: {node: '>=4'} + bin-check@4.1.0: dependencies: execa: 0.7.0 executable: 4.1.1 - dev: true - /bin-links@3.0.3: - resolution: {integrity: sha512-zKdnMPWEdh4F5INR07/eBrodC7QrF5JKvqskjz/ZZRXg5YSAZIbn8zGhbhUrElzHBZ2fvEQdOU59RHcTG3GiwA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + bin-links@3.0.3: dependencies: cmd-shim: 5.0.0 mkdirp-infer-owner: 2.0.0 @@ -31430,59 +42199,38 @@ packages: read-cmd-shim: 3.0.1 rimraf: 3.0.2 write-file-atomic: 4.0.2 - dev: true - /bin-version-check@5.1.0: - resolution: {integrity: sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==} - engines: {node: '>=12'} + bin-version-check@5.1.0: dependencies: bin-version: 6.0.0 semver: 7.6.2 semver-truncate: 3.0.0 - dev: true - /bin-version@6.0.0: - resolution: {integrity: sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==} - engines: {node: '>=12'} + bin-version@6.0.0: dependencies: execa: 5.1.1 find-versions: 5.1.0 - dev: true - /binary-extensions@1.13.1: - resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==} - engines: {node: '>=0.10.0'} + binary-extensions@1.13.1: {} - /binary-extensions@2.3.0: - resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} - engines: {node: '>=8'} + binary-extensions@2.3.0: {} - /bindings@1.5.0: - resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} - requiresBuild: true + bindings@1.5.0: dependencies: file-uri-to-path: 1.0.0 optional: true - /bl@4.1.0: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + bl@4.1.0: dependencies: buffer: 5.7.1 inherits: 2.0.4 readable-stream: 3.6.2 - dev: true - /blob-util@2.0.2: - resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} - dev: true + blob-util@2.0.2: {} - /bluebird@3.7.2: - resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} - dev: true + bluebird@3.7.2: {} - /body-parser@1.20.2(supports-color@6.1.0): - resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + body-parser@1.20.2(supports-color@6.1.0): dependencies: bytes: 3.1.2 content-type: 1.0.5 @@ -31499,15 +42247,12 @@ packages: transitivePeerDependencies: - supports-color - /bonjour-service@1.2.1: - resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==} + bonjour-service@1.2.1: dependencies: fast-deep-equal: 3.1.3 multicast-dns: 7.2.5 - dev: true - /bonjour@3.5.0: - resolution: {integrity: sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==} + bonjour@3.5.0: dependencies: array-flatten: 2.1.2 deep-equal: 1.1.2 @@ -31516,12 +42261,9 @@ packages: multicast-dns: 6.2.3 multicast-dns-service-types: 1.1.0 - /boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + boolbase@1.0.0: {} - /boxen@5.1.2: - resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} - engines: {node: '>=10'} + boxen@5.1.2: dependencies: ansi-align: 3.0.1 camelcase: 6.3.0 @@ -31531,37 +42273,26 @@ packages: type-fest: 0.20.2 widest-line: 3.1.0 wrap-ansi: 7.0.0 - dev: false - /bplist-parser@0.1.1: - resolution: {integrity: sha512-2AEM0FXy8ZxVLBuqX0hqt1gDwcnz2zygEkQ6zaD5Wko/sB9paUNwlpawrFtKeHUAQUOzjVy9AO4oeonqIHKA9Q==} - requiresBuild: true + bplist-parser@0.1.1: dependencies: big-integer: 1.6.52 - dev: false optional: true - /bplist-parser@0.2.0: - resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} - engines: {node: '>= 5.10.0'} + bplist-parser@0.2.0: dependencies: big-integer: 1.6.52 - dev: true - /brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + brace-expansion@1.1.11: dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 - /brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + brace-expansion@2.0.1: dependencies: balanced-match: 1.0.2 - /braces@2.3.2(supports-color@6.1.0): - resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} - engines: {node: '>=0.10.0'} + braces@2.3.2(supports-color@6.1.0): dependencies: arr-flatten: 1.1.0 array-unique: 0.3.2 @@ -31576,106 +42307,68 @@ packages: transitivePeerDependencies: - supports-color - /braces@3.0.3: - resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} - engines: {node: '>=8'} + braces@3.0.3: dependencies: fill-range: 7.1.1 - /breakword@1.0.6: - resolution: {integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==} + breakword@1.0.6: dependencies: wcwidth: 1.0.1 - dev: true - /browser-assert@1.2.1: - resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==} + browser-assert@1.2.1: {} - /browser-process-hrtime@1.0.0: - resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} - dev: true + browser-process-hrtime@1.0.0: {} - /browserify-zlib@0.1.4: - resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==} + browserify-zlib@0.1.4: dependencies: pako: 0.2.9 - dev: true - /browserslist@4.23.1: - resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true + browserslist@4.23.1: dependencies: caniuse-lite: 1.0.30001636 electron-to-chromium: 1.4.810 node-releases: 2.0.14 update-browserslist-db: 1.0.16(browserslist@4.23.1) - /bs-logger@0.2.6: - resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} - engines: {node: '>= 6'} + bs-logger@0.2.6: dependencies: fast-json-stable-stringify: 2.1.0 - /bser@2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + bser@2.1.1: dependencies: node-int64: 0.4.0 - /buffer-crc32@0.2.13: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + buffer-crc32@0.2.13: {} - /buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + buffer-from@1.1.2: {} - /buffer-indexof@1.1.1: - resolution: {integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==} + buffer-indexof@1.1.1: {} - /buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + buffer@5.7.1: dependencies: base64-js: 1.5.1 ieee754: 1.2.1 - dev: true - /buffer@6.0.3: - resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + buffer@6.0.3: dependencies: base64-js: 1.5.1 ieee754: 1.2.1 - /builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: '>=6'} - dev: true + builtin-modules@3.3.0: {} - /builtins@1.0.3: - resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==} - dev: true + builtins@1.0.3: {} - /builtins@5.1.0: - resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==} + builtins@5.1.0: dependencies: semver: 7.6.2 - dev: true - /byte-size@7.0.1: - resolution: {integrity: sha512-crQdqyCwhokxwV1UyDzLZanhkugAgft7vt0qbbdt60C6Zf3CAiGmtUCylbtYwrU6loOUw3euGrNtW1J651ot1A==} - engines: {node: '>=10'} - dev: true + byte-size@7.0.1: {} - /bytes@3.0.0: - resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} - engines: {node: '>= 0.8'} + bytes@3.0.0: {} - /bytes@3.1.2: - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} - engines: {node: '>= 0.8'} + bytes@3.1.2: {} - /c8@7.14.0: - resolution: {integrity: sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw==} - engines: {node: '>=10.12.0'} - hasBin: true + c8@7.14.0: dependencies: '@bcoe/v8-coverage': 0.2.3 '@istanbuljs/schema': 0.1.3 @@ -31689,11 +42382,8 @@ packages: v8-to-istanbul: 9.3.0 yargs: 16.2.0 yargs-parser: 20.2.9 - dev: false - /cacache@15.3.0: - resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==} - engines: {node: '>= 10'} + cacache@15.3.0: dependencies: '@npmcli/fs': 1.1.1 '@npmcli/move-file': 1.1.2 @@ -31715,11 +42405,8 @@ packages: unique-filename: 1.1.1 transitivePeerDependencies: - bluebird - dev: false - /cacache@16.1.3: - resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + cacache@16.1.3: dependencies: '@npmcli/fs': 2.1.2 '@npmcli/move-file': 2.0.1 @@ -31741,11 +42428,8 @@ packages: unique-filename: 2.0.1 transitivePeerDependencies: - bluebird - dev: true - /cache-base@1.0.1: - resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} - engines: {node: '>=0.10.0'} + cache-base@1.0.1: dependencies: collection-visit: 1.0.0 component-emitter: 1.3.1 @@ -31757,14 +42441,9 @@ packages: union-value: 1.0.1 unset-value: 1.0.0 - /cacheable-lookup@5.0.4: - resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} - engines: {node: '>=10.6.0'} - dev: true + cacheable-lookup@5.0.4: {} - /cacheable-request@6.1.0: - resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} - engines: {node: '>=8'} + cacheable-request@6.1.0: dependencies: clone-response: 1.0.3 get-stream: 5.2.0 @@ -31773,11 +42452,8 @@ packages: lowercase-keys: 2.0.0 normalize-url: 4.5.1 responselike: 1.0.2 - dev: false - /cacheable-request@7.0.4: - resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} - engines: {node: '>=8'} + cacheable-request@7.0.4: dependencies: clone-response: 1.0.3 get-stream: 5.2.0 @@ -31786,26 +42462,17 @@ packages: lowercase-keys: 2.0.0 normalize-url: 6.1.0 responselike: 2.0.1 - dev: true - /cachedir@2.4.0: - resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==} - engines: {node: '>=6'} - dev: true + cachedir@2.4.0: {} - /caching-transform@4.0.0: - resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==} - engines: {node: '>=8'} + caching-transform@4.0.0: dependencies: hasha: 5.2.2 make-dir: 3.1.0 package-hash: 4.0.0 write-file-atomic: 3.0.3 - dev: true - /call-bind@1.0.7: - resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} - engines: {node: '>= 0.4'} + call-bind@1.0.7: dependencies: es-define-property: 1.0.0 es-errors: 1.3.0 @@ -31813,178 +42480,121 @@ packages: get-intrinsic: 1.2.4 set-function-length: 1.2.2 - /call-me-maybe@1.0.2: - resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} - dev: false + call-me-maybe@1.0.2: {} - /caller-callsite@2.0.0: - resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} - engines: {node: '>=4'} + caller-callsite@2.0.0: dependencies: callsites: 2.0.0 - /caller-path@2.0.0: - resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} - engines: {node: '>=4'} + caller-path@2.0.0: dependencies: caller-callsite: 2.0.0 - /callsites@2.0.0: - resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} - engines: {node: '>=4'} + callsites@2.0.0: {} - /callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} + callsites@3.1.0: {} - /camel-case@4.1.2: - resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} + camel-case@4.1.2: dependencies: pascal-case: 3.1.2 tslib: 2.6.3 - /camelcase-css@2.0.1: - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: '>= 6'} + camelcase-css@2.0.1: {} - /camelcase-keys@2.1.0: - resolution: {integrity: sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==} - engines: {node: '>=0.10.0'} - requiresBuild: true + camelcase-keys@2.1.0: dependencies: camelcase: 2.1.1 map-obj: 1.0.1 - dev: false optional: true - /camelcase-keys@6.2.2: - resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} - engines: {node: '>=8'} + camelcase-keys@6.2.2: dependencies: camelcase: 5.3.1 map-obj: 4.3.0 quick-lru: 4.0.1 - dev: true - /camelcase@2.1.1: - resolution: {integrity: sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==} - engines: {node: '>=0.10.0'} - requiresBuild: true - dev: false + camelcase@2.1.1: optional: true - /camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} + camelcase@5.3.1: {} - /camelcase@6.3.0: - resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} - engines: {node: '>=10'} + camelcase@6.3.0: {} - /camelize@1.0.1: - resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} - dev: false + camelize@1.0.1: {} - /caniuse-api@3.0.0: - resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} + caniuse-api@3.0.0: dependencies: browserslist: 4.23.1 caniuse-lite: 1.0.30001636 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 - dev: true - /caniuse-lite@1.0.30001636: - resolution: {integrity: sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==} + caniuse-lite@1.0.30001636: {} - /capture-exit@2.0.0: - resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} - engines: {node: 6.* || 8.* || >= 10.*} + capture-exit@2.0.0: dependencies: rsvp: 4.8.5 - /case-sensitive-paths-webpack-plugin@2.4.0: - resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} - engines: {node: '>=4'} + case-sensitive-paths-webpack-plugin@2.4.0: {} - /caseless@0.12.0: - resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} - dev: true + caseless@0.12.0: {} - /ccount@1.1.0: - resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==} + ccount@1.1.0: {} - /chalk@1.1.3: - resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} - engines: {node: '>=0.10.0'} + ccount@2.0.1: {} + + chalk@1.1.3: dependencies: ansi-styles: 2.2.1 escape-string-regexp: 1.0.5 has-ansi: 2.0.0 strip-ansi: 3.0.1 supports-color: 2.0.0 - dev: true - /chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} + chalk@2.4.2: dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 supports-color: 5.5.0 - /chalk@3.0.0: - resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} - engines: {node: '>=8'} + chalk@3.0.0: dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 - dev: true - /chalk@4.1.1: - resolution: {integrity: sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==} - engines: {node: '>=10'} + chalk@4.1.1: dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 - dev: true - /chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} + chalk@4.1.2: dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 - /char-regex@1.0.2: - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} - engines: {node: '>=10'} + char-regex@1.0.2: {} - /character-entities-legacy@1.1.4: - resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} + character-entities-html4@2.1.0: {} - /character-entities@1.2.4: - resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} + character-entities-legacy@1.1.4: {} - /character-reference-invalid@1.1.4: - resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} + character-entities-legacy@3.0.0: {} - /chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} - dev: true + character-entities@1.2.4: {} - /check-more-types@2.24.0: - resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} - engines: {node: '>= 0.8.0'} - dev: true + character-entities@2.0.2: {} - /child_process@1.0.2: - resolution: {integrity: sha512-Wmza/JzL0SiWz7kl6MhIKT5ceIlnFPJX+lwUGj7Clhy5MMldsSoJR0+uvRzOS5Kv45Mq7t1PoE8TsOA9bzvb6g==} - dev: true + character-reference-invalid@1.1.4: {} - /chokidar@2.1.8(supports-color@6.1.0): - resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==} - deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies + character-reference-invalid@2.0.1: {} + + chardet@0.7.0: {} + + check-more-types@2.24.0: {} + + child_process@1.0.2: {} + + chokidar@2.1.8(supports-color@6.1.0): dependencies: anymatch: 2.0.0(supports-color@6.1.0) async-each: 1.0.6 @@ -32002,9 +42612,7 @@ packages: transitivePeerDependencies: - supports-color - /chokidar@3.6.0: - resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} - engines: {node: '>= 8.10.0'} + chokidar@3.6.0: dependencies: anymatch: 3.1.3 braces: 3.0.3 @@ -32016,367 +42624,223 @@ packages: optionalDependencies: fsevents: 2.3.3 - /chownr@1.1.4: - resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} - dev: true + chownr@1.1.4: {} - /chownr@2.0.0: - resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} - engines: {node: '>=10'} + chownr@2.0.0: {} - /chrome-trace-event@1.0.4: - resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} - engines: {node: '>=6.0'} + chrome-trace-event@1.0.4: {} - /ci-info@2.0.0: - resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} + ci-info@2.0.0: {} - /ci-info@3.9.0: - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} - engines: {node: '>=8'} + ci-info@3.9.0: {} - /citty@0.1.6: - resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} + citty@0.1.6: dependencies: consola: 3.2.3 - dev: true - /cjs-module-lexer@0.6.0: - resolution: {integrity: sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==} - dev: true + cjs-module-lexer@0.6.0: {} - /cjs-module-lexer@1.3.1: - resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==} + cjs-module-lexer@1.3.1: {} - /class-utils@0.3.6: - resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} - engines: {node: '>=0.10.0'} + class-utils@0.3.6: dependencies: arr-union: 3.1.0 define-property: 0.2.5 isobject: 3.0.1 static-extend: 0.1.2 - /classcat@5.0.5: - resolution: {integrity: sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==} - dev: false + classcat@5.0.5: {} - /classnames@2.5.1: - resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==} + classnames@2.5.1: {} - /clean-css@4.2.4: - resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==} - engines: {node: '>= 4.0'} + clean-css@4.2.4: dependencies: source-map: 0.6.1 - /clean-css@5.3.3: - resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} - engines: {node: '>= 10.0'} + clean-css@5.3.3: dependencies: source-map: 0.6.1 - /clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} + clean-stack@2.2.0: {} - /cli-boxes@2.2.1: - resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} - engines: {node: '>=6'} - dev: false + cli-boxes@2.2.1: {} - /cli-cursor@3.1.0: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} - engines: {node: '>=8'} + cli-cursor@3.1.0: dependencies: restore-cursor: 3.1.0 - dev: true - /cli-spinners@2.6.1: - resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} - engines: {node: '>=6'} - dev: true + cli-spinners@2.6.1: {} - /cli-spinners@2.9.2: - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} - engines: {node: '>=6'} - dev: true + cli-spinners@2.9.2: {} - /cli-table3@0.6.5: - resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} - engines: {node: 10.* || >= 12.*} + cli-table3@0.6.5: dependencies: string-width: 4.2.3 optionalDependencies: '@colors/colors': 1.5.0 - /cli-truncate@2.1.0: - resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} - engines: {node: '>=8'} + cli-truncate@2.1.0: dependencies: slice-ansi: 3.0.0 string-width: 4.2.3 - dev: true - /cli-width@3.0.0: - resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} - engines: {node: '>= 10'} - dev: true + cli-width@3.0.0: {} - /cli@1.0.1: - resolution: {integrity: sha512-41U72MB56TfUMGndAKK8vJ78eooOD4Z5NOL4xEfjc0c23s+6EYKXlXsmACBVclLP1yOfWCgEganVzddVrSNoTg==} - engines: {node: '>=0.2.5'} + cli@1.0.1: dependencies: exit: 0.1.2 glob: 7.2.3 - dev: false - /client-only@0.0.1: - resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} - dev: false + client-only@0.0.1: {} - /cliui@5.0.0: - resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==} + cliui@5.0.0: dependencies: string-width: 3.1.0 strip-ansi: 5.2.0 wrap-ansi: 5.1.0 - /cliui@6.0.0: - resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + cliui@6.0.0: dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 6.2.0 - dev: true - /cliui@7.0.4: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + cliui@7.0.4: dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - /cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} + cliui@8.0.1: dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - /clone-deep@0.2.4: - resolution: {integrity: sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==} - engines: {node: '>=0.10.0'} + clone-deep@0.2.4: dependencies: for-own: 0.1.5 is-plain-object: 2.0.4 kind-of: 3.2.2 lazy-cache: 1.0.4 shallow-clone: 0.1.2 - dev: true - /clone-deep@4.0.1: - resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} - engines: {node: '>=6'} + clone-deep@4.0.1: dependencies: is-plain-object: 2.0.4 kind-of: 6.0.3 shallow-clone: 3.0.1 - /clone-response@1.0.3: - resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} + clone-response@1.0.3: dependencies: mimic-response: 1.0.1 - /clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} - dev: true + clone@1.0.4: {} - /clone@2.1.2: - resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} - engines: {node: '>=0.8'} - dev: true + clone@2.1.2: {} - /clsx@1.2.1: - resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} - engines: {node: '>=6'} - dev: false + clsx@1.2.1: {} - /clsx@2.1.1: - resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} - engines: {node: '>=6'} - dev: false + clsx@2.1.1: {} - /cmd-shim@5.0.0: - resolution: {integrity: sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + cmd-shim@5.0.0: dependencies: mkdirp-infer-owner: 2.0.0 - dev: true - /co@4.6.0: - resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + co@4.6.0: {} - /coa@2.0.2: - resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} - engines: {node: '>= 4.0'} + coa@2.0.2: dependencies: '@types/q': 1.5.8 chalk: 2.4.2 q: 1.5.1 - dev: true - /codemirror@5.65.16: - resolution: {integrity: sha512-br21LjYmSlVL0vFCPWPfhzUCT34FM/pAdK7rRIZwa0rrtrIdotvP4Oh4GUHsu2E3IrQMCfRkL/fN3ytMNxVQvg==} - dev: false + codemirror@5.65.16: {} - /coffee-script@1.12.7: - resolution: {integrity: sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==} - engines: {node: '>=0.8.0'} - deprecated: CoffeeScript on NPM has moved to "coffeescript" (no hyphen) - hasBin: true - dev: true + coffee-script@1.12.7: {} - /collapse-white-space@1.0.6: - resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==} + collapse-white-space@1.0.6: {} - /collect-v8-coverage@1.0.2: - resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} + collect-v8-coverage@1.0.2: {} - /collection-visit@1.0.0: - resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} - engines: {node: '>=0.10.0'} + collection-visit@1.0.0: dependencies: map-visit: 1.0.0 object-visit: 1.0.1 - /color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + color-convert@1.9.3: dependencies: color-name: 1.1.3 - /color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} + color-convert@2.0.1: dependencies: color-name: 1.1.4 - /color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + color-name@1.1.3: {} - /color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + color-name@1.1.4: {} - /color-support@1.1.3: - resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} - hasBin: true + color-support@1.1.3: {} - /colord@2.9.3: - resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} - dev: true + colord@2.9.3: {} - /colorette@1.4.0: - resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} + colorette@1.4.0: {} - /colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + colorette@2.0.20: {} - /columnify@1.6.0: - resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==} - engines: {node: '>=8.0.0'} + columnify@1.6.0: dependencies: strip-ansi: 6.0.1 wcwidth: 1.0.1 - dev: true - /combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} + combined-stream@1.0.8: dependencies: delayed-stream: 1.0.0 - /comma-separated-tokens@1.0.8: - resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} + comma-separated-tokens@1.0.8: {} - /commander@10.0.1: - resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} - engines: {node: '>=14'} - dev: false + comma-separated-tokens@2.0.3: {} - /commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + commander@10.0.1: {} - /commander@4.1.1: - resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} - engines: {node: '>= 6'} - dev: false + commander@2.20.3: {} - /commander@5.1.0: - resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} - engines: {node: '>= 6'} - dev: true + commander@4.1.1: {} - /commander@6.2.1: - resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} - engines: {node: '>= 6'} + commander@5.1.0: {} - /commander@7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} - engines: {node: '>= 10'} + commander@6.2.1: {} - /commander@8.3.0: - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} - engines: {node: '>= 12'} + commander@7.2.0: {} - /common-ancestor-path@1.0.1: - resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} - dev: true + commander@8.3.0: {} - /common-path-prefix@3.0.0: - resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} - dev: true + common-ancestor-path@1.0.1: {} - /common-tags@1.8.2: - resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} - engines: {node: '>=4.0.0'} - dev: true + common-path-prefix@3.0.0: {} - /commondir@1.0.1: - resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + common-tags@1.8.2: {} - /compare-func@2.0.0: - resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + commondir@1.0.1: {} + + compare-func@2.0.0: dependencies: array-ify: 1.0.0 dot-prop: 5.3.0 - dev: true - /component-emitter@1.3.1: - resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==} + component-emitter@1.3.1: {} - /compressible@2.0.18: - resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} - engines: {node: '>= 0.6'} + compressible@2.0.18: dependencies: mime-db: 1.52.0 - /compression-webpack-plugin@7.1.2(webpack@5.84.1): - resolution: {integrity: sha512-9DKNW6ILLjx+bNBoviHDgLx6swBhWWH9ApClC9sTH2NoFfQM47BapQfovCm9zjD9v1uZwInF5a925FB9ErGQeQ==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 + compression-webpack-plugin@7.1.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: schema-utils: 3.3.0 serialize-javascript: 5.0.1 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /compression@1.7.4(supports-color@6.1.0): - resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} - engines: {node: '>= 0.8.0'} + compression@1.7.4(supports-color@6.1.0): dependencies: accepts: 1.3.8 bytes: 3.0.0 @@ -32388,47 +42852,34 @@ packages: transitivePeerDependencies: - supports-color - /concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + concat-map@0.0.1: {} - /concat-stream@1.6.2: - resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} - engines: {'0': node >= 0.8} + concat-stream@1.6.2: dependencies: buffer-from: 1.1.2 inherits: 2.0.4 readable-stream: 2.3.8 typedarray: 0.0.6 - /concat-stream@2.0.0: - resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} - engines: {'0': node >= 6.0} + concat-stream@2.0.0: dependencies: buffer-from: 1.1.2 inherits: 2.0.4 readable-stream: 3.6.2 typedarray: 0.0.6 - dev: true - /concat-with-sourcemaps@1.1.0: - resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==} + concat-with-sourcemaps@1.1.0: dependencies: source-map: 0.6.1 - dev: true - /confbox@0.1.7: - resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==} - dev: true + confbox@0.1.7: {} - /config-chain@1.1.13: - resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} + config-chain@1.1.13: dependencies: ini: 1.3.8 proto-list: 1.2.4 - /configstore@5.0.1: - resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} - engines: {node: '>=8'} + configstore@5.0.1: dependencies: dot-prop: 5.3.0 graceful-fs: 4.2.11 @@ -32436,60 +42887,35 @@ packages: unique-string: 2.0.0 write-file-atomic: 3.0.3 xdg-basedir: 4.0.0 - dev: false - /confusing-browser-globals@1.0.11: - resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} - dev: true + confusing-browser-globals@1.0.11: {} - /connect-history-api-fallback@1.6.0: - resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==} - engines: {node: '>=0.8'} + connect-history-api-fallback@1.6.0: {} - /connect-history-api-fallback@2.0.0: - resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} - engines: {node: '>=0.8'} - dev: true + connect-history-api-fallback@2.0.0: {} - /consola@3.2.3: - resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} - engines: {node: ^14.18.0 || >=16.10.0} - dev: true + consola@3.2.3: {} - /console-browserify@1.1.0: - resolution: {integrity: sha512-duS7VP5pvfsNLDvL1O4VOEbw37AI3A4ZUQYemvDlnpGrNu9tprR7BYWpDYwC0Xia0Zxz5ZupdiIrUp0GH1aXfg==} + console-browserify@1.1.0: dependencies: date-now: 0.1.4 - dev: false - /console-control-strings@1.1.0: - resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + console-control-strings@1.1.0: {} - /constants-browserify@1.0.0: - resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} - dev: true + constants-browserify@1.0.0: {} - /content-disposition@0.5.4: - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} - engines: {node: '>= 0.6'} + content-disposition@0.5.4: dependencies: safe-buffer: 5.2.1 - /content-type@1.0.5: - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} - engines: {node: '>= 0.6'} + content-type@1.0.5: {} - /conventional-changelog-angular@5.0.13: - resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} - engines: {node: '>=10'} + conventional-changelog-angular@5.0.13: dependencies: compare-func: 2.0.0 q: 1.5.1 - dev: true - /conventional-changelog-core@4.2.4: - resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==} - engines: {node: '>=10'} + conventional-changelog-core@4.2.4: dependencies: add-stream: 1.0.0 conventional-changelog-writer: 5.0.1 @@ -32505,17 +42931,10 @@ packages: read-pkg: 3.0.0 read-pkg-up: 3.0.0 through2: 4.0.2 - dev: true - /conventional-changelog-preset-loader@2.3.4: - resolution: {integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==} - engines: {node: '>=10'} - dev: true + conventional-changelog-preset-loader@2.3.4: {} - /conventional-changelog-writer@5.0.1: - resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==} - engines: {node: '>=10'} - hasBin: true + conventional-changelog-writer@5.0.1: dependencies: conventional-commits-filter: 2.0.7 dateformat: 3.0.3 @@ -32526,20 +42945,13 @@ packages: semver: 6.3.1 split: 1.0.1 through2: 4.0.2 - dev: true - /conventional-commits-filter@2.0.7: - resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==} - engines: {node: '>=10'} + conventional-commits-filter@2.0.7: dependencies: lodash.ismatch: 4.4.0 modify-values: 1.0.1 - dev: true - /conventional-commits-parser@3.2.4: - resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} - engines: {node: '>=10'} - hasBin: true + conventional-commits-parser@3.2.4: dependencies: JSONStream: 1.3.5 is-text-path: 1.0.1 @@ -32547,12 +42959,8 @@ packages: meow: 8.1.2 split2: 3.2.2 through2: 4.0.2 - dev: true - /conventional-recommended-bump@6.1.0: - resolution: {integrity: sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==} - engines: {node: '>=10'} - hasBin: true + conventional-recommended-bump@6.1.0: dependencies: concat-stream: 2.0.0 conventional-changelog-preset-loader: 2.3.4 @@ -32562,41 +42970,24 @@ packages: git-semver-tags: 4.1.1 meow: 8.1.2 q: 1.5.1 - dev: true - /convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + convert-source-map@1.9.0: {} - /convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + convert-source-map@2.0.0: {} - /cookie-signature@1.0.6: - resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + cookie-signature@1.0.6: {} - /cookie@0.4.2: - resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} - engines: {node: '>= 0.6'} - dev: true + cookie@0.4.2: {} - /cookie@0.6.0: - resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} - engines: {node: '>= 0.6'} + cookie@0.6.0: {} - /copy-anything@2.0.6: - resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} + copy-anything@2.0.6: dependencies: is-what: 3.14.1 - dev: true - /copy-descriptor@0.1.1: - resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} - engines: {node: '>=0.10.0'} + copy-descriptor@0.1.1: {} - /copy-webpack-plugin@10.2.4(webpack@5.84.1): - resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==} - engines: {node: '>= 12.20.0'} - peerDependencies: - webpack: 5.84.1 + copy-webpack-plugin@10.2.4(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: fast-glob: 3.3.2 glob-parent: 6.0.2 @@ -32604,14 +42995,9 @@ packages: normalize-path: 3.0.0 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /copy-webpack-plugin@12.0.2(webpack@5.84.1): - resolution: {integrity: sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==} - engines: {node: '>= 18.12.0'} - peerDependencies: - webpack: 5.84.1 + copy-webpack-plugin@12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: fast-glob: 3.3.2 glob-parent: 6.0.2 @@ -32619,51 +43005,32 @@ packages: normalize-path: 3.0.0 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /core-js-compat@3.37.1: - resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==} + core-js-compat@3.37.1: dependencies: browserslist: 4.23.1 - /core-js-pure@3.37.1: - resolution: {integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==} - requiresBuild: true + core-js-pure@3.37.1: {} - /core-js@2.6.12: - resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} - deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. - requiresBuild: true + core-js@2.6.12: {} - /core-js@3.37.1: - resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==} - requiresBuild: true + core-js@3.37.1: {} - /core-util-is@1.0.2: - resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} - dev: true + core-util-is@1.0.2: {} - /core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + core-util-is@1.0.3: {} - /corser@2.0.1: - resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==} - engines: {node: '>= 0.4.0'} - dev: true + corser@2.0.1: {} - /cosmiconfig@5.2.1: - resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} - engines: {node: '>=4'} + cosmiconfig@5.2.1: dependencies: import-fresh: 2.0.0 is-directory: 0.3.1 js-yaml: 3.13.1 parse-json: 4.0.0 - /cosmiconfig@6.0.0: - resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} - engines: {node: '>=8'} + cosmiconfig@6.0.0: dependencies: '@types/parse-json': 4.0.2 import-fresh: 3.3.0 @@ -32671,9 +43038,7 @@ packages: path-type: 4.0.0 yaml: 1.10.2 - /cosmiconfig@7.1.0: - resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} - engines: {node: '>=10'} + cosmiconfig@7.1.0: dependencies: '@types/parse-json': 4.0.2 import-fresh: 3.3.0 @@ -32681,42 +43046,28 @@ packages: path-type: 4.0.0 yaml: 1.10.2 - /cosmiconfig@8.3.6(typescript@5.1.6): - resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} - engines: {node: '>=14'} - peerDependencies: - typescript: '>=4.9.5' - peerDependenciesMeta: - typescript: - optional: true + cosmiconfig@8.3.6(typescript@5.1.6): dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 + optionalDependencies: typescript: 5.1.6 - dev: true - /country-language@0.1.7: - resolution: {integrity: sha512-QH8GvZehR0IsFSR8ZPzteaCq/JjsLKk+tHWSQciXVpredI/2Xaf1VAdCuo/XPFWSrRCkSLaZNqnOcot4zceAIw==} + country-language@0.1.7: dependencies: underscore: 1.7.0 underscore.deep: 0.5.3(underscore@1.7.0) - dev: false - /cp-file@7.0.0: - resolution: {integrity: sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==} - engines: {node: '>=8'} + cp-file@7.0.0: dependencies: graceful-fs: 4.2.11 make-dir: 3.1.0 nested-error-stacks: 2.1.1 p-event: 4.2.0 - dev: false - /cpy@8.1.2: - resolution: {integrity: sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==} - engines: {node: '>=8'} + cpy@8.1.2: dependencies: arrify: 2.0.1 cp-file: 7.0.0 @@ -32729,18 +43080,14 @@ packages: p-map: 3.0.0 transitivePeerDependencies: - supports-color - dev: false - /create-jest@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): - resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true + create-jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -32749,16 +43096,13 @@ packages: - supports-color - ts-node - /create-jest@29.7.0(@types/node@18.11.9): - resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true + create-jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@18.11.9) + jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -32767,21 +43111,30 @@ packages: - supports-color - ts-node - /create-require@1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - dev: true + create-jest@29.7.0(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)): + dependencies: + '@jest/types': 29.6.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-config: 29.7.0(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)) + jest-util: 29.7.0 + prompts: 2.4.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node - /cross-spawn@5.1.0: - resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} + create-require@1.1.1: {} + + cross-spawn@5.1.0: dependencies: lru-cache: 4.1.5 shebang-command: 1.2.0 which: 1.3.1 - dev: true - /cross-spawn@6.0.5: - resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} - engines: {node: '>=4.8'} + cross-spawn@6.0.5: dependencies: nice-try: 1.0.5 path-key: 2.0.1 @@ -32789,50 +43142,27 @@ packages: shebang-command: 1.2.0 which: 1.3.1 - /cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} + cross-spawn@7.0.3: dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 - /crypto-js@3.3.0: - resolution: {integrity: sha512-DIT51nX0dCfKltpRiXV+/TVZq+Qq2NgF4644+K7Ttnla7zEzqc+kjJyiB96BHNyUTBxyjzRcZYpUdZa+QAqi6Q==} - dev: false + crypto-js@3.3.0: {} - /crypto-random-string@2.0.0: - resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} - engines: {node: '>=8'} + crypto-random-string@2.0.0: {} - /css-color-keywords@1.0.0: - resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} - engines: {node: '>=4'} - dev: false + css-color-keywords@1.0.0: {} - /css-declaration-sorter@6.4.1(postcss@8.4.39): - resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} - engines: {node: ^10 || ^12 || >=14} - peerDependencies: - postcss: ^8.0.9 + css-declaration-sorter@6.4.1(postcss@8.4.39): dependencies: postcss: 8.4.39 - dev: true - /css-declaration-sorter@7.2.0(postcss@8.4.39): - resolution: {integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==} - engines: {node: ^14 || ^16 || >=18} - peerDependencies: - postcss: ^8.0.9 + css-declaration-sorter@7.2.0(postcss@8.4.39): dependencies: postcss: 8.4.39 - dev: true - /css-loader@1.0.1(webpack@5.84.1): - resolution: {integrity: sha512-+ZHAZm/yqvJ2kDtPne3uX0C+Vr3Zn5jFn2N4HywtS5ujwvsVkyg0VArEXpl3BgczDA8anieki1FIzhchX4yrDw==} - engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 + css-loader@1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: babel-code-frame: 6.26.0 css-selector-tokenizer: 0.7.3 @@ -32846,14 +43176,9 @@ packages: postcss-modules-values: 1.3.0 postcss-value-parser: 3.3.1 source-list-map: 2.0.1 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /css-loader@3.6.0(webpack@5.84.1): - resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==} - engines: {node: '>= 8.9.0'} - peerDependencies: - webpack: 5.84.1 + css-loader@3.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: camelcase: 5.3.1 cssesc: 3.0.0 @@ -32868,14 +43193,9 @@ packages: postcss-value-parser: 4.2.0 schema-utils: 2.7.1 semver: 6.3.1 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: false + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /css-loader@5.2.7(webpack@5.84.1): - resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 + css-loader@5.2.7(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: icss-utils: 5.1.0(postcss@8.4.39) loader-utils: 2.0.4 @@ -32887,20 +43207,9 @@ packages: postcss-value-parser: 4.2.0 schema-utils: 3.3.0 semver: 7.6.2 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: false + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /css-loader@6.11.0(webpack@5.84.1): - resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==} - engines: {node: '>= 12.13.0'} - peerDependencies: - '@rspack/core': 0.x || 1.x - webpack: 5.84.1 - peerDependenciesMeta: - '@rspack/core': - optional: true - webpack: - optional: true + css-loader@6.11.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: icss-utils: 5.1.0(postcss@8.4.39) postcss: 8.4.39 @@ -32910,59 +43219,31 @@ packages: postcss-modules-values: 4.0.0(postcss@8.4.39) postcss-value-parser: 4.2.0 semver: 7.6.2 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + optionalDependencies: + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /css-minimizer-webpack-plugin@5.0.1(esbuild@0.18.20)(webpack@5.84.1): - resolution: {integrity: sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==} - engines: {node: '>= 14.15.0'} - peerDependencies: - '@parcel/css': '*' - '@swc/css': '*' - clean-css: '*' - csso: '*' - esbuild: '*' - lightningcss: '*' - webpack: 5.84.1 - peerDependenciesMeta: - '@parcel/css': - optional: true - '@swc/css': - optional: true - clean-css: - optional: true - csso: - optional: true - esbuild: - optional: true - lightningcss: - optional: true + css-minimizer-webpack-plugin@5.0.1(esbuild@0.18.20)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@jridgewell/trace-mapping': 0.3.25 cssnano: 6.1.2(postcss@8.4.39) - esbuild: 0.18.20 jest-worker: 29.7.0 postcss: 8.4.39 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + esbuild: 0.18.20 - /css-select-base-adapter@0.1.1: - resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} - dev: true + css-select-base-adapter@0.1.1: {} - /css-select@2.1.0: - resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==} + css-select@2.1.0: dependencies: boolbase: 1.0.0 css-what: 3.4.2 domutils: 1.7.0 nth-check: 1.0.2 - dev: true - /css-select@4.3.0: - resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + css-select@4.3.0: dependencies: boolbase: 1.0.0 css-what: 6.1.0 @@ -32970,8 +43251,7 @@ packages: domutils: 2.8.0 nth-check: 2.1.1 - /css-select@5.1.0: - resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + css-select@5.1.0: dependencies: boolbase: 1.0.0 css-what: 6.1.0 @@ -32979,73 +43259,46 @@ packages: domutils: 3.1.0 nth-check: 2.1.1 - /css-selector-tokenizer@0.7.3: - resolution: {integrity: sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==} + css-selector-tokenizer@0.7.3: dependencies: cssesc: 3.0.0 fastparse: 1.1.2 - dev: true - /css-to-react-native@2.3.2: - resolution: {integrity: sha512-VOFaeZA053BqvvvqIA8c9n0+9vFppVBAHCp6JgFTtTMU3Mzi+XnelJ9XC9ul3BqFzZyQ5N+H0SnwsWT2Ebchxw==} + css-to-react-native@2.3.2: dependencies: camelize: 1.0.1 css-color-keywords: 1.0.0 postcss-value-parser: 3.3.1 - dev: false - /css-tree@1.0.0-alpha.37: - resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} - engines: {node: '>=8.0.0'} + css-tree@1.0.0-alpha.37: dependencies: mdn-data: 2.0.4 source-map: 0.6.1 - dev: true - /css-tree@1.1.3: - resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} - engines: {node: '>=8.0.0'} + css-tree@1.1.3: dependencies: mdn-data: 2.0.14 source-map: 0.6.1 - /css-tree@2.2.1: - resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + css-tree@2.2.1: dependencies: mdn-data: 2.0.28 source-map-js: 1.2.0 - /css-tree@2.3.1: - resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + css-tree@2.3.1: dependencies: mdn-data: 2.0.30 source-map-js: 1.2.0 - /css-what@3.4.2: - resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} - engines: {node: '>= 6'} - dev: true + css-what@3.4.2: {} - /css-what@6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: '>= 6'} + css-what@6.1.0: {} - /css.escape@1.5.1: - resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} - dev: true + css.escape@1.5.1: {} - /cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} - hasBin: true + cssesc@3.0.0: {} - /cssnano-preset-default@5.2.14(postcss@8.4.39): - resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + cssnano-preset-default@5.2.14(postcss@8.4.39): dependencies: css-declaration-sorter: 6.4.1(postcss@8.4.39) cssnano-utils: 3.1.0(postcss@8.4.39) @@ -33077,13 +43330,8 @@ packages: postcss-reduce-transforms: 5.1.0(postcss@8.4.39) postcss-svgo: 5.1.0(postcss@8.4.39) postcss-unique-selectors: 5.1.1(postcss@8.4.39) - dev: true - /cssnano-preset-default@6.1.2(postcss@8.4.39): - resolution: {integrity: sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + cssnano-preset-default@6.1.2(postcss@8.4.39): dependencies: browserslist: 4.23.1 css-declaration-sorter: 7.2.0(postcss@8.4.39) @@ -33116,119 +43364,67 @@ packages: postcss-reduce-transforms: 6.0.2(postcss@8.4.39) postcss-svgo: 6.0.3(postcss@8.4.39) postcss-unique-selectors: 6.0.4(postcss@8.4.39) - dev: true - /cssnano-utils@3.1.0(postcss@8.4.39): - resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + cssnano-utils@3.1.0(postcss@8.4.39): dependencies: postcss: 8.4.39 - dev: true - /cssnano-utils@4.0.2(postcss@8.4.39): - resolution: {integrity: sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + cssnano-utils@4.0.2(postcss@8.4.39): dependencies: postcss: 8.4.39 - dev: true - /cssnano@5.1.15(postcss@8.4.39): - resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + cssnano@5.1.15(postcss@8.4.39): dependencies: cssnano-preset-default: 5.2.14(postcss@8.4.39) lilconfig: 2.1.0 postcss: 8.4.39 yaml: 1.10.2 - dev: true - /cssnano@6.1.2(postcss@8.4.39): - resolution: {integrity: sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + cssnano@6.1.2(postcss@8.4.39): dependencies: cssnano-preset-default: 6.1.2(postcss@8.4.39) lilconfig: 3.1.2 postcss: 8.4.39 - dev: true - /csso@4.2.0: - resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} - engines: {node: '>=8.0.0'} + csso@4.2.0: dependencies: css-tree: 1.1.3 - /csso@5.0.5: - resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + csso@5.0.5: dependencies: css-tree: 2.2.1 - /cssom@0.3.8: - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} - dev: true + cssom@0.3.8: {} - /cssom@0.4.4: - resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} - dev: true + cssom@0.4.4: {} - /cssom@0.5.0: - resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} - dev: true + cssom@0.5.0: {} - /cssstyle@2.3.0: - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} - engines: {node: '>=8'} + cssstyle@2.3.0: dependencies: cssom: 0.3.8 - dev: true - /csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + csstype@3.1.3: {} - /csv-generate@3.4.3: - resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} - dev: true + csv-generate@3.4.3: {} - /csv-parse@4.16.3: - resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} - dev: true + csv-parse@4.16.3: {} - /csv-stringify@5.6.5: - resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} - dev: true + csv-stringify@5.6.5: {} - /csv@5.5.3: - resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} - engines: {node: '>= 0.1.90'} + csv@5.5.3: dependencies: csv-generate: 3.4.3 csv-parse: 4.16.3 csv-stringify: 5.6.5 stream-transform: 2.1.3 - dev: true - /currently-unhandled@0.4.1: - resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} - engines: {node: '>=0.10.0'} - requiresBuild: true + currently-unhandled@0.4.1: dependencies: array-find-index: 1.0.2 - dev: false optional: true - /cypress@9.7.0: - resolution: {integrity: sha512-+1EE1nuuuwIt/N1KXRR2iWHU+OiIt7H28jJDyyI4tiUftId/DrXYEwoDa5+kH2pki1zxnA0r6HrUGHV5eLbF5Q==} - engines: {node: '>=12.0.0'} - hasBin: true - requiresBuild: true + cypress@9.7.0: dependencies: '@cypress/request': 2.88.12 '@cypress/xvfb': 1.2.4(supports-color@8.1.1) @@ -33272,102 +43468,55 @@ packages: tmp: 0.2.3 untildify: 4.0.0 yauzl: 2.10.0 - dev: true - /d3-array@3.2.4: - resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} - engines: {node: '>=12'} + d3-array@3.2.4: dependencies: internmap: 2.0.3 - dev: false - /d3-color@3.1.0: - resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} - engines: {node: '>=12'} - dev: false + d3-color@3.1.0: {} - /d3-dispatch@3.0.1: - resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} - engines: {node: '>=12'} - dev: false + d3-dispatch@3.0.1: {} - /d3-drag@3.0.0: - resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} - engines: {node: '>=12'} + d3-drag@3.0.0: dependencies: d3-dispatch: 3.0.1 d3-selection: 3.0.0 - dev: false - /d3-ease@3.0.1: - resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} - engines: {node: '>=12'} - dev: false + d3-ease@3.0.1: {} - /d3-format@3.1.0: - resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} - engines: {node: '>=12'} - dev: false + d3-format@3.1.0: {} - /d3-interpolate@3.0.1: - resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} - engines: {node: '>=12'} + d3-interpolate@3.0.1: dependencies: d3-color: 3.1.0 - dev: false - /d3-path@3.1.0: - resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==} - engines: {node: '>=12'} - dev: false + d3-path@3.1.0: {} - /d3-scale@4.0.2: - resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} - engines: {node: '>=12'} + d3-scale@4.0.2: dependencies: d3-array: 3.2.4 d3-format: 3.1.0 d3-interpolate: 3.0.1 d3-time: 3.1.0 d3-time-format: 4.1.0 - dev: false - /d3-selection@3.0.0: - resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} - engines: {node: '>=12'} - dev: false + d3-selection@3.0.0: {} - /d3-shape@3.2.0: - resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==} - engines: {node: '>=12'} + d3-shape@3.2.0: dependencies: d3-path: 3.1.0 - dev: false - /d3-time-format@4.1.0: - resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} - engines: {node: '>=12'} + d3-time-format@4.1.0: dependencies: d3-time: 3.1.0 - dev: false - /d3-time@3.1.0: - resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} - engines: {node: '>=12'} + d3-time@3.1.0: dependencies: d3-array: 3.2.4 - dev: false - /d3-timer@3.0.1: - resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} - engines: {node: '>=12'} - dev: false + d3-timer@3.0.1: {} - /d3-transition@3.0.1(d3-selection@3.0.0): - resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} - engines: {node: '>=12'} - peerDependencies: - d3-selection: 2 - 3 + d3-transition@3.0.1(d3-selection@3.0.0): dependencies: d3-color: 3.1.0 d3-dispatch: 3.0.1 @@ -33375,254 +43524,146 @@ packages: d3-interpolate: 3.0.1 d3-selection: 3.0.0 d3-timer: 3.0.1 - dev: false - /d3-zoom@3.0.0: - resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} - engines: {node: '>=12'} + d3-zoom@3.0.0: dependencies: d3-dispatch: 3.0.1 d3-drag: 3.0.0 d3-interpolate: 3.0.1 d3-selection: 3.0.0 d3-transition: 3.0.1(d3-selection@3.0.0) - dev: false - /d@1.0.2: - resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==} - engines: {node: '>=0.12'} + d@1.0.2: dependencies: es5-ext: 0.10.64 type: 2.7.3 - dev: true - /damerau-levenshtein@1.0.8: - resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} - dev: true + damerau-levenshtein@1.0.8: {} - /dargs@7.0.0: - resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} - engines: {node: '>=8'} - dev: true + dargs@7.0.0: {} - /dashdash@1.14.1: - resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} - engines: {node: '>=0.10'} + dashdash@1.14.1: dependencies: assert-plus: 1.0.0 - dev: true - /data-urls@2.0.0: - resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} - engines: {node: '>=10'} + data-urls@2.0.0: dependencies: abab: 2.0.6 whatwg-mimetype: 2.3.0 whatwg-url: 8.7.0 - dev: true - /data-urls@3.0.2: - resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} - engines: {node: '>=12'} + data-urls@3.0.2: dependencies: abab: 2.0.6 whatwg-mimetype: 3.0.0 whatwg-url: 11.0.0 - dev: true - /data-view-buffer@1.0.1: - resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} - engines: {node: '>= 0.4'} + data-view-buffer@1.0.1: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-data-view: 1.0.1 - /data-view-byte-length@1.0.1: - resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} - engines: {node: '>= 0.4'} + data-view-byte-length@1.0.1: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-data-view: 1.0.1 - /data-view-byte-offset@1.0.0: - resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} - engines: {node: '>= 0.4'} + data-view-byte-offset@1.0.0: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-data-view: 1.0.1 - /dataloader@1.4.0: - resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} - dev: true + dataloader@1.4.0: {} - /date-format@2.1.0: - resolution: {integrity: sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==} - engines: {node: '>=4.0'} - deprecated: 2.x is no longer supported. Please upgrade to 4.x or higher. - dev: true + date-format@2.1.0: {} - /date-now@0.1.4: - resolution: {integrity: sha512-AsElvov3LoNB7tf5k37H2jYSB+ZZPMT5sG2QjJCcdlV5chIv6htBUBUui2IKRjgtKAKtCBN7Zbwa+MtwLjSeNw==} - dev: false + date-now@0.1.4: {} - /dateformat@3.0.3: - resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} - dev: true + dateformat@3.0.3: {} - /dayjs@1.11.11: - resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==} - dev: true + dayjs@1.11.11: {} - /debounce@1.2.1: - resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} + debounce@1.2.1: {} - /debug@2.6.9(supports-color@6.1.0): - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@2.6.9(supports-color@6.1.0): dependencies: ms: 2.0.0 + optionalDependencies: supports-color: 6.1.0 - /debug@3.1.0: - resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@3.1.0: dependencies: ms: 2.0.0 - dev: false - /debug@3.2.7(supports-color@6.1.0): - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@3.2.7(supports-color@6.1.0): dependencies: ms: 2.1.3 + optionalDependencies: supports-color: 6.1.0 - /debug@3.2.7(supports-color@8.1.1): - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@3.2.7(supports-color@8.1.1): dependencies: ms: 2.1.3 + optionalDependencies: supports-color: 8.1.1 - dev: true - /debug@4.3.5(supports-color@5.5.0): - resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@4.3.5(supports-color@5.5.0): dependencies: ms: 2.1.2 + optionalDependencies: supports-color: 5.5.0 - dev: false - /debug@4.3.5(supports-color@6.1.0): - resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@4.3.5(supports-color@6.1.0): dependencies: ms: 2.1.2 + optionalDependencies: supports-color: 6.1.0 - /debug@4.3.5(supports-color@8.1.1): - resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@4.3.5(supports-color@8.1.1): dependencies: ms: 2.1.2 + optionalDependencies: supports-color: 8.1.1 - dev: true - /debuglog@1.0.1: - resolution: {integrity: sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - dev: true + debuglog@1.0.1: {} - /decamelize-keys@1.1.1: - resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} - engines: {node: '>=0.10.0'} + decamelize-keys@1.1.1: dependencies: decamelize: 1.2.0 map-obj: 1.0.1 - dev: true - /decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} + decamelize@1.2.0: {} - /decimal.js-light@2.5.1: - resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==} - dev: false + decimal.js-light@2.5.1: {} - /decimal.js@10.4.3: - resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} - dev: true + decimal.js@10.4.3: {} - /decode-uri-component@0.2.2: - resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} - engines: {node: '>=0.10'} + decode-named-character-reference@1.0.2: + dependencies: + character-entities: 2.0.2 - /decompress-response@3.3.0: - resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} - engines: {node: '>=4'} + decode-uri-component@0.2.2: {} + + decompress-response@3.3.0: dependencies: mimic-response: 1.0.1 - dev: false - /decompress-response@6.0.0: - resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} - engines: {node: '>=10'} + decompress-response@6.0.0: dependencies: mimic-response: 3.1.0 - dev: true - /dedent@0.7.0: - resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} + dedent@0.7.0: {} - /dedent@1.5.3: - resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} - peerDependencies: - babel-plugin-macros: ^3.1.0 - peerDependenciesMeta: - babel-plugin-macros: - optional: true + dedent@1.5.3(babel-plugin-macros@3.1.0): + optionalDependencies: + babel-plugin-macros: 3.1.0 - /deep-diff@1.0.2: - resolution: {integrity: sha512-aWS3UIVH+NPGCD1kki+DCU9Dua032iSsO43LqQpcs4R3+dVv7tX0qBGjiVHJHjplsoUM2XRO/KB92glqc68awg==} - dev: false + deep-diff@1.0.2: {} - /deep-equal@1.1.2: - resolution: {integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==} - engines: {node: '>= 0.4'} + deep-equal@1.1.2: dependencies: is-arguments: 1.1.1 is-date-object: 1.0.5 @@ -33631,9 +43672,7 @@ packages: object-keys: 1.1.1 regexp.prototype.flags: 1.5.2 - /deep-equal@2.2.3: - resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} - engines: {node: '>= 0.4'} + deep-equal@2.2.3: dependencies: array-buffer-byte-length: 1.0.1 call-bind: 1.0.7 @@ -33654,120 +43693,75 @@ packages: which-collection: 1.0.2 which-typed-array: 1.1.15 - /deep-extend@0.6.0: - resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} - engines: {node: '>=4.0.0'} - dev: false + deep-extend@0.6.0: {} - /deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + deep-is@0.1.4: {} - /deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: '>=0.10.0'} + deepmerge@4.3.1: {} - /default-browser-id@1.0.4: - resolution: {integrity: sha512-qPy925qewwul9Hifs+3sx1ZYn14obHxpkX+mPD369w4Rzg+YkJBgi3SOvwUq81nWSjqGUegIgEPwD8u+HUnxlw==} - engines: {node: '>=0.10.0'} - hasBin: true - requiresBuild: true + default-browser-id@1.0.4: dependencies: bplist-parser: 0.1.1 meow: 3.7.0 untildify: 2.1.0 - dev: false optional: true - /default-browser-id@3.0.0: - resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} - engines: {node: '>=12'} + default-browser-id@3.0.0: dependencies: bplist-parser: 0.2.0 untildify: 4.0.0 - dev: true - /default-gateway@4.2.0: - resolution: {integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==} - engines: {node: '>=6'} + default-gateway@4.2.0: dependencies: execa: 1.0.0 ip-regex: 2.1.0 - /default-gateway@6.0.3: - resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} - engines: {node: '>= 10'} + default-gateway@6.0.3: dependencies: execa: 5.1.1 - dev: true - /default-require-extensions@3.0.1: - resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==} - engines: {node: '>=8'} + default-require-extensions@3.0.1: dependencies: strip-bom: 4.0.0 - dev: true - /defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + defaults@1.0.4: dependencies: clone: 1.0.4 - dev: true - /defer-to-connect@1.1.3: - resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} - dev: false + defer-to-connect@1.1.3: {} - /defer-to-connect@2.0.1: - resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} - engines: {node: '>=10'} - dev: true + defer-to-connect@2.0.1: {} - /define-data-property@1.1.4: - resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} - engines: {node: '>= 0.4'} + define-data-property@1.1.4: dependencies: es-define-property: 1.0.0 es-errors: 1.3.0 gopd: 1.0.1 - /define-lazy-prop@2.0.0: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} - engines: {node: '>=8'} + define-lazy-prop@2.0.0: {} - /define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: '>= 0.4'} + define-properties@1.2.1: dependencies: define-data-property: 1.1.4 has-property-descriptors: 1.0.2 object-keys: 1.1.1 - /define-property@0.2.5: - resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} - engines: {node: '>=0.10.0'} + define-property@0.2.5: dependencies: is-descriptor: 0.1.7 - /define-property@1.0.0: - resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} - engines: {node: '>=0.10.0'} + define-property@1.0.0: dependencies: is-descriptor: 1.0.3 - /define-property@2.0.2: - resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} - engines: {node: '>=0.10.0'} + define-property@2.0.2: dependencies: is-descriptor: 1.0.3 isobject: 3.0.1 - /defu@6.1.4: - resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} - dev: true + defu@6.1.4: {} - /del@4.1.1: - resolution: {integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==} - engines: {node: '>=6'} + del@4.1.1: dependencies: '@types/glob': 7.2.0 globby: 6.1.0 @@ -33777,9 +43771,7 @@ packages: pify: 4.0.1 rimraf: 2.7.1 - /del@6.1.1: - resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} - engines: {node: '>=10'} + del@6.1.1: dependencies: globby: 11.1.0 graceful-fs: 4.2.11 @@ -33789,490 +43781,306 @@ packages: p-map: 4.0.0 rimraf: 3.0.2 slash: 3.0.0 - dev: true - /delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} + delayed-stream@1.0.0: {} - /delegates@1.0.0: - resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} + delegates@1.0.0: {} - /depd@1.1.2: - resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} - engines: {node: '>= 0.6'} + depd@1.1.2: {} - /depd@2.0.0: - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} - engines: {node: '>= 0.8'} + depd@2.0.0: {} - /deprecation@2.3.1: - resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} - dev: true + deprecation@2.3.1: {} - /dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} - dev: true + dequal@2.0.3: {} - /destroy@1.2.0: - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + destroy@1.2.0: {} - /detab@2.0.4: - resolution: {integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==} + detab@2.0.4: dependencies: repeat-string: 1.6.1 - /detect-indent@4.0.0: - resolution: {integrity: sha512-BDKtmHlOzwI7iRuEkhzsnPoi5ypEhWAJB5RvHWe1kMr06js3uK5B3734i3ui5Yd+wOJV1cpE4JnivPD283GU/A==} - engines: {node: '>=0.10.0'} - dependencies: - repeating: 2.0.1 - dev: true - - /detect-indent@5.0.0: - resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==} - engines: {node: '>=4'} - dev: true + detect-indent@5.0.0: {} - /detect-indent@6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: '>=8'} - dev: true + detect-indent@6.1.0: {} - /detect-newline@3.1.0: - resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} - engines: {node: '>=8'} + detect-newline@3.1.0: {} - /detect-node@2.1.0: - resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} + detect-node@2.1.0: {} - /detect-package-manager@2.0.1: - resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==} - engines: {node: '>=12'} + detect-package-manager@2.0.1: dependencies: execa: 5.1.1 - /detect-port@1.6.1: - resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==} - engines: {node: '>= 4.0.0'} - hasBin: true + detect-port@1.6.1: dependencies: address: 1.2.2 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color - /dezalgo@1.0.4: - resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==} + devlop@1.1.0: + dependencies: + dequal: 2.0.3 + + dezalgo@1.0.4: dependencies: asap: 2.0.6 wrappy: 1.0.2 - dev: true - /diacritics-map@0.1.0: - resolution: {integrity: sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==} - engines: {node: '>=0.8.0'} - dev: true + diacritics-map@0.1.0: {} - /diff-sequences@26.6.2: - resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==} - engines: {node: '>= 10.14.2'} - dev: true + diff-sequences@26.6.2: {} - /diff-sequences@29.6.3: - resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + diff-sequences@29.6.3: {} - /diff@4.0.2: - resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} - engines: {node: '>=0.3.1'} + diff@4.0.2: {} - /dir-glob@2.2.2: - resolution: {integrity: sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==} - engines: {node: '>=4'} + dir-glob@2.2.2: dependencies: path-type: 3.0.0 - dev: false - /dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} + dir-glob@3.0.1: dependencies: path-type: 4.0.0 - /dns-equal@1.0.0: - resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} + dns-equal@1.0.0: {} - /dns-packet@1.3.4: - resolution: {integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==} + dns-packet@1.3.4: dependencies: ip: 1.1.9 safe-buffer: 5.2.1 - /dns-packet@5.6.1: - resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} - engines: {node: '>=6'} + dns-packet@5.6.1: dependencies: '@leichtgewicht/ip-codec': 2.0.5 - dev: true - /dns-txt@2.0.2: - resolution: {integrity: sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==} + dns-txt@2.0.2: dependencies: buffer-indexof: 1.1.1 - /doctrine@2.1.0: - resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} - engines: {node: '>=0.10.0'} + doctrine@2.1.0: dependencies: esutils: 2.0.3 - dev: true - /doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} + doctrine@3.0.0: dependencies: esutils: 2.0.3 - /dom-accessibility-api@0.5.16: - resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} - dev: true + dom-accessibility-api@0.5.16: {} - /dom-accessibility-api@0.6.3: - resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} - dev: true + dom-accessibility-api@0.6.3: {} - /dom-converter@0.2.0: - resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} + dom-converter@0.2.0: dependencies: utila: 0.4.0 - /dom-helpers@5.2.1: - resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} + dom-helpers@5.2.1: dependencies: '@babel/runtime': 7.24.7 csstype: 3.1.3 - dev: false - /dom-serializer@0.2.2: - resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} + dom-serializer@0.2.2: dependencies: domelementtype: 2.3.0 entities: 2.2.0 - /dom-serializer@1.4.1: - resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + dom-serializer@1.4.1: dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 entities: 2.2.0 - /dom-serializer@2.0.0: - resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + dom-serializer@2.0.0: dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 entities: 4.5.0 - /dom-walk@0.1.2: - resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==} + dom-walk@0.1.2: {} - /domelementtype@1.3.1: - resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} + domelementtype@1.3.1: {} - /domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + domelementtype@2.3.0: {} - /domexception@2.0.1: - resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} - engines: {node: '>=8'} - deprecated: Use your platform's native DOMException instead + domexception@2.0.1: dependencies: webidl-conversions: 5.0.0 - dev: true - /domexception@4.0.0: - resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} - engines: {node: '>=12'} - deprecated: Use your platform's native DOMException instead + domexception@4.0.0: dependencies: webidl-conversions: 7.0.0 - dev: true - /domhandler@2.3.0: - resolution: {integrity: sha512-q9bUwjfp7Eif8jWxxxPSykdRZAb6GkguBGSgvvCrhI9wB71W2K/Kvv4E61CF/mcCfnVJDeDWx/Vb/uAqbDj6UQ==} + domhandler@2.3.0: dependencies: domelementtype: 1.3.1 - dev: false - /domhandler@4.3.1: - resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} - engines: {node: '>= 4'} + domhandler@4.3.1: dependencies: domelementtype: 2.3.0 - /domhandler@5.0.3: - resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} - engines: {node: '>= 4'} + domhandler@5.0.3: dependencies: domelementtype: 2.3.0 - /dompurify@3.1.5: - resolution: {integrity: sha512-lwG+n5h8QNpxtyrJW/gJWckL+1/DQiYMX8f7t8Z2AZTPw1esVrqjI63i7Zc2Gz0aKzLVMYC1V1PL/ky+aY/NgA==} - dev: false + dompurify@3.1.5: {} - /domutils@1.5.1: - resolution: {integrity: sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==} + domutils@1.5.1: dependencies: dom-serializer: 0.2.2 domelementtype: 1.3.1 - dev: false - /domutils@1.7.0: - resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} + domutils@1.7.0: dependencies: dom-serializer: 0.2.2 domelementtype: 1.3.1 - dev: true - /domutils@2.8.0: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + domutils@2.8.0: dependencies: dom-serializer: 1.4.1 domelementtype: 2.3.0 domhandler: 4.3.1 - /domutils@3.1.0: - resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} + domutils@3.1.0: dependencies: dom-serializer: 2.0.0 domelementtype: 2.3.0 domhandler: 5.0.3 - /dot-case@3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + dot-case@3.0.4: dependencies: no-case: 3.0.4 tslib: 2.6.3 - /dot-prop@5.3.0: - resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} - engines: {node: '>=8'} + dot-prop@5.3.0: dependencies: is-obj: 2.0.0 - /dot-prop@6.0.1: - resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} - engines: {node: '>=10'} + dot-prop@6.0.1: dependencies: is-obj: 2.0.0 - dev: true - /dotenv-expand@10.0.0: - resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} - engines: {node: '>=12'} - dev: true + dotenv-expand@10.0.0: {} - /dotenv-expand@5.1.0: - resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} + dotenv-expand@5.1.0: {} - /dotenv@10.0.0: - resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} - engines: {node: '>=10'} - dev: true + dotenv@10.0.0: {} - /dotenv@16.3.2: - resolution: {integrity: sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==} - engines: {node: '>=12'} - dev: true + dotenv@16.3.2: {} - /dotenv@16.4.5: - resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} - engines: {node: '>=12'} - dev: true + dotenv@16.4.5: {} - /dotenv@8.6.0: - resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} - engines: {node: '>=10'} + dotenv@8.6.0: {} - /duplexer3@0.1.5: - resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} - dev: false + duplexer3@0.1.5: {} - /duplexer@0.1.2: - resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + duplexer@0.1.2: {} - /duplexify@3.7.1: - resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} + duplexify@3.7.1: dependencies: end-of-stream: 1.4.4 inherits: 2.0.4 readable-stream: 2.3.8 stream-shift: 1.0.3 - dev: true - /eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + eastasianwidth@0.2.0: {} - /ecc-jsbn@0.1.2: - resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} + ecc-jsbn@0.1.2: dependencies: jsbn: 0.1.1 safer-buffer: 2.1.2 - dev: true - /editorconfig@1.0.4: - resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==} - engines: {node: '>=14'} - hasBin: true + editorconfig@1.0.4: dependencies: '@one-ini/wasm': 0.1.1 commander: 10.0.1 minimatch: 9.0.1 semver: 7.6.2 - dev: false - /ee-first@1.1.1: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + ee-first@1.1.1: {} - /ejs@3.1.10: - resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} - engines: {node: '>=0.10.0'} - hasBin: true + ejs@3.1.10: dependencies: jake: 10.9.1 - dev: true - /electron-to-chromium@1.4.810: - resolution: {integrity: sha512-Kaxhu4T7SJGpRQx99tq216gCq2nMxJo+uuT6uzz9l8TVN2stL7M06MIIXAtr9jsrLs2Glflgf2vMQRepxawOdQ==} + electron-to-chromium@1.4.810: {} - /emittery@0.13.1: - resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} - engines: {node: '>=12'} + emittery@0.13.1: {} - /emittery@0.7.2: - resolution: {integrity: sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==} - engines: {node: '>=10'} - dev: true + emittery@0.7.2: {} - /emoji-regex@7.0.3: - resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==} + emoji-regex@7.0.3: {} - /emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + emoji-regex@8.0.0: {} - /emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + emoji-regex@9.2.2: {} - /emojis-list@3.0.0: - resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} - engines: {node: '>= 4'} + emojis-list@3.0.0: {} - /encodeurl@1.0.2: - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} - engines: {node: '>= 0.8'} + encodeurl@1.0.2: {} - /encoding@0.1.13: - resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} - requiresBuild: true + encoding@0.1.13: dependencies: iconv-lite: 0.6.3 - dev: true optional: true - /end-of-stream@1.4.4: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + end-of-stream@1.4.4: dependencies: once: 1.4.0 - /endent@2.1.0: - resolution: {integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==} + endent@2.1.0: dependencies: dedent: 0.7.0 fast-json-parse: 1.0.3 objectorarray: 1.0.5 - /enhanced-resolve@4.5.0: - resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==} - engines: {node: '>=6.9.0'} + enhanced-resolve@4.5.0: dependencies: graceful-fs: 4.2.11 memory-fs: 0.5.0 tapable: 1.1.3 - dev: true - /enhanced-resolve@5.17.0: - resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==} - engines: {node: '>=10.13.0'} + enhanced-resolve@5.17.0: dependencies: graceful-fs: 4.2.11 tapable: 2.2.1 - /enquirer@2.3.6: - resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} - engines: {node: '>=8.6'} + enquirer@2.3.6: dependencies: ansi-colors: 4.1.3 - dev: true - /enquirer@2.4.1: - resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} - engines: {node: '>=8.6'} + enquirer@2.4.1: dependencies: ansi-colors: 4.1.3 strip-ansi: 6.0.1 - /entities@1.0.0: - resolution: {integrity: sha512-LbLqfXgJMmy81t+7c14mnulFHJ170cM6E+0vMXR9k/ZiZwgX8i5pNgjTCX3SO4VeUsFLV+8InixoretwU+MjBQ==} - dev: false + entities@1.0.0: {} - /entities@2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + entities@2.2.0: {} - /entities@3.0.1: - resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} - engines: {node: '>=0.12'} - dev: false + entities@3.0.1: {} - /entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} + entities@4.5.0: {} - /env-paths@2.2.1: - resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} - engines: {node: '>=6'} - dev: true + env-paths@2.2.1: {} - /envinfo@7.13.0: - resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==} - engines: {node: '>=4'} - hasBin: true + envinfo@7.13.0: {} - /err-code@2.0.3: - resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} - dev: true + err-code@2.0.3: {} - /errno@0.1.8: - resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} - hasBin: true + errno@0.1.8: dependencies: prr: 1.0.1 - /error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + error-ex@1.3.2: dependencies: is-arrayish: 0.2.1 - /error-stack-parser@2.1.4: - resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} + error-stack-parser@2.1.4: dependencies: stackframe: 1.3.4 - /es-abstract@1.23.3: - resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} - engines: {node: '>= 0.4'} + es-abstract@1.23.3: dependencies: array-buffer-byte-length: 1.0.1 arraybuffer.prototype.slice: 1.0.3 @@ -34321,21 +44129,15 @@ packages: unbox-primitive: 1.0.2 which-typed-array: 1.1.15 - /es-array-method-boxes-properly@1.0.0: - resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} + es-array-method-boxes-properly@1.0.0: {} - /es-define-property@1.0.0: - resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} - engines: {node: '>= 0.4'} + es-define-property@1.0.0: dependencies: get-intrinsic: 1.2.4 - /es-errors@1.3.0: - resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} - engines: {node: '>= 0.4'} + es-errors@1.3.0: {} - /es-get-iterator@1.1.3: - resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} + es-get-iterator@1.1.3: dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 @@ -34347,9 +44149,7 @@ packages: isarray: 2.0.5 stop-iteration-iterator: 1.0.0 - /es-iterator-helpers@1.0.19: - resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==} - engines: {node: '>= 0.4'} + es-iterator-helpers@1.0.19: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -34365,97 +44165,63 @@ packages: internal-slot: 1.0.7 iterator.prototype: 1.1.2 safe-array-concat: 1.1.2 - dev: true - /es-module-lexer@1.5.4: - resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} + es-module-lexer@1.5.4: {} - /es-object-atoms@1.0.0: - resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} - engines: {node: '>= 0.4'} + es-object-atoms@1.0.0: dependencies: es-errors: 1.3.0 - /es-set-tostringtag@2.0.3: - resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} - engines: {node: '>= 0.4'} + es-set-tostringtag@2.0.3: dependencies: get-intrinsic: 1.2.4 has-tostringtag: 1.0.2 hasown: 2.0.2 - /es-shim-unscopables@1.0.2: - resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} + es-shim-unscopables@1.0.2: dependencies: hasown: 2.0.2 - /es-to-primitive@1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} + es-to-primitive@1.2.1: dependencies: is-callable: 1.2.7 is-date-object: 1.0.5 is-symbol: 1.0.4 - /es5-ext@0.10.64: - resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==} - engines: {node: '>=0.10'} - requiresBuild: true + es5-ext@0.10.64: dependencies: es6-iterator: 2.0.3 es6-symbol: 3.1.4 esniff: 2.0.1 next-tick: 1.1.0 - dev: true - /es5-shim@4.6.7: - resolution: {integrity: sha512-jg21/dmlrNQI7JyyA2w7n+yifSxBng0ZralnSfVZjoCawgNTCnS+yBCyVM9DL5itm7SUnDGgv7hcq2XCZX4iRQ==} - engines: {node: '>=0.4.0'} - dev: false + es5-shim@4.6.7: {} - /es6-error@4.1.1: - resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} + es6-error@4.1.1: {} - /es6-iterator@2.0.3: - resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} + es6-iterator@2.0.3: dependencies: d: 1.0.2 es5-ext: 0.10.64 es6-symbol: 3.1.4 - dev: true - /es6-shim@0.35.8: - resolution: {integrity: sha512-Twf7I2v4/1tLoIXMT8HlqaBSS5H2wQTs2wx3MNYCI8K1R1/clXyCazrcVCPm/FuO9cyV8+leEaZOWD5C253NDg==} - dev: false + es6-shim@0.35.8: {} - /es6-symbol@3.1.4: - resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==} - engines: {node: '>=0.12'} + es6-symbol@3.1.4: dependencies: d: 1.0.2 ext: 1.7.0 - dev: true - /esbuild-plugin-alias@0.2.1: - resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==} - dev: true + esbuild-plugin-alias@0.2.1: {} - /esbuild-register@3.5.0(esbuild@0.18.20): - resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==} - peerDependencies: - esbuild: '>=0.12 <1' + esbuild-register@3.5.0(esbuild@0.18.20): dependencies: - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) esbuild: 0.18.20 transitivePeerDependencies: - supports-color - dev: true - /esbuild@0.18.20: - resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true + esbuild@0.18.20: optionalDependencies: '@esbuild/android-arm': 0.18.20 '@esbuild/android-arm64': 0.18.20 @@ -34480,39 +44246,21 @@ packages: '@esbuild/win32-ia32': 0.18.20 '@esbuild/win32-x64': 0.18.20 - /escalade@3.1.2: - resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} - engines: {node: '>=6'} + escalade@3.1.2: {} - /escape-goat@2.1.1: - resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==} - engines: {node: '>=8'} - dev: false + escape-goat@2.1.1: {} - /escape-html@1.0.3: - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + escape-html@1.0.3: {} - /escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} + escape-string-regexp@1.0.5: {} - /escape-string-regexp@2.0.0: - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} - engines: {node: '>=8'} + escape-string-regexp@2.0.0: {} - /escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} + escape-string-regexp@4.0.0: {} - /escape-string-regexp@5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} - engines: {node: '>=12'} - dev: true + escape-string-regexp@5.0.0: {} - /escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: '>=6.0'} - hasBin: true + escodegen@2.1.0: dependencies: esprima: 4.0.1 estraverse: 5.3.0 @@ -34520,122 +44268,100 @@ packages: optionalDependencies: source-map: 0.6.1 - /eslint-compat-utils@0.5.1(eslint@7.32.0): - resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} - engines: {node: '>=12'} - peerDependencies: - eslint: '>=6.0.0' + eslint-compat-utils@0.5.1(eslint@7.32.0): dependencies: eslint: 7.32.0 semver: 7.6.2 - dev: true - /eslint-config-prettier@9.1.0(eslint@8.46.0): - resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} - hasBin: true - peerDependencies: - eslint: '>=7.0.0' + eslint-config-prettier@9.1.0(eslint@8.46.0): dependencies: eslint: 8.46.0 - dev: true - /eslint-import-resolver-node@0.3.9: - resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + eslint-import-resolver-node@0.3.9: dependencies: - debug: 3.2.7(supports-color@6.1.0) + debug: 3.2.7(supports-color@8.1.1) is-core-module: 2.14.0 resolve: 1.22.8 transitivePeerDependencies: - supports-color - dev: true - /eslint-module-utils@2.8.1(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0): - resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} - 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 + eslint-module-utils@2.8.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0): dependencies: + debug: 3.2.7(supports-color@8.1.1) + optionalDependencies: '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) - debug: 3.2.7(supports-color@6.1.0) eslint: 7.32.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color - dev: true - /eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.46.0): - resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} - 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 + eslint-module-utils@2.8.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0): + dependencies: + debug: 3.2.7(supports-color@8.1.1) + optionalDependencies: + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@5.1.6) + eslint: 7.32.0 + eslint-import-resolver-node: 0.3.9 + transitivePeerDependencies: + - supports-color + + eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint@8.46.0): dependencies: + debug: 3.2.7(supports-color@8.1.1) + optionalDependencies: '@typescript-eslint/parser': 5.62.0(eslint@8.46.0)(typescript@5.1.6) - debug: 3.2.7(supports-color@6.1.0) eslint: 8.46.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color - dev: true - /eslint-plugin-cypress@2.15.2(eslint@8.46.0): - resolution: {integrity: sha512-CtcFEQTDKyftpI22FVGpx8bkpKyYXBlNge6zSo0pl5/qJvBAnzaD76Vu2AsP16d6mTj478Ldn2mhgrWV+Xr0vQ==} - peerDependencies: - eslint: '>= 3.2.1' + eslint-plugin-cypress@2.15.2(eslint@8.46.0): dependencies: eslint: 8.46.0 globals: 13.24.0 - dev: true - /eslint-plugin-import@2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0): - resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true + eslint-plugin-header@https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3(eslint@8.46.0): dependencies: + eslint: 8.46.0 + + eslint-plugin-import@2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0): + dependencies: + array-includes: 3.1.8 + array.prototype.findlastindex: 1.2.5 + array.prototype.flat: 1.3.2 + array.prototype.flatmap: 1.3.2 + debug: 3.2.7(supports-color@8.1.1) + doctrine: 2.1.0 + eslint: 7.32.0 + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.8.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0) + hasown: 2.0.2 + is-core-module: 2.14.0 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.fromentries: 2.0.8 + object.groupby: 1.0.3 + object.values: 1.2.0 + semver: 6.3.1 + tsconfig-paths: 3.15.0 + optionalDependencies: '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + + eslint-plugin-import@2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.1.6))(eslint@7.32.0): + dependencies: array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 array.prototype.flat: 1.3.2 array.prototype.flatmap: 1.3.2 - debug: 3.2.7(supports-color@6.1.0) + debug: 3.2.7(supports-color@8.1.1) doctrine: 2.1.0 eslint: 7.32.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0) hasown: 2.0.2 is-core-module: 2.14.0 is-glob: 4.0.3 @@ -34645,32 +44371,24 @@ packages: object.values: 1.2.0 semver: 6.3.1 tsconfig-paths: 3.15.0 + optionalDependencies: + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@5.1.6) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - dev: true - /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.46.0): - resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true + eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint@8.46.0): dependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.46.0)(typescript@5.1.6) array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 array.prototype.flat: 1.3.2 array.prototype.flatmap: 1.3.2 - debug: 3.2.7(supports-color@6.1.0) + debug: 3.2.7(supports-color@8.1.1) doctrine: 2.1.0 eslint: 8.46.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.46.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint@8.46.0) hasown: 2.0.2 is-core-module: 2.14.0 is-glob: 4.0.3 @@ -34680,29 +44398,21 @@ packages: object.values: 1.2.0 semver: 6.3.1 tsconfig-paths: 3.15.0 + optionalDependencies: + '@typescript-eslint/parser': 5.62.0(eslint@8.46.0)(typescript@5.1.6) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - dev: true - /eslint-plugin-jest-dom@4.0.3(eslint@7.32.0): - resolution: {integrity: sha512-9j+n8uj0+V0tmsoS7bYC7fLhQmIvjRqRYEcbDSi+TKPsTThLLXCyj5swMSSf/hTleeMktACnn+HFqXBr5gbcbA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6', yarn: '>=1'} - peerDependencies: - eslint: ^6.8.0 || ^7.0.0 || ^8.0.0 + eslint-plugin-jest-dom@4.0.3(eslint@7.32.0): dependencies: '@babel/runtime': 7.24.7 '@testing-library/dom': 8.20.1 eslint: 7.32.0 requireindex: 1.2.0 - dev: true - /eslint-plugin-jsonc@2.16.0(eslint@7.32.0): - resolution: {integrity: sha512-Af/ZL5mgfb8FFNleH6KlO4/VdmDuTqmM+SPnWcdoWywTetv7kq+vQe99UyQb9XO3b0OWLVuTH7H0d/PXYCMdSg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '>=6.0.0' + eslint-plugin-jsonc@2.16.0(eslint@7.32.0): dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0) eslint: 7.32.0 @@ -34712,13 +44422,8 @@ packages: jsonc-eslint-parser: 2.4.0 natural-compare: 1.4.0 synckit: 0.6.2 - dev: true - /eslint-plugin-jsx-a11y@6.5.1(eslint@8.46.0): - resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==} - engines: {node: '>=4.0'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + eslint-plugin-jsx-a11y@6.5.1(eslint@8.46.0): dependencies: '@babel/runtime': 7.24.7 aria-query: 4.2.2 @@ -34733,31 +44438,16 @@ packages: jsx-ast-utils: 3.3.5 language-tags: 1.0.9 minimatch: 3.1.2 - dev: true - /eslint-plugin-react-hooks@4.6.2(eslint@7.32.0): - resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} - engines: {node: '>=10'} - peerDependencies: - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + eslint-plugin-react-hooks@4.6.2(eslint@7.32.0): dependencies: eslint: 7.32.0 - dev: true - /eslint-plugin-react-hooks@4.6.2(eslint@8.46.0): - resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} - engines: {node: '>=10'} - peerDependencies: - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + eslint-plugin-react-hooks@4.6.2(eslint@8.46.0): dependencies: eslint: 8.46.0 - dev: true - /eslint-plugin-react@7.31.11(eslint@8.46.0): - resolution: {integrity: sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==} - engines: {node: '>=4'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + eslint-plugin-react@7.31.11(eslint@8.46.0): dependencies: array-includes: 3.1.8 array.prototype.flatmap: 1.3.2 @@ -34775,13 +44465,8 @@ packages: resolve: 2.0.0-next.5 semver: 6.3.1 string.prototype.matchall: 4.0.11 - dev: true - /eslint-plugin-react@7.34.3(eslint@7.32.0): - resolution: {integrity: sha512-aoW4MV891jkUulwDApQbPYTVZmeuSyFrudpbTAQuj5Fv8VL+o6df2xIGpw8B0hPjAaih1/Fb0om9grCdyFYemA==} - engines: {node: '>=4'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + eslint-plugin-react@7.34.3(eslint@7.32.0): dependencies: array-includes: 3.1.8 array.prototype.findlast: 1.2.5 @@ -34802,78 +44487,46 @@ packages: resolve: 2.0.0-next.5 semver: 6.3.1 string.prototype.matchall: 4.0.11 - dev: true - /eslint-plugin-testing-library@5.11.1(eslint@7.32.0)(typescript@4.9.5): - resolution: {integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} - peerDependencies: - eslint: ^7.5.0 || ^8.0.0 + eslint-plugin-testing-library@5.11.1(eslint@7.32.0)(typescript@4.9.5): dependencies: '@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@4.9.5) eslint: 7.32.0 transitivePeerDependencies: - supports-color - typescript - dev: true - /eslint-plugin-tsdoc@0.2.17: - resolution: {integrity: sha512-xRmVi7Zx44lOBuYqG8vzTXuL6IdGOeF9nHX17bjJ8+VE6fsxpdGem0/SBTmAwgYMKYB1WBkqRJVQ+n8GK041pA==} + eslint-plugin-tsdoc@0.2.17: dependencies: '@microsoft/tsdoc': 0.14.2 '@microsoft/tsdoc-config': 0.16.2 - dev: true - /eslint-scope@5.1.1: - resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} - engines: {node: '>=8.0.0'} + eslint-scope@5.1.1: dependencies: esrecurse: 4.3.0 estraverse: 4.3.0 - /eslint-scope@7.2.2: - resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + eslint-scope@7.2.2: dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 - dev: true - /eslint-utils@2.1.0: - resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} - engines: {node: '>=6'} + eslint-utils@2.1.0: dependencies: eslint-visitor-keys: 1.3.0 - /eslint-utils@3.0.0(eslint@7.32.0): - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: '>=5' + eslint-utils@3.0.0(eslint@7.32.0): dependencies: eslint: 7.32.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'} + eslint-visitor-keys@1.3.0: {} - /eslint-visitor-keys@2.1.0: - resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} - engines: {node: '>=10'} + eslint-visitor-keys@2.1.0: {} - /eslint-visitor-keys@3.4.3: - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true + eslint-visitor-keys@3.4.3: {} - /eslint-webpack-plugin@2.7.0(eslint@7.32.0)(webpack@5.84.1): - resolution: {integrity: sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - webpack: 5.84.1 + eslint-webpack-plugin@2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@types/eslint': 7.29.0 arrify: 2.0.1 @@ -34882,15 +44535,9 @@ packages: micromatch: 4.0.7 normalize-path: 3.0.0 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /eslint-webpack-plugin@2.7.0(eslint@8.46.0)(webpack@5.84.1): - resolution: {integrity: sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - webpack: 5.84.1 + eslint-webpack-plugin@2.7.0(eslint@8.46.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@types/eslint': 7.29.0 arrify: 2.0.1 @@ -34899,15 +44546,9 @@ packages: micromatch: 4.0.7 normalize-path: 3.0.0 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /eslint-webpack-plugin@3.2.0(eslint@7.32.0)(webpack@5.84.1): - resolution: {integrity: sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==} - engines: {node: '>= 12.13.0'} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - webpack: 5.84.1 + eslint-webpack-plugin@3.2.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@types/eslint': 8.56.10 eslint: 7.32.0 @@ -34915,13 +44556,9 @@ packages: micromatch: 4.0.7 normalize-path: 3.0.0 schema-utils: 4.2.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /eslint@7.32.0: - resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} - engines: {node: ^10.12.0 || >=12.0.0} - hasBin: true + eslint@7.32.0: dependencies: '@babel/code-frame': 7.12.11 '@eslint/eslintrc': 0.4.3 @@ -34929,7 +44566,7 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) doctrine: 3.0.0 enquirer: 2.4.1 escape-string-regexp: 4.0.0 @@ -34966,10 +44603,7 @@ packages: transitivePeerDependencies: - supports-color - /eslint@8.46.0: - resolution: {integrity: sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - hasBin: true + eslint@8.46.0: dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0) '@eslint-community/regexpp': 4.11.0 @@ -34981,7 +44615,7 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 @@ -35010,129 +44644,82 @@ packages: text-table: 0.2.0 transitivePeerDependencies: - supports-color - dev: true - /esniff@2.0.1: - resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==} - engines: {node: '>=0.10'} + esniff@2.0.1: dependencies: d: 1.0.2 es5-ext: 0.10.64 event-emitter: 0.3.5 type: 2.7.3 - dev: true - /espree@7.3.1: - resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} - engines: {node: ^10.12.0 || >=12.0.0} + espree@7.3.1: dependencies: acorn: 7.4.1 acorn-jsx: 5.3.2(acorn@7.4.1) eslint-visitor-keys: 1.3.0 - /espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + espree@9.6.1: dependencies: acorn: 8.12.0 acorn-jsx: 5.3.2(acorn@8.12.0) eslint-visitor-keys: 3.4.3 - dev: true - /esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} - hasBin: true + esprima@4.0.1: {} - /esquery@1.6.0: - resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} - engines: {node: '>=0.10'} + esquery@1.6.0: dependencies: estraverse: 5.3.0 - /esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} + esrecurse@4.3.0: dependencies: estraverse: 5.3.0 - /estraverse@4.3.0: - resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} - engines: {node: '>=4.0'} + estraverse@4.3.0: {} - /estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} + estraverse@5.3.0: {} - /estree-to-babel@3.2.1: - resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} - engines: {node: '>=8.3.0'} + estree-to-babel@3.2.1: dependencies: '@babel/traverse': 7.24.7 '@babel/types': 7.24.7 c8: 7.14.0 transitivePeerDependencies: - supports-color - dev: false - /estree-walker@0.2.1: - resolution: {integrity: sha512-6/I1dwNKk0N9iGOU3ydzAAurz4NPo/ttxZNCqgIVbWFvWyzWBSNonRrJ5CpjDuyBfmM7ENN7WCzUi9aT/UPXXQ==} - dev: true + estree-util-is-identifier-name@3.0.0: {} - /estree-walker@0.6.1: - resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} - dev: true + estree-walker@0.2.1: {} - /estree-walker@1.0.1: - resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} - dev: true + estree-walker@0.6.1: {} - /estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} - dev: true + estree-walker@1.0.1: {} - /esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} + estree-walker@2.0.2: {} - /etag@1.8.1: - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} - engines: {node: '>= 0.6'} + esutils@2.0.3: {} - /event-emitter@0.3.5: - resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} + etag@1.8.1: {} + + event-emitter@0.3.5: dependencies: d: 1.0.2 es5-ext: 0.10.64 - dev: true - /eventemitter2@6.4.9: - resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==} - dev: true + eventemitter2@6.4.9: {} - /eventemitter3@4.0.7: - resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + eventemitter3@4.0.7: {} - /events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: '>=0.8.x'} + events@3.3.0: {} - /eventsource@2.0.2: - resolution: {integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==} - engines: {node: '>=12.0.0'} + eventsource@2.0.2: {} - /exec-sh@0.2.2: - resolution: {integrity: sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==} + exec-sh@0.2.2: dependencies: merge: 1.2.1 - dev: true - /exec-sh@0.3.6: - resolution: {integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==} + exec-sh@0.3.6: {} - /execa@0.7.0: - resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==} - engines: {node: '>=4'} + execa@0.7.0: dependencies: cross-spawn: 5.1.0 get-stream: 3.0.0 @@ -35141,11 +44728,8 @@ packages: p-finally: 1.0.0 signal-exit: 3.0.7 strip-eof: 1.0.0 - dev: true - /execa@1.0.0: - resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} - engines: {node: '>=6'} + execa@1.0.0: dependencies: cross-spawn: 6.0.5 get-stream: 4.1.0 @@ -35155,9 +44739,7 @@ packages: signal-exit: 3.0.7 strip-eof: 1.0.0 - /execa@4.1.0: - resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} - engines: {node: '>=10'} + execa@4.1.0: dependencies: cross-spawn: 7.0.3 get-stream: 5.2.0 @@ -35168,11 +44750,8 @@ packages: onetime: 5.1.2 signal-exit: 3.0.7 strip-final-newline: 2.0.0 - dev: true - /execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} + execa@5.1.1: dependencies: cross-spawn: 7.0.3 get-stream: 6.0.1 @@ -35184,9 +44763,7 @@ packages: signal-exit: 3.0.7 strip-final-newline: 2.0.0 - /execa@8.0.1: - resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} - engines: {node: '>=16.17'} + execa@8.0.1: dependencies: cross-spawn: 7.0.3 get-stream: 8.0.1 @@ -35197,26 +44774,16 @@ packages: onetime: 6.0.0 signal-exit: 4.1.0 strip-final-newline: 3.0.0 - dev: true - /executable@4.1.1: - resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==} - engines: {node: '>=4'} + executable@4.1.1: dependencies: pify: 2.3.0 - dev: true - /exenv@1.2.2: - resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==} - dev: false + exenv@1.2.2: {} - /exit@0.1.2: - resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} - engines: {node: '>= 0.8.0'} + exit@0.1.2: {} - /expand-brackets@2.1.4(supports-color@6.1.0): - resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} - engines: {node: '>=0.10.0'} + expand-brackets@2.1.4(supports-color@6.1.0): dependencies: debug: 2.6.9(supports-color@6.1.0) define-property: 0.2.5 @@ -35228,16 +44795,11 @@ packages: transitivePeerDependencies: - supports-color - /expand-range@1.8.2: - resolution: {integrity: sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==} - engines: {node: '>=0.10.0'} + expand-range@1.8.2: dependencies: fill-range: 2.2.4 - dev: true - /expect@26.6.2: - resolution: {integrity: sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==} - engines: {node: '>= 10.14.2'} + expect@26.6.2: dependencies: '@jest/types': 26.6.2 ansi-styles: 4.3.0 @@ -35245,11 +44807,8 @@ packages: jest-matcher-utils: 26.6.2 jest-message-util: 26.6.2 jest-regex-util: 26.0.0 - dev: true - /expect@29.7.0: - resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + expect@29.7.0: dependencies: '@jest/expect-utils': 29.7.0 jest-get-type: 29.6.3 @@ -35257,13 +44816,9 @@ packages: jest-message-util: 29.7.0 jest-util: 29.7.0 - /exponential-backoff@3.1.1: - resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} - dev: true + exponential-backoff@3.1.1: {} - /express@4.19.2(supports-color@6.1.0): - resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==} - engines: {node: '>= 0.10.0'} + express@4.19.2(supports-color@6.1.0): dependencies: accepts: 1.3.8 array-flatten: 1.1.1 @@ -35299,59 +44854,39 @@ packages: transitivePeerDependencies: - supports-color - /ext-list@2.2.2: - resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} - engines: {node: '>=0.10.0'} + ext-list@2.2.2: dependencies: mime-db: 1.52.0 - dev: true - /ext-name@5.0.0: - resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==} - engines: {node: '>=4'} + ext-name@5.0.0: dependencies: ext-list: 2.2.2 sort-keys-length: 1.0.1 - dev: true - /ext@1.7.0: - resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} + ext@1.7.0: dependencies: type: 2.7.3 - dev: true - /extend-shallow@2.0.1: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} - engines: {node: '>=0.10.0'} + extend-shallow@2.0.1: dependencies: is-extendable: 0.1.1 - /extend-shallow@3.0.2: - resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} - engines: {node: '>=0.10.0'} + extend-shallow@3.0.2: dependencies: assign-symbols: 1.0.0 is-extendable: 1.0.1 - /extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + extend@3.0.2: {} - /extendable-error@0.1.7: - resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} - dev: true + extendable-error@0.1.7: {} - /external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} + external-editor@3.1.0: dependencies: chardet: 0.7.0 iconv-lite: 0.4.24 tmp: 0.0.33 - dev: true - /extglob@2.0.4(supports-color@6.1.0): - resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} - engines: {node: '>=0.10.0'} + extglob@2.0.4(supports-color@6.1.0): dependencies: array-unique: 0.3.2 define-property: 1.0.0 @@ -35364,22 +44899,15 @@ packages: transitivePeerDependencies: - supports-color - /extract-text-webpack-plugin@4.0.0-beta.0(webpack@5.84.1): - resolution: {integrity: sha512-Hypkn9jUTnFr0DpekNam53X47tXn3ucY08BQumv7kdGgeVUBLq3DJHJTi6HNxv4jl9W+Skxjz9+RnK0sJyqqjA==} - engines: {node: '>= 6.9.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 + extract-text-webpack-plugin@4.0.0-beta.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: async: 2.6.4 loader-utils: 1.4.2 schema-utils: 0.4.7 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) webpack-sources: 1.4.3 - dev: true - /extract-zip@1.7.0: - resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==} - hasBin: true + extract-zip@1.7.0: dependencies: concat-stream: 1.6.2 debug: 2.6.9(supports-color@6.1.0) @@ -35388,10 +44916,7 @@ packages: transitivePeerDependencies: - supports-color - /extract-zip@2.0.1(supports-color@8.1.1): - resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} - engines: {node: '>= 10.17.0'} - hasBin: true + extract-zip@2.0.1(supports-color@8.1.1): dependencies: debug: 4.3.5(supports-color@8.1.1) get-stream: 5.2.0 @@ -35400,24 +44925,14 @@ packages: '@types/yauzl': 2.10.3 transitivePeerDependencies: - supports-color - dev: true - /extsprintf@1.3.0: - resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} - engines: {'0': node >=0.6.0} - dev: true + extsprintf@1.3.0: {} - /fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + fast-deep-equal@3.1.3: {} - /fast-equals@5.0.1: - resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==} - engines: {node: '>=6.0.0'} - dev: false + fast-equals@5.0.1: {} - /fast-glob@2.2.7: - resolution: {integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==} - engines: {node: '>=4.0.0'} + fast-glob@2.2.7: dependencies: '@mrmlnc/readdir-enhanced': 2.2.1 '@nodelib/fs.stat': 1.1.3 @@ -35427,22 +44942,16 @@ packages: micromatch: 3.1.10(supports-color@6.1.0) transitivePeerDependencies: - supports-color - dev: false - /fast-glob@3.2.7: - resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} - engines: {node: '>=8'} + fast-glob@3.2.7: 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.7 - dev: true - /fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} - engines: {node: '>=8.6.0'} + fast-glob@3.3.2: dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 @@ -35450,196 +44959,125 @@ packages: merge2: 1.4.1 micromatch: 4.0.7 - /fast-json-parse@1.0.3: - resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==} + fast-json-parse@1.0.3: {} - /fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + fast-json-stable-stringify@2.1.0: {} - /fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + fast-levenshtein@2.0.6: {} - /fast-sha256@1.3.0: - resolution: {integrity: sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==} + fast-sha256@1.3.0: {} - /fast-sort@3.4.0: - resolution: {integrity: sha512-c/cMBGA5mH3OYjaXedtLIM3hQjv+KuZuiD2QEH5GofNOZeQVDIYIN7Okc2AW1KPhk44g5PTZnXp8t2lOMl8qhQ==} - dev: true + fast-sort@3.4.0: {} - /fast-xml-parser@3.21.1: - resolution: {integrity: sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==} - hasBin: true + fast-xml-parser@3.21.1: dependencies: strnum: 1.0.5 - dev: true - /fastest-levenshtein@1.0.16: - resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} - engines: {node: '>= 4.9.1'} + fastest-levenshtein@1.0.16: {} - /fastestsmallesttextencoderdecoder@1.0.22: - resolution: {integrity: sha512-Pb8d48e+oIuY4MaM64Cd7OW1gt4nxCHs7/ddPPZ/Ic3sg8yVGM7O9wDvZ7us6ScaUupzM+pfBolwtYhN1IxBIw==} - dev: false + fastestsmallesttextencoderdecoder@1.0.22: {} - /fastparse@1.1.2: - resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==} - dev: true + fastparse@1.1.2: {} - /fastq@1.17.1: - resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + fastq@1.17.1: dependencies: reusify: 1.0.4 - /faye-websocket@0.11.4: - resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} - engines: {node: '>=0.8.0'} + faye-websocket@0.11.4: dependencies: websocket-driver: 0.7.4 - /fb-watchman@2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + fb-watchman@2.0.2: dependencies: bser: 2.1.1 - /fd-slicer@1.1.0: - resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + fd-slicer@1.1.0: dependencies: pend: 1.2.0 - /fetch-retry@5.0.6: - resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==} + fetch-retry@5.0.6: {} - /figures@3.2.0: - resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} - engines: {node: '>=8'} + figures@3.2.0: dependencies: escape-string-regexp: 1.0.5 - dev: true - /file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} + file-entry-cache@6.0.1: dependencies: flat-cache: 3.2.0 - /file-loader@2.0.0(webpack@5.84.1): - resolution: {integrity: sha512-YCsBfd1ZGCyonOKLxPiKPdu+8ld9HAaMEvJewzz+b2eTF7uL5Zm/HdBF6FjCrpCMRq25Mi0U1gl4pwn2TlH7hQ==} - engines: {node: '>= 6.9.0 < 7.0.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 + file-loader@2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: loader-utils: 1.4.2 schema-utils: 1.0.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /file-loader@6.2.0(webpack@5.84.1): - resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 + file-loader@6.2.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /file-saver@2.0.5: - resolution: {integrity: sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==} - dev: false + file-saver@2.0.5: {} - /file-system-cache@1.1.0: - resolution: {integrity: sha512-IzF5MBq+5CR0jXx5RxPe4BICl/oEhBSXKaL9fLhAXrIfIUS77Hr4vzrYyqYMHN6uTt+BOqi3fDCTjjEBCjERKw==} + file-system-cache@1.1.0: dependencies: fs-extra: 10.1.0 ramda: 0.28.0 - /file-system-cache@2.3.0: - resolution: {integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==} + file-system-cache@2.3.0: dependencies: fs-extra: 11.1.1 ramda: 0.29.0 - dev: true - /file-type@17.1.6: - resolution: {integrity: sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + file-type@17.1.6: dependencies: readable-web-to-node-stream: 3.0.2 strtok3: 7.1.0 token-types: 5.0.1 - dev: true - /file-uri-to-path@1.0.0: - resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} - requiresBuild: true + file-uri-to-path@1.0.0: optional: true - /filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + filelist@1.0.4: dependencies: minimatch: 5.1.6 - dev: true - /filename-reserved-regex@3.0.0: - resolution: {integrity: sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + filename-reserved-regex@3.0.0: {} - /filenamify@5.1.1: - resolution: {integrity: sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==} - engines: {node: '>=12.20'} + filenamify@5.1.1: dependencies: filename-reserved-regex: 3.0.0 strip-outer: 2.0.0 trim-repeated: 2.0.0 - dev: true - /filesize@3.6.1: - resolution: {integrity: sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==} - engines: {node: '>= 0.4.0'} - dev: true + filesize@3.6.1: {} - /fill-range@2.2.4: - resolution: {integrity: sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==} - engines: {node: '>=0.10.0'} + fill-range@2.2.4: dependencies: is-number: 2.1.0 isobject: 2.1.0 randomatic: 3.1.1 repeat-element: 1.1.4 repeat-string: 1.6.1 - dev: true - /fill-range@4.0.0: - resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} - engines: {node: '>=0.10.0'} + fill-range@4.0.0: dependencies: extend-shallow: 2.0.1 is-number: 3.0.0 repeat-string: 1.6.1 to-regex-range: 2.1.1 - /fill-range@7.1.1: - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} - engines: {node: '>=8'} + fill-range@7.1.1: dependencies: to-regex-range: 5.0.1 - /filter-obj@1.1.0: - resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} - engines: {node: '>=0.10.0'} - dev: true + filter-obj@1.1.0: {} - /final-form@4.20.10: - resolution: {integrity: sha512-TL48Pi1oNHeMOHrKv1bCJUrWZDcD3DIG6AGYVNOnyZPr7Bd/pStN0pL+lfzF5BNoj/FclaoiaLenk4XUIFVYng==} - engines: {node: '>=8'} + final-form@4.20.10: dependencies: '@babel/runtime': 7.24.7 - dev: false - /finalhandler@1.2.0(supports-color@6.1.0): - resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} - engines: {node: '>= 0.8'} + finalhandler@1.2.0(supports-color@6.1.0): dependencies: debug: 2.6.9(supports-color@6.1.0) encodeurl: 1.0.2 @@ -35651,216 +45089,128 @@ packages: transitivePeerDependencies: - supports-color - /find-cache-dir@2.1.0: - resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} - engines: {node: '>=6'} + find-cache-dir@2.1.0: dependencies: commondir: 1.0.1 make-dir: 2.1.0 pkg-dir: 3.0.0 - /find-cache-dir@3.3.2: - resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} - engines: {node: '>=8'} + find-cache-dir@3.3.2: dependencies: commondir: 1.0.1 make-dir: 3.1.0 pkg-dir: 4.2.0 - /find-cache-dir@4.0.0: - resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==} - engines: {node: '>=14.16'} + find-cache-dir@4.0.0: dependencies: common-path-prefix: 3.0.0 pkg-dir: 7.0.0 - dev: true - /find-root@1.1.0: - resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} - dev: false + find-root@1.1.0: {} - /find-up@1.1.2: - resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==} - engines: {node: '>=0.10.0'} - requiresBuild: true + find-up@1.1.2: dependencies: path-exists: 2.1.0 pinkie-promise: 2.0.1 - dev: false optional: true - /find-up@2.1.0: - resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} - engines: {node: '>=4'} + find-up@2.1.0: dependencies: locate-path: 2.0.0 - dev: true - /find-up@3.0.0: - resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} - engines: {node: '>=6'} + find-up@3.0.0: dependencies: locate-path: 3.0.0 - /find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} + find-up@4.1.0: dependencies: locate-path: 5.0.0 path-exists: 4.0.0 - /find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} + find-up@5.0.0: dependencies: locate-path: 6.0.0 path-exists: 4.0.0 - /find-up@6.3.0: - resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + find-up@6.3.0: dependencies: locate-path: 7.2.0 path-exists: 5.0.0 - dev: true - /find-versions@5.1.0: - resolution: {integrity: sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==} - engines: {node: '>=12'} + find-versions@5.1.0: dependencies: semver-regex: 4.0.5 - dev: true - /find-yarn-workspace-root2@1.2.16: - resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} + find-yarn-workspace-root2@1.2.16: dependencies: micromatch: 4.0.7 pkg-dir: 4.2.0 - dev: true - /flat-cache@3.2.0: - resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} - engines: {node: ^10.12.0 || >=12.0.0} + flat-cache@3.2.0: dependencies: flatted: 3.3.1 keyv: 4.5.4 rimraf: 3.0.2 - /flat@5.0.2: - resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} - hasBin: true + flat@5.0.2: {} - /flatted@2.0.2: - resolution: {integrity: sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==} - dev: true + flatted@2.0.2: {} - /flatted@3.3.1: - resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} + flatted@3.3.1: {} - /flow-parser@0.238.0: - resolution: {integrity: sha512-VE7XSv1epljsIN2YeBnxCmGJihpNIAnLLu/pPOdA+Gkso7qDltJwUi6vfHjgxdBbjSdAuPGnhuOHJUQG+yYwIg==} - engines: {node: '>=0.4.0'} + flow-parser@0.238.0: {} - /follow-redirects@1.15.6(debug@4.3.5): - resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} - engines: {node: '>=4.0'} - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true - dependencies: + follow-redirects@1.15.6(debug@4.3.5(supports-color@6.1.0)): + optionalDependencies: debug: 4.3.5(supports-color@6.1.0) - /follow-redirects@1.5.10: - resolution: {integrity: sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==} - engines: {node: '>=4.0'} + follow-redirects@1.5.10: dependencies: debug: 3.1.0 transitivePeerDependencies: - supports-color - dev: false - /for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + for-each@0.3.3: dependencies: is-callable: 1.2.7 - /for-in@0.1.8: - resolution: {integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==} - engines: {node: '>=0.10.0'} - dev: true + for-in@0.1.8: {} - /for-in@1.0.2: - resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} - engines: {node: '>=0.10.0'} + for-in@1.0.2: {} - /for-own@0.1.5: - resolution: {integrity: sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==} - engines: {node: '>=0.10.0'} + for-own@0.1.5: dependencies: for-in: 1.0.2 - dev: true - /foreground-child@2.0.0: - resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} - engines: {node: '>=8.0.0'} + foreground-child@2.0.0: dependencies: cross-spawn: 7.0.3 signal-exit: 3.0.7 - /foreground-child@3.2.1: - resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==} - engines: {node: '>=14'} + foreground-child@3.2.1: dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 - /forever-agent@0.6.1: - resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} - dev: true + forever-agent@0.6.1: {} - /fork-ts-checker-webpack-plugin@4.1.6(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1): - resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} - engines: {node: '>=6.11.5', yarn: '>=1.0.0'} - peerDependencies: - eslint: '>= 6' - typescript: '>= 2.7' - vue-template-compiler: '*' - webpack: 5.84.1 - peerDependenciesMeta: - eslint: - optional: true - vue-template-compiler: - optional: true + fork-ts-checker-webpack-plugin@4.1.6(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@babel/code-frame': 7.24.7 chalk: 2.4.2 - eslint: 7.32.0 micromatch: 3.1.10(supports-color@6.1.0) minimatch: 3.1.2 semver: 5.7.2 tapable: 1.1.3 typescript: 4.9.5 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) worker-rpc: 0.1.1 + optionalDependencies: + eslint: 7.32.0 transitivePeerDependencies: - supports-color - dev: false - /fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1): - resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} - engines: {node: '>=10', yarn: '>=1.0.0'} - peerDependencies: - eslint: '>= 6' - typescript: '>= 2.7' - vue-template-compiler: '*' - webpack: 5.84.1 - peerDependenciesMeta: - eslint: - optional: true - vue-template-compiler: - optional: true + fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@babel/code-frame': 7.24.7 '@types/json-schema': 7.0.15 @@ -35868,7 +45218,6 @@ packages: chokidar: 3.6.0 cosmiconfig: 6.0.0 deepmerge: 4.3.1 - eslint: 7.32.0 fs-extra: 9.1.0 glob: 7.2.3 memfs: 3.5.3 @@ -35877,21 +45226,11 @@ packages: semver: 7.6.2 tapable: 1.1.3 typescript: 4.9.5 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + eslint: 7.32.0 - /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.46.0)(typescript@5.1.6)(webpack@5.84.1): - resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} - engines: {node: '>=10', yarn: '>=1.0.0'} - peerDependencies: - eslint: '>= 6' - typescript: '>= 2.7' - vue-template-compiler: '*' - webpack: 5.84.1 - peerDependenciesMeta: - eslint: - optional: true - vue-template-compiler: - optional: true + fork-ts-checker-webpack-plugin@6.5.3(eslint@8.46.0)(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@babel/code-frame': 7.24.7 '@types/json-schema': 7.0.15 @@ -35899,7 +45238,6 @@ packages: chokidar: 3.6.0 cosmiconfig: 6.0.0 deepmerge: 4.3.1 - eslint: 8.46.0 fs-extra: 9.1.0 glob: 7.2.3 memfs: 3.5.3 @@ -35908,19 +45246,11 @@ packages: semver: 7.6.2 tapable: 1.1.3 typescript: 5.1.6 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + eslint: 8.46.0 - /fork-ts-checker-webpack-plugin@7.2.13(typescript@5.1.6)(webpack@5.84.1): - resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==} - engines: {node: '>=12.13.0', yarn: '>=1.0.0'} - peerDependencies: - typescript: '>3.6.0' - vue-template-compiler: '*' - webpack: 5.84.1 - peerDependenciesMeta: - vue-template-compiler: - optional: true + fork-ts-checker-webpack-plugin@7.2.13(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@babel/code-frame': 7.24.7 chalk: 4.1.2 @@ -35935,15 +45265,9 @@ packages: semver: 7.6.2 tapable: 2.2.1 typescript: 5.1.6 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /fork-ts-checker-webpack-plugin@8.0.0(typescript@5.1.6)(webpack@5.84.1): - resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} - engines: {node: '>=12.13.0', yarn: '>=1.0.0'} - peerDependencies: - typescript: '>3.6.0' - webpack: 5.84.1 + fork-ts-checker-webpack-plugin@8.0.0(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@babel/code-frame': 7.24.7 chalk: 4.1.2 @@ -35958,193 +45282,120 @@ packages: semver: 7.6.2 tapable: 2.2.1 typescript: 5.1.6 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /form-data@2.3.3: - resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} - engines: {node: '>= 0.12'} + form-data@2.3.3: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 - dev: true - /form-data@3.0.1: - resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} - engines: {node: '>= 6'} + form-data@3.0.1: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 - dev: true - /form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} - engines: {node: '>= 6'} + form-data@4.0.0: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 - /forwarded@0.2.0: - resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} - engines: {node: '>= 0.6'} + forwarded@0.2.0: {} - /fraction.js@4.3.7: - resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} - dev: true + fraction.js@4.3.7: {} - /fragment-cache@0.2.1: - resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} - engines: {node: '>=0.10.0'} + fragment-cache@0.2.1: dependencies: map-cache: 0.2.2 - /framer-motion@11.2.11(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-n+ozoEzgJu/2h9NoQMokF+CwNqIRVyuRC4RwMPwklfrrTjbVV32k9uBIgqYAwn7Jfpt5LuDVCtT57MWz1FbaLw==} - peerDependencies: - '@emotion/is-prop-valid': '*' - react: ^18.0.0 - react-dom: ^18.0.0 - peerDependenciesMeta: - '@emotion/is-prop-valid': - optional: true - react: - optional: true - react-dom: - optional: true + framer-motion@11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: + tslib: 2.6.3 + optionalDependencies: + '@emotion/is-prop-valid': 1.2.2 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - tslib: 2.6.3 - dev: false - /fresh@0.5.2: - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} - engines: {node: '>= 0.6'} + fresh@0.5.2: {} - /fromentries@1.3.2: - resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==} - dev: true + fromentries@1.3.2: {} - /fs-constants@1.0.0: - resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} - dev: true + fs-constants@1.0.0: {} - /fs-extra@10.1.0: - resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} - engines: {node: '>=12'} + fs-extra@10.1.0: dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 - /fs-extra@11.1.1: - resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} - engines: {node: '>=14.14'} + fs-extra@11.1.1: dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 - dev: true - /fs-extra@11.2.0: - resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} - engines: {node: '>=14.14'} + fs-extra@11.2.0: dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 - dev: true - /fs-extra@7.0.1: - resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} - engines: {node: '>=6 <7 || >=8'} + fs-extra@7.0.1: dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 - dev: true - /fs-extra@8.1.0: - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} - engines: {node: '>=6 <7 || >=8'} + fs-extra@8.1.0: dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 - dev: true - /fs-extra@9.1.0: - resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} - engines: {node: '>=10'} + fs-extra@9.1.0: dependencies: at-least-node: 1.0.0 graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 - /fs-minipass@2.1.0: - resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} - engines: {node: '>= 8'} + fs-minipass@2.1.0: dependencies: minipass: 3.3.6 - /fs-monkey@1.0.6: - resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==} + fs-monkey@1.0.6: {} - /fs-readdir-recursive@1.1.0: - resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==} - dev: true + fs-readdir-recursive@1.1.0: {} - /fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + fs.realpath@1.0.0: {} - /fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - dev: true + fs@0.0.1-security: {} - /fsevents@1.2.13: - resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==} - engines: {node: '>= 4.0'} - os: [darwin] - deprecated: The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2 - requiresBuild: true + fsevents@1.2.13: dependencies: bindings: 1.5.0 nan: 2.20.0 optional: true - /fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - requiresBuild: true + fsevents@2.3.3: optional: true - /function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + function-bind@1.1.2: {} - /function.prototype.name@1.1.6: - resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} - engines: {node: '>= 0.4'} + function.prototype.name@1.1.6: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 functions-have-names: 1.2.3 - /functional-red-black-tree@1.0.1: - resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} + functional-red-black-tree@1.0.1: {} - /functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + functions-have-names@1.2.3: {} - /gauge@3.0.2: - resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} - engines: {node: '>=10'} - deprecated: This package is no longer supported. + gauge@3.0.2: dependencies: aproba: 2.0.0 color-support: 1.1.3 @@ -36156,10 +45407,7 @@ packages: strip-ansi: 6.0.1 wide-align: 1.1.5 - /gauge@4.0.4: - resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. + gauge@4.0.4: dependencies: aproba: 2.0.0 color-support: 1.1.3 @@ -36169,25 +45417,16 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 wide-align: 1.1.5 - dev: true - /generic-names@4.0.0: - resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} + generic-names@4.0.0: dependencies: loader-utils: 3.3.1 - dev: true - /gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} + gensync@1.0.0-beta.2: {} - /get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} + get-caller-file@2.0.5: {} - /get-intrinsic@1.2.4: - resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} - engines: {node: '>= 0.4'} + get-intrinsic@1.2.4: dependencies: es-errors: 1.3.0 function-bind: 1.1.2 @@ -36195,90 +45434,53 @@ packages: has-symbols: 1.0.3 hasown: 2.0.2 - /get-npm-tarball-url@2.1.0: - resolution: {integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==} - engines: {node: '>=12.17'} - dev: true + get-npm-tarball-url@2.1.0: {} - /get-package-type@0.1.0: - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} - engines: {node: '>=8.0.0'} + get-package-type@0.1.0: {} - /get-pkg-repo@4.2.1: - resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} - engines: {node: '>=6.9.0'} - hasBin: true + get-pkg-repo@4.2.1: dependencies: '@hutson/parse-repository-url': 3.0.2 hosted-git-info: 4.1.0 through2: 2.0.5 yargs: 16.2.0 - dev: true - /get-port@5.1.1: - resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} - engines: {node: '>=8'} + get-port@5.1.1: {} - /get-stdin@4.0.1: - resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==} - engines: {node: '>=0.10.0'} - requiresBuild: true - dev: false + get-stdin@4.0.1: optional: true - /get-stream@3.0.0: - resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==} - engines: {node: '>=4'} - dev: true + get-stream@3.0.0: {} - /get-stream@4.1.0: - resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} - engines: {node: '>=6'} + get-stream@4.1.0: dependencies: pump: 3.0.0 - /get-stream@5.2.0: - resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} - engines: {node: '>=8'} + get-stream@5.2.0: dependencies: pump: 3.0.0 - /get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} + get-stream@6.0.1: {} - /get-stream@8.0.1: - resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} - engines: {node: '>=16'} - dev: true + get-stream@8.0.1: {} - /get-symbol-description@1.0.2: - resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} - engines: {node: '>= 0.4'} + get-symbol-description@1.0.2: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 get-intrinsic: 1.2.4 - /get-value@2.0.6: - resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} - engines: {node: '>=0.10.0'} + get-value@2.0.6: {} - /getos@3.2.1: - resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} + getos@3.2.1: dependencies: async: 3.2.5 - dev: true - /getpass@0.1.7: - resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} + getpass@0.1.7: dependencies: assert-plus: 1.0.0 - dev: true - /giget@1.2.3: - resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==} - hasBin: true + giget@1.2.3: dependencies: citty: 0.1.6 consola: 3.2.3 @@ -36288,100 +45490,63 @@ packages: ohash: 1.1.3 pathe: 1.1.2 tar: 6.2.1 - dev: true - /git-raw-commits@2.0.11: - resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} - engines: {node: '>=10'} - hasBin: true + git-raw-commits@2.0.11: dependencies: dargs: 7.0.0 lodash: 4.17.21 meow: 8.1.2 split2: 3.2.2 through2: 4.0.2 - dev: true - /git-remote-origin-url@2.0.0: - resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} - engines: {node: '>=4'} + git-remote-origin-url@2.0.0: dependencies: gitconfiglocal: 1.0.0 pify: 2.3.0 - dev: true - /git-semver-tags@4.1.1: - resolution: {integrity: sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==} - engines: {node: '>=10'} - hasBin: true + git-semver-tags@4.1.1: dependencies: meow: 8.1.2 semver: 6.3.1 - dev: true - /git-up@7.0.0: - resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} + git-up@7.0.0: dependencies: is-ssh: 1.4.0 parse-url: 8.1.0 - dev: true - /git-url-parse@13.1.1: - resolution: {integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==} + git-url-parse@13.1.1: dependencies: git-up: 7.0.0 - dev: true - /gitconfiglocal@1.0.0: - resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==} + gitconfiglocal@1.0.0: dependencies: ini: 1.3.8 - dev: true - /github-slugger@1.5.0: - resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} - dev: true + github-slugger@1.5.0: {} - /glob-parent@3.1.0: - resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==} + glob-parent@3.1.0: dependencies: is-glob: 3.1.0 path-dirname: 1.0.2 - /glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} + glob-parent@5.1.2: dependencies: is-glob: 4.0.3 - /glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} + glob-parent@6.0.2: dependencies: is-glob: 4.0.3 - dev: true - /glob-promise@3.4.0(glob@7.2.3): - resolution: {integrity: sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==} - engines: {node: '>=4'} - peerDependencies: - glob: '*' + glob-promise@3.4.0(glob@7.2.3): dependencies: '@types/glob': 8.1.0 glob: 7.2.3 - dev: false - /glob-to-regexp@0.3.0: - resolution: {integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==} - dev: false + glob-to-regexp@0.3.0: {} - /glob-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + glob-to-regexp@0.4.1: {} - /glob@10.4.2: - resolution: {integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==} - engines: {node: '>=16 || 14 >=14.18'} - hasBin: true + glob@10.4.2: dependencies: foreground-child: 3.2.1 jackspeak: 3.4.0 @@ -36390,9 +45555,7 @@ packages: package-json-from-dist: 1.0.0 path-scurry: 1.11.1 - /glob@7.1.4: - resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} - deprecated: Glob versions prior to v9 are no longer supported + glob@7.1.4: dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -36400,11 +45563,8 @@ packages: minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 - dev: true - /glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - deprecated: Glob versions prior to v9 are no longer supported + glob@7.2.3: dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -36413,55 +45573,37 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 - /glob@8.1.0: - resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} - engines: {node: '>=12'} - deprecated: Glob versions prior to v9 are no longer supported + glob@8.1.0: dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 minimatch: 5.1.6 once: 1.4.0 - dev: true - /global-dirs@3.0.1: - resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} - engines: {node: '>=10'} + global-dirs@3.0.1: dependencies: ini: 2.0.0 - /global@4.4.0: - resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==} + global@4.4.0: dependencies: min-document: 2.19.0 process: 0.11.10 - /globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} + globals@11.12.0: {} - /globals@13.24.0: - resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} - engines: {node: '>=8'} + globals@13.24.0: dependencies: type-fest: 0.20.2 - /globals@9.18.0: - resolution: {integrity: sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==} - engines: {node: '>=0.10.0'} - dev: true + globals@9.18.0: {} - /globalthis@1.0.4: - resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} - engines: {node: '>= 0.4'} + globalthis@1.0.4: dependencies: define-properties: 1.2.1 gopd: 1.0.1 - /globby@10.0.1: - resolution: {integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==} - engines: {node: '>=8'} + globby@10.0.1: dependencies: '@types/glob': 7.2.0 array-union: 2.1.0 @@ -36471,11 +45613,8 @@ packages: ignore: 5.3.1 merge2: 1.4.1 slash: 3.0.0 - dev: true - /globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} + globby@11.1.0: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 @@ -36484,9 +45623,7 @@ packages: merge2: 1.4.1 slash: 3.0.0 - /globby@12.2.0: - resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + globby@12.2.0: dependencies: array-union: 3.0.1 dir-glob: 3.0.1 @@ -36494,11 +45631,8 @@ packages: ignore: 5.3.1 merge2: 1.4.1 slash: 4.0.0 - dev: true - /globby@14.0.2: - resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} - engines: {node: '>=18'} + globby@14.0.2: dependencies: '@sindresorhus/merge-streams': 2.3.0 fast-glob: 3.3.2 @@ -36506,21 +45640,16 @@ packages: path-type: 5.0.0 slash: 5.1.0 unicorn-magic: 0.1.0 - dev: true - /globby@6.1.0: - resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==} - engines: {node: '>=0.10.0'} + globby@6.1.0: dependencies: array-union: 1.0.2 glob: 7.2.3 object-assign: 4.1.1 pify: 2.3.0 pinkie-promise: 2.0.1 - - /globby@9.2.0: - resolution: {integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==} - engines: {node: '>=6'} + + globby@9.2.0: dependencies: '@types/glob': 7.2.0 array-union: 1.0.2 @@ -36532,16 +45661,12 @@ packages: slash: 2.0.0 transitivePeerDependencies: - supports-color - dev: false - /gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + gopd@1.0.1: dependencies: get-intrinsic: 1.2.4 - /got@11.8.6: - resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} - engines: {node: '>=10.19.0'} + got@11.8.6: dependencies: '@sindresorhus/is': 4.6.0 '@szmarczak/http-timer': 4.0.6 @@ -36554,11 +45679,8 @@ packages: lowercase-keys: 2.0.0 p-cancelable: 2.1.1 responselike: 2.0.1 - dev: true - /got@9.6.0: - resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} - engines: {node: '>=8.6'} + got@9.6.0: dependencies: '@sindresorhus/is': 0.14.0 '@szmarczak/http-timer': 1.1.2 @@ -36573,53 +45695,33 @@ packages: p-cancelable: 1.1.0 to-readable-stream: 1.0.0 url-parse-lax: 3.0.0 - dev: false - /graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + graceful-fs@4.2.11: {} - /grapheme-splitter@1.0.4: - resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} - dev: true + grapheme-splitter@1.0.4: {} - /graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} - dev: true + graphemer@1.4.0: {} - /graphql@15.9.0: - resolution: {integrity: sha512-GCOQdvm7XxV1S4U4CGrsdlEN37245eC8P9zaYCMr6K1BG0IPGy5lUwmJsEOGyl1GD6HXjOtl2keCP9asRBwNvA==} - engines: {node: '>= 10.x'} - dev: true + graphql@15.9.0: {} - /gray-matter@2.1.1: - resolution: {integrity: sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==} - engines: {node: '>=0.10.0'} + gray-matter@2.1.1: dependencies: ansi-red: 0.1.1 coffee-script: 1.12.7 extend-shallow: 2.0.1 js-yaml: 3.13.1 toml: 2.3.6 - dev: true - /growly@1.3.0: - resolution: {integrity: sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==} - requiresBuild: true - dev: true + growly@1.3.0: optional: true - /gulp-header@1.8.12: - resolution: {integrity: sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==} - deprecated: Removed event-stream from gulp-header + gulp-header@1.8.12: dependencies: concat-with-sourcemaps: 1.1.0 lodash.template: 4.5.0 through2: 2.0.5 - dev: true - /gunzip-maybe@1.4.2: - resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==} - hasBin: true + gunzip-maybe@1.4.2: dependencies: browserify-zlib: 0.1.4 is-deflate: 1.0.0 @@ -36627,21 +45729,14 @@ packages: peek-stream: 1.1.3 pumpify: 1.5.1 through2: 2.0.5 - dev: true - /gzip-size@6.0.0: - resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} - engines: {node: '>=10'} + gzip-size@6.0.0: dependencies: duplexer: 0.1.2 - /handle-thing@2.0.1: - resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} + handle-thing@2.0.1: {} - /handlebars@4.7.8: - resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} - engines: {node: '>=0.4.7'} - hasBin: true + handlebars@4.7.8: dependencies: minimist: 1.2.8 neo-async: 2.6.2 @@ -36650,115 +45745,71 @@ packages: optionalDependencies: uglify-js: 3.18.0 - /hard-rejection@2.1.0: - resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} - engines: {node: '>=6'} - dev: true + hard-rejection@2.1.0: {} - /harmony-reflect@1.6.2: - resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} - dev: true + harmony-reflect@1.6.2: {} - /has-ansi@2.0.0: - resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} - engines: {node: '>=0.10.0'} + has-ansi@2.0.0: dependencies: ansi-regex: 2.1.1 - dev: true - /has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + has-bigints@1.0.2: {} - /has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} + has-flag@3.0.0: {} - /has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} + has-flag@4.0.0: {} - /has-glob@1.0.0: - resolution: {integrity: sha512-D+8A457fBShSEI3tFCj65PAbT++5sKiFtdCdOam0gnfBgw9D277OERk+HM9qYJXmdVLZ/znez10SqHN0BBQ50g==} - engines: {node: '>=0.10.0'} + has-glob@1.0.0: dependencies: is-glob: 3.1.0 - dev: false - /has-property-descriptors@1.0.2: - resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + has-property-descriptors@1.0.2: dependencies: es-define-property: 1.0.0 - /has-proto@1.0.3: - resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} - engines: {node: '>= 0.4'} + has-proto@1.0.3: {} - /has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} + has-symbols@1.0.3: {} - /has-tostringtag@1.0.2: - resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} - engines: {node: '>= 0.4'} + has-tostringtag@1.0.2: dependencies: has-symbols: 1.0.3 - /has-unicode@2.0.1: - resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + has-unicode@2.0.1: {} - /has-value@0.3.1: - resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} - engines: {node: '>=0.10.0'} + has-value@0.3.1: dependencies: get-value: 2.0.6 has-values: 0.1.4 isobject: 2.1.0 - /has-value@1.0.0: - resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} - engines: {node: '>=0.10.0'} + has-value@1.0.0: dependencies: get-value: 2.0.6 has-values: 1.0.0 isobject: 3.0.1 - /has-values@0.1.4: - resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} - engines: {node: '>=0.10.0'} + has-values@0.1.4: {} - /has-values@1.0.0: - resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} - engines: {node: '>=0.10.0'} + has-values@1.0.0: dependencies: is-number: 3.0.0 kind-of: 4.0.0 - /has-yarn@2.1.0: - resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==} - engines: {node: '>=8'} - dev: false + has-yarn@2.1.0: {} - /has@1.0.4: - resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} - engines: {node: '>= 0.4.0'} - dev: true + has@1.0.4: {} - /hasha@5.2.2: - resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} - engines: {node: '>=8'} + hasha@5.2.2: dependencies: is-stream: 2.0.1 type-fest: 0.8.1 - dev: true - /hasown@2.0.2: - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} - engines: {node: '>= 0.4'} + hasown@2.0.2: dependencies: function-bind: 1.1.2 - /hast-to-hyperscript@9.0.1: - resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==} + hast-to-hyperscript@9.0.1: dependencies: '@types/unist': 2.0.10 comma-separated-tokens: 1.0.8 @@ -36768,8 +45819,7 @@ packages: unist-util-is: 4.1.0 web-namespaces: 1.1.4 - /hast-util-from-parse5@6.0.1: - resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==} + hast-util-from-parse5@6.0.1: dependencies: '@types/parse5': 5.0.3 hastscript: 6.0.0 @@ -36778,11 +45828,9 @@ packages: vfile-location: 3.2.0 web-namespaces: 1.1.4 - /hast-util-parse-selector@2.2.5: - resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==} + hast-util-parse-selector@2.2.5: {} - /hast-util-raw@6.0.1: - resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==} + hast-util-raw@6.0.1: dependencies: '@types/hast': 2.3.10 hast-util-from-parse5: 6.0.1 @@ -36795,8 +45843,27 @@ packages: xtend: 4.0.2 zwitch: 1.0.5 - /hast-util-to-parse5@6.0.0: - resolution: {integrity: sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==} + hast-util-to-jsx-runtime@2.3.0: + dependencies: + '@types/estree': 1.0.5 + '@types/hast': 3.0.4 + '@types/unist': 3.0.2 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + hast-util-whitespace: 3.0.0 + mdast-util-mdx-expression: 2.0.0 + mdast-util-mdx-jsx: 3.1.2 + mdast-util-mdxjs-esm: 2.0.1 + property-information: 6.5.0 + space-separated-tokens: 2.0.2 + style-to-object: 1.0.6 + unist-util-position: 5.0.0 + vfile-message: 4.0.2 + transitivePeerDependencies: + - supports-color + + hast-util-to-parse5@6.0.0: dependencies: hast-to-hyperscript: 9.0.1 property-information: 5.6.0 @@ -36804,8 +45871,11 @@ packages: xtend: 4.0.2 zwitch: 1.0.5 - /hastscript@6.0.0: - resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} + hast-util-whitespace@3.0.0: + dependencies: + '@types/hast': 3.0.4 + + hastscript@6.0.0: dependencies: '@types/hast': 2.3.10 comma-separated-tokens: 1.0.8 @@ -36813,16 +45883,11 @@ packages: property-information: 5.6.0 space-separated-tokens: 1.1.5 - /he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} - hasBin: true + he@1.2.0: {} - /headers-utils@3.0.2: - resolution: {integrity: sha512-xAxZkM1dRyGV2Ou5bzMxBPNLoRCjcX+ya7KSWybQD2KwLphxsapUVK6x/02o7f4VU6GPSXch9vNY2+gkU8tYWQ==} - dev: true + headers-utils@3.0.2: {} - /history@4.10.1: - resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==} + history@4.10.1: dependencies: '@babel/runtime': 7.24.7 loose-envify: 1.4.0 @@ -36830,98 +45895,58 @@ packages: tiny-invariant: 1.3.3 tiny-warning: 1.0.3 value-equal: 1.0.1 - dev: false - /hoist-non-react-statics@2.5.5: - resolution: {integrity: sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==} - dev: false + hoist-non-react-statics@2.5.5: {} - /hoist-non-react-statics@3.3.2: - resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} + hoist-non-react-statics@3.3.2: dependencies: react-is: 16.13.1 - /home-or-tmp@2.0.0: - resolution: {integrity: sha512-ycURW7oUxE2sNiPVw1HVEFsW+ecOpJ5zaj7eC0RlwhibhRBod20muUN8qu/gzx956YrLolVvs1MTXwKgC2rVEg==} - engines: {node: '>=0.10.0'} - dependencies: - os-homedir: 1.0.2 - os-tmpdir: 1.0.2 - dev: true - - /hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + hosted-git-info@2.8.9: {} - /hosted-git-info@3.0.8: - resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==} - engines: {node: '>=10'} + hosted-git-info@3.0.8: dependencies: lru-cache: 6.0.0 - dev: true - /hosted-git-info@4.1.0: - resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} - engines: {node: '>=10'} + hosted-git-info@4.1.0: dependencies: lru-cache: 6.0.0 - dev: true - /hosted-git-info@5.2.1: - resolution: {integrity: sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hosted-git-info@5.2.1: dependencies: lru-cache: 7.18.3 - dev: true - /hosted-git-info@7.0.2: - resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==} - engines: {node: ^16.14.0 || >=18.0.0} + hosted-git-info@7.0.2: dependencies: lru-cache: 10.4.3 - dev: true - /hpack.js@2.1.6: - resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} + hpack.js@2.1.6: dependencies: inherits: 2.0.4 obuf: 1.1.2 readable-stream: 2.3.8 wbuf: 1.7.3 - /html-dom-parser@2.0.0: - resolution: {integrity: sha512-PwVjg12yfWunpH2WjwjaYNKcZyKKm20kclTfMQohiRzfgYiXX0dR7nXIIKnHneghMDvB0rKFZLEAe11ykOfpcg==} + html-dom-parser@2.0.0: dependencies: domhandler: 4.3.1 htmlparser2: 7.2.0 - dev: false - /html-encoding-sniffer@2.0.1: - resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} - engines: {node: '>=10'} + html-encoding-sniffer@2.0.1: dependencies: whatwg-encoding: 1.0.5 - dev: true - /html-encoding-sniffer@3.0.0: - resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} - engines: {node: '>=12'} + html-encoding-sniffer@3.0.0: dependencies: whatwg-encoding: 2.0.0 - dev: true - /html-entities@1.4.0: - resolution: {integrity: sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==} + html-entities@1.4.0: {} - /html-entities@2.5.2: - resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} + html-entities@2.5.2: {} - /html-escaper@2.0.2: - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + html-escaper@2.0.2: {} - /html-minifier-terser@5.1.1: - resolution: {integrity: sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==} - engines: {node: '>=6'} - hasBin: true + html-minifier-terser@5.1.1: dependencies: camel-case: 4.1.2 clean-css: 4.2.4 @@ -36930,12 +45955,8 @@ packages: param-case: 3.0.4 relateurl: 0.2.7 terser: 4.8.1 - dev: false - /html-minifier-terser@6.1.0: - resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} - engines: {node: '>=12'} - hasBin: true + html-minifier-terser@6.1.0: dependencies: camel-case: 4.1.2 clean-css: 5.3.3 @@ -36945,47 +45966,25 @@ packages: relateurl: 0.2.7 terser: 5.31.1 - /html-parse-stringify@3.0.1: - resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==} + html-parse-stringify@3.0.1: dependencies: void-elements: 3.1.0 - dev: false - /html-react-parser@2.0.0(react@18.3.1): - resolution: {integrity: sha512-AI1lhybWGi8w4QkGtEIS3iSGAjeFGaonxl/+CzqzCeNT3g3z/yx2NKsA93trnv2BLjhe+juGLmLeTSUkyYWk9Q==} - peerDependencies: - react: 0.14 || 15 || 16 || 17 || 18 + html-react-parser@2.0.0(react@18.3.1): dependencies: domhandler: 4.3.1 html-dom-parser: 2.0.0 react: 18.3.1 react-property: 2.0.0 style-to-js: 1.1.1 - dev: false - /html-tags@3.3.1: - resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} - engines: {node: '>=8'} + html-tags@3.3.1: {} - /html-to-react@1.7.0(react@18.3.1): - resolution: {integrity: sha512-b5HTNaTGyOj5GGIMiWVr1k57egAZ/vGy0GGefnCQ1VW5hu9+eku8AXHtf2/DeD95cj/FKBKYa1J7SWBOX41yUQ==} - peerDependencies: - react: ^0.13.0 || ^0.14.0 || >=15 - dependencies: - domhandler: 5.0.3 - htmlparser2: 9.1.0 - lodash.camelcase: 4.3.0 - react: 18.3.1 - dev: false + html-url-attributes@3.0.0: {} - /html-void-elements@1.0.5: - resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==} + html-void-elements@1.0.5: {} - /html-webpack-plugin@4.5.2(webpack@5.84.1): - resolution: {integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==} - engines: {node: '>=6.9'} - peerDependencies: - webpack: 5.84.1 + html-webpack-plugin@4.5.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@types/html-minifier-terser': 5.1.2 '@types/tapable': 1.0.12 @@ -36996,82 +45995,52 @@ packages: pretty-error: 2.1.2 tapable: 1.1.3 util.promisify: 1.0.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: false + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /html-webpack-plugin@5.6.0(webpack@5.84.1): - resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==} - engines: {node: '>=10.13.0'} - peerDependencies: - '@rspack/core': 0.x || 1.x - webpack: 5.84.1 - peerDependenciesMeta: - '@rspack/core': - optional: true - webpack: - optional: true + html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + optionalDependencies: + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /htmlparser2@3.8.3: - resolution: {integrity: sha512-hBxEg3CYXe+rPIua8ETe7tmG3XDn9B0edOE/e9wH2nLczxzgdu0m0aNHY+5wFZiviLWLdANPJTssa92dMcXQ5Q==} + htmlparser2@3.8.3: dependencies: domelementtype: 1.3.1 domhandler: 2.3.0 domutils: 1.5.1 entities: 1.0.0 readable-stream: 1.1.14 - dev: false - /htmlparser2@6.1.0: - resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} + htmlparser2@6.1.0: dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 domutils: 2.8.0 entities: 2.2.0 - /htmlparser2@7.2.0: - resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} + htmlparser2@7.2.0: dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 domutils: 2.8.0 entities: 3.0.1 - dev: false - - /htmlparser2@9.1.0: - resolution: {integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==} - dependencies: - domelementtype: 2.3.0 - domhandler: 5.0.3 - domutils: 3.1.0 - entities: 4.5.0 - dev: false - /http-cache-semantics@4.1.1: - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} + http-cache-semantics@4.1.1: {} - /http-deceiver@1.2.7: - resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} + http-deceiver@1.2.7: {} - /http-errors@1.6.3: - resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} - engines: {node: '>= 0.6'} + http-errors@1.6.3: dependencies: depd: 1.1.2 inherits: 2.0.3 setprototypeof: 1.1.0 statuses: 1.5.0 - /http-errors@2.0.0: - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: '>= 0.8'} + http-errors@2.0.0: dependencies: depd: 2.0.0 inherits: 2.0.4 @@ -37079,36 +46048,27 @@ packages: statuses: 2.0.1 toidentifier: 1.0.1 - /http-parser-js@0.5.8: - resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} + http-parser-js@0.5.8: {} - /http-proxy-agent@4.0.1: - resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} - engines: {node: '>= 6'} + http-proxy-agent@4.0.1: dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: true - /http-proxy-agent@5.0.0: - resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} - engines: {node: '>= 6'} + http-proxy-agent@5.0.0: dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: true - /http-proxy-middleware@0.19.1(debug@4.3.5)(supports-color@6.1.0): - resolution: {integrity: sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==} - engines: {node: '>=4.0.0'} + http-proxy-middleware@0.19.1(debug@4.3.5(supports-color@6.1.0))(supports-color@6.1.0): dependencies: - http-proxy: 1.18.1(debug@4.3.5) + http-proxy: 1.18.1(debug@4.3.5(supports-color@6.1.0)) is-glob: 4.0.3 lodash: 4.17.21 micromatch: 3.1.10(supports-color@6.1.0) @@ -37116,315 +46076,198 @@ packages: - debug - supports-color - /http-proxy-middleware@2.0.6(@types/express@4.17.21): - resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/express': ^4.17.13 - peerDependenciesMeta: - '@types/express': - optional: true + http-proxy-middleware@2.0.6(@types/express@4.17.21): dependencies: - '@types/express': 4.17.21 '@types/http-proxy': 1.17.14 - http-proxy: 1.18.1(debug@4.3.5) + http-proxy: 1.18.1(debug@4.3.5(supports-color@6.1.0)) is-glob: 4.0.3 is-plain-obj: 3.0.0 micromatch: 4.0.7 + optionalDependencies: + '@types/express': 4.17.21 transitivePeerDependencies: - debug - dev: true - /http-proxy@1.18.1(debug@4.3.5): - resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} - engines: {node: '>=8.0.0'} + http-proxy@1.18.1(debug@4.3.5(supports-color@6.1.0)): dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.15.6(debug@4.3.5) + follow-redirects: 1.15.6(debug@4.3.5(supports-color@6.1.0)) requires-port: 1.0.0 transitivePeerDependencies: - debug - /http-server@14.1.1: - resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==} - engines: {node: '>=12'} - hasBin: true + http-server@14.1.1: dependencies: basic-auth: 2.0.1 chalk: 4.1.2 corser: 2.0.1 he: 1.2.0 html-encoding-sniffer: 3.0.0 - http-proxy: 1.18.1(debug@4.3.5) + http-proxy: 1.18.1(debug@4.3.5(supports-color@6.1.0)) mime: 1.6.0 minimist: 1.2.8 opener: 1.5.2 - portfinder: 1.0.32(supports-color@6.1.0) + portfinder: 1.0.32 secure-compare: 3.0.1 union: 0.5.0 url-join: 4.0.1 transitivePeerDependencies: - debug - supports-color - dev: true - /http-signature@1.3.6: - resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} - engines: {node: '>=0.10'} + http-signature@1.3.6: dependencies: assert-plus: 1.0.0 jsprim: 2.0.2 sshpk: 1.18.0 - dev: true - /http2-wrapper@1.0.3: - resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} - engines: {node: '>=10.19.0'} + http2-wrapper@1.0.3: dependencies: quick-lru: 5.1.1 resolve-alpn: 1.2.1 - dev: true - /https-proxy-agent@4.0.0: - resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==} - engines: {node: '>= 6.0.0'} + https-proxy-agent@4.0.0: dependencies: agent-base: 5.1.1 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color - /https-proxy-agent@5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} - engines: {node: '>= 6'} + https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: true - /human-id@1.0.2: - resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} - dev: true + human-id@1.0.2: {} - /human-signals@1.1.1: - resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} - engines: {node: '>=8.12.0'} - dev: true + human-signals@1.1.1: {} - /human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} + human-signals@2.1.0: {} - /human-signals@5.0.0: - resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} - engines: {node: '>=16.17.0'} - dev: true + human-signals@5.0.0: {} - /humanize-ms@1.2.1: - resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} + humanize-ms@1.2.1: dependencies: ms: 2.1.3 - dev: true - /i18next-browser-languagedetector@6.1.8: - resolution: {integrity: sha512-Svm+MduCElO0Meqpj1kJAriTC6OhI41VhlT/A0UPjGoPZBhAHIaGE5EfsHlTpgdH09UVX7rcc72pSDDBeKSQQA==} + i18next-browser-languagedetector@6.1.8: dependencies: '@babel/runtime': 7.24.7 - dev: false - /i18next-xhr-backend@3.2.2: - resolution: {integrity: sha512-OtRf2Vo3IqAxsttQbpjYnmMML12IMB5e0fc5B7qKJFLScitYaXa1OhMX0n0X/3vrfFlpHL9Ro/H+ps4Ej2j7QQ==} - deprecated: replaced by i18next-http-backend + i18next-xhr-backend@3.2.2: dependencies: '@babel/runtime': 7.24.7 - /i18next@21.10.0: - resolution: {integrity: sha512-YeuIBmFsGjUfO3qBmMOc0rQaun4mIpGKET5WDwvu8lU7gvwpcariZLNtL0Fzj+zazcHUrlXHiptcFhBMFaxzfg==} + i18next@21.10.0: dependencies: '@babel/runtime': 7.24.7 - dev: false - /iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} + iconv-lite@0.4.24: dependencies: safer-buffer: 2.1.2 - /iconv-lite@0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: '>=0.10.0'} + iconv-lite@0.6.3: dependencies: safer-buffer: 2.1.2 - dev: true - /icss-replace-symbols@1.1.0: - resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} - dev: true + icss-replace-symbols@1.1.0: {} - /icss-utils@2.1.0: - resolution: {integrity: sha512-bsVoyn/1V4R1kYYjLcWLedozAM4FClZUdjE9nIr8uWY7xs78y9DATgwz2wGU7M+7z55KenmmTkN2DVJ7bqzjAA==} + icss-utils@2.1.0: dependencies: postcss: 6.0.23 - dev: true - /icss-utils@4.1.1: - resolution: {integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==} - engines: {node: '>= 6'} + icss-utils@4.1.1: dependencies: postcss: 7.0.39 - dev: false - /icss-utils@5.1.0(postcss@8.4.39): - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + icss-utils@5.1.0(postcss@8.4.39): dependencies: postcss: 8.4.39 - /identity-obj-proxy@3.0.0: - resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} - engines: {node: '>=4'} + identity-obj-proxy@3.0.0: dependencies: harmony-reflect: 1.6.2 - dev: true - /ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + ieee754@1.2.1: {} - /ignore-walk@5.0.1: - resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + ignore-walk@5.0.1: dependencies: minimatch: 5.1.6 - dev: true - /ignore@4.0.6: - resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} - engines: {node: '>= 4'} + ignore@4.0.6: {} - /ignore@5.3.1: - resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} - engines: {node: '>= 4'} + ignore@5.3.1: {} - /image-size@0.5.5: - resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} - engines: {node: '>=0.10.0'} - hasBin: true - requiresBuild: true - dev: true + image-size@0.5.5: optional: true - /immutable@4.3.6: - resolution: {integrity: sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==} - dev: true + immutable@4.3.6: {} - /import-cwd@2.1.0: - resolution: {integrity: sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==} - engines: {node: '>=4'} + import-cwd@2.1.0: dependencies: import-from: 2.1.0 - /import-cwd@3.0.0: - resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} - engines: {node: '>=8'} + import-cwd@3.0.0: dependencies: import-from: 3.0.0 - dev: true - /import-fresh@2.0.0: - resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} - engines: {node: '>=4'} + import-fresh@2.0.0: dependencies: caller-path: 2.0.0 resolve-from: 3.0.0 - /import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} + import-fresh@3.3.0: dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 - /import-from@2.1.0: - resolution: {integrity: sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==} - engines: {node: '>=4'} + import-from@2.1.0: dependencies: resolve-from: 3.0.0 - /import-from@3.0.0: - resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==} - engines: {node: '>=8'} + import-from@3.0.0: dependencies: resolve-from: 5.0.0 - dev: true - /import-lazy@2.1.0: - resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==} - engines: {node: '>=4'} - dev: false + import-lazy@2.1.0: {} - /import-local@2.0.0: - resolution: {integrity: sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==} - engines: {node: '>=6'} - hasBin: true + import-local@2.0.0: dependencies: pkg-dir: 3.0.0 resolve-cwd: 2.0.0 - /import-local@3.1.0: - resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} - engines: {node: '>=8'} - hasBin: true + import-local@3.1.0: dependencies: pkg-dir: 4.2.0 resolve-cwd: 3.0.0 - /imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} + imurmurhash@0.1.4: {} - /indent-string@2.1.0: - resolution: {integrity: sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==} - engines: {node: '>=0.10.0'} - requiresBuild: true + indent-string@2.1.0: dependencies: repeating: 2.0.1 - dev: false optional: true - /indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} + indent-string@4.0.0: {} - /infer-owner@1.0.4: - resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} + infer-owner@1.0.4: {} - /inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} - deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + inflight@1.0.6: dependencies: once: 1.4.0 wrappy: 1.0.2 - /inherits@2.0.3: - resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} + inherits@2.0.3: {} - /inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + inherits@2.0.4: {} - /ini@1.3.8: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + ini@1.3.8: {} - /ini@2.0.0: - resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} - engines: {node: '>=10'} + ini@2.0.0: {} - /init-package-json@3.0.2: - resolution: {integrity: sha512-YhlQPEjNFqlGdzrBfDNRLhvoSgX7iQRgSxgsNknRQ9ITXFT7UMfVMWhBTOh2Y+25lRnGrv5Xz8yZwQ3ACR6T3A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + init-package-json@3.0.2: dependencies: npm-package-arg: 9.1.2 promzard: 0.3.0 @@ -37433,14 +46276,12 @@ packages: semver: 7.6.2 validate-npm-package-license: 3.0.4 validate-npm-package-name: 4.0.0 - dev: true - /inline-style-parser@0.1.1: - resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} + inline-style-parser@0.1.1: {} - /inquirer@8.2.6: - resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} - engines: {node: '>=12.0.0'} + inline-style-parser@0.2.3: {} + + inquirer@8.2.6: dependencies: ansi-escapes: 4.3.2 chalk: 4.1.1 @@ -37457,629 +46298,389 @@ packages: strip-ansi: 6.0.1 through: 2.3.8 wrap-ansi: 6.2.0 - dev: true - /internal-ip@4.3.0: - resolution: {integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==} - engines: {node: '>=6'} + internal-ip@4.3.0: dependencies: default-gateway: 4.2.0 ipaddr.js: 1.9.1 - /internal-slot@1.0.7: - resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} - engines: {node: '>= 0.4'} + internal-slot@1.0.7: dependencies: es-errors: 1.3.0 hasown: 2.0.2 side-channel: 1.0.6 - /internmap@2.0.3: - resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} - engines: {node: '>=12'} - dev: false + internmap@2.0.3: {} - /interpret@1.4.0: - resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} - engines: {node: '>= 0.10'} - dev: false + interpret@1.4.0: {} - /interpret@2.2.0: - resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==} - engines: {node: '>= 0.10'} + interpret@2.2.0: {} - /invariant@2.2.4: - resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + invariant@2.2.4: dependencies: loose-envify: 1.4.0 - /ip-address@9.0.5: - resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} - engines: {node: '>= 12'} + ip-address@9.0.5: dependencies: jsbn: 1.1.0 sprintf-js: 1.1.3 - dev: true - /ip-regex@2.1.0: - resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==} - engines: {node: '>=4'} + ip-regex@2.1.0: {} - /ip@1.1.9: - resolution: {integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==} + ip@1.1.9: {} - /ip@2.0.1: - resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==} + ip@2.0.1: {} - /ipaddr.js@1.9.1: - resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} - engines: {node: '>= 0.10'} + ipaddr.js@1.9.1: {} - /ipaddr.js@2.2.0: - resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==} - engines: {node: '>= 10'} - dev: true + ipaddr.js@2.2.0: {} - /is-absolute-url@3.0.3: - resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==} - engines: {node: '>=8'} + is-absolute-url@3.0.3: {} - /is-accessor-descriptor@1.0.1: - resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==} - engines: {node: '>= 0.10'} + is-accessor-descriptor@1.0.1: dependencies: hasown: 2.0.2 - /is-alphabetical@1.0.4: - resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} + is-alphabetical@1.0.4: {} - /is-alphanumerical@1.0.4: - resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} + is-alphabetical@2.0.1: {} + + is-alphanumerical@1.0.4: dependencies: is-alphabetical: 1.0.4 is-decimal: 1.0.4 - /is-arguments@1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: '>= 0.4'} + is-alphanumerical@2.0.1: + dependencies: + is-alphabetical: 2.0.1 + is-decimal: 2.0.1 + + is-arguments@1.1.1: dependencies: call-bind: 1.0.7 has-tostringtag: 1.0.2 - /is-array-buffer@3.0.4: - resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} - engines: {node: '>= 0.4'} + is-array-buffer@3.0.4: dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 - /is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + is-arrayish@0.2.1: {} - /is-async-function@2.0.0: - resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} - engines: {node: '>= 0.4'} + is-async-function@2.0.0: dependencies: has-tostringtag: 1.0.2 - dev: true - /is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + is-bigint@1.0.4: dependencies: has-bigints: 1.0.2 - /is-binary-path@1.0.1: - resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==} - engines: {node: '>=0.10.0'} + is-binary-path@1.0.1: dependencies: binary-extensions: 1.13.1 - /is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} + is-binary-path@2.1.0: dependencies: binary-extensions: 2.3.0 - /is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} + is-boolean-object@1.1.2: dependencies: call-bind: 1.0.7 has-tostringtag: 1.0.2 - /is-buffer@1.1.6: - resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + is-buffer@1.1.6: {} - /is-buffer@2.0.5: - resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} - engines: {node: '>=4'} + is-buffer@2.0.5: {} - /is-builtin-module@3.2.1: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} - engines: {node: '>=6'} + is-builtin-module@3.2.1: dependencies: builtin-modules: 3.3.0 - dev: true - /is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} + is-callable@1.2.7: {} - /is-ci@2.0.0: - resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} - hasBin: true + is-ci@2.0.0: dependencies: ci-info: 2.0.0 - /is-ci@3.0.1: - resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} - hasBin: true + is-ci@3.0.1: dependencies: ci-info: 3.9.0 - dev: true - /is-core-module@2.14.0: - resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==} - engines: {node: '>= 0.4'} + is-core-module@2.14.0: dependencies: hasown: 2.0.2 - /is-data-descriptor@1.0.1: - resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==} - engines: {node: '>= 0.4'} + is-data-descriptor@1.0.1: dependencies: hasown: 2.0.2 - /is-data-view@1.0.1: - resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} - engines: {node: '>= 0.4'} + is-data-view@1.0.1: dependencies: is-typed-array: 1.1.13 - /is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} + is-date-object@1.0.5: dependencies: has-tostringtag: 1.0.2 - /is-decimal@1.0.4: - resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} + is-decimal@1.0.4: {} - /is-deflate@1.0.0: - resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==} - dev: true + is-decimal@2.0.1: {} - /is-descriptor@0.1.7: - resolution: {integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==} - engines: {node: '>= 0.4'} + is-deflate@1.0.0: {} + + is-descriptor@0.1.7: dependencies: is-accessor-descriptor: 1.0.1 is-data-descriptor: 1.0.1 - /is-descriptor@1.0.3: - resolution: {integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==} - engines: {node: '>= 0.4'} + is-descriptor@1.0.3: dependencies: is-accessor-descriptor: 1.0.1 is-data-descriptor: 1.0.1 - /is-directory@0.3.1: - resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} - engines: {node: '>=0.10.0'} + is-directory@0.3.1: {} - /is-docker@2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: '>=8'} - hasBin: true + is-docker@2.2.1: {} - /is-dom@1.1.0: - resolution: {integrity: sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==} + is-dom@1.1.0: dependencies: is-object: 1.0.2 is-window: 1.0.2 - dev: true - /is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} - engines: {node: '>=0.10.0'} + is-extendable@0.1.1: {} - /is-extendable@1.0.1: - resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} - engines: {node: '>=0.10.0'} + is-extendable@1.0.1: dependencies: is-plain-object: 2.0.4 - /is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} + is-extglob@2.1.1: {} - /is-finalizationregistry@1.0.2: - resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} + is-finalizationregistry@1.0.2: dependencies: call-bind: 1.0.7 - dev: true - /is-finite@1.1.0: - resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==} - engines: {node: '>=0.10.0'} - requiresBuild: true + is-finite@1.1.0: + optional: true - /is-fullwidth-code-point@2.0.0: - resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} - engines: {node: '>=4'} + is-fullwidth-code-point@2.0.0: {} - /is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} + is-fullwidth-code-point@3.0.0: {} - /is-function@1.0.2: - resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==} + is-function@1.0.2: {} - /is-generator-fn@2.1.0: - resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} - engines: {node: '>=6'} + is-generator-fn@2.1.0: {} - /is-generator-function@1.0.10: - resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} - engines: {node: '>= 0.4'} + is-generator-function@1.0.10: dependencies: has-tostringtag: 1.0.2 - dev: true - /is-glob@3.1.0: - resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==} - engines: {node: '>=0.10.0'} + is-glob@3.1.0: dependencies: is-extglob: 2.1.1 - /is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} + is-glob@4.0.3: dependencies: is-extglob: 2.1.1 - /is-gzip@1.0.0: - resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==} - engines: {node: '>=0.10.0'} - dev: true + is-gzip@1.0.0: {} - /is-hexadecimal@1.0.4: - resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} + is-hexadecimal@1.0.4: {} - /is-installed-globally@0.4.0: - resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} - engines: {node: '>=10'} + is-hexadecimal@2.0.1: {} + + is-installed-globally@0.4.0: dependencies: global-dirs: 3.0.1 is-path-inside: 3.0.3 - /is-interactive@1.0.0: - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} - engines: {node: '>=8'} - dev: true + is-interactive@1.0.0: {} - /is-lambda@1.0.1: - resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} - dev: true + is-lambda@1.0.1: {} - /is-lite@0.8.2: - resolution: {integrity: sha512-JZfH47qTsslwaAsqbMI3Q6HNNjUuq6Cmzzww50TdP5Esb6e1y2sK2UAaZZuzfAzpoI2AkxoPQapZdlDuP6Vlsw==} - dev: false + is-lite@0.8.2: {} - /is-lite@1.2.1: - resolution: {integrity: sha512-pgF+L5bxC+10hLBgf6R2P4ZZUBOQIIacbdo8YvuCP8/JvsWxG7aZ9p10DYuLtifFci4l3VITphhMlMV4Y+urPw==} - dev: false + is-lite@1.2.1: {} - /is-map@2.0.3: - resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} - engines: {node: '>= 0.4'} + is-map@2.0.3: {} - /is-module@1.0.0: - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} - dev: true + is-module@1.0.0: {} - /is-nan@1.3.2: - resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} - engines: {node: '>= 0.4'} + is-nan@1.3.2: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - dev: true - /is-negative-zero@2.0.3: - resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} - engines: {node: '>= 0.4'} + is-negative-zero@2.0.3: {} - /is-node-process@1.2.0: - resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==} - dev: true + is-node-process@1.2.0: {} - /is-npm@5.0.0: - resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==} - engines: {node: '>=10'} - dev: false + is-npm@5.0.0: {} - /is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} + is-number-object@1.0.7: dependencies: has-tostringtag: 1.0.2 - /is-number@2.1.0: - resolution: {integrity: sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==} - engines: {node: '>=0.10.0'} + is-number@2.1.0: dependencies: kind-of: 3.2.2 - dev: true - /is-number@3.0.0: - resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} - engines: {node: '>=0.10.0'} + is-number@3.0.0: dependencies: kind-of: 3.2.2 - /is-number@4.0.0: - resolution: {integrity: sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==} - engines: {node: '>=0.10.0'} - dev: true + is-number@4.0.0: {} - /is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} + is-number@7.0.0: {} - /is-obj@2.0.0: - resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} - engines: {node: '>=8'} + is-obj@2.0.0: {} - /is-object@1.0.2: - resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==} - dev: true + is-object@1.0.2: {} - /is-path-cwd@2.2.0: - resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} - engines: {node: '>=6'} + is-path-cwd@2.2.0: {} - /is-path-in-cwd@2.1.0: - resolution: {integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==} - engines: {node: '>=6'} + is-path-in-cwd@2.1.0: dependencies: is-path-inside: 2.1.0 - /is-path-inside@2.1.0: - resolution: {integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==} - engines: {node: '>=6'} + is-path-inside@2.1.0: dependencies: path-is-inside: 1.0.2 - /is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} + is-path-inside@3.0.3: {} - /is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} + is-plain-obj@1.1.0: {} - /is-plain-obj@2.1.0: - resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} - engines: {node: '>=8'} + is-plain-obj@2.1.0: {} - /is-plain-obj@3.0.0: - resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} - engines: {node: '>=10'} - dev: true + is-plain-obj@3.0.0: {} - /is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: '>=0.10.0'} + is-plain-obj@4.1.0: {} + + is-plain-object@2.0.4: dependencies: isobject: 3.0.1 - /is-plain-object@3.0.1: - resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==} - engines: {node: '>=0.10.0'} - dev: true + is-plain-object@3.0.1: {} - /is-plain-object@5.0.0: - resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} - engines: {node: '>=0.10.0'} + is-plain-object@5.0.0: {} - /is-potential-custom-element-name@1.0.1: - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} - dev: true + is-potential-custom-element-name@1.0.1: {} - /is-promise@2.2.2: - resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} - dev: false + is-promise@2.2.2: {} - /is-reference@1.2.1: - resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} + is-reference@1.2.1: dependencies: '@types/estree': 1.0.5 - dev: true - /is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} + is-regex@1.1.4: dependencies: call-bind: 1.0.7 has-tostringtag: 1.0.2 - /is-set@2.0.3: - resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} - engines: {node: '>= 0.4'} + is-set@2.0.3: {} - /is-shared-array-buffer@1.0.3: - resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} - engines: {node: '>= 0.4'} + is-shared-array-buffer@1.0.3: dependencies: call-bind: 1.0.7 - /is-ssh@1.4.0: - resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} + is-ssh@1.4.0: dependencies: protocols: 2.0.1 - dev: true - /is-stream@1.1.0: - resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} - engines: {node: '>=0.10.0'} + is-stream@1.1.0: {} - /is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} + is-stream@2.0.1: {} - /is-stream@3.0.0: - resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + is-stream@3.0.0: {} - /is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} + is-string@1.0.7: dependencies: has-tostringtag: 1.0.2 - /is-subdir@1.2.0: - resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} - engines: {node: '>=4'} + is-subdir@1.2.0: dependencies: better-path-resolve: 1.0.0 - dev: true - /is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} + is-symbol@1.0.4: dependencies: has-symbols: 1.0.3 - /is-text-path@1.0.1: - resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} - engines: {node: '>=0.10.0'} + is-text-path@1.0.1: dependencies: text-extensions: 1.9.0 - dev: true - /is-typed-array@1.1.13: - resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} - engines: {node: '>= 0.4'} + is-typed-array@1.1.13: dependencies: which-typed-array: 1.1.15 - /is-typedarray@1.0.0: - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + is-typedarray@1.0.0: {} - /is-unicode-supported@0.1.0: - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} - engines: {node: '>=10'} - dev: true + is-unicode-supported@0.1.0: {} - /is-utf8@0.2.1: - resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} - requiresBuild: true - dev: false + is-utf8@0.2.1: optional: true - /is-weakmap@2.0.2: - resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} - engines: {node: '>= 0.4'} + is-weakmap@2.0.2: {} - /is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + is-weakref@1.0.2: dependencies: call-bind: 1.0.7 - /is-weakset@2.0.3: - resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} - engines: {node: '>= 0.4'} + is-weakset@2.0.3: dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 - /is-what@3.14.1: - resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} + is-what@3.14.1: {} - /is-whitespace-character@1.0.4: - resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==} + is-whitespace-character@1.0.4: {} - /is-window@1.0.2: - resolution: {integrity: sha512-uj00kdXyZb9t9RcAUAwMZAnkBUwdYGhYlt7djMXhfyhUCzwNba50tIiBKR7q0l7tdoBtFVw/3JmLY6fI3rmZmg==} - dev: true + is-window@1.0.2: {} - /is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} + is-windows@1.0.2: {} - /is-word-character@1.0.4: - resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==} + is-word-character@1.0.4: {} - /is-wsl@1.1.0: - resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} - engines: {node: '>=4'} + is-wsl@1.1.0: {} - /is-wsl@2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: '>=8'} + is-wsl@2.2.0: dependencies: is-docker: 2.2.1 - /is-yarn-global@0.3.0: - resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==} - dev: false + is-yarn-global@0.3.0: {} - /isarray@0.0.1: - resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} - dev: false + isarray@0.0.1: {} - /isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + isarray@1.0.0: {} - /isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + isarray@2.0.5: {} - /isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + isexe@2.0.0: {} - /isobject@2.1.0: - resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} - engines: {node: '>=0.10.0'} + isobject@2.1.0: dependencies: isarray: 1.0.0 - /isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: '>=0.10.0'} + isobject@3.0.1: {} - /isobject@4.0.0: - resolution: {integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==} - engines: {node: '>=0.10.0'} + isobject@4.0.0: {} - /isomorphic-unfetch@3.1.0: - resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==} + isomorphic-unfetch@3.1.0(encoding@0.1.13): dependencies: - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) unfetch: 4.2.0 transitivePeerDependencies: - encoding - dev: false - /isstream@0.1.2: - resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} - dev: true + isstream@0.1.2: {} - /istanbul-lib-coverage@3.2.2: - resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} - engines: {node: '>=8'} + istanbul-lib-coverage@3.2.2: {} - /istanbul-lib-hook@3.0.0: - resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==} - engines: {node: '>=8'} + istanbul-lib-hook@3.0.0: dependencies: append-transform: 2.0.0 - dev: true - /istanbul-lib-instrument@4.0.3: - resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} - engines: {node: '>=8'} + istanbul-lib-instrument@4.0.3: dependencies: '@babel/core': 7.24.7 '@istanbuljs/schema': 0.1.3 @@ -38087,11 +46688,8 @@ packages: semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true - /istanbul-lib-instrument@5.2.1: - resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} - engines: {node: '>=8'} + istanbul-lib-instrument@5.2.1: dependencies: '@babel/core': 7.24.7 '@babel/parser': 7.24.7 @@ -38101,9 +46699,7 @@ packages: transitivePeerDependencies: - supports-color - /istanbul-lib-instrument@6.0.3: - resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==} - engines: {node: '>=10'} + istanbul-lib-instrument@6.0.3: dependencies: '@babel/core': 7.24.7 '@babel/parser': 7.24.7 @@ -38113,9 +46709,7 @@ packages: transitivePeerDependencies: - supports-color - /istanbul-lib-processinfo@2.0.3: - resolution: {integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==} - engines: {node: '>=8'} + istanbul-lib-processinfo@2.0.3: dependencies: archy: 1.0.0 cross-spawn: 7.0.3 @@ -38123,93 +46717,67 @@ packages: p-map: 3.0.0 rimraf: 3.0.2 uuid: 8.3.2 - dev: true - /istanbul-lib-report@3.0.1: - resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} - engines: {node: '>=10'} + istanbul-lib-report@3.0.1: dependencies: istanbul-lib-coverage: 3.2.2 make-dir: 4.0.0 supports-color: 7.2.0 - /istanbul-lib-source-maps@4.0.1: - resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} - engines: {node: '>=10'} + istanbul-lib-source-maps@4.0.1: dependencies: - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) istanbul-lib-coverage: 3.2.2 source-map: 0.6.1 transitivePeerDependencies: - supports-color - /istanbul-reports@3.1.7: - resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} - engines: {node: '>=8'} + istanbul-reports@3.1.7: dependencies: html-escaper: 2.0.2 istanbul-lib-report: 3.0.1 - /iterate-iterator@1.0.2: - resolution: {integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==} - dev: false + iterate-iterator@1.0.2: {} - /iterate-value@1.0.2: - resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==} + iterate-value@1.0.2: dependencies: es-get-iterator: 1.1.3 iterate-iterator: 1.0.2 - dev: false - /iterator.prototype@1.1.2: - resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} + iterator.prototype@1.1.2: dependencies: define-properties: 1.2.1 get-intrinsic: 1.2.4 has-symbols: 1.0.3 reflect.getprototypeof: 1.0.6 set-function-name: 2.0.2 - dev: true - /jackspeak@3.4.0: - resolution: {integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==} - engines: {node: '>=14'} + jackspeak@3.4.0: dependencies: '@isaacs/cliui': 8.0.2 optionalDependencies: '@pkgjs/parseargs': 0.11.0 - /jake@10.9.1: - resolution: {integrity: sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==} - engines: {node: '>=10'} - hasBin: true + jake@10.9.1: dependencies: async: 3.2.5 chalk: 4.1.2 filelist: 1.0.4 minimatch: 3.1.2 - dev: true - /jest-changed-files@26.6.2: - resolution: {integrity: sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==} - engines: {node: '>= 10.14.2'} + jest-changed-files@26.6.2: dependencies: '@jest/types': 26.6.2 execa: 4.1.0 throat: 5.0.0 - dev: true - /jest-changed-files@29.7.0: - resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-changed-files@29.7.0: dependencies: execa: 5.1.1 jest-util: 29.7.0 p-limit: 3.1.0 - /jest-circus@29.7.0: - resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-circus@29.7.0(babel-plugin-macros@3.1.0): dependencies: '@jest/environment': 29.7.0 '@jest/expect': 29.7.0 @@ -38218,7 +46786,7 @@ packages: '@types/node': 13.13.52 chalk: 4.1.2 co: 4.6.0 - dedent: 1.5.3 + dedent: 1.5.3(babel-plugin-macros@3.1.0) is-generator-fn: 2.1.0 jest-each: 29.7.0 jest-matcher-utils: 29.7.0 @@ -38235,12 +46803,9 @@ packages: - babel-plugin-macros - supports-color - /jest-cli@26.6.3: - resolution: {integrity: sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==} - engines: {node: '>= 10.14.2'} - hasBin: true + jest-cli@26.6.3(ts-node@8.10.2(typescript@4.9.5)): dependencies: - '@jest/core': 26.6.3 + '@jest/core': 26.6.3(ts-node@8.10.2(typescript@4.9.5)) '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 chalk: 4.1.2 @@ -38248,7 +46813,7 @@ packages: graceful-fs: 4.2.11 import-local: 3.1.0 is-ci: 2.0.0 - jest-config: 26.6.3 + jest-config: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-util: 26.6.2 jest-validate: 26.6.2 prompts: 2.4.2 @@ -38259,73 +46824,74 @@ packages: - supports-color - ts-node - utf-8-validate - dev: true - /jest-cli@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): - resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest-cli@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)): dependencies: - '@jest/core': 29.7.0(ts-node@8.10.2) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + create-jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - /jest-cli@29.7.0(@types/node@18.11.9): - resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest-cli@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)): dependencies: - '@jest/core': 29.7.0(ts-node@8.10.2) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@18.11.9) + create-jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@18.11.9) + jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - /jest-config@26.6.3: - resolution: {integrity: sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==} - engines: {node: '>= 10.14.2'} - peerDependencies: - ts-node: '>=9.0.0' - peerDependenciesMeta: - ts-node: - optional: true + jest-cli@29.7.0(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)): + dependencies: + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + chalk: 4.1.2 + create-jest: 29.7.0(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)) + exit: 0.1.2 + import-local: 3.1.0 + jest-config: 29.7.0(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)) + jest-util: 29.7.0 + jest-validate: 29.7.0 + yargs: 17.7.2 + optionalDependencies: + node-notifier: 8.0.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + + jest-config@26.6.3(ts-node@8.10.2(typescript@4.9.5)): dependencies: '@babel/core': 7.24.7 - '@jest/test-sequencer': 26.6.3 + '@jest/test-sequencer': 26.6.3(ts-node@8.10.2(typescript@4.9.5)) '@jest/types': 26.6.2 babel-jest: 26.6.3(@babel/core@7.24.7) chalk: 4.1.2 @@ -38335,43 +46901,33 @@ packages: jest-environment-jsdom: 26.6.2 jest-environment-node: 26.6.2 jest-get-type: 26.3.0 - jest-jasmine2: 26.6.3 + jest-jasmine2: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-regex-util: 26.0.0 jest-resolve: 26.6.2 jest-util: 26.6.2 jest-validate: 26.6.2 micromatch: 4.0.7 pretty-format: 26.6.2 + optionalDependencies: + ts-node: 8.10.2(typescript@4.9.5) transitivePeerDependencies: - bufferutil - canvas - supports-color - utf-8-validate - dev: true - /jest-config@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): - resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true + jest-config@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)): dependencies: '@babel/core': 7.24.7 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 13.13.52 babel-jest: 29.7.0(@babel/core@7.24.7) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 - jest-circus: 29.7.0 + jest-circus: 29.7.0(babel-plugin-macros@3.1.0) jest-environment-node: 29.7.0 jest-get-type: 29.6.3 jest-regex-util: 29.6.3 @@ -38384,34 +46940,25 @@ packages: pretty-format: 29.7.0 slash: 3.0.0 strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 13.13.52 ts-node: 8.10.2(typescript@4.9.5) transitivePeerDependencies: - babel-plugin-macros - supports-color - /jest-config@29.7.0(@types/node@18.11.9): - resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true + jest-config@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)): dependencies: '@babel/core': 7.24.7 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.11.9 babel-jest: 29.7.0(@babel/core@7.24.7) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 - jest-circus: 29.7.0 + jest-circus: 29.7.0(babel-plugin-macros@3.1.0) jest-environment-node: 29.7.0 jest-get-type: 29.6.3 jest-regex-util: 29.6.3 @@ -38424,56 +46971,75 @@ packages: pretty-format: 29.7.0 slash: 3.0.0 strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 13.13.52 + ts-node: 8.10.2(typescript@5.1.6) transitivePeerDependencies: - babel-plugin-macros - supports-color - /jest-diff@26.6.2: - resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==} - engines: {node: '>= 10.14.2'} + jest-config@29.7.0(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)): + dependencies: + '@babel/core': 7.24.7 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.24.7) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0(babel-plugin-macros@3.1.0) + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.7 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 18.11.9 + ts-node: 8.10.2(typescript@5.1.6) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + + jest-diff@26.6.2: dependencies: chalk: 4.1.2 diff-sequences: 26.6.2 jest-get-type: 26.3.0 pretty-format: 26.6.2 - dev: true - /jest-diff@29.7.0: - resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-diff@29.7.0: dependencies: chalk: 4.1.2 diff-sequences: 29.6.3 jest-get-type: 29.6.3 pretty-format: 29.7.0 - /jest-docblock@26.0.0: - resolution: {integrity: sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==} - engines: {node: '>= 10.14.2'} + jest-docblock@26.0.0: dependencies: detect-newline: 3.1.0 - dev: true - /jest-docblock@29.7.0: - resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-docblock@29.7.0: dependencies: detect-newline: 3.1.0 - /jest-each@26.6.2: - resolution: {integrity: sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==} - engines: {node: '>= 10.14.2'} + jest-each@26.6.2: dependencies: '@jest/types': 26.6.2 chalk: 4.1.2 jest-get-type: 26.3.0 jest-util: 26.6.2 pretty-format: 26.6.2 - dev: true - /jest-each@29.7.0: - resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-each@29.7.0: dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 @@ -38481,35 +47047,19 @@ packages: jest-util: 29.7.0 pretty-format: 29.7.0 - /jest-environment-jsdom-global@2.0.4(jest-environment-jsdom@26.6.2): - resolution: {integrity: sha512-1vB8q+PrszXW4Pf7Zgp3eQ4oNVbA7GY6+jmrg1qi6RtYRWDJ60/xdkhjqAbQpX8BRyvqQJYQi66LXER5YNeHXg==} - peerDependencies: - jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x + jest-environment-jsdom-global@2.0.4(jest-environment-jsdom@26.6.2): dependencies: jest-environment-jsdom: 26.6.2 - dev: true - /jest-environment-jsdom-global@4.0.0(jest-environment-jsdom@26.6.2): - resolution: {integrity: sha512-qEV8j61oV5XhOBUQbrld2nMYKnp/AGINUaoYTtkwJ9rjvMNRN7ZaZ/dgoPpW83oFtrSiVM1gie6ajdsKFBUlLA==} - engines: {node: '>= 14'} - peerDependencies: - jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x || 27.x || 28.x || 29.x + jest-environment-jsdom-global@4.0.0(jest-environment-jsdom@26.6.2): dependencies: jest-environment-jsdom: 26.6.2 - dev: true - /jest-environment-jsdom-global@4.0.0(jest-environment-jsdom@29.7.0): - resolution: {integrity: sha512-qEV8j61oV5XhOBUQbrld2nMYKnp/AGINUaoYTtkwJ9rjvMNRN7ZaZ/dgoPpW83oFtrSiVM1gie6ajdsKFBUlLA==} - engines: {node: '>= 14'} - peerDependencies: - jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x || 27.x || 28.x || 29.x + jest-environment-jsdom-global@4.0.0(jest-environment-jsdom@29.7.0): dependencies: jest-environment-jsdom: 29.7.0 - dev: true - /jest-environment-jsdom@26.6.2: - resolution: {integrity: sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==} - engines: {node: '>= 10.14.2'} + jest-environment-jsdom@26.6.2: dependencies: '@jest/environment': 26.6.2 '@jest/fake-timers': 26.6.2 @@ -38523,16 +47073,8 @@ packages: - canvas - supports-color - utf-8-validate - dev: true - /jest-environment-jsdom@29.7.0: - resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true + jest-environment-jsdom@29.7.0: dependencies: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 @@ -38546,11 +47088,8 @@ packages: - bufferutil - supports-color - utf-8-validate - dev: true - /jest-environment-node@26.6.2: - resolution: {integrity: sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==} - engines: {node: '>= 10.14.2'} + jest-environment-node@26.6.2: dependencies: '@jest/environment': 26.6.2 '@jest/fake-timers': 26.6.2 @@ -38558,11 +47097,8 @@ packages: '@types/node': 13.13.52 jest-mock: 26.6.2 jest-util: 26.6.2 - dev: true - /jest-environment-node@29.7.0: - resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-environment-node@29.7.0: dependencies: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 @@ -38571,18 +47107,11 @@ packages: jest-mock: 29.7.0 jest-util: 29.7.0 - /jest-get-type@26.3.0: - resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==} - engines: {node: '>= 10.14.2'} - dev: true + jest-get-type@26.3.0: {} - /jest-get-type@29.6.3: - resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-get-type@29.6.3: {} - /jest-haste-map@26.6.2: - resolution: {integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==} - engines: {node: '>= 10.14.2'} + jest-haste-map@26.6.2: dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.9 @@ -38602,9 +47131,7 @@ packages: transitivePeerDependencies: - supports-color - /jest-haste-map@29.7.0: - resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-haste-map@29.7.0: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.9 @@ -38620,9 +47147,7 @@ packages: optionalDependencies: fsevents: 2.3.3 - /jest-jasmine2@26.6.3: - resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==} - engines: {node: '>= 10.14.2'} + jest-jasmine2@26.6.3(ts-node@8.10.2(typescript@4.9.5)): dependencies: '@babel/traverse': 7.24.7 '@jest/environment': 26.6.2 @@ -38637,7 +47162,7 @@ packages: jest-each: 26.6.2 jest-matcher-utils: 26.6.2 jest-message-util: 26.6.2 - jest-runtime: 26.6.3 + jest-runtime: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-snapshot: 26.6.2 jest-util: 26.6.2 pretty-format: 26.6.2 @@ -38648,45 +47173,32 @@ packages: - supports-color - ts-node - utf-8-validate - dev: true - /jest-leak-detector@26.6.2: - resolution: {integrity: sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==} - engines: {node: '>= 10.14.2'} + jest-leak-detector@26.6.2: dependencies: jest-get-type: 26.3.0 pretty-format: 26.6.2 - dev: true - /jest-leak-detector@29.7.0: - resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-leak-detector@29.7.0: dependencies: jest-get-type: 29.6.3 pretty-format: 29.7.0 - /jest-matcher-utils@26.6.2: - resolution: {integrity: sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==} - engines: {node: '>= 10.14.2'} + jest-matcher-utils@26.6.2: dependencies: chalk: 4.1.2 jest-diff: 26.6.2 jest-get-type: 26.3.0 pretty-format: 26.6.2 - dev: true - /jest-matcher-utils@29.7.0: - resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-matcher-utils@29.7.0: dependencies: chalk: 4.1.2 jest-diff: 29.7.0 jest-get-type: 29.6.3 pretty-format: 29.7.0 - /jest-message-util@26.6.2: - resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==} - engines: {node: '>= 10.14.2'} + jest-message-util@26.6.2: dependencies: '@babel/code-frame': 7.24.7 '@jest/types': 26.6.2 @@ -38697,11 +47209,8 @@ packages: pretty-format: 26.6.2 slash: 3.0.0 stack-utils: 2.0.6 - dev: true - /jest-message-util@29.7.0: - resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-message-util@29.7.0: dependencies: '@babel/code-frame': 7.24.7 '@jest/types': 29.6.3 @@ -38713,76 +47222,45 @@ packages: slash: 3.0.0 stack-utils: 2.0.6 - /jest-mock@26.6.2: - resolution: {integrity: sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==} - engines: {node: '>= 10.14.2'} + jest-mock@26.6.2: dependencies: '@jest/types': 26.6.2 '@types/node': 13.13.52 - dev: true - /jest-mock@29.7.0: - resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 '@types/node': 13.13.52 jest-util: 29.7.0 - /jest-pnp-resolver@1.2.3(jest-resolve@26.6.2): - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} - engines: {node: '>=6'} - peerDependencies: - jest-resolve: '*' - peerDependenciesMeta: - jest-resolve: - optional: true - dependencies: + jest-pnp-resolver@1.2.3(jest-resolve@26.6.2): + optionalDependencies: jest-resolve: 26.6.2 - dev: true - /jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} - engines: {node: '>=6'} - peerDependencies: - jest-resolve: '*' - peerDependenciesMeta: - jest-resolve: - optional: true - dependencies: + jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): + optionalDependencies: jest-resolve: 29.7.0 - /jest-regex-util@26.0.0: - resolution: {integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==} - engines: {node: '>= 10.14.2'} + jest-regex-util@26.0.0: {} - /jest-regex-util@29.6.3: - resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-regex-util@29.6.3: {} - /jest-resolve-dependencies@26.6.3: - resolution: {integrity: sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==} - engines: {node: '>= 10.14.2'} + jest-resolve-dependencies@26.6.3: dependencies: '@jest/types': 26.6.2 jest-regex-util: 26.0.0 jest-snapshot: 26.6.2 transitivePeerDependencies: - supports-color - dev: true - /jest-resolve-dependencies@29.7.0: - resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-resolve-dependencies@29.7.0: dependencies: jest-regex-util: 29.6.3 jest-snapshot: 29.7.0 transitivePeerDependencies: - supports-color - /jest-resolve@26.6.2: - resolution: {integrity: sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==} - engines: {node: '>= 10.14.2'} + jest-resolve@26.6.2: dependencies: '@jest/types': 26.6.2 chalk: 4.1.2 @@ -38792,11 +47270,8 @@ packages: read-pkg-up: 7.0.1 resolve: 1.22.8 slash: 3.0.0 - dev: true - /jest-resolve@29.7.0: - resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-resolve@29.7.0: dependencies: chalk: 4.1.2 graceful-fs: 4.2.11 @@ -38808,9 +47283,7 @@ packages: resolve.exports: 2.0.2 slash: 3.0.0 - /jest-runner@26.6.3: - resolution: {integrity: sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==} - engines: {node: '>= 10.14.2'} + jest-runner@26.6.3(ts-node@8.10.2(typescript@4.9.5)): dependencies: '@jest/console': 26.6.2 '@jest/environment': 26.6.2 @@ -38821,13 +47294,13 @@ packages: emittery: 0.7.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 26.6.3 + jest-config: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-docblock: 26.0.0 jest-haste-map: 26.6.2 jest-leak-detector: 26.6.2 jest-message-util: 26.6.2 jest-resolve: 26.6.2 - jest-runtime: 26.6.3 + jest-runtime: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-util: 26.6.2 jest-worker: 26.6.2 source-map-support: 0.5.21 @@ -38838,11 +47311,8 @@ packages: - supports-color - ts-node - utf-8-validate - dev: true - /jest-runner@29.7.0: - resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-runner@29.7.0: dependencies: '@jest/console': 29.7.0 '@jest/environment': 29.7.0 @@ -38868,10 +47338,7 @@ packages: transitivePeerDependencies: - supports-color - /jest-runtime@26.6.3: - resolution: {integrity: sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==} - engines: {node: '>= 10.14.2'} - hasBin: true + jest-runtime@26.6.3(ts-node@8.10.2(typescript@4.9.5)): dependencies: '@jest/console': 26.6.2 '@jest/environment': 26.6.2 @@ -38888,7 +47355,7 @@ packages: exit: 0.1.2 glob: 7.2.3 graceful-fs: 4.2.11 - jest-config: 26.6.3 + jest-config: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-haste-map: 26.6.2 jest-message-util: 26.6.2 jest-mock: 26.6.2 @@ -38906,11 +47373,8 @@ packages: - supports-color - ts-node - utf-8-validate - dev: true - /jest-runtime@29.7.0: - resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-runtime@29.7.0: dependencies: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 @@ -38937,16 +47401,12 @@ packages: transitivePeerDependencies: - supports-color - /jest-serializer@26.6.2: - resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} - engines: {node: '>= 10.14.2'} + jest-serializer@26.6.2: dependencies: '@types/node': 13.13.52 graceful-fs: 4.2.11 - /jest-snapshot@26.6.2: - resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==} - engines: {node: '>= 10.14.2'} + jest-snapshot@26.6.2: dependencies: '@babel/types': 7.24.7 '@jest/types': 26.6.2 @@ -38966,11 +47426,8 @@ packages: semver: 7.6.2 transitivePeerDependencies: - supports-color - dev: true - /jest-snapshot@29.7.0: - resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-snapshot@29.7.0: dependencies: '@babel/core': 7.24.7 '@babel/generator': 7.24.7 @@ -38995,9 +47452,7 @@ packages: transitivePeerDependencies: - supports-color - /jest-util@26.6.2: - resolution: {integrity: sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==} - engines: {node: '>= 10.14.2'} + jest-util@26.6.2: dependencies: '@jest/types': 26.6.2 '@types/node': 13.13.52 @@ -39006,9 +47461,7 @@ packages: is-ci: 2.0.0 micromatch: 4.0.7 - /jest-util@29.7.0: - resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 '@types/node': 13.13.52 @@ -39017,9 +47470,7 @@ packages: graceful-fs: 4.2.11 picomatch: 2.3.1 - /jest-validate@26.6.2: - resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==} - engines: {node: '>= 10.14.2'} + jest-validate@26.6.2: dependencies: '@jest/types': 26.6.2 camelcase: 6.3.0 @@ -39027,11 +47478,8 @@ packages: jest-get-type: 26.3.0 leven: 3.1.0 pretty-format: 26.6.2 - dev: true - /jest-validate@29.7.0: - resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-validate@29.7.0: dependencies: '@jest/types': 29.6.3 camelcase: 6.3.0 @@ -39040,9 +47488,7 @@ packages: leven: 3.1.0 pretty-format: 29.7.0 - /jest-watcher@26.6.2: - resolution: {integrity: sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==} - engines: {node: '>= 10.14.2'} + jest-watcher@26.6.2: dependencies: '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 @@ -39051,11 +47497,8 @@ packages: chalk: 4.1.2 jest-util: 26.6.2 string-length: 4.0.2 - dev: true - /jest-watcher@29.7.0: - resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-watcher@29.7.0: dependencies: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 @@ -39066,198 +47509,131 @@ packages: jest-util: 29.7.0 string-length: 4.0.2 - /jest-worker@26.6.2: - resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} - engines: {node: '>= 10.13.0'} + jest-worker@26.6.2: dependencies: '@types/node': 13.13.52 merge-stream: 2.0.0 supports-color: 7.2.0 - /jest-worker@27.5.1: - resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} - engines: {node: '>= 10.13.0'} + jest-worker@27.5.1: dependencies: '@types/node': 13.13.52 merge-stream: 2.0.0 supports-color: 8.1.1 - /jest-worker@28.1.3: - resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + jest-worker@28.1.3: dependencies: '@types/node': 13.13.52 merge-stream: 2.0.0 supports-color: 8.1.1 - dev: true - /jest-worker@29.7.0: - resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-worker@29.7.0: dependencies: '@types/node': 13.13.52 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 - /jest@26.6.3: - resolution: {integrity: sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==} - engines: {node: '>= 10.14.2'} - hasBin: true + jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)): dependencies: - '@jest/core': 26.6.3 + '@jest/core': 26.6.3(ts-node@8.10.2(typescript@4.9.5)) import-local: 3.1.0 - jest-cli: 26.6.3 + jest-cli: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) transitivePeerDependencies: - bufferutil - canvas - supports-color - ts-node - utf-8-validate - dev: true - /jest@29.4.3(@types/node@18.11.9): - resolution: {integrity: sha512-XvK65feuEFGZT8OO0fB/QAQS+LGHvQpaadkH5p47/j3Ocqq3xf2pK9R+G0GzgfuhXVxEv76qCOOcMb5efLk6PA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest@29.4.3(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)): dependencies: - '@jest/core': 29.7.0(ts-node@8.10.2) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@18.11.9) + jest-cli: 29.7.0(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - dev: true - /jest@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): - resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)): dependencies: - '@jest/core': 29.7.0(ts-node@8.10.2) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + jest-cli: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - /jest@29.7.0(@types/node@18.11.9): - resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)): dependencies: - '@jest/core': 29.7.0(ts-node@8.10.2) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@18.11.9) + jest-cli: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) + optionalDependencies: + node-notifier: 8.0.2 transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - /jju@1.4.0: - resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} - dev: true + jju@1.4.0: {} - /joi@17.13.3: - resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} + joi@17.13.3: dependencies: '@hapi/hoek': 9.3.0 '@hapi/topo': 5.1.0 '@sideway/address': 4.1.5 '@sideway/formula': 3.0.1 '@sideway/pinpoint': 2.0.0 - dev: false - /jose@4.15.7: - resolution: {integrity: sha512-L7ioP+JAuZe8v+T5+zVI9Tx8LtU8BL7NxkyDFVMv+Qr3JW0jSoYDedLtodaXwfqMpeCyx4WXFNyu9tJt4WvC1A==} + jose@4.15.7: {} - /jquery@3.7.1: - resolution: {integrity: sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==} - dev: true + jquery@3.7.1: {} - /js-beautify@1.15.1: - resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==} - engines: {node: '>=14'} - hasBin: true + js-beautify@1.15.1: dependencies: config-chain: 1.1.13 editorconfig: 1.0.4 glob: 10.4.2 js-cookie: 3.0.5 nopt: 7.2.1 - dev: false - /js-cookie@3.0.5: - resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} - engines: {node: '>=14'} - dev: false + js-cookie@3.0.5: {} - /js-levenshtein@1.1.6: - resolution: {integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==} - engines: {node: '>=0.10.0'} - dev: true + js-levenshtein@1.1.6: {} - /js-string-escape@1.0.1: - resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} - engines: {node: '>= 0.8'} + js-string-escape@1.0.1: {} - /js-tokens@3.0.2: - resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==} - dev: true + js-tokens@3.0.2: {} - /js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + js-tokens@4.0.0: {} - /js-yaml@3.13.1: - resolution: {integrity: sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==} - hasBin: true + js-yaml@3.13.1: dependencies: argparse: 1.0.10 esprima: 4.0.1 - /js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true + js-yaml@4.1.0: dependencies: argparse: 2.0.1 - dev: true - /jsbn@0.1.1: - resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} - dev: true + jsbn@0.1.1: {} - /jsbn@1.1.0: - resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} - dev: true + jsbn@1.1.0: {} - /jscodeshift@0.13.1(@babel/preset-env@7.24.7): - resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==} - hasBin: true - peerDependencies: - '@babel/preset-env': ^7.1.6 + jscodeshift@0.13.1(@babel/preset-env@7.24.7(@babel/core@7.24.7)): dependencies: '@babel/core': 7.24.7 '@babel/parser': 7.24.7 @@ -39281,16 +47657,8 @@ packages: write-file-atomic: 2.4.3 transitivePeerDependencies: - supports-color - dev: false - /jscodeshift@0.15.2(@babel/preset-env@7.24.7): - resolution: {integrity: sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==} - hasBin: true - peerDependencies: - '@babel/preset-env': ^7.1.6 - peerDependenciesMeta: - '@babel/preset-env': - optional: true + jscodeshift@0.15.2(@babel/preset-env@7.24.7(@babel/core@7.24.7)): dependencies: '@babel/core': 7.24.7 '@babel/parser': 7.24.7 @@ -39299,7 +47667,6 @@ packages: '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.24.7) '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7) '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.7) - '@babel/preset-env': 7.24.7(@babel/core@7.24.7) '@babel/preset-flow': 7.24.7(@babel/core@7.24.7) '@babel/preset-typescript': 7.24.7(@babel/core@7.24.7) '@babel/register': 7.24.6(@babel/core@7.24.7) @@ -39313,18 +47680,12 @@ packages: recast: 0.23.9 temp: 0.8.4 write-file-atomic: 2.4.3 + optionalDependencies: + '@babel/preset-env': 7.24.7(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - dev: true - /jsdom@16.7.0: - resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} - engines: {node: '>=10'} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true + jsdom@16.7.0: dependencies: abab: 2.0.6 acorn: 8.12.0 @@ -39357,16 +47718,8 @@ packages: - bufferutil - supports-color - utf-8-validate - dev: true - /jsdom@20.0.3: - resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} - engines: {node: '>=14'} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true + jsdom@20.0.3: dependencies: abab: 2.0.6 acorn: 8.12.0 @@ -39398,25 +47751,12 @@ packages: - bufferutil - supports-color - utf-8-validate - dev: true - - /jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} - hasBin: true - /jsesc@1.3.0: - resolution: {integrity: sha512-Mke0DA0QjUWuJlhsE0ZPPhYiJkRap642SmI/4ztCFaUs6V2AiH1sfecc+57NgaryfAA2VR3v6O+CSjC1jZJKOA==} - hasBin: true - dev: true + jsesc@0.5.0: {} - /jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} - hasBin: true + jsesc@2.5.2: {} - /jshint@2.13.6: - resolution: {integrity: sha512-IVdB4G0NTTeQZrBoM8C5JFVLjV2KtZ9APgybDA1MK73xb09qFs0jCXyQLnCOp1cSZZZbvhq/6mfXHUTaDkffuQ==} - hasBin: true + jshint@2.13.6: dependencies: cli: 1.0.1 console-browserify: 1.1.0 @@ -39425,251 +47765,144 @@ packages: lodash: 4.17.21 minimatch: 3.0.8 strip-json-comments: 1.0.4 - dev: false - /json-buffer@3.0.0: - resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} - dev: false + json-buffer@3.0.0: {} - /json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + json-buffer@3.0.1: {} - /json-minimizer-webpack-plugin@4.0.0(webpack@5.84.1): - resolution: {integrity: sha512-PJaNiSeZlZStdyLtJo/QOOC7uHRW9qvc//7F8M0ZH1huPSvmX5kR2qrq2Tn1ODYLi128bTkKepqtgYmtEOkPzQ==} - engines: {node: '>= 14.15.0'} - peerDependencies: - webpack: 5.84.1 + json-minimizer-webpack-plugin@4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: schema-utils: 4.2.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /json-minimizer-webpack-plugin@5.0.0(webpack@5.84.1): - resolution: {integrity: sha512-GT/SZolN2p405EMGjMTBvAVi2+y035p1tSOuLpWbp5QTMl080OHx4DEGXfUH6vbnGw5Z/QKfBe+KpP9Dj0qLmA==} - engines: {node: '>= 18.12.0'} - peerDependencies: - webpack: 5.84.1 + json-minimizer-webpack-plugin@5.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: schema-utils: 4.2.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true - - /json-parse-better-errors@1.0.2: - resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + json-parse-better-errors@1.0.2: {} - /json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + json-parse-even-better-errors@2.3.1: {} - /json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + json-schema-traverse@0.4.1: {} - /json-schema@0.4.0: - resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} - dev: true + json-schema-traverse@1.0.0: {} - /json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + json-schema@0.4.0: {} - /json-stringify-nice@1.1.4: - resolution: {integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==} - dev: true + json-stable-stringify-without-jsonify@1.0.1: {} - /json-stringify-safe@5.0.1: - resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} - dev: true + json-stringify-nice@1.1.4: {} - /json5@0.5.1: - resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==} - hasBin: true - dev: true + json-stringify-safe@5.0.1: {} - /json5@1.0.2: - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} - hasBin: true + json5@1.0.2: dependencies: minimist: 1.2.8 - /json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} - hasBin: true + json5@2.2.3: {} - /jsonc-eslint-parser@2.4.0: - resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + jsonc-eslint-parser@2.4.0: dependencies: acorn: 8.12.0 eslint-visitor-keys: 3.4.3 espree: 9.6.1 semver: 7.6.2 - dev: true - /jsonc-parser@3.2.0: - resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} - dev: true + jsonc-parser@3.2.0: {} - /jsonfile@4.0.0: - resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + jsonfile@4.0.0: optionalDependencies: graceful-fs: 4.2.11 - dev: true - /jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + jsonfile@6.1.0: dependencies: universalify: 2.0.1 optionalDependencies: graceful-fs: 4.2.11 - /jsonparse@1.3.1: - resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} - engines: {'0': node >= 0.2.0} - dev: true + jsonparse@1.3.1: {} - /jsprim@2.0.2: - resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==} - engines: {'0': node >=0.6.0} + jsprim@2.0.2: dependencies: assert-plus: 1.0.0 extsprintf: 1.3.0 json-schema: 0.4.0 verror: 1.10.0 - dev: true - /jsrsasign@10.9.0: - resolution: {integrity: sha512-QWLUikj1SBJGuyGK8tjKSx3K7Y69KYJnrs/pQ1KZ6wvZIkHkWjZ1PJDpuvc1/28c1uP0KW9qn1eI1LzHQqDOwQ==} - dev: false + jsrsasign@10.9.0: {} - /jsx-ast-utils@3.3.5: - resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} - engines: {node: '>=4.0'} + jsx-ast-utils@3.3.5: dependencies: array-includes: 3.1.8 array.prototype.flat: 1.3.2 object.assign: 4.1.5 object.values: 1.2.0 - dev: true - /junk@3.1.0: - resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==} - engines: {node: '>=8'} - dev: false + junk@3.1.0: {} - /just-diff-apply@5.5.0: - resolution: {integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==} - dev: true + just-diff-apply@5.5.0: {} - /just-diff@5.2.0: - resolution: {integrity: sha512-6ufhP9SHjb7jibNFrNxyFZ6od3g+An6Ai9mhGRvcYe8UJlH0prseN64M+6ZBBUoKYHZsitDP42gAJ8+eVWr3lw==} - dev: true + just-diff@5.2.0: {} - /keyboard-key@1.1.0: - resolution: {integrity: sha512-qkBzPTi3rlAKvX7k0/ub44sqOfXeLc/jcnGGmj5c7BJpU8eDrEVPyhCvNYAaoubbsLm9uGWwQJO1ytQK1a9/dQ==} - dev: false + keyboard-key@1.1.0: {} - /keyv@3.1.0: - resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} + keyv@3.1.0: dependencies: json-buffer: 3.0.0 - dev: false - /keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + keyv@4.5.4: dependencies: json-buffer: 3.0.1 - /killable@1.0.1: - resolution: {integrity: sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==} + killable@1.0.1: {} - /kind-of@2.0.1: - resolution: {integrity: sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==} - engines: {node: '>=0.10.0'} + kind-of@2.0.1: dependencies: is-buffer: 1.1.6 - dev: true - /kind-of@3.2.2: - resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} - engines: {node: '>=0.10.0'} + kind-of@3.2.2: dependencies: is-buffer: 1.1.6 - /kind-of@4.0.0: - resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} - engines: {node: '>=0.10.0'} + kind-of@4.0.0: dependencies: is-buffer: 1.1.6 - /kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} + kind-of@6.0.3: {} - /kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: '>=6'} + kleur@3.0.3: {} - /kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} - dev: true + kleur@4.1.5: {} - /klona@2.0.6: - resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} - engines: {node: '>= 8'} + klona@2.0.6: {} - /language-subtag-registry@0.3.23: - resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} - dev: true + language-subtag-registry@0.3.23: {} - /language-tags@1.0.9: - resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} - engines: {node: '>=0.10'} + language-tags@1.0.9: dependencies: language-subtag-registry: 0.3.23 - dev: true - /latest-version@5.1.0: - resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==} - engines: {node: '>=8'} + latest-version@5.1.0: dependencies: package-json: 6.5.0 - dev: false - /launch-editor@2.8.0: - resolution: {integrity: sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==} + launch-editor@2.8.0: dependencies: picocolors: 1.0.1 shell-quote: 1.8.1 - dev: true - /lazy-ass@1.6.0: - resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==} - engines: {node: '> 0.8'} - dev: true + lazy-ass@1.6.0: {} - /lazy-cache@0.2.7: - resolution: {integrity: sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==} - engines: {node: '>=0.10.0'} - dev: true + lazy-cache@0.2.7: {} - /lazy-cache@1.0.4: - resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==} - engines: {node: '>=0.10.0'} - dev: true + lazy-cache@1.0.4: {} - /lazy-cache@2.0.2: - resolution: {integrity: sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==} - engines: {node: '>=0.10.0'} + lazy-cache@2.0.2: dependencies: set-getter: 0.1.1 - dev: true - /lazy-universal-dotenv@3.0.1: - resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==} - engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'} + lazy-universal-dotenv@3.0.1: dependencies: '@babel/runtime': 7.24.7 app-root-dir: 1.0.2 @@ -39677,19 +47910,13 @@ packages: dotenv: 8.6.0 dotenv-expand: 5.1.0 - /lazy-universal-dotenv@4.0.0: - resolution: {integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==} - engines: {node: '>=14.0.0'} + lazy-universal-dotenv@4.0.0: dependencies: app-root-dir: 1.0.2 dotenv: 16.4.5 dotenv-expand: 10.0.0 - dev: true - /lerna@5.6.2(@swc-node/register@1.6.8)(@swc/core@1.3.99): - resolution: {integrity: sha512-Y0yMPslvnBnTZi7Nrs/gDyYZYauNf61xWNCehISHIORxZmmpoluNkcWTfcyb47is5uJQCv5QJX5xKKubbs+a6w==} - engines: {node: ^14.15.0 || >=16.0.0} - hasBin: true + lerna@5.6.2(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13): dependencies: '@lerna/add': 5.6.2 '@lerna/bootstrap': 5.6.2 @@ -39705,14 +47932,14 @@ packages: '@lerna/init': 5.6.2 '@lerna/link': 5.6.2 '@lerna/list': 5.6.2 - '@lerna/publish': 5.6.2(nx@15.9.3) + '@lerna/publish': 5.6.2(encoding@0.1.13)(nx@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) '@lerna/run': 5.6.2 - '@lerna/version': 5.6.2(nx@15.9.3) - '@nrwl/devkit': 15.9.7(nx@15.9.3) + '@lerna/version': 5.6.2(encoding@0.1.13)(nx@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nrwl/devkit': 15.9.7(nx@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) import-local: 3.1.0 inquirer: 8.2.6 npmlog: 6.0.2 - nx: 15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) + nx: 15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) typescript: 4.9.5 transitivePeerDependencies: - '@swc-node/register' @@ -39721,59 +47948,33 @@ packages: - debug - encoding - supports-color - dev: true - /less-loader@11.1.0(less@4.1.3)(webpack@5.84.1): - resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==} - engines: {node: '>= 14.15.0'} - peerDependencies: - less: ^3.5.0 || ^4.0.0 - webpack: 5.84.1 + less-loader@11.1.0(less@4.1.3)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: klona: 2.0.6 less: 4.1.3 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /less-loader@5.0.0(less@3.13.1)(webpack@5.84.1): - resolution: {integrity: sha512-bquCU89mO/yWLaUq0Clk7qCsKhsF/TZpJUzETRvJa9KSVEL9SO3ovCvdEHISBhrC81OwC8QSVX7E0bzElZj9cg==} - engines: {node: '>= 4.8.0'} - peerDependencies: - less: ^2.3.1 || ^3.0.0 - webpack: 5.84.1 + less-loader@5.0.0(less@4.1.3)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: clone: 2.1.2 - less: 3.13.1 + less: 4.1.3 loader-utils: 1.4.2 pify: 4.0.1 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /less-plugin-inline-urls@1.2.0: - resolution: {integrity: sha512-QS9MLcg8Lo6ZHVS+9kncmHeLypIdnFgG/neqV3RPkXfiiSCJHn/jTQHKnXfDEL/F/JM+z6MQ6ukWr/xsOChHTA==} - engines: {node: '>=0.4.2'} - dev: true + less-plugin-inline-urls@1.2.0: {} - /less-plugin-npm-import@2.1.0: - resolution: {integrity: sha512-f7pVkEooRq2/jge/M/Y+spoPXj5rRIY30q1as+3kZsDG8Rs+loNJUCVQjzXB9Ao/9FeIJULiq2zrXymv+OMTbw==} - engines: {node: '>=0.4.2'} + less-plugin-npm-import@2.1.0: dependencies: promise: 7.0.4 resolve: 1.1.7 - dev: true - /less-plugin-rewrite-import@0.1.1: - resolution: {integrity: sha512-8FnuGhF0rS6P9DkaEH2+6pphx7pJ9hV4mHF2MhsXKSXNvwTVX9YCt5HnX99mhTOyQzc+2hu5JPPoRl/b9DAwuQ==} - dev: true + less-plugin-rewrite-import@0.1.1: {} - /less-plugin-rewrite-variable@0.1.0: - resolution: {integrity: sha512-cpIa1+wHssZRt2aUnoWODfDB0z0QM8ir9ZS/18802bX9S4+6s+/HXaK92C3VznniPjviKhA3u8o4/0K9HK0nEw==} - engines: {node: '>=0.4.2'} - dev: true + less-plugin-rewrite-variable@0.1.0: {} - /less-to-json@1.2.0: - resolution: {integrity: sha512-1ItmxVFw76yiQgr2MUTGy7bTHT2tT6CcZ28grgw/gWNy2Q3WwFfSHL88sWUBpTXGFonlKd2yCDhtJFJdGjzqHA==} - hasBin: true + less-to-json@1.2.0: dependencies: commander: 2.20.3 fs: 0.0.1-security @@ -39782,19 +47983,12 @@ packages: path: 0.12.7 transitivePeerDependencies: - supports-color - dev: true - /less-vars-to-js@1.3.0: - resolution: {integrity: sha512-xeiLLn/IMCGtdyCkYQnW8UuzoW2oYMCKg9boZRaGI58fLz5r90bNJDlqGzmVt/1Uqk75/DxIVtQSNCMkE5fRZQ==} - engines: {node: '>=8'} + less-vars-to-js@1.3.0: dependencies: strip-json-comments: 2.0.1 - dev: true - /less@3.13.1: - resolution: {integrity: sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==} - engines: {node: '>=6'} - hasBin: true + less@3.13.1: dependencies: copy-anything: 2.0.6 tslib: 1.14.1 @@ -39806,12 +48000,8 @@ packages: mime: 1.6.0 native-request: 1.1.0 source-map: 0.6.1 - dev: true - /less@4.1.3: - resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==} - engines: {node: '>=6'} - hasBin: true + less@4.1.3: dependencies: copy-anything: 2.0.6 parse-node-version: 1.0.1 @@ -39824,22 +48014,15 @@ packages: mime: 1.6.0 needle: 3.3.1 source-map: 0.6.1 - dev: true - /leven@3.1.0: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} - engines: {node: '>=6'} + leven@3.1.0: {} - /levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} + levn@0.4.1: dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 - /libnpmaccess@6.0.4: - resolution: {integrity: sha512-qZ3wcfIyUoW0+qSFkMBovcTrSGJ3ZeyvpR7d5N9pEYv/kXs8sHP2wiqEIXBKLFrZlmM0kR0RJD7mtfLngtlLag==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + libnpmaccess@6.0.4: dependencies: aproba: 2.0.0 minipass: 3.3.6 @@ -39848,11 +48031,8 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /libnpmpublish@6.0.5: - resolution: {integrity: sha512-LUR08JKSviZiqrYTDfywvtnsnxr+tOvBU0BF8H+9frt7HMvc6Qn6F8Ubm72g5hDTHbq8qupKfDvDAln2TVPvFg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + libnpmpublish@6.0.5: dependencies: normalize-package-data: 4.0.1 npm-package-arg: 9.1.2 @@ -39862,387 +48042,244 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /license-webpack-plugin@4.0.2(webpack@5.84.1): - resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==} - peerDependencies: - webpack: '*' - peerDependenciesMeta: - webpack: - optional: true - webpack-sources: - optional: true + license-webpack-plugin@4.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-sources: 3.2.3 - dev: true + optionalDependencies: + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /lilconfig@2.1.0: - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} - engines: {node: '>=10'} - dev: true + lilconfig@2.1.0: {} - /lilconfig@3.1.2: - resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} - engines: {node: '>=14'} - dev: true + lilconfig@3.1.2: {} - /lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + lines-and-columns@1.2.4: {} - /lines-and-columns@2.0.4: - resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + lines-and-columns@2.0.4: {} - /list-item@1.1.1: - resolution: {integrity: sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==} - engines: {node: '>=0.10.0'} + list-item@1.1.1: dependencies: expand-range: 1.8.2 extend-shallow: 2.0.1 is-number: 2.1.0 repeat-string: 1.6.1 - dev: true - /listr2@3.14.0(enquirer@2.4.1): - resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==} - engines: {node: '>=10.0.0'} - peerDependencies: - enquirer: '>= 2.3.0 < 3' - peerDependenciesMeta: - enquirer: - optional: true + listr2@3.14.0(enquirer@2.4.1): dependencies: cli-truncate: 2.1.0 colorette: 2.0.20 - enquirer: 2.4.1 log-update: 4.0.0 p-map: 4.0.0 rfdc: 1.4.1 rxjs: 7.8.1 through: 2.3.8 wrap-ansi: 7.0.0 - dev: true + optionalDependencies: + enquirer: 2.4.1 - /load-json-file@1.1.0: - resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==} - engines: {node: '>=0.10.0'} - requiresBuild: true + load-json-file@1.1.0: dependencies: graceful-fs: 4.2.11 parse-json: 2.2.0 pify: 2.3.0 pinkie-promise: 2.0.1 strip-bom: 2.0.0 - dev: false optional: true - /load-json-file@4.0.0: - resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} - engines: {node: '>=4'} + load-json-file@4.0.0: dependencies: graceful-fs: 4.2.11 parse-json: 4.0.0 pify: 3.0.0 strip-bom: 3.0.0 - dev: true - /load-json-file@6.2.0: - resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==} - engines: {node: '>=8'} + load-json-file@6.2.0: dependencies: graceful-fs: 4.2.11 parse-json: 5.2.0 strip-bom: 4.0.0 type-fest: 0.6.0 - dev: true - /load-yaml-file@0.2.0: - resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} - engines: {node: '>=6'} + load-yaml-file@0.2.0: dependencies: graceful-fs: 4.2.11 js-yaml: 3.13.1 pify: 4.0.1 strip-bom: 3.0.0 - dev: true - /loader-runner@2.4.0: - resolution: {integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==} - engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} - dev: true + loader-runner@2.4.0: {} - /loader-runner@4.3.0: - resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} - engines: {node: '>=6.11.5'} + loader-runner@4.3.0: {} - /loader-utils@1.4.2: - resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} - engines: {node: '>=4.0.0'} + loader-utils@1.4.2: dependencies: big.js: 5.2.2 emojis-list: 3.0.0 json5: 1.0.2 - /loader-utils@2.0.4: - resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} - engines: {node: '>=8.9.0'} + loader-utils@2.0.4: dependencies: big.js: 5.2.2 emojis-list: 3.0.0 json5: 2.2.3 - /loader-utils@3.3.1: - resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} - engines: {node: '>= 12.13.0'} - dev: true + loader-utils@3.3.1: {} - /locate-path@2.0.0: - resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} - engines: {node: '>=4'} + locate-path@2.0.0: dependencies: p-locate: 2.0.0 path-exists: 3.0.0 - dev: true - /locate-path@3.0.0: - resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} - engines: {node: '>=6'} + locate-path@3.0.0: dependencies: p-locate: 3.0.0 path-exists: 3.0.0 - /locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} + locate-path@5.0.0: dependencies: p-locate: 4.1.0 - /locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} + locate-path@6.0.0: dependencies: p-locate: 5.0.0 - /locate-path@7.2.0: - resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + locate-path@7.2.0: dependencies: p-locate: 6.0.0 - dev: true - /lodash-es@4.17.21: - resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} - dev: false + lodash-es@4.17.21: {} - /lodash._reinterpolate@3.0.0: - resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==} - dev: true + lodash._reinterpolate@3.0.0: {} - /lodash.camelcase@4.3.0: - resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + lodash.camelcase@4.3.0: {} - /lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + lodash.debounce@4.0.8: {} - /lodash.flattendeep@4.4.0: - resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} - dev: true + lodash.flattendeep@4.4.0: {} - /lodash.ismatch@4.4.0: - resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} - dev: true + lodash.ismatch@4.4.0: {} - /lodash.isplainobject@4.0.6: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + lodash.isplainobject@4.0.6: {} - /lodash.memoize@4.1.2: - resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + lodash.memoize@4.1.2: {} - /lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + lodash.merge@4.6.2: {} - /lodash.once@4.1.1: - resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} - dev: true + lodash.once@4.1.1: {} - /lodash.startcase@4.4.0: - resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} - dev: true + lodash.startcase@4.4.0: {} - /lodash.template@4.5.0: - resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==} + lodash.template@4.5.0: dependencies: lodash._reinterpolate: 3.0.0 lodash.templatesettings: 4.2.0 - dev: true - /lodash.templatesettings@4.2.0: - resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==} + lodash.templatesettings@4.2.0: dependencies: lodash._reinterpolate: 3.0.0 - dev: true - /lodash.truncate@4.4.2: - resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} + lodash.truncate@4.4.2: {} - /lodash.uniq@4.5.0: - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + lodash.uniq@4.5.0: {} - /lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + lodash@4.17.21: {} - /log-symbols@2.2.0: - resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==} - engines: {node: '>=4'} + log-symbols@2.2.0: dependencies: chalk: 2.4.2 - dev: true - /log-symbols@4.1.0: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} - engines: {node: '>=10'} + log-symbols@4.1.0: dependencies: chalk: 4.1.2 is-unicode-supported: 0.1.0 - dev: true - /log-update@4.0.0: - resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} - engines: {node: '>=10'} + log-update@4.0.0: dependencies: ansi-escapes: 4.3.2 cli-cursor: 3.1.0 slice-ansi: 4.0.0 wrap-ansi: 6.2.0 - dev: true - /log4js@4.5.1: - resolution: {integrity: sha512-EEEgFcE9bLgaYUKuozyFfytQM2wDHtXn4tAN41pkaxpNjAykv11GVdeI4tHtmPWW4Xrgh9R/2d7XYghDVjbKKw==} - engines: {node: '>=6.0'} - deprecated: 4.x is no longer supported. Please upgrade to 6.x or higher. + log4js@4.5.1: dependencies: date-format: 2.1.0 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) flatted: 2.0.2 rfdc: 1.4.1 streamroller: 1.0.6 transitivePeerDependencies: - supports-color - dev: true - /loglevel@1.9.1: - resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==} - engines: {node: '>= 0.6.0'} + loglevel@1.9.1: {} - /loglevelnext@1.0.5: - resolution: {integrity: sha512-V/73qkPuJmx4BcBF19xPBr+0ZRVBhc4POxvZTZdMeXpJ4NItXSJ/MSwuFT0kQJlCbXvdlZoQQ/418bS1y9Jh6A==} - engines: {node: '>= 6'} + loglevelnext@1.0.5: dependencies: es6-symbol: 3.1.4 object.assign: 4.1.5 - dev: true - /loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} - hasBin: true + longest-streak@3.1.0: {} + + loose-envify@1.4.0: dependencies: js-tokens: 4.0.0 - /loud-rejection@1.6.0: - resolution: {integrity: sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==} - engines: {node: '>=0.10.0'} - requiresBuild: true + loud-rejection@1.6.0: dependencies: currently-unhandled: 0.4.1 signal-exit: 3.0.7 - dev: false optional: true - /lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + lower-case@2.0.2: dependencies: tslib: 2.6.3 - /lowercase-keys@1.0.1: - resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} - engines: {node: '>=0.10.0'} - dev: false + lowercase-keys@1.0.1: {} - /lowercase-keys@2.0.0: - resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} - engines: {node: '>=8'} + lowercase-keys@2.0.0: {} - /lru-cache@10.4.3: - resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + lru-cache@10.4.3: {} - /lru-cache@4.1.5: - resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} + lru-cache@4.1.5: dependencies: pseudomap: 1.0.2 yallist: 2.1.2 - dev: true - /lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + lru-cache@5.1.1: dependencies: yallist: 3.1.1 - /lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} + lru-cache@6.0.0: dependencies: yallist: 4.0.0 - /lru-cache@7.18.3: - resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} - engines: {node: '>=12'} - dev: true + lru-cache@7.18.3: {} - /lz-string@1.5.0: - resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} - hasBin: true - dev: true + lz-string@1.5.0: {} - /magic-string@0.25.9: - resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + magic-string@0.25.9: dependencies: sourcemap-codec: 1.4.8 - dev: true - /magic-string@0.30.10: - resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} + magic-string@0.30.10: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 - dev: true - /make-dir@2.1.0: - resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} - engines: {node: '>=6'} + make-dir@2.1.0: dependencies: pify: 4.0.1 semver: 5.7.2 - /make-dir@3.1.0: - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} - engines: {node: '>=8'} + make-dir@3.1.0: dependencies: semver: 6.3.1 - /make-dir@4.0.0: - resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} - engines: {node: '>=10'} + make-dir@4.0.0: dependencies: semver: 7.6.2 - /make-error@1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + make-error@1.3.6: {} - /make-fetch-happen@10.2.1: - resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + make-fetch-happen@10.2.1: dependencies: agentkeepalive: 4.5.0 cacache: 16.1.3 @@ -40263,54 +48300,32 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /makeerror@1.0.12: - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + makeerror@1.0.12: dependencies: tmpl: 1.0.5 - /map-age-cleaner@0.1.3: - resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==} - engines: {node: '>=6'} + map-age-cleaner@0.1.3: dependencies: p-defer: 1.0.0 - dev: false - /map-cache@0.2.2: - resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} - engines: {node: '>=0.10.0'} + map-cache@0.2.2: {} - /map-obj@1.0.1: - resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} - engines: {node: '>=0.10.0'} + map-obj@1.0.1: {} - /map-obj@4.3.0: - resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} - engines: {node: '>=8'} - dev: true + map-obj@4.3.0: {} - /map-or-similar@1.5.0: - resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} + map-or-similar@1.5.0: {} - /map-visit@1.0.0: - resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} - engines: {node: '>=0.10.0'} + map-visit@1.0.0: dependencies: object-visit: 1.0.1 - /markdown-escapes@1.0.4: - resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==} + markdown-escapes@1.0.4: {} - /markdown-link@0.1.1: - resolution: {integrity: sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==} - engines: {node: '>=0.10.0'} - dev: true + markdown-link@0.1.1: {} - /markdown-toc@1.2.0: - resolution: {integrity: sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==} - engines: {node: '>=0.10.0'} - hasBin: true + markdown-toc@1.2.0: dependencies: concat-stream: 1.6.2 diacritics-map: 0.1.0 @@ -40324,34 +48339,82 @@ packages: remarkable: 1.7.4 repeat-string: 1.6.1 strip-color: 0.1.0 - dev: true - - /material-colors@1.2.6: - resolution: {integrity: sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==} - dev: false - /math-random@1.0.4: - resolution: {integrity: sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==} - dev: true + material-colors@1.2.6: {} - /mdast-add-list-metadata@1.0.1: - resolution: {integrity: sha512-fB/VP4MJ0LaRsog7hGPxgOrSL3gE/2uEdZyDuSEnKCv/8IkYHiDkIQSbChiJoHyxZZXZ9bzckyRk+vNxFzh8rA==} - dependencies: - unist-util-visit-parents: 1.1.2 - dev: false + math-random@1.0.4: {} - /mdast-squeeze-paragraphs@4.0.0: - resolution: {integrity: sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==} + mdast-squeeze-paragraphs@4.0.0: dependencies: unist-util-remove: 2.1.0 - /mdast-util-definitions@4.0.0: - resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==} + mdast-util-definitions@4.0.0: dependencies: unist-util-visit: 2.0.3 - /mdast-util-to-hast@10.0.1: - resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==} + mdast-util-from-markdown@2.0.1: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.2 + decode-named-character-reference: 1.0.2 + devlop: 1.1.0 + mdast-util-to-string: 4.0.0 + micromark: 4.0.0 + micromark-util-decode-numeric-character-reference: 2.0.1 + micromark-util-decode-string: 2.0.0 + micromark-util-normalize-identifier: 2.0.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + unist-util-stringify-position: 4.0.0 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx-expression@2.0.0: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.1 + mdast-util-to-markdown: 2.1.0 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx-jsx@3.1.2: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@types/unist': 3.0.2 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.1 + mdast-util-to-markdown: 2.1.0 + parse-entities: 4.0.1 + stringify-entities: 4.0.4 + unist-util-remove-position: 5.0.0 + unist-util-stringify-position: 4.0.0 + vfile-message: 4.0.2 + transitivePeerDependencies: + - supports-color + + mdast-util-mdxjs-esm@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.1 + mdast-util-to-markdown: 2.1.0 + transitivePeerDependencies: + - supports-color + + mdast-util-phrasing@4.1.0: + dependencies: + '@types/mdast': 4.0.4 + unist-util-is: 6.0.0 + + mdast-util-to-hast@10.0.1: dependencies: '@types/mdast': 3.0.15 '@types/unist': 2.0.10 @@ -40362,71 +48425,73 @@ packages: unist-util-position: 3.1.0 unist-util-visit: 2.0.3 - /mdast-util-to-string@1.1.0: - resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==} - dev: true + mdast-util-to-hast@13.2.0: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@ungap/structured-clone': 1.2.0 + devlop: 1.1.0 + micromark-util-sanitize-uri: 2.0.0 + trim-lines: 3.0.1 + unist-util-position: 5.0.0 + unist-util-visit: 5.0.0 + vfile: 6.0.1 - /mdn-data@2.0.14: - resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + mdast-util-to-markdown@2.1.0: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.2 + longest-streak: 3.1.0 + mdast-util-phrasing: 4.1.0 + mdast-util-to-string: 4.0.0 + micromark-util-decode-string: 2.0.0 + unist-util-visit: 5.0.0 + zwitch: 2.0.4 - /mdn-data@2.0.28: - resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} + mdast-util-to-string@1.1.0: {} - /mdn-data@2.0.30: - resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + mdast-util-to-string@4.0.0: + dependencies: + '@types/mdast': 4.0.4 - /mdn-data@2.0.4: - resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} - dev: true + mdn-data@2.0.14: {} - /mdurl@1.0.1: - resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} + mdn-data@2.0.28: {} - /media-typer@0.3.0: - resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} - engines: {node: '>= 0.6'} + mdn-data@2.0.30: {} - /mem@8.1.1: - resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==} - engines: {node: '>=10'} + mdn-data@2.0.4: {} + + mdurl@1.0.1: {} + + media-typer@0.3.0: {} + + mem@8.1.1: dependencies: map-age-cleaner: 0.1.3 mimic-fn: 3.1.0 - dev: false - /memfs@3.5.3: - resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} - engines: {node: '>= 4.0.0'} + memfs@3.5.3: dependencies: fs-monkey: 1.0.6 - /memoize-one@5.2.1: - resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} - dev: false + memoize-one@5.2.1: {} - /memoizerific@1.11.3: - resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==} + memoizerific@1.11.3: dependencies: map-or-similar: 1.5.0 - /memory-fs@0.4.1: - resolution: {integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==} + memory-fs@0.4.1: dependencies: errno: 0.1.8 readable-stream: 2.3.8 - /memory-fs@0.5.0: - resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==} - engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} + memory-fs@0.5.0: dependencies: errno: 0.1.8 readable-stream: 2.3.8 - dev: true - /meow@3.7.0: - resolution: {integrity: sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==} - engines: {node: '>=0.10.0'} - requiresBuild: true + meow@3.7.0: dependencies: camelcase-keys: 2.1.0 decamelize: 1.2.0 @@ -40438,12 +48503,9 @@ packages: read-pkg-up: 1.0.1 redent: 1.0.0 trim-newlines: 1.0.0 - dev: false optional: true - /meow@6.1.1: - resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} - engines: {node: '>=8'} + meow@6.1.1: dependencies: '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 @@ -40456,11 +48518,8 @@ packages: trim-newlines: 3.0.1 type-fest: 0.13.1 yargs-parser: 18.1.3 - dev: true - /meow@8.1.2: - resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} - engines: {node: '>=10'} + meow@8.1.2: dependencies: '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 @@ -40473,54 +48532,167 @@ packages: trim-newlines: 3.0.1 type-fest: 0.18.1 yargs-parser: 20.2.9 - dev: true - /merge-anything@2.4.4: - resolution: {integrity: sha512-l5XlriUDJKQT12bH+rVhAHjwIuXWdAIecGwsYjv2LJo+dA1AeRTmeQS+3QBpO6lEthBMDi2IUMpLC1yyRvGlwQ==} + merge-anything@2.4.4: dependencies: is-what: 3.14.1 - dev: false - /merge-deep@3.0.3: - resolution: {integrity: sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==} - engines: {node: '>=0.10.0'} + merge-deep@3.0.3: dependencies: arr-union: 3.1.0 clone-deep: 0.2.4 kind-of: 3.2.2 - dev: true - /merge-descriptors@1.0.1: - resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} + merge-descriptors@1.0.1: {} - /merge-files@0.1.2: - resolution: {integrity: sha512-WTvtH6ZwVy1/scvp1M+Re6PVni87QTjpSLAwxh0L+PlYIxc4VGFFpLjvP7jdJ43gaJ5n+RUIriJ6wKqmqvVVmg==} + merge-files@0.1.2: dependencies: multistream: 2.1.1 - dev: true - /merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + merge-stream@2.0.0: {} - /merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} + merge2@1.4.1: {} - /merge@1.2.1: - resolution: {integrity: sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==} - dev: true + merge@1.2.1: {} - /methods@1.1.2: - resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} - engines: {node: '>= 0.6'} + methods@1.1.2: {} - /microevent.ts@0.1.1: - resolution: {integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==} - dev: false + microevent.ts@0.1.1: {} - /micromatch@3.1.10(supports-color@6.1.0): - resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} - engines: {node: '>=0.10.0'} + micromark-core-commonmark@2.0.1: + dependencies: + decode-named-character-reference: 1.0.2 + devlop: 1.1.0 + micromark-factory-destination: 2.0.0 + micromark-factory-label: 2.0.0 + micromark-factory-space: 2.0.0 + micromark-factory-title: 2.0.0 + micromark-factory-whitespace: 2.0.0 + micromark-util-character: 2.1.0 + micromark-util-chunked: 2.0.0 + micromark-util-classify-character: 2.0.0 + micromark-util-html-tag-name: 2.0.0 + micromark-util-normalize-identifier: 2.0.0 + micromark-util-resolve-all: 2.0.0 + micromark-util-subtokenize: 2.0.1 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-factory-destination@2.0.0: + dependencies: + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-factory-label@2.0.0: + dependencies: + devlop: 1.1.0 + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-factory-space@2.0.0: + dependencies: + micromark-util-character: 2.1.0 + micromark-util-types: 2.0.0 + + micromark-factory-title@2.0.0: + dependencies: + micromark-factory-space: 2.0.0 + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-factory-whitespace@2.0.0: + dependencies: + micromark-factory-space: 2.0.0 + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-util-character@2.1.0: + dependencies: + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-util-chunked@2.0.0: + dependencies: + micromark-util-symbol: 2.0.0 + + micromark-util-classify-character@2.0.0: + dependencies: + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-util-combine-extensions@2.0.0: + dependencies: + micromark-util-chunked: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-util-decode-numeric-character-reference@2.0.1: + dependencies: + micromark-util-symbol: 2.0.0 + + micromark-util-decode-string@2.0.0: + dependencies: + decode-named-character-reference: 1.0.2 + micromark-util-character: 2.1.0 + micromark-util-decode-numeric-character-reference: 2.0.1 + micromark-util-symbol: 2.0.0 + + micromark-util-encode@2.0.0: {} + + micromark-util-html-tag-name@2.0.0: {} + + micromark-util-normalize-identifier@2.0.0: + dependencies: + micromark-util-symbol: 2.0.0 + + micromark-util-resolve-all@2.0.0: + dependencies: + micromark-util-types: 2.0.0 + + micromark-util-sanitize-uri@2.0.0: + dependencies: + micromark-util-character: 2.1.0 + micromark-util-encode: 2.0.0 + micromark-util-symbol: 2.0.0 + + micromark-util-subtokenize@2.0.1: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + + micromark-util-symbol@2.0.0: {} + + micromark-util-types@2.0.0: {} + + micromark@4.0.0: + dependencies: + '@types/debug': 4.1.12 + debug: 4.3.5(supports-color@8.1.1) + decode-named-character-reference: 1.0.2 + devlop: 1.1.0 + micromark-core-commonmark: 2.0.1 + micromark-factory-space: 2.0.0 + micromark-util-character: 2.1.0 + micromark-util-chunked: 2.0.0 + micromark-util-combine-extensions: 2.0.0 + micromark-util-decode-numeric-character-reference: 2.0.1 + micromark-util-encode: 2.0.0 + micromark-util-normalize-identifier: 2.0.0 + micromark-util-resolve-all: 2.0.0 + micromark-util-sanitize-uri: 2.0.0 + micromark-util-subtokenize: 2.0.1 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + transitivePeerDependencies: + - supports-color + + micromatch@3.1.10(supports-color@6.1.0): dependencies: arr-diff: 4.0.0 array-unique: 0.3.2 @@ -40538,299 +48710,177 @@ packages: transitivePeerDependencies: - supports-color - /micromatch@4.0.7: - resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} - engines: {node: '>=8.6'} + micromatch@4.0.7: dependencies: braces: 3.0.3 picomatch: 2.3.1 - /mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} + mime-db@1.52.0: {} - /mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} + mime-types@2.1.35: dependencies: mime-db: 1.52.0 - /mime@1.6.0: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} - engines: {node: '>=4'} - hasBin: true + mime@1.6.0: {} - /mime@2.6.0: - resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} - engines: {node: '>=4.0.0'} - hasBin: true + mime@2.6.0: {} - /mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} + mimic-fn@2.1.0: {} - /mimic-fn@3.1.0: - resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} - engines: {node: '>=8'} - dev: false + mimic-fn@3.1.0: {} - /mimic-fn@4.0.0: - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} - engines: {node: '>=12'} - dev: true + mimic-fn@4.0.0: {} - /mimic-response@1.0.1: - resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} - engines: {node: '>=4'} + mimic-response@1.0.1: {} - /mimic-response@3.1.0: - resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} - engines: {node: '>=10'} - dev: true + mimic-response@3.1.0: {} - /min-document@2.19.0: - resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==} + min-document@2.19.0: dependencies: dom-walk: 0.1.2 - /min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} + min-indent@1.0.1: {} - /mini-css-extract-plugin@0.4.5(webpack@5.84.1): - resolution: {integrity: sha512-dqBanNfktnp2hwL2YguV9Jh91PFX7gu7nRLs4TGsbAfAG6WOtlynFRYzwDwmmeSb5uIwHo9nx1ta0f7vAZVp2w==} - engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 + mini-css-extract-plugin@0.4.5(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: loader-utils: 1.4.2 schema-utils: 1.0.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) webpack-sources: 1.4.3 - dev: true - /mini-css-extract-plugin@2.4.7(webpack@5.84.1): - resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: 5.84.1 + mini-css-extract-plugin@2.4.7(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: schema-utils: 4.2.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /mini-svg-data-uri@1.4.4: - resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} - hasBin: true - dev: true + mini-svg-data-uri@1.4.4: {} - /minimalistic-assert@1.0.1: - resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} + minimalistic-assert@1.0.1: {} - /minimatch@3.0.5: - resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} + minimatch@3.0.5: dependencies: brace-expansion: 1.1.11 - dev: true - /minimatch@3.0.8: - resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==} + minimatch@3.0.8: dependencies: brace-expansion: 1.1.11 - dev: false - /minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + minimatch@3.1.2: dependencies: brace-expansion: 1.1.11 - /minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} + minimatch@5.1.6: dependencies: brace-expansion: 2.0.1 - dev: true - /minimatch@9.0.1: - resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} - engines: {node: '>=16 || 14 >=14.17'} + minimatch@9.0.1: dependencies: brace-expansion: 2.0.1 - dev: false - /minimatch@9.0.5: - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} - engines: {node: '>=16 || 14 >=14.17'} + minimatch@9.0.5: dependencies: brace-expansion: 2.0.1 - /minimist-options@4.1.0: - resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} - engines: {node: '>= 6'} + minimist-options@4.1.0: dependencies: arrify: 1.0.1 is-plain-obj: 1.1.0 kind-of: 6.0.3 - dev: true - /minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + minimist@1.2.8: {} - /minipass-collect@1.0.2: - resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} - engines: {node: '>= 8'} + minipass-collect@1.0.2: dependencies: minipass: 3.3.6 - /minipass-fetch@2.1.2: - resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + minipass-fetch@2.1.2: dependencies: minipass: 3.3.6 minipass-sized: 1.0.3 minizlib: 2.1.2 optionalDependencies: encoding: 0.1.13 - dev: true - /minipass-flush@1.0.5: - resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} - engines: {node: '>= 8'} + minipass-flush@1.0.5: dependencies: minipass: 3.3.6 - /minipass-json-stream@1.0.1: - resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==} + minipass-json-stream@1.0.1: dependencies: jsonparse: 1.3.1 minipass: 3.3.6 - dev: true - /minipass-pipeline@1.2.4: - resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} - engines: {node: '>=8'} + minipass-pipeline@1.2.4: dependencies: minipass: 3.3.6 - /minipass-sized@1.0.3: - resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} - engines: {node: '>=8'} + minipass-sized@1.0.3: dependencies: minipass: 3.3.6 - dev: true - /minipass@3.3.6: - resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} - engines: {node: '>=8'} + minipass@3.3.6: dependencies: yallist: 4.0.0 - /minipass@5.0.0: - resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} - engines: {node: '>=8'} + minipass@5.0.0: {} - /minipass@7.1.2: - resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} - engines: {node: '>=16 || 14 >=14.17'} + minipass@7.1.2: {} - /minizlib@2.1.2: - resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} - engines: {node: '>= 8'} + minizlib@2.1.2: dependencies: minipass: 3.3.6 yallist: 4.0.0 - /mixin-deep@1.3.2: - resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} - engines: {node: '>=0.10.0'} + mixin-deep@1.3.2: dependencies: for-in: 1.0.2 is-extendable: 1.0.1 - /mixin-object@2.0.1: - resolution: {integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==} - engines: {node: '>=0.10.0'} + mixin-object@2.0.1: dependencies: for-in: 0.1.8 is-extendable: 0.1.1 - dev: true - /mixme@0.5.10: - resolution: {integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==} - engines: {node: '>= 8.0.0'} - dev: true + mixme@0.5.10: {} - /mkdirp-classic@0.5.3: - resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} - dev: true + mkdirp-classic@0.5.3: {} - /mkdirp-infer-owner@2.0.0: - resolution: {integrity: sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==} - engines: {node: '>=10'} + mkdirp-infer-owner@2.0.0: dependencies: chownr: 2.0.0 infer-owner: 1.0.4 mkdirp: 1.0.4 - dev: true - /mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} - hasBin: true + mkdirp@0.5.6: dependencies: minimist: 1.2.8 - /mkdirp@1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: '>=10'} - hasBin: true + mkdirp@1.0.4: {} - /mlly@1.7.1: - resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==} + mlly@1.7.1: dependencies: acorn: 8.12.0 pathe: 1.1.2 pkg-types: 1.1.3 ufo: 1.5.3 - dev: true - - /modify-values@1.0.1: - resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} - engines: {node: '>=0.10.0'} - dev: true - /moment@2.30.1: - resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==} + modify-values@1.0.1: {} - /monaco-editor@0.50.0: - resolution: {integrity: sha512-8CclLCmrRRh+sul7C08BmPBP3P8wVWfBHomsTcndxg5NRCEPfu/mc2AGU8k37ajjDVXcXFc12ORAMUkmk+lkFA==} - dev: false + moment@2.30.1: {} - /mri@1.2.0: - resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} - engines: {node: '>=4'} - dev: true + monaco-editor@0.50.0: {} - /mrmime@2.0.0: - resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} - engines: {node: '>=10'} + mrmime@2.0.0: {} - /ms@2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + ms@2.0.0: {} - /ms@2.1.1: - resolution: {integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==} - dev: false + ms@2.1.1: {} - /ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + ms@2.1.2: {} - /ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + ms@2.1.3: {} - /msw@0.36.8: - resolution: {integrity: sha512-K7lOQoYqhGhTSChsmHMQbf/SDCsxh/m0uhN6Ipt206lGoe81fpTmaGD0KLh4jUxCONMOUnwCSj0jtX2CM4pEdw==} - hasBin: true - requiresBuild: true + msw@0.36.8(encoding@0.1.13): dependencies: '@mswjs/cookies': 0.1.7 '@mswjs/interceptors': 0.12.7 @@ -40846,7 +48896,7 @@ packages: inquirer: 8.2.6 is-node-process: 1.2.0 js-levenshtein: 1.1.6 - node-fetch: 2.7.0 + node-fetch: 2.7.0(encoding@0.1.13) path-to-regexp: 6.2.2 statuses: 2.0.1 strict-event-emitter: 0.2.8 @@ -40855,66 +48905,42 @@ packages: transitivePeerDependencies: - encoding - supports-color - dev: true - /multicast-dns-service-types@1.1.0: - resolution: {integrity: sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==} - - /multicast-dns@6.2.3: - resolution: {integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==} - hasBin: true + multicast-dns-service-types@1.1.0: {} + + multicast-dns@6.2.3: dependencies: dns-packet: 1.3.4 thunky: 1.1.0 - /multicast-dns@7.2.5: - resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} - hasBin: true + multicast-dns@7.2.5: dependencies: dns-packet: 5.6.1 thunky: 1.1.0 - dev: true - /multimatch@5.0.0: - resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} - engines: {node: '>=10'} + multimatch@5.0.0: dependencies: '@types/minimatch': 3.0.5 array-differ: 3.0.0 array-union: 2.1.0 arrify: 2.0.1 minimatch: 3.1.2 - dev: true - /multistream@2.1.1: - resolution: {integrity: sha512-xasv76hl6nr1dEy3lPvy7Ej7K/Lx3O/FCvwge8PeVJpciPPoNCbaANcNiBug3IpdvTveZUcAV0DJzdnUDMesNQ==} + multistream@2.1.1: dependencies: inherits: 2.0.4 readable-stream: 2.3.8 - dev: true - /mustache@4.2.0: - resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} - hasBin: true - dev: false + mustache@4.2.0: {} - /mute-stream@0.0.8: - resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} - dev: true + mute-stream@0.0.8: {} - /nan@2.20.0: - resolution: {integrity: sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==} - requiresBuild: true + nan@2.20.0: optional: true - /nanoid@3.3.7: - resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true + nanoid@3.3.7: {} - /nanomatch@1.2.13(supports-color@6.1.0): - resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} - engines: {node: '>=0.10.0'} + nanomatch@1.2.13(supports-color@6.1.0): dependencies: arr-diff: 4.0.0 array-unique: 0.3.2 @@ -40930,107 +48956,61 @@ packages: transitivePeerDependencies: - supports-color - /native-request@1.1.0: - resolution: {integrity: sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==} - requiresBuild: true - dev: true + native-request@1.1.0: optional: true - /native-url@0.2.6: - resolution: {integrity: sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==} + native-url@0.2.6: dependencies: querystring: 0.2.1 - dev: true - /natural-compare-lite@1.4.0: - resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} - dev: true + natural-compare-lite@1.4.0: {} - /natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + natural-compare@1.4.0: {} - /needle@3.3.1: - resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==} - engines: {node: '>= 4.4.x'} - hasBin: true - requiresBuild: true + needle@3.3.1: dependencies: iconv-lite: 0.6.3 sax: 1.4.1 - dev: true optional: true - /negotiator@0.6.3: - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} - engines: {node: '>= 0.6'} + negotiator@0.6.3: {} - /neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + neo-async@2.6.2: {} - /nested-error-stacks@2.1.1: - resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==} - dev: false + nested-error-stacks@2.1.1: {} - /next-tick@1.1.0: - resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} - dev: true + next-tick@1.1.0: {} - /nice-try@1.0.5: - resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + nice-try@1.0.5: {} - /no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + no-case@3.0.4: dependencies: lower-case: 2.0.2 tslib: 2.6.3 - /node-abort-controller@3.1.1: - resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} - dev: true + node-abort-controller@3.1.1: {} - /node-addon-api@3.2.1: - resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} - dev: true + node-addon-api@3.2.1: {} - /node-dir@0.1.17: - resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} - engines: {node: '>= 0.10.5'} + node-dir@0.1.17: dependencies: minimatch: 3.1.2 - /node-fetch-native@1.6.4: - resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==} - dev: true + node-fetch-native@1.6.4: {} - /node-fetch@2.7.0: - resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true + node-fetch@2.7.0(encoding@0.1.13): dependencies: whatwg-url: 5.0.0 + optionalDependencies: + encoding: 0.1.13 - /node-forge@0.10.0: - resolution: {integrity: sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==} - engines: {node: '>= 6.0.0'} + node-forge@0.10.0: {} - /node-forge@1.3.1: - resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} - engines: {node: '>= 6.13.0'} - dev: true + node-forge@1.3.1: {} - /node-gyp-build@4.8.1: - resolution: {integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==} - hasBin: true - dev: true + node-gyp-build@4.8.1: {} - /node-gyp@9.4.1: - resolution: {integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==} - engines: {node: ^12.13 || ^14.13 || >=16} - hasBin: true + node-gyp@9.4.1: dependencies: env-paths: 2.2.1 exponential-backoff: 3.1.1 @@ -41046,18 +49026,12 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /node-int64@0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + node-int64@0.4.0: {} - /node-machine-id@1.1.12: - resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} - dev: true + node-machine-id@1.1.12: {} - /node-notifier@8.0.2: - resolution: {integrity: sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==} - requiresBuild: true + node-notifier@8.0.2: dependencies: growly: 1.3.0 is-wsl: 2.2.0 @@ -41065,177 +49039,110 @@ packages: shellwords: 0.1.1 uuid: 8.3.2 which: 2.0.2 - dev: true optional: true - /node-preload@0.2.1: - resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} - engines: {node: '>=8'} + node-preload@0.2.1: dependencies: process-on-spawn: 1.0.0 - dev: true - /node-releases@2.0.14: - resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + node-releases@2.0.14: {} - /nopt@5.0.0: - resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} - engines: {node: '>=6'} - hasBin: true + nopt@5.0.0: dependencies: abbrev: 1.1.1 - dev: true - /nopt@6.0.0: - resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true + nopt@6.0.0: dependencies: abbrev: 1.1.1 - dev: true - /nopt@7.2.1: - resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true + nopt@7.2.1: dependencies: abbrev: 2.0.0 - dev: false - /normalize-package-data@2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + normalize-package-data@2.5.0: dependencies: hosted-git-info: 2.8.9 resolve: 1.22.8 semver: 5.7.2 validate-npm-package-license: 3.0.4 - /normalize-package-data@3.0.3: - resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} - engines: {node: '>=10'} + normalize-package-data@3.0.3: dependencies: hosted-git-info: 4.1.0 is-core-module: 2.14.0 semver: 7.6.2 validate-npm-package-license: 3.0.4 - dev: true - /normalize-package-data@4.0.1: - resolution: {integrity: sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + normalize-package-data@4.0.1: dependencies: hosted-git-info: 5.2.1 is-core-module: 2.14.0 semver: 7.6.2 validate-npm-package-license: 3.0.4 - dev: true - /normalize-path@2.1.1: - resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} - engines: {node: '>=0.10.0'} + normalize-path@2.1.1: dependencies: remove-trailing-separator: 1.1.0 - /normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} + normalize-path@3.0.0: {} - /normalize-range@0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} + normalize-range@0.1.2: {} - /normalize-url@4.5.1: - resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} - engines: {node: '>=8'} - dev: false + normalize-url@4.5.1: {} - /normalize-url@6.1.0: - resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} - engines: {node: '>=10'} - dev: true + normalize-url@6.1.0: {} - /npm-bundled@1.1.2: - resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==} + npm-bundled@1.1.2: dependencies: npm-normalize-package-bin: 1.0.1 - dev: true - /npm-bundled@2.0.1: - resolution: {integrity: sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + npm-bundled@2.0.1: dependencies: npm-normalize-package-bin: 2.0.0 - dev: true - /npm-install-checks@5.0.0: - resolution: {integrity: sha512-65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + npm-install-checks@5.0.0: dependencies: semver: 7.6.2 - dev: true - /npm-normalize-package-bin@1.0.1: - resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} - dev: true + npm-normalize-package-bin@1.0.1: {} - /npm-normalize-package-bin@2.0.0: - resolution: {integrity: sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dev: true + npm-normalize-package-bin@2.0.0: {} - /npm-package-arg@11.0.1: - resolution: {integrity: sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==} - engines: {node: ^16.14.0 || >=18.0.0} + npm-package-arg@11.0.1: dependencies: hosted-git-info: 7.0.2 proc-log: 3.0.0 semver: 7.5.3 validate-npm-package-name: 5.0.1 - dev: true - /npm-package-arg@8.1.1: - resolution: {integrity: sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==} - engines: {node: '>=10'} + npm-package-arg@8.1.1: dependencies: hosted-git-info: 3.0.8 semver: 7.6.2 validate-npm-package-name: 3.0.0 - dev: true - /npm-package-arg@9.1.2: - resolution: {integrity: sha512-pzd9rLEx4TfNJkovvlBSLGhq31gGu2QDexFPWT19yCDh0JgnRhlBLNo5759N0AJmBk+kQ9Y/hXoLnlgFD+ukmg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + npm-package-arg@9.1.2: dependencies: hosted-git-info: 5.2.1 proc-log: 2.0.1 semver: 7.6.2 validate-npm-package-name: 4.0.0 - dev: true - /npm-packlist@5.1.3: - resolution: {integrity: sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true + npm-packlist@5.1.3: dependencies: glob: 8.1.0 ignore-walk: 5.0.1 npm-bundled: 2.0.1 npm-normalize-package-bin: 2.0.0 - dev: true - /npm-pick-manifest@7.0.2: - resolution: {integrity: sha512-gk37SyRmlIjvTfcYl6RzDbSmS9Y4TOBXfsPnoYqTHARNgWbyDiCSMLUpmALDj4jjcTZpURiEfsSHJj9k7EV4Rw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + npm-pick-manifest@7.0.2: dependencies: npm-install-checks: 5.0.0 npm-normalize-package-bin: 2.0.0 npm-package-arg: 9.1.2 semver: 7.6.2 - dev: true - /npm-registry-fetch@13.3.1: - resolution: {integrity: sha512-eukJPi++DKRTjSBRcDZSDDsGqRK3ehbxfFUcgaRd0Yp6kRwOwh2WVn0r+8rMB4nnuzvAk6rQVzl6K5CkYOmnvw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + npm-registry-fetch@13.3.1: dependencies: make-fetch-happen: 10.2.1 minipass: 3.3.6 @@ -41247,84 +49154,50 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /npm-run-path@2.0.2: - resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} - engines: {node: '>=4'} + npm-run-path@2.0.2: dependencies: path-key: 2.0.1 - /npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} + npm-run-path@4.0.1: dependencies: path-key: 3.1.1 - /npm-run-path@5.3.0: - resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + npm-run-path@5.3.0: dependencies: path-key: 4.0.0 - dev: true - /npmlog@5.0.1: - resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} - deprecated: This package is no longer supported. + npmlog@5.0.1: dependencies: are-we-there-yet: 2.0.0 console-control-strings: 1.1.0 gauge: 3.0.2 set-blocking: 2.0.0 - /npmlog@6.0.2: - resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. + npmlog@6.0.2: dependencies: are-we-there-yet: 3.0.1 console-control-strings: 1.1.0 gauge: 4.0.4 set-blocking: 2.0.0 - dev: true - /nth-check@1.0.2: - resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} + nth-check@1.0.2: dependencies: boolbase: 1.0.0 - dev: true - /nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + nth-check@2.1.1: dependencies: boolbase: 1.0.0 - /num2fraction@1.2.2: - resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==} - dev: false + num2fraction@1.2.2: {} - /nwsapi@2.2.12: - resolution: {integrity: sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==} - dev: true + nwsapi@2.2.12: {} - /nx@15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99): - resolution: {integrity: sha512-GLwbykfTABc7/UZjQEEnV1bQbTVC53W+Zj4xWY640/45I4iZf/TUqKMBCgtLZ9v89gEsKOM4zsx55CqHT3bekA==} - hasBin: true - requiresBuild: true - peerDependencies: - '@swc-node/register': ^1.4.2 - '@swc/core': ^1.2.173 - peerDependenciesMeta: - '@swc-node/register': - optional: true - '@swc/core': - optional: true + nx@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)): dependencies: - '@nrwl/cli': 15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) - '@nrwl/tao': 15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) + '@nrwl/cli': 15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) + '@nrwl/tao': 15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) '@parcel/watcher': 2.0.4 - '@swc-node/register': 1.6.8(@swc/core@1.3.99)(@swc/types@0.1.9)(typescript@5.1.6) - '@swc/core': 1.3.99(@swc/helpers@0.5.9) '@yarnpkg/lockfile': 1.1.0 '@yarnpkg/parsers': 3.0.0-rc.46 '@zkochan/js-yaml': 0.0.6 @@ -41367,27 +49240,15 @@ packages: '@nrwl/nx-linux-x64-musl': 15.9.3 '@nrwl/nx-win32-arm64-msvc': 15.9.3 '@nrwl/nx-win32-x64-msvc': 15.9.3 + '@swc-node/register': 1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6) + '@swc/core': 1.3.99(@swc/helpers@0.5.9) transitivePeerDependencies: - debug - dev: true - /nx@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99): - resolution: {integrity: sha512-FLRcKQyrwauwyeb/biBctKFAOkjjnfXQ2hE7uNuitDxWEdD7mejrrsZYOr++KUyjkbxmq/t3TtBQiZXHosShaA==} - hasBin: true - requiresBuild: true - peerDependencies: - '@swc-node/register': ^1.6.7 - '@swc/core': ^1.3.85 - peerDependenciesMeta: - '@swc-node/register': - optional: true - '@swc/core': - optional: true + nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)): dependencies: - '@nrwl/tao': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) + '@nrwl/tao': 17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) '@parcel/watcher': 2.0.4 - '@swc-node/register': 1.6.8(@swc/core@1.3.99)(@swc/types@0.1.9)(typescript@5.1.6) - '@swc/core': 1.3.99(@swc/helpers@0.5.9) '@yarnpkg/lockfile': 1.1.0 '@yarnpkg/parsers': 3.0.0-rc.46 '@zkochan/js-yaml': 0.0.6 @@ -41433,14 +49294,12 @@ packages: '@nx/nx-linux-x64-musl': 17.0.0 '@nx/nx-win32-arm64-msvc': 17.0.0 '@nx/nx-win32-x64-msvc': 17.0.0 + '@swc-node/register': 1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6) + '@swc/core': 1.3.99(@swc/helpers@0.5.9) transitivePeerDependencies: - debug - dev: true - /nyc@15.1.0: - resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} - engines: {node: '>=8.9'} - hasBin: true + nyc@15.1.0: dependencies: '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.3 @@ -41471,12 +49330,8 @@ packages: yargs: 15.4.1 transitivePeerDependencies: - supports-color - dev: true - /nypm@0.3.9: - resolution: {integrity: sha512-BI2SdqqTHg2d4wJh8P9A1W+bslg33vOE9IZDY6eR2QC+Pu1iNBVZUqczrd43rJb+fMzHU7ltAYKsEFY/kHMFcw==} - engines: {node: ^14.16.0 || >=16.10.0} - hasBin: true + nypm@0.3.9: dependencies: citty: 0.1.6 consola: 3.2.3 @@ -41484,70 +49339,49 @@ packages: pathe: 1.1.2 pkg-types: 1.1.3 ufo: 1.5.3 - dev: true - /object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} + object-assign@4.1.1: {} - /object-copy@0.1.0: - resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} - engines: {node: '>=0.10.0'} + object-copy@0.1.0: dependencies: copy-descriptor: 0.1.1 define-property: 0.2.5 kind-of: 3.2.2 - /object-inspect@1.13.2: - resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} - engines: {node: '>= 0.4'} + object-inspect@1.13.2: {} - /object-is@1.1.6: - resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} - engines: {node: '>= 0.4'} + object-is@1.1.6: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - /object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} + object-keys@1.1.1: {} - /object-visit@1.0.1: - resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} - engines: {node: '>=0.10.0'} + object-visit@1.0.1: dependencies: isobject: 3.0.1 - /object.assign@4.1.5: - resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} - engines: {node: '>= 0.4'} + object.assign@4.1.5: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 - /object.entries@1.1.8: - resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} - engines: {node: '>= 0.4'} + object.entries@1.1.8: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - /object.fromentries@2.0.8: - resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} - engines: {node: '>= 0.4'} + object.fromentries@2.0.8: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 - /object.getownpropertydescriptors@2.1.8: - resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==} - engines: {node: '>= 0.8'} + object.getownpropertydescriptors@2.1.8: dependencies: array.prototype.reduce: 1.0.7 call-bind: 1.0.7 @@ -41557,105 +49391,70 @@ packages: gopd: 1.0.1 safe-array-concat: 1.1.2 - /object.groupby@1.0.3: - resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} - engines: {node: '>= 0.4'} + object.groupby@1.0.3: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 - dev: true - /object.hasown@1.1.4: - resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} - engines: {node: '>= 0.4'} + object.hasown@1.1.4: dependencies: define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 - dev: true - /object.pick@1.3.0: - resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} - engines: {node: '>=0.10.0'} + object.pick@1.3.0: dependencies: isobject: 3.0.1 - /object.values@1.2.0: - resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} - engines: {node: '>= 0.4'} + object.values@1.2.0: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - /objectorarray@1.0.5: - resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==} + objectorarray@1.0.5: {} - /obuf@1.1.2: - resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} + obuf@1.1.2: {} - /ohash@1.1.3: - resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} - dev: true + ohash@1.1.3: {} - /on-finished@2.4.1: - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} - engines: {node: '>= 0.8'} + on-finished@2.4.1: dependencies: ee-first: 1.1.1 - /on-headers@1.0.2: - resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} - engines: {node: '>= 0.8'} + on-headers@1.0.2: {} - /once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + once@1.4.0: dependencies: wrappy: 1.0.2 - /onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} + onetime@5.1.2: dependencies: mimic-fn: 2.1.0 - /onetime@6.0.0: - resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} - engines: {node: '>=12'} + onetime@6.0.0: dependencies: mimic-fn: 4.0.0 - dev: true - /open@7.4.2: - resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} - engines: {node: '>=8'} + open@7.4.2: dependencies: is-docker: 2.2.1 is-wsl: 2.2.0 - dev: false - /open@8.4.2: - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} - engines: {node: '>=12'} + open@8.4.2: dependencies: define-lazy-prop: 2.0.0 is-docker: 2.2.1 is-wsl: 2.2.0 - /opener@1.5.2: - resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} - hasBin: true + opener@1.5.2: {} - /opn@5.5.0: - resolution: {integrity: sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==} - engines: {node: '>=4'} + opn@5.5.0: dependencies: is-wsl: 1.1.0 - /optionator@0.9.4: - resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} - engines: {node: '>= 0.8.0'} + optionator@0.9.4: dependencies: deep-is: 0.1.4 fast-levenshtein: 2.0.6 @@ -41664,9 +49463,7 @@ packages: type-check: 0.4.0 word-wrap: 1.2.5 - /ora@5.3.0: - resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==} - engines: {node: '>=10'} + ora@5.3.0: dependencies: bl: 4.1.0 chalk: 4.1.2 @@ -41676,11 +49473,8 @@ packages: log-symbols: 4.1.0 strip-ansi: 6.0.1 wcwidth: 1.0.1 - dev: true - /ora@5.4.1: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} - engines: {node: '>=10'} + ora@5.4.1: dependencies: bl: 4.1.0 chalk: 4.1.1 @@ -41691,240 +49485,139 @@ packages: log-symbols: 4.1.0 strip-ansi: 6.0.1 wcwidth: 1.0.1 - dev: true - /os-filter-obj@2.0.0: - resolution: {integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==} - engines: {node: '>=4'} + os-filter-obj@2.0.0: dependencies: arch: 2.2.0 - dev: true - /os-homedir@1.0.2: - resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} - engines: {node: '>=0.10.0'} + os-homedir@1.0.2: + optional: true - /os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} - dev: true + os-tmpdir@1.0.2: {} - /ospath@1.2.2: - resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==} - dev: true + ospath@1.2.2: {} - /outdent@0.5.0: - resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} - dev: true + outdent@0.5.0: {} - /outvariant@1.4.2: - resolution: {integrity: sha512-Ou3dJ6bA/UJ5GVHxah4LnqDwZRwAmWxrG3wtrHrbGnP4RnLCtA64A4F+ae7Y8ww660JaddSoArUR5HjipWSHAQ==} - dev: true + outvariant@1.4.2: {} - /p-all@2.1.0: - resolution: {integrity: sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==} - engines: {node: '>=6'} + p-all@2.1.0: dependencies: p-map: 2.1.0 - dev: false - /p-cancelable@1.1.0: - resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} - engines: {node: '>=6'} - dev: false + p-cancelable@1.1.0: {} - /p-cancelable@2.1.1: - resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} - engines: {node: '>=8'} - dev: true + p-cancelable@2.1.1: {} - /p-defer@1.0.0: - resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} - engines: {node: '>=4'} - dev: false + p-defer@1.0.0: {} - /p-each-series@2.2.0: - resolution: {integrity: sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==} - engines: {node: '>=8'} - dev: true + p-each-series@2.2.0: {} - /p-event@4.2.0: - resolution: {integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==} - engines: {node: '>=8'} + p-event@4.2.0: dependencies: p-timeout: 3.2.0 - dev: false - /p-filter@2.1.0: - resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} - engines: {node: '>=8'} + p-filter@2.1.0: dependencies: p-map: 2.1.0 - /p-finally@1.0.0: - resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} - engines: {node: '>=4'} + p-finally@1.0.0: {} - /p-limit@1.3.0: - resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} - engines: {node: '>=4'} + p-limit@1.3.0: dependencies: p-try: 1.0.0 - dev: true - /p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} + p-limit@2.3.0: dependencies: p-try: 2.2.0 - /p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} + p-limit@3.1.0: dependencies: yocto-queue: 0.1.0 - /p-limit@4.0.0: - resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + p-limit@4.0.0: dependencies: yocto-queue: 1.1.1 - dev: true - /p-locate@2.0.0: - resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} - engines: {node: '>=4'} + p-locate@2.0.0: dependencies: p-limit: 1.3.0 - dev: true - /p-locate@3.0.0: - resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} - engines: {node: '>=6'} + p-locate@3.0.0: dependencies: p-limit: 2.3.0 - /p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} + p-locate@4.1.0: dependencies: p-limit: 2.3.0 - /p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} + p-locate@5.0.0: dependencies: p-limit: 3.1.0 - /p-locate@6.0.0: - resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + p-locate@6.0.0: dependencies: p-limit: 4.0.0 - dev: true - /p-map-series@2.1.0: - resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==} - engines: {node: '>=8'} - dev: true + p-map-series@2.1.0: {} - /p-map@2.1.0: - resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} - engines: {node: '>=6'} + p-map@2.1.0: {} - /p-map@3.0.0: - resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} - engines: {node: '>=8'} + p-map@3.0.0: dependencies: aggregate-error: 3.1.0 - /p-map@4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} + p-map@4.0.0: dependencies: aggregate-error: 3.1.0 - /p-pipe@3.1.0: - resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==} - engines: {node: '>=8'} - dev: true + p-pipe@3.1.0: {} - /p-queue@6.6.2: - resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} - engines: {node: '>=8'} + p-queue@6.6.2: dependencies: eventemitter3: 4.0.7 p-timeout: 3.2.0 - dev: true - /p-reduce@2.1.0: - resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} - engines: {node: '>=8'} - dev: true + p-reduce@2.1.0: {} - /p-retry@3.0.1: - resolution: {integrity: sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==} - engines: {node: '>=6'} + p-retry@3.0.1: dependencies: retry: 0.12.0 - /p-retry@4.6.2: - resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} - engines: {node: '>=8'} + p-retry@4.6.2: dependencies: '@types/retry': 0.12.0 retry: 0.13.1 - dev: true - /p-timeout@3.2.0: - resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} - engines: {node: '>=8'} + p-timeout@3.2.0: dependencies: p-finally: 1.0.0 - /p-try@1.0.0: - resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} - engines: {node: '>=4'} - dev: true + p-try@1.0.0: {} - /p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} + p-try@2.2.0: {} - /p-waterfall@2.1.1: - resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==} - engines: {node: '>=8'} + p-waterfall@2.1.1: dependencies: p-reduce: 2.1.0 - dev: true - /package-hash@4.0.0: - resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} - engines: {node: '>=8'} + package-hash@4.0.0: dependencies: graceful-fs: 4.2.11 hasha: 5.2.2 lodash.flattendeep: 4.4.0 release-zalgo: 1.0.0 - dev: true - /package-json-from-dist@1.0.0: - resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} + package-json-from-dist@1.0.0: {} - /package-json@6.5.0: - resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} - engines: {node: '>=8'} + package-json@6.5.0: dependencies: got: 9.6.0 registry-auth-token: 4.2.2 registry-url: 5.1.0 semver: 6.3.1 - dev: false - /pacote@13.6.2: - resolution: {integrity: sha512-Gu8fU3GsvOPkak2CkbojR7vjs3k3P9cA6uazKTHdsdV0gpCEQq2opelnEv30KRQWgVzP5Vd/5umjcedma3MKtg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true + pacote@13.6.2: dependencies: '@npmcli/git': 3.0.2 '@npmcli/installed-package-contents': 1.0.7 @@ -41950,35 +49643,25 @@ packages: transitivePeerDependencies: - bluebird - supports-color - dev: true - /pako@0.2.9: - resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} - dev: true + pako@0.2.9: {} - /param-case@3.0.4: - resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} + param-case@3.0.4: dependencies: dot-case: 3.0.4 tslib: 2.6.3 - /parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} + parent-module@1.0.1: dependencies: callsites: 3.1.0 - /parse-conflict-json@2.0.2: - resolution: {integrity: sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + parse-conflict-json@2.0.2: dependencies: json-parse-even-better-errors: 2.3.1 just-diff: 5.2.0 just-diff-apply: 5.5.0 - dev: true - /parse-entities@1.2.2: - resolution: {integrity: sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==} + parse-entities@2.0.0: dependencies: character-entities: 1.2.4 character-entities-legacy: 1.1.4 @@ -41986,312 +49669,201 @@ packages: is-alphanumerical: 1.0.4 is-decimal: 1.0.4 is-hexadecimal: 1.0.4 - dev: false - /parse-entities@2.0.0: - resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} + parse-entities@4.0.1: dependencies: - character-entities: 1.2.4 - character-entities-legacy: 1.1.4 - character-reference-invalid: 1.1.4 - is-alphanumerical: 1.0.4 - is-decimal: 1.0.4 - is-hexadecimal: 1.0.4 + '@types/unist': 2.0.10 + character-entities: 2.0.2 + character-entities-legacy: 3.0.0 + character-reference-invalid: 2.0.1 + decode-named-character-reference: 1.0.2 + is-alphanumerical: 2.0.1 + is-decimal: 2.0.1 + is-hexadecimal: 2.0.1 - /parse-json@2.2.0: - resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==} - engines: {node: '>=0.10.0'} - requiresBuild: true + parse-json@2.2.0: dependencies: error-ex: 1.3.2 - dev: false optional: true - /parse-json@4.0.0: - resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} - engines: {node: '>=4'} + parse-json@4.0.0: dependencies: error-ex: 1.3.2 json-parse-better-errors: 1.0.2 - /parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} + parse-json@5.2.0: dependencies: '@babel/code-frame': 7.24.7 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - /parse-node-version@1.0.1: - resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} - engines: {node: '>= 0.10'} - dev: true + parse-node-version@1.0.1: {} - /parse-path@7.0.0: - resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} + parse-path@7.0.0: dependencies: protocols: 2.0.1 - dev: true - /parse-url@8.1.0: - resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} + parse-url@8.1.0: dependencies: parse-path: 7.0.0 - dev: true - /parse5@4.0.0: - resolution: {integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==} - dev: true + parse5@4.0.0: {} - /parse5@6.0.1: - resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} + parse5@6.0.1: {} - /parse5@7.1.2: - resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + parse5@7.1.2: dependencies: entities: 4.5.0 - dev: true - /parseurl@1.3.3: - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} - engines: {node: '>= 0.8'} + parseurl@1.3.3: {} - /pascal-case@3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} + pascal-case@3.1.2: dependencies: no-case: 3.0.4 tslib: 2.6.3 - /pascalcase@0.1.1: - resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} - engines: {node: '>=0.10.0'} + pascalcase@0.1.1: {} - /path-browserify@1.0.1: - resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + path-browserify@1.0.1: {} - /path-dirname@1.0.2: - resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==} + path-dirname@1.0.2: {} - /path-exists@2.1.0: - resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==} - engines: {node: '>=0.10.0'} - requiresBuild: true + path-exists@2.1.0: dependencies: pinkie-promise: 2.0.1 - dev: false optional: true - /path-exists@3.0.0: - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} - engines: {node: '>=4'} + path-exists@3.0.0: {} - /path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} + path-exists@4.0.0: {} - /path-exists@5.0.0: - resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + path-exists@5.0.0: {} - /path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} + path-is-absolute@1.0.1: {} - /path-is-inside@1.0.2: - resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==} + path-is-inside@1.0.2: {} - /path-key@2.0.1: - resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} - engines: {node: '>=4'} + path-key@2.0.1: {} - /path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} + path-key@3.1.1: {} - /path-key@4.0.0: - resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} - engines: {node: '>=12'} - dev: true + path-key@4.0.0: {} - /path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + path-parse@1.0.7: {} - /path-scurry@1.11.1: - resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} - engines: {node: '>=16 || 14 >=14.18'} + path-scurry@1.11.1: dependencies: lru-cache: 10.4.3 minipass: 7.1.2 - /path-to-regexp@0.1.7: - resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} + path-to-regexp@0.1.7: {} - /path-to-regexp@1.8.0: - resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==} + path-to-regexp@1.8.0: dependencies: isarray: 0.0.1 - dev: false - /path-to-regexp@6.2.2: - resolution: {integrity: sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==} - dev: true + path-to-regexp@6.2.2: {} - /path-type@1.1.0: - resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==} - engines: {node: '>=0.10.0'} - requiresBuild: true + path-type@1.1.0: dependencies: graceful-fs: 4.2.11 pify: 2.3.0 pinkie-promise: 2.0.1 - dev: false optional: true - /path-type@3.0.0: - resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} - engines: {node: '>=4'} + path-type@3.0.0: dependencies: pify: 3.0.0 - /path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} + path-type@4.0.0: {} - /path-type@5.0.0: - resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} - engines: {node: '>=12'} - dev: true + path-type@5.0.0: {} - /path@0.12.7: - resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} + path@0.12.7: dependencies: process: 0.11.10 util: 0.10.4 - dev: true - /pathe@1.1.2: - resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} - dev: true + pathe@1.1.2: {} - /peek-readable@5.1.1: - resolution: {integrity: sha512-4hEOSH7KeEaZpMDF/xfm1W9fS5rT7Ett3BkXWHqAEzRLLwLaHkwOL+GvvpIEh9UrvX9BDhzfkvteslgraoH69w==} - engines: {node: '>=14.16'} - dev: true + peek-readable@5.1.1: {} - /peek-stream@1.1.3: - resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==} + peek-stream@1.1.3: dependencies: buffer-from: 1.1.2 duplexify: 3.7.1 through2: 2.0.5 - dev: true - /pend@1.2.0: - resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + pend@1.2.0: {} - /performance-now@2.1.0: - resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + performance-now@2.1.0: {} - /picocolors@0.2.1: - resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==} + picocolors@0.2.1: {} - /picocolors@1.0.1: - resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} + picocolors@1.0.1: {} - /picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} + picomatch@2.3.1: {} - /pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} + pify@2.3.0: {} - /pify@3.0.0: - resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} - engines: {node: '>=4'} + pify@3.0.0: {} - /pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} + pify@4.0.1: {} - /pify@5.0.0: - resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} - engines: {node: '>=10'} - dev: true + pify@5.0.0: {} - /pinkie-promise@2.0.1: - resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==} - engines: {node: '>=0.10.0'} + pinkie-promise@2.0.1: dependencies: pinkie: 2.0.4 - /pinkie@2.0.4: - resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==} - engines: {node: '>=0.10.0'} + pinkie@2.0.4: {} - /pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} - engines: {node: '>= 6'} + pirates@4.0.6: {} - /pkg-dir@3.0.0: - resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} - engines: {node: '>=6'} + pkg-dir@3.0.0: dependencies: find-up: 3.0.0 - /pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: '>=8'} + pkg-dir@4.2.0: dependencies: find-up: 4.1.0 - /pkg-dir@5.0.0: - resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} - engines: {node: '>=10'} + pkg-dir@5.0.0: dependencies: find-up: 5.0.0 - /pkg-dir@7.0.0: - resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==} - engines: {node: '>=14.16'} + pkg-dir@7.0.0: dependencies: find-up: 6.3.0 - dev: true - /pkg-types@1.1.3: - resolution: {integrity: sha512-+JrgthZG6m3ckicaOB74TwQ+tBWsFl3qVQg7mN8ulwSOElJ7gBhKzj2VkCPnZ4NlF6kEquYU+RIYNVAvzd54UA==} + pkg-types@1.1.3: dependencies: confbox: 0.1.7 mlly: 1.7.1 pathe: 1.1.2 - dev: true - /pnp-webpack-plugin@1.6.4(typescript@4.9.5): - resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} - engines: {node: '>=6'} + pnp-webpack-plugin@1.6.4(typescript@4.9.5): dependencies: ts-pnp: 1.2.0(typescript@4.9.5) transitivePeerDependencies: - typescript - dev: false - /polished@4.3.1: - resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==} - engines: {node: '>=10'} + polished@4.3.1: dependencies: '@babel/runtime': 7.24.7 - dev: true - /popper.js@1.16.1: - resolution: {integrity: sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==} - deprecated: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1 - dev: false + popper.js@1.16.1: {} - /portfinder@1.0.32(supports-color@6.1.0): - resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} - engines: {node: '>= 0.12.0'} + portfinder@1.0.32: + dependencies: + async: 2.6.4 + debug: 3.2.7(supports-color@8.1.1) + mkdirp: 0.5.6 + transitivePeerDependencies: + - supports-color + + portfinder@1.0.32(supports-color@6.1.0): dependencies: async: 2.6.4 debug: 3.2.7(supports-color@6.1.0) @@ -42299,223 +49871,128 @@ packages: transitivePeerDependencies: - supports-color - /posix-character-classes@0.1.1: - resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} - engines: {node: '>=0.10.0'} + posix-character-classes@0.1.1: {} - /possible-typed-array-names@1.0.0: - resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} - engines: {node: '>= 0.4'} + possible-typed-array-names@1.0.0: {} - /postcss-calc@8.2.4(postcss@8.4.39): - resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} - peerDependencies: - postcss: ^8.2.2 + postcss-calc@8.2.4(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 - dev: true - /postcss-calc@9.0.1(postcss@8.4.39): - resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.2 + postcss-calc@9.0.1(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 - dev: true - /postcss-colormin@5.3.1(postcss@8.4.39): - resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-colormin@5.3.1(postcss@8.4.39): dependencies: browserslist: 4.23.1 caniuse-api: 3.0.0 colord: 2.9.3 postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-colormin@6.1.0(postcss@8.4.39): - resolution: {integrity: sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-colormin@6.1.0(postcss@8.4.39): dependencies: browserslist: 4.23.1 caniuse-api: 3.0.0 colord: 2.9.3 postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-convert-values@5.1.3(postcss@8.4.39): - resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-convert-values@5.1.3(postcss@8.4.39): dependencies: browserslist: 4.23.1 postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-convert-values@6.1.0(postcss@8.4.39): - resolution: {integrity: sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-convert-values@6.1.0(postcss@8.4.39): dependencies: browserslist: 4.23.1 postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-discard-comments@5.1.2(postcss@8.4.39): - resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-discard-comments@5.1.2(postcss@8.4.39): dependencies: postcss: 8.4.39 - dev: true - /postcss-discard-comments@6.0.2(postcss@8.4.39): - resolution: {integrity: sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-discard-comments@6.0.2(postcss@8.4.39): dependencies: postcss: 8.4.39 - dev: true - /postcss-discard-duplicates@5.1.0(postcss@8.4.39): - resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-discard-duplicates@5.1.0(postcss@8.4.39): dependencies: postcss: 8.4.39 - dev: true - /postcss-discard-duplicates@6.0.3(postcss@8.4.39): - resolution: {integrity: sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-discard-duplicates@6.0.3(postcss@8.4.39): dependencies: postcss: 8.4.39 - dev: true - /postcss-discard-empty@5.1.1(postcss@8.4.39): - resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-discard-empty@5.1.1(postcss@8.4.39): dependencies: postcss: 8.4.39 - dev: true - /postcss-discard-empty@6.0.3(postcss@8.4.39): - resolution: {integrity: sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-discard-empty@6.0.3(postcss@8.4.39): dependencies: postcss: 8.4.39 - dev: true - /postcss-discard-overridden@5.1.0(postcss@8.4.39): - resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-discard-overridden@5.1.0(postcss@8.4.39): dependencies: postcss: 8.4.39 - dev: true - /postcss-discard-overridden@6.0.2(postcss@8.4.39): - resolution: {integrity: sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-discard-overridden@6.0.2(postcss@8.4.39): dependencies: postcss: 8.4.39 - dev: true - /postcss-flexbugs-fixes@4.2.1: - resolution: {integrity: sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==} + postcss-flexbugs-fixes@4.2.1: dependencies: postcss: 7.0.39 - dev: false - /postcss-import-ext-glob@2.1.1(postcss@8.4.39): - resolution: {integrity: sha512-qd4ELOx2G0hyjgtmLnf/fSVJXXPhkcxcxhLT1y1mAnk53JYbMLoGg+AFtnJowOSvnv4CvjPAzpLpAcfWeofP5g==} - peerDependencies: - postcss: ^8.2.0 + postcss-import-ext-glob@2.1.1(postcss@7.0.39): dependencies: fast-glob: 3.3.2 fast-sort: 3.4.0 - postcss: 8.4.39 + postcss: 7.0.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-import@14.1.0(postcss@8.4.39): - resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} - engines: {node: '>=10.0.0'} - peerDependencies: - postcss: ^8.0.0 + postcss-import@14.1.0(postcss@7.0.39): + dependencies: + postcss: 7.0.39 + postcss-value-parser: 4.2.0 + read-cache: 1.0.0 + resolve: 1.22.8 + + postcss-import@14.1.0(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 - dev: true - /postcss-load-config@2.1.2: - resolution: {integrity: sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==} - engines: {node: '>= 4'} + postcss-load-config@2.1.2: dependencies: cosmiconfig: 5.2.1 import-cwd: 2.1.0 - /postcss-load-config@3.1.4(postcss@8.4.39): - resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} - engines: {node: '>= 10'} - peerDependencies: - postcss: '>=8.0.9' - ts-node: '>=9.0.0' - peerDependenciesMeta: - postcss: - optional: true - ts-node: - optional: true + postcss-load-config@3.1.4(postcss@8.4.39)(ts-node@8.10.2(typescript@5.1.6)): dependencies: lilconfig: 2.1.0 - postcss: 8.4.39 yaml: 1.10.2 - dev: true + optionalDependencies: + postcss: 8.4.39 + ts-node: 8.10.2(typescript@5.1.6) - /postcss-loader@3.0.0: - resolution: {integrity: sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==} - engines: {node: '>= 6'} + postcss-loader@3.0.0: dependencies: loader-utils: 1.4.2 postcss: 7.0.39 postcss-load-config: 2.1.2 schema-utils: 1.0.0 - /postcss-loader@4.3.0(postcss@7.0.39)(webpack@5.84.1): - resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} - engines: {node: '>= 10.13.0'} - peerDependencies: - postcss: ^7.0.0 || ^8.0.1 - webpack: 5.84.1 + postcss-loader@4.3.0(postcss@7.0.39)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: cosmiconfig: 7.1.0 klona: 2.0.6 @@ -42523,259 +50000,154 @@ packages: postcss: 7.0.39 schema-utils: 3.3.0 semver: 7.6.2 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: false + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /postcss-loader@6.2.1(postcss@8.4.39)(webpack@5.84.1): - resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} - engines: {node: '>= 12.13.0'} - peerDependencies: - postcss: ^7.0.0 || ^8.0.1 - webpack: 5.84.1 + postcss-loader@6.2.1(postcss@8.4.39)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: cosmiconfig: 7.1.0 klona: 2.0.6 postcss: 8.4.39 semver: 7.6.2 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /postcss-merge-longhand@5.1.7(postcss@8.4.39): - resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-merge-longhand@5.1.7(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 stylehacks: 5.1.1(postcss@8.4.39) - dev: true - /postcss-merge-longhand@6.0.5(postcss@8.4.39): - resolution: {integrity: sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-merge-longhand@6.0.5(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 stylehacks: 6.1.1(postcss@8.4.39) - dev: true - /postcss-merge-rules@5.1.4(postcss@8.4.39): - resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-merge-rules@5.1.4(postcss@8.4.39): dependencies: browserslist: 4.23.1 caniuse-api: 3.0.0 cssnano-utils: 3.1.0(postcss@8.4.39) postcss: 8.4.39 postcss-selector-parser: 6.1.0 - dev: true - /postcss-merge-rules@6.1.1(postcss@8.4.39): - resolution: {integrity: sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-merge-rules@6.1.1(postcss@8.4.39): dependencies: browserslist: 4.23.1 caniuse-api: 3.0.0 cssnano-utils: 4.0.2(postcss@8.4.39) postcss: 8.4.39 postcss-selector-parser: 6.1.0 - dev: true - /postcss-minify-font-values@5.1.0(postcss@8.4.39): - resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-minify-font-values@5.1.0(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-minify-font-values@6.1.0(postcss@8.4.39): - resolution: {integrity: sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-minify-font-values@6.1.0(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-minify-gradients@5.1.1(postcss@8.4.39): - resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-minify-gradients@5.1.1(postcss@8.4.39): dependencies: colord: 2.9.3 cssnano-utils: 3.1.0(postcss@8.4.39) postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-minify-gradients@6.0.3(postcss@8.4.39): - resolution: {integrity: sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-minify-gradients@6.0.3(postcss@8.4.39): dependencies: colord: 2.9.3 cssnano-utils: 4.0.2(postcss@8.4.39) postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-minify-params@5.1.4(postcss@8.4.39): - resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-minify-params@5.1.4(postcss@8.4.39): dependencies: browserslist: 4.23.1 cssnano-utils: 3.1.0(postcss@8.4.39) postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-minify-params@6.1.0(postcss@8.4.39): - resolution: {integrity: sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-minify-params@6.1.0(postcss@8.4.39): dependencies: browserslist: 4.23.1 cssnano-utils: 4.0.2(postcss@8.4.39) postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-minify-selectors@5.2.1(postcss@8.4.39): - resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-minify-selectors@5.2.1(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-selector-parser: 6.1.0 - dev: true - /postcss-minify-selectors@6.0.4(postcss@8.4.39): - resolution: {integrity: sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-minify-selectors@6.0.4(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-selector-parser: 6.1.0 - dev: true - /postcss-modules-extract-imports@1.2.1: - resolution: {integrity: sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==} + postcss-modules-extract-imports@1.2.1: dependencies: postcss: 6.0.23 - dev: true - /postcss-modules-extract-imports@2.0.0: - resolution: {integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==} - engines: {node: '>= 6'} + postcss-modules-extract-imports@2.0.0: dependencies: postcss: 7.0.39 - dev: false - /postcss-modules-extract-imports@3.1.0(postcss@8.4.39): - resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-modules-extract-imports@3.1.0(postcss@8.4.39): dependencies: postcss: 8.4.39 - /postcss-modules-local-by-default@1.2.0: - resolution: {integrity: sha512-X4cquUPIaAd86raVrBwO8fwRfkIdbwFu7CTfEOjiZQHVQwlHRSkTgH5NLDmMm5+1hQO8u6dZ+TOOJDbay1hYpA==} + postcss-modules-local-by-default@1.2.0: dependencies: css-selector-tokenizer: 0.7.3 postcss: 6.0.23 - dev: true - /postcss-modules-local-by-default@3.0.3: - resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==} - engines: {node: '>= 6'} + postcss-modules-local-by-default@3.0.3: dependencies: icss-utils: 4.1.1 postcss: 7.0.39 postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 - dev: false - /postcss-modules-local-by-default@4.0.5(postcss@8.4.39): - resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-modules-local-by-default@4.0.5(postcss@8.4.39): dependencies: icss-utils: 5.1.0(postcss@8.4.39) postcss: 8.4.39 postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 - /postcss-modules-scope@1.1.0: - resolution: {integrity: sha512-LTYwnA4C1He1BKZXIx1CYiHixdSe9LWYVKadq9lK5aCCMkoOkFyZ7aigt+srfjlRplJY3gIol6KUNefdMQJdlw==} + postcss-modules-scope@1.1.0: dependencies: css-selector-tokenizer: 0.7.3 postcss: 6.0.23 - dev: true - /postcss-modules-scope@2.2.0: - resolution: {integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==} - engines: {node: '>= 6'} + postcss-modules-scope@2.2.0: dependencies: postcss: 7.0.39 postcss-selector-parser: 6.1.0 - dev: false - /postcss-modules-scope@3.2.0(postcss@8.4.39): - resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-modules-scope@3.2.0(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-selector-parser: 6.1.0 - /postcss-modules-values@1.3.0: - resolution: {integrity: sha512-i7IFaR9hlQ6/0UgFuqM6YWaCfA1Ej8WMg8A5DggnH1UGKJvTV/ugqq/KaULixzzOi3T/tF6ClBXcHGCzdd5unA==} + postcss-modules-values@1.3.0: dependencies: icss-replace-symbols: 1.1.0 postcss: 6.0.23 - dev: true - /postcss-modules-values@3.0.0: - resolution: {integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==} + postcss-modules-values@3.0.0: dependencies: icss-utils: 4.1.1 postcss: 7.0.39 - dev: false - /postcss-modules-values@4.0.0(postcss@8.4.39): - resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-modules-values@4.0.0(postcss@8.4.39): dependencies: icss-utils: 5.1.0(postcss@8.4.39) postcss: 8.4.39 - /postcss-modules@4.3.1(postcss@8.4.39): - resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==} - peerDependencies: - postcss: ^8.0.0 + postcss-modules@4.3.1(postcss@8.4.39): dependencies: generic-names: 4.0.0 icss-replace-symbols: 1.1.0 @@ -42786,476 +50158,258 @@ packages: postcss-modules-scope: 3.2.0(postcss@8.4.39) postcss-modules-values: 4.0.0(postcss@8.4.39) string-hash: 1.1.3 - dev: true - /postcss-normalize-charset@5.1.0(postcss@8.4.39): - resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-charset@5.1.0(postcss@8.4.39): dependencies: postcss: 8.4.39 - dev: true - /postcss-normalize-charset@6.0.2(postcss@8.4.39): - resolution: {integrity: sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-normalize-charset@6.0.2(postcss@8.4.39): dependencies: postcss: 8.4.39 - dev: true - /postcss-normalize-display-values@5.1.0(postcss@8.4.39): - resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-display-values@5.1.0(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-display-values@6.0.2(postcss@8.4.39): - resolution: {integrity: sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-normalize-display-values@6.0.2(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-positions@5.1.1(postcss@8.4.39): - resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-positions@5.1.1(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-positions@6.0.2(postcss@8.4.39): - resolution: {integrity: sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-normalize-positions@6.0.2(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-repeat-style@5.1.1(postcss@8.4.39): - resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-repeat-style@5.1.1(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-repeat-style@6.0.2(postcss@8.4.39): - resolution: {integrity: sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-normalize-repeat-style@6.0.2(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-string@5.1.0(postcss@8.4.39): - resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-string@5.1.0(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-string@6.0.2(postcss@8.4.39): - resolution: {integrity: sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-normalize-string@6.0.2(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-timing-functions@5.1.0(postcss@8.4.39): - resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-timing-functions@5.1.0(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-timing-functions@6.0.2(postcss@8.4.39): - resolution: {integrity: sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-normalize-timing-functions@6.0.2(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-unicode@5.1.1(postcss@8.4.39): - resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-unicode@5.1.1(postcss@8.4.39): dependencies: browserslist: 4.23.1 postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-unicode@6.1.0(postcss@8.4.39): - resolution: {integrity: sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-normalize-unicode@6.1.0(postcss@8.4.39): dependencies: browserslist: 4.23.1 postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-url@5.1.0(postcss@8.4.39): - resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-url@5.1.0(postcss@8.4.39): dependencies: normalize-url: 6.1.0 postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-url@6.0.2(postcss@8.4.39): - resolution: {integrity: sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-normalize-url@6.0.2(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-whitespace@5.1.1(postcss@8.4.39): - resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-whitespace@5.1.1(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-whitespace@6.0.2(postcss@8.4.39): - resolution: {integrity: sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-normalize-whitespace@6.0.2(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-ordered-values@5.1.3(postcss@8.4.39): - resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-ordered-values@5.1.3(postcss@8.4.39): dependencies: cssnano-utils: 3.1.0(postcss@8.4.39) postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-ordered-values@6.0.2(postcss@8.4.39): - resolution: {integrity: sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-ordered-values@6.0.2(postcss@8.4.39): dependencies: cssnano-utils: 4.0.2(postcss@8.4.39) postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-reduce-initial@5.1.2(postcss@8.4.39): - resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-reduce-initial@5.1.2(postcss@8.4.39): dependencies: browserslist: 4.23.1 caniuse-api: 3.0.0 postcss: 8.4.39 - dev: true - /postcss-reduce-initial@6.1.0(postcss@8.4.39): - resolution: {integrity: sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-reduce-initial@6.1.0(postcss@8.4.39): dependencies: browserslist: 4.23.1 caniuse-api: 3.0.0 postcss: 8.4.39 - dev: true - /postcss-reduce-transforms@5.1.0(postcss@8.4.39): - resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-reduce-transforms@5.1.0(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-reduce-transforms@6.0.2(postcss@8.4.39): - resolution: {integrity: sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-reduce-transforms@6.0.2(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 - dev: true - /postcss-selector-parser@6.1.0: - resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==} - engines: {node: '>=4'} + postcss-selector-parser@6.1.0: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - /postcss-svgo@5.1.0(postcss@8.4.39): - resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-svgo@5.1.0(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 svgo: 2.8.0 - dev: true - /postcss-svgo@6.0.3(postcss@8.4.39): - resolution: {integrity: sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==} - engines: {node: ^14 || ^16 || >= 18} - peerDependencies: - postcss: ^8.4.31 + postcss-svgo@6.0.3(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 svgo: 3.3.2 - dev: true - /postcss-unique-selectors@5.1.1(postcss@8.4.39): - resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + postcss-unique-selectors@5.1.1(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-selector-parser: 6.1.0 - dev: true - /postcss-unique-selectors@6.0.4(postcss@8.4.39): - resolution: {integrity: sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + postcss-unique-selectors@6.0.4(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-selector-parser: 6.1.0 - dev: true - /postcss-value-parser@3.3.1: - resolution: {integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==} + postcss-value-parser@3.3.1: {} - /postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + postcss-value-parser@4.2.0: {} - /postcss@6.0.23: - resolution: {integrity: sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==} - engines: {node: '>=4.0.0'} + postcss@6.0.23: dependencies: chalk: 2.4.2 source-map: 0.6.1 supports-color: 5.5.0 - dev: true - /postcss@7.0.39: - resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==} - engines: {node: '>=6.0.0'} + postcss@7.0.39: dependencies: picocolors: 0.2.1 source-map: 0.6.1 - /postcss@8.4.39: - resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==} - engines: {node: ^10 || ^12 || >=14} + postcss@8.4.39: dependencies: nanoid: 3.3.7 picocolors: 1.0.1 source-map-js: 1.2.0 - /preferred-pm@3.1.4: - resolution: {integrity: sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==} - engines: {node: '>=10'} + preferred-pm@3.1.4: dependencies: find-up: 5.0.0 find-yarn-workspace-root2: 1.2.16 path-exists: 4.0.0 which-pm: 2.2.0 - dev: true - /prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} + prelude-ls@1.2.1: {} - /prepend-http@2.0.0: - resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} - engines: {node: '>=4'} - dev: false + prepend-http@2.0.0: {} - /prettier@1.19.1: - resolution: {integrity: sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==} - engines: {node: '>=4'} - hasBin: true - dev: true + prettier@1.19.1: {} - /prettier@2.3.0: - resolution: {integrity: sha512-kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w==} - engines: {node: '>=10.13.0'} - hasBin: true + prettier@2.3.0: {} - /prettier@2.8.8: - resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} - engines: {node: '>=10.13.0'} - hasBin: true - dev: true + prettier@2.8.8: {} - /pretty-bytes@5.6.0: - resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} - engines: {node: '>=6'} - dev: true + pretty-bytes@5.6.0: {} - /pretty-error@2.1.2: - resolution: {integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==} + pretty-error@2.1.2: dependencies: lodash: 4.17.21 renderkid: 2.0.7 - dev: false - /pretty-error@4.0.0: - resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} + pretty-error@4.0.0: dependencies: lodash: 4.17.21 renderkid: 3.0.0 - /pretty-format@26.6.2: - resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} - engines: {node: '>= 10'} + pretty-format@26.6.2: dependencies: '@jest/types': 26.6.2 ansi-regex: 5.0.1 ansi-styles: 4.3.0 react-is: 17.0.2 - dev: true - /pretty-format@27.5.1: - resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + pretty-format@27.5.1: dependencies: ansi-regex: 5.0.1 ansi-styles: 5.2.0 react-is: 17.0.2 - dev: true - /pretty-format@29.7.0: - resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + pretty-format@29.7.0: dependencies: '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 react-is: 18.3.1 - /pretty-hrtime@1.0.3: - resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} - engines: {node: '>= 0.8'} + pretty-hrtime@1.0.3: {} - /private@0.1.8: - resolution: {integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==} - engines: {node: '>= 0.6'} + private@0.1.8: {} - /proc-log@2.0.1: - resolution: {integrity: sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dev: true + proc-log@2.0.1: {} - /proc-log@3.0.0: - resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + proc-log@3.0.0: {} - /process-nextick-args@2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + process-nextick-args@2.0.1: {} - /process-on-spawn@1.0.0: - resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==} - engines: {node: '>=8'} + process-on-spawn@1.0.0: dependencies: fromentries: 1.3.2 - dev: true - /process@0.11.10: - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} - engines: {node: '>= 0.6.0'} + process@0.11.10: {} - /progress@2.0.3: - resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} - engines: {node: '>=0.4.0'} + progress@2.0.3: {} - /promise-all-reject-late@1.0.1: - resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==} - dev: true + promise-all-reject-late@1.0.1: {} - /promise-call-limit@1.0.2: - resolution: {integrity: sha512-1vTUnfI2hzui8AEIixbdAJlFY4LFDXqQswy/2eOlThAscXCY4It8FdVuI0fMJGAB2aWGbdQf/gv0skKYXmdrHA==} - dev: true + promise-call-limit@1.0.2: {} - /promise-inflight@1.0.1: - resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} - peerDependencies: - bluebird: '*' - peerDependenciesMeta: - bluebird: - optional: true + promise-inflight@1.0.1: {} - /promise-retry@2.0.1: - resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} - engines: {node: '>=10'} + promise-retry@2.0.1: dependencies: err-code: 2.0.3 retry: 0.12.0 - dev: true - /promise.allsettled@1.0.7: - resolution: {integrity: sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==} - engines: {node: '>= 0.4'} + promise.allsettled@1.0.7: dependencies: array.prototype.map: 1.0.7 call-bind: 1.0.7 @@ -43263,135 +50417,93 @@ packages: es-abstract: 1.23.3 get-intrinsic: 1.2.4 iterate-value: 1.0.2 - dev: false - /promise.prototype.finally@3.1.8: - resolution: {integrity: sha512-aVDtsXOml9iuMJzUco9J1je/UrIT3oMYfWkCTiUhkt+AvZw72q4dUZnR/R/eB3h5GeAagQVXvM1ApoYniJiwoA==} - engines: {node: '>= 0.4'} + promise.prototype.finally@3.1.8: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-errors: 1.3.0 set-function-name: 2.0.2 - dev: false - /promise.series@0.2.0: - resolution: {integrity: sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==} - engines: {node: '>=0.12'} - dev: true + promise.series@0.2.0: {} - /promise@7.0.4: - resolution: {integrity: sha512-8z1gTSL9cMgqCx8zvMYhzT0eQURAQNSQqR8B2hGfCYkAzt1vjReVdKBv4YwGw3OXAPaxfm4aR0gLoBUon4VmmA==} + promise@7.0.4: dependencies: asap: 2.0.6 - dev: true - /promise@8.3.0: - resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} + promise@8.3.0: dependencies: asap: 2.0.6 - dev: false - /prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: '>= 6'} + prompts@2.4.2: dependencies: kleur: 3.0.3 sisteransi: 1.0.5 - /promzard@0.3.0: - resolution: {integrity: sha512-JZeYqd7UAcHCwI+sTOeUDYkvEU+1bQ7iE0UT1MgB/tERkAPkesW46MrpIySzODi+owTjZtiF8Ay5j9m60KmMBw==} + promzard@0.3.0: dependencies: read: 1.0.7 - dev: true - /prop-types@15.8.1: - resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + prop-types@15.8.1: dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 react-is: 16.13.1 - /property-information@5.6.0: - resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} + property-information@5.6.0: dependencies: xtend: 4.0.2 - /proto-list@1.2.4: - resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} + property-information@6.5.0: {} - /protocols@2.0.1: - resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} - dev: true + proto-list@1.2.4: {} - /proxy-addr@2.0.7: - resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} - engines: {node: '>= 0.10'} + protocols@2.0.1: {} + + proxy-addr@2.0.7: dependencies: forwarded: 0.2.0 ipaddr.js: 1.9.1 - /proxy-from-env@1.0.0: - resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==} - dev: true + proxy-from-env@1.0.0: {} - /proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + proxy-from-env@1.1.0: {} - /prr@1.0.1: - resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} - requiresBuild: true + prr@1.0.1: {} - /pseudomap@1.0.2: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} - dev: true + pseudomap@1.0.2: {} - /psl@1.9.0: - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} - dev: true + psl@1.9.0: {} - /pump@2.0.1: - resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} + pump@2.0.1: dependencies: end-of-stream: 1.4.4 once: 1.4.0 - dev: true - /pump@3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + pump@3.0.0: dependencies: end-of-stream: 1.4.4 once: 1.4.0 - /pumpify@1.5.1: - resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} + pumpify@1.5.1: dependencies: duplexify: 3.7.1 inherits: 2.0.4 pump: 2.0.1 - dev: true - /punycode@1.4.1: - resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} + punycode@1.4.1: {} - /punycode@2.3.1: - resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} - engines: {node: '>=6'} + punycode@2.3.1: {} - /pupa@2.1.1: - resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==} - engines: {node: '>=8'} + pupa@2.1.1: dependencies: escape-goat: 2.1.1 - dev: false - /puppeteer-core@2.1.1: - resolution: {integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==} - engines: {node: '>=8.16.0'} + puppeteer-core@2.1.1: dependencies: '@types/mime-types': 2.1.4 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) extract-zip: 1.7.0 https-proxy-agent: 4.0.0 mime: 2.6.0 @@ -43405,212 +50517,132 @@ packages: - supports-color - utf-8-validate - /pure-rand@6.1.0: - resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} - - /q@1.5.1: - resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} - engines: {node: '>=0.6.0', teleport: '>=0.2.0'} - deprecated: |- - You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. + pure-rand@6.1.0: {} - (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) - dev: true + q@1.5.1: {} - /qr.js@0.0.0: - resolution: {integrity: sha512-c4iYnWb+k2E+vYpRimHqSu575b1/wKl4XFeJGpFmrJQz5I88v9aY2czh7s0w36srfCM1sXgC/xpoJz5dJfq+OQ==} - dev: false + qr.js@0.0.0: {} - /qrcode.react@1.0.1(react@18.3.1): - resolution: {integrity: sha512-8d3Tackk8IRLXTo67Y+c1rpaiXjoz/Dd2HpcMdW//62/x8J1Nbho14Kh8x974t9prsLHN6XqVgcnRiBGFptQmg==} - peerDependencies: - react: ^15.5.3 || ^16.0.0 || ^17.0.0 + qrcode.react@1.0.1(react@18.3.1): dependencies: loose-envify: 1.4.0 prop-types: 15.8.1 qr.js: 0.0.0 react: 18.3.1 - dev: false - /qs@6.10.4: - resolution: {integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==} - engines: {node: '>=0.6'} + qs@6.10.4: dependencies: side-channel: 1.0.6 - dev: true - /qs@6.11.0: - resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} - engines: {node: '>=0.6'} + qs@6.11.0: dependencies: side-channel: 1.0.6 - /qs@6.12.3: - resolution: {integrity: sha512-AWJm14H1vVaO/iNZ4/hO+HyaTehuy9nRqVdkTqlJt0HWvBiBIEXFmb4C0DGeYo3Xes9rrEW+TxHsaigCbN5ICQ==} - engines: {node: '>=0.6'} + qs@6.12.3: dependencies: side-channel: 1.0.6 - /query-string@7.1.3: - resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} - engines: {node: '>=6'} + query-string@7.1.3: dependencies: decode-uri-component: 0.2.2 filter-obj: 1.1.0 split-on-first: 1.1.0 strict-uri-encode: 2.0.0 - dev: true - /querystring@0.2.1: - resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} - engines: {node: '>=0.4.x'} - deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. - dev: true + querystring@0.2.1: {} - /querystringify@2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + querystringify@2.2.0: {} - /queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + queue-microtask@1.2.3: {} - /quick-lru@4.0.1: - resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} - engines: {node: '>=8'} - dev: true + quick-lru@4.0.1: {} - /quick-lru@5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: '>=10'} - dev: true + quick-lru@5.1.1: {} - /raf@3.4.1: - resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} + raf@3.4.1: dependencies: performance-now: 2.1.0 - dev: false - /ramda@0.28.0: - resolution: {integrity: sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA==} + ramda@0.28.0: {} - /ramda@0.29.0: - resolution: {integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==} - dev: true + ramda@0.29.0: {} - /randomatic@3.1.1: - resolution: {integrity: sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==} - engines: {node: '>= 0.10.0'} + randomatic@3.1.1: dependencies: is-number: 4.0.0 kind-of: 6.0.3 math-random: 1.0.4 - dev: true - /randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + randombytes@2.1.0: dependencies: safe-buffer: 5.2.1 - /range-parser@1.2.1: - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} - engines: {node: '>= 0.6'} + range-parser@1.2.1: {} - /raw-body@2.5.2: - resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} - engines: {node: '>= 0.8'} + raw-body@2.5.2: dependencies: bytes: 3.1.2 http-errors: 2.0.0 iconv-lite: 0.4.24 unpipe: 1.0.0 - /raw-loader@4.0.2(webpack@5.84.1): - resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 + raw-loader@4.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /rc-motion@2.9.2(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-fUAhHKLDdkAXIDLH0GYwof3raS58dtNUmzLF2MeiR8o6n4thNpSDQhOqQzWE4WfFZDCi9VEN8n7tiB7czREcyw==} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' + rc-motion@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - /rc-resize-observer@1.4.0(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-PnMVyRid9JLxFavTjeDXEXo65HCRqbmLBw9xX9gfC4BZiSzbLXKzW3jPz+J0P71pLbD5tBMTT+mkstV5gD0c9Q==} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' + rc-resize-observer@1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) resize-observer-polyfill: 1.5.1 - /rc-tree@4.2.2(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-V1hkJt092VrOVjNyfj5IYbZKRMHxWihZarvA5hPL/eqm7o2+0SNkeidFYm7LVVBrAKBpOpa0l8xt04uiqOd+6w==} - engines: {node: '>=10.x'} - peerDependencies: - react: '*' - react-dom: '*' + rc-tree@4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 classnames: 2.5.1 - rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) - rc-virtual-list: 3.14.3(react-dom@18.3.1)(react@18.3.1) + rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-virtual-list: 3.14.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - /rc-util@5.43.0(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-AzC7KKOXFqAdIBqdGWepL9Xn7cm3vnAmjlHqUnoQaTMZYhM4VlXGLkkHHxj/BZ7Td0+SOPKB4RGPboBVKT9htw==} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' + rc-util@5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - /rc-virtual-list@3.14.3(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-6+6wiEhdqakNBnbRJymgMlh+90qpkgqherTRo1l1cX7mK6F9hWsazPczmP0lA+64yhC9/t+M9Dh5pjvDWimn8A==} - engines: {node: '>=8.x'} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' + rc-virtual-list@3.14.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 classnames: 2.5.1 - rc-resize-observer: 1.4.0(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-resize-observer: 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - /rc@1.2.8: - resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} - hasBin: true + rc@1.2.8: dependencies: deep-extend: 0.6.0 ini: 1.3.8 minimist: 1.2.8 strip-json-comments: 2.0.1 - dev: false - /react-app-polyfill@1.0.6: - resolution: {integrity: sha512-OfBnObtnGgLGfweORmdZbyEz+3dgVePQBb3zipiaDsMHV1NpWm0rDFYIVXFV/AK+x4VIIfWHhrdMIeoTLyRr2g==} - engines: {node: '>=6'} + react-app-polyfill@1.0.6: dependencies: core-js: 3.37.1 object-assign: 4.1.1 @@ -43618,22 +50650,13 @@ packages: raf: 3.4.1 regenerator-runtime: 0.13.11 whatwg-fetch: 3.6.20 - dev: false - /react-codemirror2@6.0.1(codemirror@5.65.16)(react@18.3.1): - resolution: {integrity: sha512-rutEKVgvFhWcy/GeVA1hFbqrO89qLqgqdhUr7YhYgIzdyICdlRQv+ztuNvOFQMXrO0fLt0VkaYOdMdYdQgsSUA==} - peerDependencies: - codemirror: 5.x - react: '>=15.5 <=16.x' + react-codemirror2@6.0.1(codemirror@5.65.16)(react@18.3.1): dependencies: codemirror: 5.65.16 react: 18.3.1 - dev: false - /react-color@2.19.3(react@18.3.1): - resolution: {integrity: sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==} - peerDependencies: - react: '*' + react-color@2.19.3(react@18.3.1): dependencies: '@icons/material': 0.2.4(react@18.3.1) lodash: 4.17.21 @@ -43643,49 +50666,29 @@ packages: react: 18.3.1 reactcss: 1.2.3(react@18.3.1) tinycolor2: 1.6.0 - dev: false - /react-docgen-typescript-loader@3.7.2(typescript@4.9.5)(webpack@5.84.1): - resolution: {integrity: sha512-fNzUayyUGzSyoOl7E89VaPKJk9dpvdSgyXg81cUkwy0u+NBvkzQG3FC5WBIlXda0k/iaxS+PWi+OC+tUiGxzPA==} - peerDependencies: - typescript: '*' + react-docgen-typescript-loader@3.7.2(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: - '@webpack-contrib/schema-utils': 1.0.0-beta.0(webpack@5.84.1) + '@webpack-contrib/schema-utils': 1.0.0-beta.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) loader-utils: 1.4.2 react-docgen-typescript: 1.22.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - webpack - dev: true - /react-docgen-typescript@1.22.0(typescript@4.9.5): - resolution: {integrity: sha512-MPLbF8vzRwAG3GcjdL+OHQlhgtWsLTXs+7uJiHfEeT3Ur7IsZaNYqRTLQ9sj2nB6M6jylcPCeCmH7qbszJmecg==} - peerDependencies: - typescript: '>= 3.x' + react-docgen-typescript@1.22.0(typescript@4.9.5): dependencies: typescript: 4.9.5 - dev: true - /react-docgen-typescript@2.2.2(typescript@4.9.5): - resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} - peerDependencies: - typescript: '>= 4.3.x' + react-docgen-typescript@2.2.2(typescript@4.9.5): dependencies: typescript: 4.9.5 - dev: false - /react-docgen-typescript@2.2.2(typescript@5.1.6): - resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} - peerDependencies: - typescript: '>= 4.3.x' + react-docgen-typescript@2.2.2(typescript@5.1.6): dependencies: typescript: 5.1.6 - dev: true - /react-docgen@5.4.3: - resolution: {integrity: sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA==} - engines: {node: '>=8.10.0'} - hasBin: true + react-docgen@5.4.3: dependencies: '@babel/core': 7.24.7 '@babel/generator': 7.24.7 @@ -43699,11 +50702,8 @@ packages: strip-indent: 3.0.0 transitivePeerDependencies: - supports-color - dev: false - /react-docgen@7.0.3: - resolution: {integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==} - engines: {node: '>=16.14.0'} + react-docgen@7.0.3: dependencies: '@babel/core': 7.24.7 '@babel/traverse': 7.24.7 @@ -43717,89 +50717,45 @@ packages: strip-indent: 4.0.0 transitivePeerDependencies: - supports-color - dev: true - - /react-dom@16.14.0(react@16.14.0): - resolution: {integrity: sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==} - peerDependencies: - react: ^16.14.0 - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - prop-types: 15.8.1 - react: 16.14.0 - scheduler: 0.19.1 - dev: false - /react-dom@18.3.1(react@18.3.1): - resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} - peerDependencies: - react: ^18.3.1 + react-dom@18.3.1(react@18.3.1): dependencies: loose-envify: 1.4.0 react: 18.3.1 scheduler: 0.23.2 - /react-draggable@4.4.6(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-LtY5Xw1zTPqHkVmtM3X8MUOxNDOUhv/khTgBgrUvwaS064bwVvxT+q5El0uUFNx5IEPKXuRejr7UqLwBIg5pdw==} - peerDependencies: - react: '>= 16.3.0' - react-dom: '>= 16.3.0' + react-draggable@4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false - /react-element-to-jsx-string@14.3.4(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} - peerDependencies: - react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 - react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 + react-element-to-jsx-string@14.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 17.0.2 - dev: false - /react-element-to-jsx-string@15.0.0: - resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==} - peerDependencies: - react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 - react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 + react-element-to-jsx-string@15.0.0: dependencies: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 react-is: 18.1.0 - dev: true - /react-fast-compare@2.0.4: - resolution: {integrity: sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==} - dev: false + react-fast-compare@2.0.4: {} - /react-fast-compare@3.2.2: - resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} - dev: false + react-fast-compare@3.2.2: {} - /react-final-form@6.5.9(final-form@4.20.10)(react@18.3.1): - resolution: {integrity: sha512-x3XYvozolECp3nIjly+4QqxdjSSWfcnpGEL5K8OBT6xmGrq5kBqbA6+/tOqoom9NwqIPPbxPNsOViFlbKgowbA==} - peerDependencies: - final-form: ^4.20.4 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-final-form@6.5.9(final-form@4.20.10)(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 final-form: 4.20.10 react: 18.3.1 - dev: false - /react-floater@0.7.9(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-NXqyp9o8FAXOATOEo0ZpyaQ2KPb4cmPMXGWkx377QtJkIXHlHRAGer7ai0r0C1kG5gf+KJ6Gy+gdNIiosvSicg==} - peerDependencies: - react: 15 - 18 - react-dom: 15 - 18 + react-floater@0.7.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: deepmerge: 4.3.1 is-lite: 0.8.2 @@ -43808,39 +50764,20 @@ packages: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) tree-changes: 0.9.3 - dev: false - /react-head@3.4.2: - resolution: {integrity: sha512-mnl6u7E0SSzY9w+mExKGVz8vW/oObUTnj+vpRaZF6jcdjFcCGs0vl8MRwlRws56dye3f1CpzU7C/hz3b3S2BBA==} - peerDependencies: - react: '>=16.3' - react-dom: '>=16.3' + react-head@3.4.2: dependencies: '@babel/runtime': 7.24.7 - dev: false - /react-helmet@5.2.1(react@18.3.1): - resolution: {integrity: sha512-CnwD822LU8NDBnjCpZ4ySh8L6HYyngViTZLfBBb3NjtrpN8m49clH8hidHouq20I51Y6TpCTISCBbqiY5GamwA==} - peerDependencies: - react: '>=15.0.0' + react-helmet@5.2.1(react@18.3.1): dependencies: object-assign: 4.1.1 prop-types: 15.8.1 react: 18.3.1 react-fast-compare: 2.0.4 react-side-effect: 1.2.0(react@18.3.1) - dev: false - /react-hot-loader@4.13.1: - resolution: {integrity: sha512-ZlqCfVRqDJmMXTulUGic4lN7Ic1SXgHAFw7y/Jb7t25GBgTR0fYAJ8uY4mrpxjRyWGWmqw77qJQGnYbzCvBU7g==} - engines: {node: '>= 6'} - peerDependencies: - '@types/react': 18.0.18 - react: ^15.0.0 || ^16.0.0 || ^17.0.0 - react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 - peerDependenciesMeta: - '@types/react': - optional: true + react-hot-loader@4.13.1(@types/react@18.0.18): dependencies: fast-levenshtein: 2.0.6 global: 4.4.0 @@ -43850,67 +50787,39 @@ packages: react-lifecycles-compat: 3.0.4 shallowequal: 1.1.0 source-map: 0.7.4 - dev: true + optionalDependencies: + '@types/react': 18.0.18 - /react-i18next@11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-yHb2F9BiT0lqoQDt8loZ5gWP331GwctHz9tYQ8A2EIEUu+CcEdjBLQWli1USG3RdWQt3W+jqQLg/d4rrQR96LA==} - peerDependencies: - i18next: '>= 19.0.0' - react: '>= 16.8.0' - react-dom: '*' - react-native: '*' - peerDependenciesMeta: - react-dom: - optional: true - react-native: - optional: true + react-i18next@11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 html-parse-stringify: 3.0.1 i18next: 21.10.0 react: 18.3.1 + optionalDependencies: react-dom: 18.3.1(react@18.3.1) - dev: false - /react-innertext@1.1.5(@types/react@18.0.18)(react@18.3.1): - resolution: {integrity: sha512-PWAqdqhxhHIv80dT9znP2KvS+hfkbRovFp4zFYHFFlOoQLRiawIic81gKb3U1wEyJZgMwgs3JoLtwryASRWP3Q==} - peerDependencies: - '@types/react': 18.0.18 - react: '>=0.0.0 <=99' + react-innertext@1.1.5(@types/react@18.0.18)(react@18.3.1): dependencies: '@types/react': 18.0.18 react: 18.3.1 - dev: false - /react-inspector@5.1.1(react@18.3.1): - resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==} - peerDependencies: - react: ^16.8.4 || ^17.0.0 + react-inspector@5.1.1(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 is-dom: 1.1.0 prop-types: 15.8.1 react: 18.3.1 - dev: true - /react-is@16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + react-is@16.13.1: {} - /react-is@17.0.2: - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + react-is@17.0.2: {} - /react-is@18.1.0: - resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==} - dev: true + react-is@18.1.0: {} - /react-is@18.3.1: - resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} + react-is@18.3.1: {} - /react-joyride@2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-2QY8HB1G0I2OT0PKMUz7gg2HAjdkG2Bqi13r0Bb1V16PAwfb9khn4wWBTOJsGsjulbAWiQ3/0YrgNUHGFmuifw==} - peerDependencies: - react: 15 - 18 - react-dom: 15 - 18 + react-joyride@2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@gilbarbara/deep-equal': 0.3.1 deep-diff: 1.0.2 @@ -43918,7 +50827,7 @@ packages: is-lite: 1.2.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-floater: 0.7.9(react-dom@18.3.1)(react@18.3.1) + react-floater: 0.7.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-innertext: 1.1.5(@types/react@18.0.18)(react@18.3.1) react-is: 16.13.1 scroll: 3.0.1 @@ -43927,81 +50836,44 @@ packages: type-fest: 4.20.1 transitivePeerDependencies: - '@types/react' - dev: false - /react-lifecycles-compat@3.0.4: - resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} - dev: true + react-lifecycles-compat@3.0.4: {} - /react-markdown@4.3.1(react@18.3.1): - resolution: {integrity: sha512-HQlWFTbDxTtNY6bjgp3C3uv1h2xcjCSi1zAEzfBW9OwJJvENSYiLXWNXN5hHLsoqai7RnZiiHzcnWdXk2Splzw==} - peerDependencies: - react: ^15.0.0 || ^16.0.0 + react-markdown@9.0.1(@types/react@18.0.18)(react@18.3.1): dependencies: - html-to-react: 1.7.0(react@18.3.1) - mdast-add-list-metadata: 1.0.1 - prop-types: 15.8.1 + '@types/hast': 3.0.4 + '@types/react': 18.0.18 + devlop: 1.1.0 + hast-util-to-jsx-runtime: 2.3.0 + html-url-attributes: 3.0.0 + mdast-util-to-hast: 13.2.0 react: 18.3.1 - react-is: 16.13.1 - remark-parse: 5.0.0 - unified: 6.2.0 - unist-util-visit: 1.4.1 - xtend: 4.0.2 - dev: false - - /react-notification-system@0.4.0(react-dom@16.14.0)(react@16.14.0): - resolution: {integrity: sha512-5WhXnjkYC07zqXruCiUXDU9iHjVxZlL1zgHpNgXk91A5ghV1AHrWVrJYo1XM4SnwlKy5NLdftkaTl+pTuVFAqw==} - peerDependencies: - react: "0.14.x || ^15.0.0 ||\_^16.0.0" - react-dom: 0.14.x || ^15.0.0 || ^16.0.0 - dependencies: - object-assign: 4.1.1 - prop-types: 15.8.1 - react: 16.14.0 - react-dom: 16.14.0(react@16.14.0) - dev: false + remark-parse: 11.0.0 + remark-rehype: 11.1.0 + unified: 11.0.5 + unist-util-visit: 5.0.0 + vfile: 6.0.1 + transitivePeerDependencies: + - supports-color - /react-notification-system@0.4.0(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-5WhXnjkYC07zqXruCiUXDU9iHjVxZlL1zgHpNgXk91A5ghV1AHrWVrJYo1XM4SnwlKy5NLdftkaTl+pTuVFAqw==} - peerDependencies: - react: "0.14.x || ^15.0.0 ||\_^16.0.0" - react-dom: 0.14.x || ^15.0.0 || ^16.0.0 + react-notification-system@0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: object-assign: 4.1.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false - /react-popper@2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==} - peerDependencies: - '@popperjs/core': ^2.0.0 - react: ^16.8.0 || ^17 || ^18 - react-dom: ^16.8.0 || ^17 || ^18 + react-popper@2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@popperjs/core': 2.11.8 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-fast-compare: 3.2.2 warning: 4.0.3 - dev: false - /react-property@2.0.0: - resolution: {integrity: sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw==} - dev: false + react-property@2.0.0: {} - /react-redux@7.2.9(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==} - peerDependencies: - react: ^16.8.3 || ^17 || ^18 - react-dom: '*' - react-native: '*' - peerDependenciesMeta: - react-dom: - optional: true - react-native: - optional: true + react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 '@types/react-redux': 7.1.33 @@ -44009,34 +50881,19 @@ packages: loose-envify: 1.4.0 prop-types: 15.8.1 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) react-is: 17.0.2 - dev: false + optionalDependencies: + react-dom: 18.3.1(react@18.3.1) - /react-refresh@0.10.0: - resolution: {integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==} - engines: {node: '>=0.10.0'} - dev: true + react-refresh@0.10.0: {} - /react-refresh@0.11.0: - resolution: {integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==} - engines: {node: '>=0.10.0'} - dev: false + react-refresh@0.11.0: {} - /react-refresh@0.14.2: - resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} - engines: {node: '>=0.10.0'} - dev: true + react-refresh@0.14.2: {} - /react-refresh@0.9.0: - resolution: {integrity: sha512-Gvzk7OZpiqKSkxsQvO/mbTN1poglhmAV7gR/DdIrRrSMXraRQQlfikRJOr3Nb9GTMPC5kof948Zy6jJZIFtDvQ==} - engines: {node: '>=0.10.0'} - dev: true + react-refresh@0.9.0: {} - /react-router-dom@4.3.1(react@18.3.1): - resolution: {integrity: sha512-c/MlywfxDdCp7EnB7YfPMOfMD3tOtIjrQlj/CKfNMBxdmpJP8xcz5P/UAFn3JbnQCNUxsHyVVqllF9LhgVyFCA==} - peerDependencies: - react: '>=15' + react-router-dom@4.3.1(react@18.3.1): dependencies: history: 4.10.1 invariant: 2.2.4 @@ -44045,38 +50902,15 @@ packages: react: 18.3.1 react-router: 4.3.1(react@18.3.1) warning: 4.0.3 - dev: false - - /react-router-dom@6.24.1(react-dom@16.14.0)(react@16.14.0): - resolution: {integrity: sha512-U19KtXqooqw967Vw0Qcn5cOvrX5Ejo9ORmOtJMzYWtCT4/WOfFLIZGGsVLxcd9UkBO0mSTZtXqhZBsWlHr7+Sg==} - engines: {node: '>=14.0.0'} - peerDependencies: - react: '>=16.8' - react-dom: '>=16.8' - dependencies: - '@remix-run/router': 1.17.1 - react: 16.14.0 - react-dom: 16.14.0(react@16.14.0) - react-router: 6.24.1(react@16.14.0) - dev: false - /react-router-dom@6.24.1(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-U19KtXqooqw967Vw0Qcn5cOvrX5Ejo9ORmOtJMzYWtCT4/WOfFLIZGGsVLxcd9UkBO0mSTZtXqhZBsWlHr7+Sg==} - engines: {node: '>=14.0.0'} - peerDependencies: - react: '>=16.8' - react-dom: '>=16.8' + react-router-dom@6.24.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@remix-run/router': 1.17.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-router: 6.24.1(react@18.3.1) - dev: true - /react-router@4.3.1(react@18.3.1): - resolution: {integrity: sha512-yrvL8AogDh2X42Dt9iknk4wF4V8bWREPirFfS9gLU1huk6qK41sg7Z/1S81jjTrGHxa3B8R3J6xIkDAA6CVarg==} - peerDependencies: - react: '>=15' + react-router@4.3.1(react@18.3.1): dependencies: history: 4.10.1 hoist-non-react-statics: 2.5.5 @@ -44085,69 +50919,33 @@ packages: path-to-regexp: 1.8.0 prop-types: 15.8.1 react: 18.3.1 - warning: 4.0.3 - dev: false - - /react-router@6.24.1(react@16.14.0): - resolution: {integrity: sha512-PTXFXGK2pyXpHzVo3rR9H7ip4lSPZZc0bHG5CARmj65fTT6qG7sTngmb6lcYu1gf3y/8KxORoy9yn59pGpCnpg==} - engines: {node: '>=14.0.0'} - peerDependencies: - react: '>=16.8' - dependencies: - '@remix-run/router': 1.17.1 - react: 16.14.0 - dev: false + warning: 4.0.3 - /react-router@6.24.1(react@18.3.1): - resolution: {integrity: sha512-PTXFXGK2pyXpHzVo3rR9H7ip4lSPZZc0bHG5CARmj65fTT6qG7sTngmb6lcYu1gf3y/8KxORoy9yn59pGpCnpg==} - engines: {node: '>=14.0.0'} - peerDependencies: - react: '>=16.8' + react-router@6.24.1(react@18.3.1): dependencies: '@remix-run/router': 1.17.1 react: 18.3.1 - dev: true - /react-side-effect@1.2.0(react@18.3.1): - resolution: {integrity: sha512-v1ht1aHg5k/thv56DRcjw+WtojuuDHFUgGfc+bFHOWsF4ZK6C2V57DO0Or0GPsg6+LSTE0M6Ry/gfzhzSwbc5w==} - peerDependencies: - react: ^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0 + react-side-effect@1.2.0(react@18.3.1): dependencies: react: 18.3.1 shallowequal: 1.1.0 - dev: false - /react-smooth@4.0.1(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-OE4hm7XqR0jNOq3Qmk9mFLyd6p2+j6bvbPJ7qlB7+oo0eNcL2l7WQzG6MBnT3EXY6xzkLMUBec3AfewJdA0J8w==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-smooth@4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: fast-equals: 5.0.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-transition-group: 4.4.5(react-dom@18.3.1)(react@18.3.1) - dev: false + react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - /react-top-loading-bar@1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-5oNdy+DfD5JK06bcc/gsnnXHmml+d8eaBe3C8KQ3eLiH/BD8+FcwsgbAwqgOaRjuSeVQXdYN2JC2G1uVFtCLfA==} - engines: {node: '>=8', npm: '>=5'} - peerDependencies: - prop-types: ^15.5.4 - react: ^15.0.0 || ^16.0.0 - react-dom: ^15.0.0 || ^16.0.0 + react-top-loading-bar@1.2.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false - /react-transition-group@4.4.5(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} - peerDependencies: - react: '>=16.6.0' - react-dom: '>=16.6.0' + react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 dom-helpers: 5.2.1 @@ -44155,175 +50953,111 @@ packages: prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - dev: false - /react-world-flags@1.6.0(react@18.3.1): - resolution: {integrity: sha512-eutSeAy5YKoVh14js/JUCSlA6EBk1n4k+bDaV+NkNB50VhnG+f4QDTpYycnTUTsZ5cqw/saPmk0Z4Fa0VVZ1Iw==} - peerDependencies: - react: '>=0.14' + react-world-flags@1.6.0(react@18.3.1): dependencies: react: 18.3.1 svg-country-flags: 1.2.10 svgo: 3.3.2 world-countries: 5.0.0 - dev: false - - /react@16.14.0: - resolution: {integrity: sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==} - engines: {node: '>=0.10.0'} - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - prop-types: 15.8.1 - dev: false - /react@18.3.1: - resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} - engines: {node: '>=0.10.0'} + react@18.3.1: dependencies: loose-envify: 1.4.0 - /reactcss@1.2.3(react@18.3.1): - resolution: {integrity: sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==} - peerDependencies: - react: '*' + reactcss@1.2.3(react@18.3.1): dependencies: lodash: 4.17.21 react: 18.3.1 - dev: false - /reactflow@11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-HBudD8BwZacOMqX8fbkiXbeBQs3nRezWVLCDurfc+tTeHsA7988uyaIOhrnKgYCcKtlpJaspsnxDZk+5JmmHxA==} - peerDependencies: - react: '>=17' - react-dom: '>=17' + reactflow@11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@reactflow/background': 11.2.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@reactflow/controls': 11.1.13(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@reactflow/minimap': 11.5.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@reactflow/node-resizer': 2.1.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) - '@reactflow/node-toolbar': 1.2.1(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/background': 11.2.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/controls': 11.1.13(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/minimap': 11.5.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/node-resizer': 2.1.0(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/node-toolbar': 1.2.1(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - immer - dev: false - /read-cache@1.0.0: - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + read-cache@1.0.0: dependencies: pify: 2.3.0 - dev: true - /read-cmd-shim@3.0.1: - resolution: {integrity: sha512-kEmDUoYf/CDy8yZbLTmhB1X9kkjf9Q80PCNsDMb7ufrGd6zZSQA1+UyjrO+pZm5K/S4OXCWJeiIt1JA8kAsa6g==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dev: true + read-cmd-shim@3.0.1: {} - /read-package-json-fast@2.0.3: - resolution: {integrity: sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==} - engines: {node: '>=10'} + read-package-json-fast@2.0.3: dependencies: json-parse-even-better-errors: 2.3.1 npm-normalize-package-bin: 1.0.1 - dev: true - /read-package-json@5.0.2: - resolution: {integrity: sha512-BSzugrt4kQ/Z0krro8zhTwV1Kd79ue25IhNN/VtHFy1mG/6Tluyi+msc0UpwaoQzxSHa28mntAjIZY6kEgfR9Q==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. Please use @npmcli/package-json instead. + read-package-json@5.0.2: dependencies: glob: 8.1.0 json-parse-even-better-errors: 2.3.1 normalize-package-data: 4.0.1 npm-normalize-package-bin: 2.0.0 - dev: true - /read-pkg-up@1.0.1: - resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==} - engines: {node: '>=0.10.0'} - requiresBuild: true + read-pkg-up@1.0.1: dependencies: find-up: 1.1.2 read-pkg: 1.1.0 - dev: false optional: true - /read-pkg-up@3.0.0: - resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} - engines: {node: '>=4'} + read-pkg-up@3.0.0: dependencies: find-up: 2.1.0 read-pkg: 3.0.0 - dev: true - /read-pkg-up@7.0.1: - resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} - engines: {node: '>=8'} + read-pkg-up@7.0.1: dependencies: find-up: 4.1.0 read-pkg: 5.2.0 type-fest: 0.8.1 - /read-pkg@1.1.0: - resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==} - engines: {node: '>=0.10.0'} - requiresBuild: true + read-pkg@1.1.0: dependencies: load-json-file: 1.1.0 normalize-package-data: 2.5.0 path-type: 1.1.0 - dev: false optional: true - /read-pkg@3.0.0: - resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} - engines: {node: '>=4'} + read-pkg@3.0.0: dependencies: load-json-file: 4.0.0 normalize-package-data: 2.5.0 path-type: 3.0.0 - dev: true - /read-pkg@5.2.0: - resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} - engines: {node: '>=8'} + read-pkg@5.2.0: dependencies: '@types/normalize-package-data': 2.4.4 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 - /read-yaml-file@1.1.0: - resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} - engines: {node: '>=6'} + read-yaml-file@1.1.0: dependencies: graceful-fs: 4.2.11 js-yaml: 3.13.1 pify: 4.0.1 strip-bom: 3.0.0 - dev: true - /read@1.0.7: - resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} - engines: {node: '>=0.8'} + read@1.0.7: dependencies: mute-stream: 0.0.8 - dev: true - /readable-stream@1.1.14: - resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==} + readable-stream@1.1.14: dependencies: core-util-is: 1.0.3 inherits: 2.0.4 isarray: 0.0.1 string_decoder: 0.10.31 - dev: false - /readable-stream@2.3.8: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + readable-stream@2.3.8: dependencies: core-util-is: 1.0.3 inherits: 2.0.4 @@ -44333,34 +51067,24 @@ packages: string_decoder: 1.1.1 util-deprecate: 1.0.2 - /readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} + readable-stream@3.6.2: dependencies: inherits: 2.0.4 string_decoder: 1.3.0 util-deprecate: 1.0.2 - /readable-web-to-node-stream@3.0.2: - resolution: {integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==} - engines: {node: '>=8'} + readable-web-to-node-stream@3.0.2: dependencies: readable-stream: 3.6.2 - dev: true - /readdir-scoped-modules@1.1.0: - resolution: {integrity: sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==} - deprecated: This functionality has been moved to @npmcli/fs + readdir-scoped-modules@1.1.0: dependencies: debuglog: 1.0.1 dezalgo: 1.0.4 graceful-fs: 4.2.11 once: 1.4.0 - dev: true - /readdirp@2.2.1(supports-color@6.1.0): - resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==} - engines: {node: '>=0.10'} + readdirp@2.2.1(supports-color@6.1.0): dependencies: graceful-fs: 4.2.11 micromatch: 3.1.10(supports-color@6.1.0) @@ -44368,55 +51092,37 @@ packages: transitivePeerDependencies: - supports-color - /readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + readdirp@3.6.0: dependencies: picomatch: 2.3.1 - /recast@0.19.1: - resolution: {integrity: sha512-8FCjrBxjeEU2O6I+2hyHyBFH1siJbMBLwIRvVr1T3FD2cL754sOaJDsJ/8h3xYltasbJ8jqWRIhMuDGBSiSbjw==} - engines: {node: '>= 4'} + recast@0.19.1: dependencies: ast-types: 0.13.3 esprima: 4.0.1 private: 0.1.8 source-map: 0.6.1 - dev: false - /recast@0.20.5: - resolution: {integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==} - engines: {node: '>= 4'} + recast@0.20.5: dependencies: ast-types: 0.14.2 esprima: 4.0.1 source-map: 0.6.1 tslib: 2.6.3 - dev: false - /recast@0.23.9: - resolution: {integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==} - engines: {node: '>= 4'} + recast@0.23.9: dependencies: ast-types: 0.16.1 esprima: 4.0.1 source-map: 0.6.1 tiny-invariant: 1.3.3 tslib: 2.6.3 - dev: true - /recharts-scale@0.4.5: - resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==} + recharts-scale@0.4.5: dependencies: decimal.js-light: 2.5.1 - dev: false - /recharts@2.12.7(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-hlLJMhPQfv4/3NBSAyq3gzGg4h2v69RJh6KU7b3pXYNNAELs9kEoXOjbkxdXpALqKBoVmVptGfLpxdaVYqjmXQ==} - engines: {node: '>=14'} - peerDependencies: - react: ^16.0.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 + recharts@2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: clsx: 2.1.1 eventemitter3: 4.0.7 @@ -44424,67 +51130,37 @@ packages: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 16.13.1 - react-smooth: 4.0.1(react-dom@18.3.1)(react@18.3.1) + react-smooth: 4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts-scale: 0.4.5 tiny-invariant: 1.3.3 victory-vendor: 36.9.2 - dev: false - /rechoir@0.6.2: - resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} - engines: {node: '>= 0.10'} + rechoir@0.6.2: dependencies: resolve: 1.22.8 - dev: false - /rechoir@0.7.1: - resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==} - engines: {node: '>= 0.10'} + rechoir@0.7.1: dependencies: resolve: 1.22.8 - /redent@1.0.0: - resolution: {integrity: sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==} - engines: {node: '>=0.10.0'} - requiresBuild: true + redent@1.0.0: dependencies: indent-string: 2.1.0 strip-indent: 1.0.1 - dev: false optional: true - /redent@3.0.0: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: '>=8'} + redent@3.0.0: dependencies: indent-string: 4.0.0 strip-indent: 3.0.0 - dev: true - /reduce-reducers@1.0.4: - resolution: {integrity: sha512-Mb2WZ2bJF597exiqX7owBzrqJ74DHLK3yOQjCyPAaNifRncE8OD0wFIuoMhXxTnHK07+8zZ2SJEKy/qtiyR7vw==} - dev: false + reduce-reducers@1.0.4: {} - /redux-devtools-extension@2.13.9(redux@4.2.1): - resolution: {integrity: sha512-cNJ8Q/EtjhQaZ71c8I9+BPySIBVEKssbPpskBfsXqb8HJ002A3KRVHfeRzwRo6mGPqsm7XuHTqNSNeS1Khig0A==} - deprecated: Package moved to @redux-devtools/extension. - peerDependencies: - redux: ^3.1.0 || ^4.0.0 + redux-devtools-extension@2.13.9(redux@4.2.1): dependencies: redux: 4.2.1 - dev: true - /redux-form@8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1): - resolution: {integrity: sha512-Eeog8dJYUxCSZI/oBoy7VkprvMjj1lpUnHa3LwjVNZvYDNeiRZMoZoaAT+6nlK2YQ4aiBopKUMiLe4ihUOHCGg==} - engines: {node: '>=8.10'} - peerDependencies: - immutable: ^3.8.2 || ^4.0.0 - react: ^16.4.2 || ^17.0.0 || ^18.0.0 - react-redux: ^6.0.1 || ^7.0.0 || ^8.0.0 - redux: ^3.7.2 || ^4.0.0 - peerDependenciesMeta: - immutable: - optional: true + redux-form@8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1): dependencies: '@babel/runtime': 7.24.7 es6-error: 4.1.1 @@ -44495,31 +51171,24 @@ packages: prop-types: 15.8.1 react: 18.3.1 react-is: 16.13.1 - react-redux: 7.2.9(react-dom@18.3.1)(react@18.3.1) + react-redux: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) redux: 4.2.1 - dev: false + optionalDependencies: + immutable: 4.3.6 - /redux-mock-store@1.5.4: - resolution: {integrity: sha512-xmcA0O/tjCLXhh9Fuiq6pMrJCwFRaouA8436zcikdIpYWWCjU76CRk+i2bHx8EeiSiMGnB85/lZdU3wIJVXHTA==} + redux-mock-store@1.5.4: dependencies: lodash.isplainobject: 4.0.6 - /redux-thunk@2.4.2(redux@4.2.1): - resolution: {integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==} - peerDependencies: - redux: ^4 + redux-thunk@2.4.2(redux@4.2.1): dependencies: redux: 4.2.1 - dev: false - /redux@4.2.1: - resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} + redux@4.2.1: dependencies: '@babel/runtime': 7.24.7 - /reflect.getprototypeof@1.0.6: - resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} - engines: {node: '>= 0.4'} + reflect.getprototypeof@1.0.6: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -44528,57 +51197,40 @@ packages: get-intrinsic: 1.2.4 globalthis: 1.0.4 which-builtin-type: 1.1.3 - dev: true - /regenerate-unicode-properties@10.1.1: - resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} - engines: {node: '>=4'} + regenerate-unicode-properties@10.1.1: dependencies: regenerate: 1.4.2 - /regenerate@1.4.2: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + regenerate@1.4.2: {} - /regenerator-runtime@0.10.5: - resolution: {integrity: sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==} + regenerator-runtime@0.10.5: {} - /regenerator-runtime@0.11.1: - resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} + regenerator-runtime@0.11.1: {} - /regenerator-runtime@0.13.11: - resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + regenerator-runtime@0.13.11: {} - /regenerator-runtime@0.14.1: - resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + regenerator-runtime@0.14.1: {} - /regenerator-transform@0.15.2: - resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} + regenerator-transform@0.15.2: dependencies: '@babel/runtime': 7.24.7 - /regex-not@1.0.2: - resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} - engines: {node: '>=0.10.0'} + regex-not@1.0.2: dependencies: extend-shallow: 3.0.2 safe-regex: 1.1.0 - /regexp.prototype.flags@1.5.2: - resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} - engines: {node: '>= 0.4'} + regexp.prototype.flags@1.5.2: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-errors: 1.3.0 set-function-name: 2.0.2 - /regexpp@3.2.0: - resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} - engines: {node: '>=8'} + regexpp@3.2.0: {} - /regexpu-core@5.3.2: - resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} - engines: {node: '>=4'} + regexpu-core@5.3.2: dependencies: '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 @@ -44587,52 +51239,40 @@ packages: unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.1.0 - /registry-auth-token@4.2.2: - resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==} - engines: {node: '>=6.0.0'} + registry-auth-token@4.2.2: dependencies: rc: 1.2.8 - dev: false - /registry-url@5.1.0: - resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} - engines: {node: '>=8'} + registry-url@5.1.0: dependencies: rc: 1.2.8 - dev: false - /regjsparser@0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} - hasBin: true + regjsparser@0.9.1: dependencies: jsesc: 0.5.0 - /relateurl@0.2.7: - resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} - engines: {node: '>= 0.10'} + rehype-attr@3.0.3: + dependencies: + unified: 11.0.5 + unist-util-visit: 5.0.0 - /release-zalgo@1.0.0: - resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==} - engines: {node: '>=4'} + relateurl@0.2.7: {} + + release-zalgo@1.0.0: dependencies: es6-error: 4.1.1 - dev: true - /remark-external-links@8.0.0: - resolution: {integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==} + remark-external-links@8.0.0: dependencies: extend: 3.0.2 is-absolute-url: 3.0.3 mdast-util-definitions: 4.0.0 space-separated-tokens: 1.1.5 unist-util-visit: 2.0.3 - dev: true - /remark-footnotes@2.0.0: - resolution: {integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==} + remark-footnotes@2.0.0: {} - /remark-mdx@1.6.22: - resolution: {integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==} + remark-mdx@1.6.22: dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 @@ -44645,28 +51285,16 @@ packages: transitivePeerDependencies: - supports-color - /remark-parse@5.0.0: - resolution: {integrity: sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==} + remark-parse@11.0.0: dependencies: - collapse-white-space: 1.0.6 - is-alphabetical: 1.0.4 - is-decimal: 1.0.4 - is-whitespace-character: 1.0.4 - is-word-character: 1.0.4 - markdown-escapes: 1.0.4 - parse-entities: 1.2.2 - repeat-string: 1.6.1 - state-toggle: 1.0.3 - trim: 0.0.1 - trim-trailing-lines: 1.1.4 - unherit: 1.1.3 - unist-util-remove-position: 1.1.4 - vfile-location: 2.0.6 - xtend: 4.0.2 - dev: false + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.1 + micromark-util-types: 2.0.0 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color - /remark-parse@8.0.3: - resolution: {integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==} + remark-parse@8.0.3: dependencies: ccount: 1.1.0 collapse-white-space: 1.0.6 @@ -44685,43 +51313,40 @@ packages: vfile-location: 3.2.0 xtend: 4.0.2 - /remark-slug@6.1.0: - resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==} + remark-rehype@11.1.0: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + mdast-util-to-hast: 13.2.0 + unified: 11.0.5 + vfile: 6.0.1 + + remark-slug@6.1.0: dependencies: github-slugger: 1.5.0 mdast-util-to-string: 1.1.0 unist-util-visit: 2.0.3 - dev: true - /remark-squeeze-paragraphs@4.0.0: - resolution: {integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==} + remark-squeeze-paragraphs@4.0.0: dependencies: mdast-squeeze-paragraphs: 4.0.0 - /remarkable@1.7.4: - resolution: {integrity: sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==} - engines: {node: '>= 0.10.0'} - hasBin: true + remarkable@1.7.4: dependencies: argparse: 1.0.10 autolinker: 0.28.1 - dev: true - /remove-trailing-separator@1.1.0: - resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} + remove-trailing-separator@1.1.0: {} - /renderkid@2.0.7: - resolution: {integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==} + renderkid@2.0.7: dependencies: css-select: 4.3.0 dom-converter: 0.2.0 htmlparser2: 6.1.0 lodash: 4.17.21 strip-ansi: 3.0.1 - dev: false - /renderkid@3.0.0: - resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} + renderkid@3.0.0: dependencies: css-select: 4.3.0 dom-converter: 0.2.0 @@ -44729,260 +51354,157 @@ packages: lodash: 4.17.21 strip-ansi: 6.0.1 - /repeat-element@1.1.4: - resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} - engines: {node: '>=0.10.0'} + repeat-element@1.1.4: {} - /repeat-string@1.6.1: - resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} - engines: {node: '>=0.10'} + repeat-string@1.6.1: {} - /repeating@2.0.1: - resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==} - engines: {node: '>=0.10.0'} + repeating@2.0.1: dependencies: is-finite: 1.1.0 + optional: true - /replace-ext@1.0.0: - resolution: {integrity: sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA==} - engines: {node: '>= 0.10'} - dev: false - - /replace@1.2.2: - resolution: {integrity: sha512-C4EDifm22XZM2b2JOYe6Mhn+lBsLBAvLbK8drfUQLTfD1KYl/n3VaW/CDju0Ny4w3xTtegBpg8YNSpFJPUDSjA==} - engines: {node: '>= 6'} - hasBin: true + replace@1.2.2: dependencies: chalk: 2.4.2 minimatch: 3.0.5 yargs: 15.4.1 - dev: true - /request-progress@3.0.0: - resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==} + request-progress@3.0.0: dependencies: throttleit: 1.0.1 - dev: true - /require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} + require-directory@2.1.1: {} - /require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} + require-from-string@2.0.2: {} - /require-main-filename@2.0.0: - resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + require-main-filename@2.0.0: {} - /requireindex@1.2.0: - resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==} - engines: {node: '>=0.10.5'} - dev: true + requireindex@1.2.0: {} - /requires-port@1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + requires-port@1.0.0: {} - /reselect@4.1.8: - resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==} - dev: false + reselect@4.1.8: {} - /resize-observer-polyfill@1.5.1: - resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==} + resize-observer-polyfill@1.5.1: {} - /resolve-alpn@1.2.1: - resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} - dev: true + resolve-alpn@1.2.1: {} - /resolve-cwd@2.0.0: - resolution: {integrity: sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==} - engines: {node: '>=4'} + resolve-cwd@2.0.0: dependencies: resolve-from: 3.0.0 - /resolve-cwd@3.0.0: - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} - engines: {node: '>=8'} + resolve-cwd@3.0.0: dependencies: resolve-from: 5.0.0 - /resolve-from@3.0.0: - resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} - engines: {node: '>=4'} + resolve-from@3.0.0: {} - /resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} + resolve-from@4.0.0: {} - /resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} + resolve-from@5.0.0: {} - /resolve-pathname@3.0.0: - resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==} - dev: false + resolve-pathname@3.0.0: {} - /resolve-url@0.2.1: - resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} - deprecated: https://github.com/lydell/resolve-url#deprecated + resolve-url@0.2.1: {} - /resolve.exports@1.1.0: - resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} - engines: {node: '>=10'} - dev: true + resolve.exports@1.1.0: {} - /resolve.exports@2.0.2: - resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} - engines: {node: '>=10'} + resolve.exports@2.0.2: {} - /resolve@1.1.7: - resolution: {integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==} - dev: true + resolve@1.1.7: {} - /resolve@1.19.0: - resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==} + resolve@1.19.0: dependencies: is-core-module: 2.14.0 path-parse: 1.0.7 - dev: true - /resolve@1.22.8: - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} - hasBin: true + resolve@1.22.8: dependencies: is-core-module: 2.14.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /resolve@2.0.0-next.5: - resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} - hasBin: true + resolve@2.0.0-next.5: dependencies: is-core-module: 2.14.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - dev: true - /responselike@1.0.2: - resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} + responselike@1.0.2: dependencies: lowercase-keys: 1.0.1 - dev: false - /responselike@2.0.1: - resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} + responselike@2.0.1: dependencies: lowercase-keys: 2.0.0 - dev: true - /restore-cursor@3.1.0: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} - engines: {node: '>=8'} + restore-cursor@3.1.0: dependencies: onetime: 5.1.2 signal-exit: 3.0.7 - dev: true - /ret@0.1.15: - resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} - engines: {node: '>=0.12'} + ret@0.1.15: {} - /retry@0.12.0: - resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} - engines: {node: '>= 4'} + retry@0.12.0: {} - /retry@0.13.1: - resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} - engines: {node: '>= 4'} - dev: true + retry@0.13.1: {} - /reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + reusify@1.0.4: {} - /rfdc@1.4.1: - resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} - dev: true + rfdc@1.4.1: {} - /rimraf@2.6.3: - resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true + rimraf@2.6.3: dependencies: glob: 7.2.3 - /rimraf@2.7.1: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true + rimraf@2.7.1: dependencies: glob: 7.2.3 - /rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true + rimraf@3.0.2: dependencies: glob: 7.2.3 - /rollup-plugin-copy@3.5.0: - resolution: {integrity: sha512-wI8D5dvYovRMx/YYKtUNt3Yxaw4ORC9xo6Gt9t22kveWz1enG9QrhVlagzwrxSC455xD1dHMKhIJkbsQ7d48BA==} - engines: {node: '>=8.3'} + rollup-plugin-copy@3.5.0: dependencies: '@types/fs-extra': 8.1.5 colorette: 1.4.0 fs-extra: 8.1.0 globby: 10.0.1 is-plain-object: 3.0.1 - dev: true - /rollup-plugin-dts@6.1.1(rollup@4.18.1)(typescript@4.9.5): - resolution: {integrity: sha512-aSHRcJ6KG2IHIioYlvAOcEq6U99sVtqDDKVhnwt70rW6tsz3tv5OSjEiWcgzfsHdLyGXZ/3b/7b/+Za3Y6r1XA==} - engines: {node: '>=16'} - peerDependencies: - rollup: ^3.29.4 || ^4 - typescript: ^4.5 || ^5.0 + rollup-plugin-dts@6.1.1(rollup@4.18.1)(typescript@4.9.5): dependencies: magic-string: 0.30.10 rollup: 4.18.1 typescript: 4.9.5 optionalDependencies: '@babel/code-frame': 7.24.7 - dev: true - /rollup-plugin-generate-package-json@3.2.0(rollup@4.18.1): - resolution: {integrity: sha512-+Kq1kFVr+maxW/mZB+E+XuaieCXVZqjl2tNU9k3TtAMs3NOaeREa5sRHy67qKDmcnFtZZukIQ3dFCcnV+r0xyw==} - engines: {node: '>=8.3'} - peerDependencies: - rollup: '>=1.0.0' + rollup-plugin-dts@6.1.1(rollup@4.18.1)(typescript@5.1.6): + dependencies: + magic-string: 0.30.10 + rollup: 4.18.1 + typescript: 5.1.6 + optionalDependencies: + '@babel/code-frame': 7.24.7 + + rollup-plugin-generate-package-json@3.2.0(rollup@4.18.1): dependencies: read-pkg: 5.2.0 rollup: 4.18.1 write-pkg: 4.0.0 - dev: true - /rollup-plugin-peer-deps-external@2.2.4(rollup@2.79.1): - resolution: {integrity: sha512-AWdukIM1+k5JDdAqV/Cxd+nejvno2FVLVeZ74NKggm3Q5s9cbbcOgUPGdbxPi4BXu7xGaZ8HG12F+thImYu/0g==} - peerDependencies: - rollup: '*' + rollup-plugin-peer-deps-external@2.2.4(rollup@2.79.1): dependencies: rollup: 2.79.1 - dev: true - /rollup-plugin-polyfill-node@0.13.0(rollup@4.18.1): - resolution: {integrity: sha512-FYEvpCaD5jGtyBuBFcQImEGmTxDTPbiHjJdrYIp+mFIwgXiXabxvKUK7ZT9P31ozu2Tqm9llYQMRWsfvTMTAOw==} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 + rollup-plugin-polyfill-node@0.13.0(rollup@4.18.1): dependencies: '@rollup/plugin-inject': 5.0.5(rollup@4.18.1) rollup: 4.18.1 - dev: true - /rollup-plugin-postcss@4.0.2(postcss@8.4.39): - resolution: {integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==} - engines: {node: '>=10'} - peerDependencies: - postcss: 8.x + rollup-plugin-postcss@4.0.2(postcss@8.4.39)(ts-node@8.10.2(typescript@5.1.6)): dependencies: chalk: 4.1.2 concat-with-sourcemaps: 1.1.0 @@ -44991,7 +51513,7 @@ packages: p-queue: 6.6.2 pify: 5.0.0 postcss: 8.4.39 - postcss-load-config: 3.1.4(postcss@8.4.39) + postcss-load-config: 3.1.4(postcss@8.4.39)(ts-node@8.10.2(typescript@5.1.6)) postcss-modules: 4.3.1(postcss@8.4.39) promise.series: 0.2.0 resolve: 1.22.8 @@ -45000,19 +51522,12 @@ packages: style-inject: 0.3.0 transitivePeerDependencies: - ts-node - dev: true - /rollup-plugin-scss@4.0.0: - resolution: {integrity: sha512-wxasNXDYC2m+fDxCMgK00WebVWYmeFvShyNABmjvSJZ6D1/SepwqFeaMFMQromveI79gfvb64yJjiZZxSZxEIA==} + rollup-plugin-scss@4.0.0: dependencies: rollup-pluginutils: 2.8.2 - dev: true - /rollup-plugin-styles@4.0.0(rollup@4.18.1): - resolution: {integrity: sha512-A2K2sao84OsTmDxXG83JTCdXWrmgvQkkI38XDat46rdtpGMRm9tSYqeCdlwwGDJF4kKIafhV1mUidqu8MxUGig==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - peerDependencies: - rollup: ^2.63.0 + rollup-plugin-styles@4.0.0(rollup@4.18.1): dependencies: '@rollup/pluginutils': 4.2.1 '@types/cssnano': 5.1.0(postcss@8.4.39) @@ -45033,19 +51548,12 @@ packages: rollup: 4.18.1 source-map-js: 1.2.0 tslib: 2.6.3 - dev: true - /rollup-plugin-svg@2.0.0: - resolution: {integrity: sha512-DmE7dSQHo1SC5L2uH2qul3Mjyd5oV6U1aVVkyvTLX/mUsRink7f1b1zaIm+32GEBA6EHu8H/JJi3DdWqM53ySQ==} + rollup-plugin-svg@2.0.0: dependencies: rollup-pluginutils: 1.5.2 - dev: true - /rollup-plugin-typescript2@0.34.1(rollup@2.79.1)(typescript@5.1.6): - resolution: {integrity: sha512-P4cHLtGikESmqi1CA+tdMDUv8WbQV48mzPYt77TSTOPJpERyZ9TXdDgjSDix8Fkqce6soYz3+fa4lrC93IEkcw==} - peerDependencies: - rollup: '>=1.26.3' - typescript: '>=2.4.0' + rollup-plugin-typescript2@0.34.1(rollup@2.79.1)(typescript@5.1.6): dependencies: '@rollup/pluginutils': 4.2.1 find-cache-dir: 3.3.2 @@ -45054,33 +51562,21 @@ packages: semver: 7.6.2 tslib: 2.6.3 typescript: 5.1.6 - dev: true - /rollup-pluginutils@1.5.2: - resolution: {integrity: sha512-SjdWWWO/CUoMpDy8RUbZ/pSpG68YHmhk5ROKNIoi2En9bJ8bTt3IhYi254RWiTclQmL7Awmrq+rZFOhZkJAHmQ==} + rollup-pluginutils@1.5.2: dependencies: estree-walker: 0.2.1 minimatch: 3.1.2 - dev: true - /rollup-pluginutils@2.8.2: - resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} + rollup-pluginutils@2.8.2: dependencies: estree-walker: 0.6.1 - dev: true - /rollup@2.79.1: - resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} - engines: {node: '>=10.0.0'} - hasBin: true + rollup@2.79.1: optionalDependencies: fsevents: 2.3.3 - dev: true - /rollup@4.18.1: - resolution: {integrity: sha512-Elx2UT8lzxxOXMpy5HWQGZqkrQOtrVDDa/bm9l10+U4rQnVzbL/LgZ4NOM1MPIDyHk69W4InuYDF5dzRh4Kw1A==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true + rollup@4.18.1: dependencies: '@types/estree': 1.0.5 optionalDependencies: @@ -45101,72 +51597,47 @@ packages: '@rollup/rollup-win32-ia32-msvc': 4.18.1 '@rollup/rollup-win32-x64-msvc': 4.18.1 fsevents: 2.3.3 - dev: true - /rsvp@4.8.5: - resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==} - engines: {node: 6.* || >= 7.*} + rsvp@4.8.5: {} - /run-async@2.4.1: - resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} - engines: {node: '>=0.12.0'} - dev: true + run-async@2.4.1: {} - /run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 - /rxjs@7.8.1: - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + rxjs@7.8.1: dependencies: tslib: 2.6.3 - dev: true - /safe-array-concat@1.1.2: - resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} - engines: {node: '>=0.4'} + safe-array-concat@1.1.2: dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 has-symbols: 1.0.3 isarray: 2.0.5 - /safe-buffer@5.1.1: - resolution: {integrity: sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==} - dev: false + safe-buffer@5.1.1: {} - /safe-buffer@5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + safe-buffer@5.1.2: {} - /safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + safe-buffer@5.2.1: {} - /safe-identifier@0.4.2: - resolution: {integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==} - dev: true + safe-identifier@0.4.2: {} - /safe-regex-test@1.0.3: - resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} - engines: {node: '>= 0.4'} + safe-regex-test@1.0.3: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-regex: 1.1.4 - /safe-regex@1.1.0: - resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} + safe-regex@1.1.0: dependencies: ret: 0.1.15 - /safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + safer-buffer@2.1.2: {} - /sane@4.1.0: - resolution: {integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==} - engines: {node: 6.* || 8.* || >= 10.*} - deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added - hasBin: true + sane@4.1.0: dependencies: '@cnakazawa/watch': 1.0.4 anymatch: 2.0.0(supports-color@6.1.0) @@ -45180,177 +51651,105 @@ packages: transitivePeerDependencies: - supports-color - /sass-loader@12.6.0(sass@1.77.6)(webpack@5.84.1): - resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} - engines: {node: '>= 12.13.0'} - peerDependencies: - fibers: '>= 3.1.0' - node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 - sass: ^1.3.0 - sass-embedded: '*' - webpack: 5.84.1 - peerDependenciesMeta: - fibers: - optional: true - node-sass: - optional: true - sass: - optional: true - sass-embedded: - optional: true + sass-loader@12.6.0(sass@1.77.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: klona: 2.0.6 neo-async: 2.6.2 + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: sass: 1.77.6 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true - /sass@1.77.6: - resolution: {integrity: sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==} - engines: {node: '>=14.0.0'} - hasBin: true + sass@1.77.6: dependencies: chokidar: 3.6.0 immutable: 4.3.6 source-map-js: 1.2.0 - dev: true - /sax@1.2.4: - resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} - dev: true + sax@1.2.4: {} - /sax@1.4.1: - resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} - requiresBuild: true - dev: true + sax@1.4.1: optional: true - /saxes@5.0.1: - resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} - engines: {node: '>=10'} + saxes@5.0.1: dependencies: xmlchars: 2.2.0 - dev: true - /saxes@6.0.0: - resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} - engines: {node: '>=v12.22.7'} + saxes@6.0.0: dependencies: xmlchars: 2.2.0 - dev: true - - /scheduler@0.19.1: - resolution: {integrity: sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==} - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - dev: false - /scheduler@0.23.2: - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + scheduler@0.23.2: dependencies: loose-envify: 1.4.0 - /schema-utils@0.4.7: - resolution: {integrity: sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==} - engines: {node: '>= 4'} + schema-utils@0.4.7: dependencies: ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - dev: true - /schema-utils@1.0.0: - resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==} - engines: {node: '>= 4'} + schema-utils@1.0.0: dependencies: ajv: 6.12.6 ajv-errors: 1.0.1(ajv@6.12.6) ajv-keywords: 3.5.2(ajv@6.12.6) - /schema-utils@2.7.0: - resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} - engines: {node: '>= 8.9.0'} + schema-utils@2.7.0: dependencies: '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - /schema-utils@2.7.1: - resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} - engines: {node: '>= 8.9.0'} + schema-utils@2.7.1: dependencies: '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - /schema-utils@3.3.0: - resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} - engines: {node: '>= 10.13.0'} + schema-utils@3.3.0: dependencies: '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - /schema-utils@4.2.0: - resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} - engines: {node: '>= 12.13.0'} + schema-utils@4.2.0: dependencies: '@types/json-schema': 7.0.15 ajv: 8.16.0 ajv-formats: 2.1.1(ajv@8.16.0) ajv-keywords: 5.1.0(ajv@8.16.0) - /scroll@3.0.1: - resolution: {integrity: sha512-pz7y517OVls1maEzlirKO5nPYle9AXsFzTMNJrRGmT951mzpIBy7sNHOg5o/0MQd/NqliCiWnAi0kZneMPFLcg==} - dev: false + scroll@3.0.1: {} - /scrollparent@2.1.0: - resolution: {integrity: sha512-bnnvJL28/Rtz/kz2+4wpBjHzWoEzXhVg/TE8BeVGJHUqE8THNIRnDxDWMktwM+qahvlRdvlLdsQfYe+cuqfZeA==} - dev: false + scrollparent@2.1.0: {} - /secure-compare@3.0.1: - resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==} - dev: true + secure-compare@3.0.1: {} - /select-hose@2.0.0: - resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} + select-hose@2.0.0: {} - /selfsigned@1.10.14: - resolution: {integrity: sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==} + selfsigned@1.10.14: dependencies: node-forge: 0.10.0 - /selfsigned@2.4.1: - resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} - engines: {node: '>=10'} + selfsigned@2.4.1: dependencies: '@types/node-forge': 1.3.11 node-forge: 1.3.1 - dev: true - /semantic-ui-css@2.5.0: - resolution: {integrity: sha512-jIWn3WXXE2uSaWCcB+gVJVRG3masIKtTMNEP2X8Aw909H2rHpXGneYOxzO3hT8TpyvB5/dEEo9mBFCitGwoj1A==} + semantic-ui-css@2.5.0: dependencies: jquery: 3.7.1 - dev: true - /semantic-ui-less@2.5.0: - resolution: {integrity: sha512-Nlp8iR0otCQB74Yqob2Dxpsm5H9YAp3NvQ3sWDediwFjrd/l3Leu9md2O82UU5n5hOSqu95xnTok55eIAhlTjg==} + semantic-ui-less@2.5.0: dependencies: jquery: 3.7.1 - dev: true - /semantic-ui-react@2.1.5(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-nIqmmUNpFHfovEb+RI2w3E2/maZQutd8UIWyRjf1SLse+XF51hI559xbz/sLN3O6RpLjr/echLOOXwKCirPy3Q==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + semantic-ui-react@2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.7 - '@fluentui/react-component-event-listener': 0.63.1(react-dom@18.3.1)(react@18.3.1) - '@fluentui/react-component-ref': 0.63.1(react-dom@18.3.1)(react@18.3.1) + '@fluentui/react-component-event-listener': 0.63.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@fluentui/react-component-ref': 0.63.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@popperjs/core': 2.11.8 - '@semantic-ui-react/event-stack': 3.1.3(react-dom@18.3.1)(react@18.3.1) + '@semantic-ui-react/event-stack': 3.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) clsx: 1.2.1 keyboard-key: 1.1.0 lodash: 4.17.21 @@ -45359,69 +51758,38 @@ packages: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - react-popper: 2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1)(react@18.3.1) + react-popper: 2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) shallowequal: 1.1.0 - dev: false - /semver-diff@3.1.1: - resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==} - engines: {node: '>=8'} + semver-diff@3.1.1: dependencies: semver: 6.3.1 - dev: false - /semver-regex@4.0.5: - resolution: {integrity: sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==} - engines: {node: '>=12'} - dev: true + semver-regex@4.0.5: {} - /semver-truncate@3.0.0: - resolution: {integrity: sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==} - engines: {node: '>=12'} + semver-truncate@3.0.0: dependencies: semver: 7.6.2 - dev: true - /semver@5.7.2: - resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} - hasBin: true + semver@5.7.2: {} - /semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true + semver@6.3.1: {} - /semver@7.3.4: - resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} - engines: {node: '>=10'} - hasBin: true + semver@7.3.4: dependencies: lru-cache: 6.0.0 - dev: true - /semver@7.5.3: - resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} - engines: {node: '>=10'} - hasBin: true + semver@7.5.3: dependencies: lru-cache: 6.0.0 - dev: true - /semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} - engines: {node: '>=10'} - hasBin: true + semver@7.5.4: dependencies: lru-cache: 6.0.0 - dev: true - /semver@7.6.2: - resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} - engines: {node: '>=10'} - hasBin: true + semver@7.6.2: {} - /send@0.18.0(supports-color@6.1.0): - resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} - engines: {node: '>= 0.8.0'} + send@0.18.0(supports-color@6.1.0): dependencies: debug: 2.6.9(supports-color@6.1.0) depd: 2.0.0 @@ -45439,30 +51807,23 @@ packages: transitivePeerDependencies: - supports-color - /serialize-javascript@5.0.1: - resolution: {integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==} + serialize-javascript@5.0.1: dependencies: randombytes: 2.1.0 - /serialize-javascript@6.0.2: - resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + serialize-javascript@6.0.2: dependencies: randombytes: 2.1.0 - /serve-favicon@2.5.0: - resolution: {integrity: sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==} - engines: {node: '>= 0.8.0'} + serve-favicon@2.5.0: dependencies: etag: 1.8.1 fresh: 0.5.2 ms: 2.1.1 parseurl: 1.3.3 safe-buffer: 5.1.1 - dev: false - /serve-index@1.9.1(supports-color@6.1.0): - resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} - engines: {node: '>= 0.8.0'} + serve-index@1.9.1(supports-color@6.1.0): dependencies: accepts: 1.3.8 batch: 0.6.1 @@ -45474,9 +51835,7 @@ packages: transitivePeerDependencies: - supports-color - /serve-static@1.15.0(supports-color@6.1.0): - resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} - engines: {node: '>= 0.8.0'} + serve-static@1.15.0(supports-color@6.1.0): dependencies: encodeurl: 1.0.2 escape-html: 1.0.3 @@ -45485,16 +51844,11 @@ packages: transitivePeerDependencies: - supports-color - /set-blocking@2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + set-blocking@2.0.0: {} - /set-cookie-parser@2.6.0: - resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==} - dev: true + set-cookie-parser@2.6.0: {} - /set-function-length@1.2.2: - resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} - engines: {node: '>= 0.4'} + set-function-length@1.2.2: dependencies: define-data-property: 1.1.4 es-errors: 1.3.0 @@ -45503,184 +51857,114 @@ packages: gopd: 1.0.1 has-property-descriptors: 1.0.2 - /set-function-name@2.0.2: - resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} - engines: {node: '>= 0.4'} + set-function-name@2.0.2: dependencies: define-data-property: 1.1.4 es-errors: 1.3.0 functions-have-names: 1.2.3 has-property-descriptors: 1.0.2 - /set-getter@0.1.1: - resolution: {integrity: sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==} - engines: {node: '>=0.10.0'} + set-getter@0.1.1: dependencies: to-object-path: 0.3.0 - dev: true - /set-value@2.0.1: - resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} - engines: {node: '>=0.10.0'} + set-value@2.0.1: dependencies: extend-shallow: 2.0.1 is-extendable: 0.1.1 is-plain-object: 2.0.4 split-string: 3.1.0 - /setprototypeof@1.1.0: - resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} + setprototypeof@1.1.0: {} - /setprototypeof@1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + setprototypeof@1.2.0: {} - /shallow-clone@0.1.2: - resolution: {integrity: sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==} - engines: {node: '>=0.10.0'} + shallow-clone@0.1.2: dependencies: is-extendable: 0.1.1 kind-of: 2.0.1 lazy-cache: 0.2.7 mixin-object: 2.0.1 - dev: true - /shallow-clone@3.0.1: - resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} - engines: {node: '>=8'} + shallow-clone@3.0.1: dependencies: kind-of: 6.0.3 - /shallowequal@1.1.0: - resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} + shallowequal@1.1.0: {} - /shebang-command@1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} - engines: {node: '>=0.10.0'} + shebang-command@1.2.0: dependencies: shebang-regex: 1.0.0 - /shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} + shebang-command@2.0.0: dependencies: shebang-regex: 3.0.0 - /shebang-regex@1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} - engines: {node: '>=0.10.0'} + shebang-regex@1.0.0: {} - /shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} + shebang-regex@3.0.0: {} - /shell-quote@1.8.1: - resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} - dev: true + shell-quote@1.8.1: {} - /shelljs@0.8.5: - resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} - engines: {node: '>=4'} - hasBin: true + shelljs@0.8.5: dependencies: glob: 7.2.3 interpret: 1.4.0 rechoir: 0.6.2 - dev: false - /shellwords@0.1.1: - resolution: {integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==} - requiresBuild: true - dev: true + shellwords@0.1.1: optional: true - /side-channel@1.0.6: - resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} - engines: {node: '>= 0.4'} + side-channel@1.0.6: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 get-intrinsic: 1.2.4 object-inspect: 1.13.2 - /signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + signal-exit@3.0.7: {} - /signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} + signal-exit@4.1.0: {} - /simple-git@1.132.0: - resolution: {integrity: sha512-xauHm1YqCTom1sC9eOjfq3/9RKiUA9iPnxBbrY2DdL8l4ADMu0jjM5l5lphQP5YWNqAL2aXC/OeuQ76vHtW5fg==} + simple-git@1.132.0: dependencies: - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: true - /sirv@2.0.4: - resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} - engines: {node: '>= 10'} + sirv@2.0.4: dependencies: '@polka/url': 1.0.0-next.25 mrmime: 2.0.0 totalist: 3.0.1 - /sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - - /slash@1.0.0: - resolution: {integrity: sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==} - engines: {node: '>=0.10.0'} - dev: true + sisteransi@1.0.5: {} - /slash@2.0.0: - resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==} - engines: {node: '>=6'} + slash@2.0.0: {} - /slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} + slash@3.0.0: {} - /slash@4.0.0: - resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} - engines: {node: '>=12'} - dev: true + slash@4.0.0: {} - /slash@5.1.0: - resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} - engines: {node: '>=14.16'} - dev: true + slash@5.1.0: {} - /slashes@2.0.2: - resolution: {integrity: sha512-68p+QkFAQQRetIUzNXAdktNJr8AYLxJukjBegYQz8F7VATsBJG621UYtY/vS2j9jerxdJ1k6Tc25K4DXEw1d5w==} - dev: false + slashes@2.0.2: {} - /slice-ansi@3.0.0: - resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} - engines: {node: '>=8'} + slice-ansi@3.0.0: dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - dev: true - /slice-ansi@4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: '>=10'} + slice-ansi@4.0.0: dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - /smart-buffer@4.2.0: - resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} - engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} - dev: true + smart-buffer@4.2.0: {} - /smartwrap@2.0.2: - resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} - engines: {node: '>=6'} - hasBin: true + smartwrap@2.0.2: dependencies: array.prototype.flat: 1.3.2 breakword: 1.0.6 @@ -45688,32 +51972,23 @@ packages: strip-ansi: 6.0.1 wcwidth: 1.0.1 yargs: 15.4.1 - dev: true - /snake-case@3.0.4: - resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} + snake-case@3.0.4: dependencies: dot-case: 3.0.4 tslib: 2.6.3 - dev: true - /snapdragon-node@2.1.1: - resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} - engines: {node: '>=0.10.0'} + snapdragon-node@2.1.1: dependencies: define-property: 1.0.0 isobject: 3.0.1 snapdragon-util: 3.0.1 - /snapdragon-util@3.0.1: - resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} - engines: {node: '>=0.10.0'} + snapdragon-util@3.0.1: dependencies: kind-of: 3.2.2 - /snapdragon@0.8.2(supports-color@6.1.0): - resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} - engines: {node: '>=0.10.0'} + snapdragon@0.8.2(supports-color@6.1.0): dependencies: base: 0.11.2 debug: 2.6.9(supports-color@6.1.0) @@ -45726,9 +52001,18 @@ packages: transitivePeerDependencies: - supports-color - /sockjs-client@1.6.1(supports-color@6.1.0): - resolution: {integrity: sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==} - engines: {node: '>=12'} + sockjs-client@1.6.1: + dependencies: + debug: 3.2.7(supports-color@8.1.1) + eventsource: 2.0.2 + faye-websocket: 0.11.4 + inherits: 2.0.4 + url-parse: 1.5.10 + transitivePeerDependencies: + - supports-color + optional: true + + sockjs-client@1.6.1(supports-color@6.1.0): dependencies: debug: 3.2.7(supports-color@6.1.0) eventsource: 2.0.2 @@ -45738,90 +52022,58 @@ packages: transitivePeerDependencies: - supports-color - /sockjs@0.3.24: - resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} + sockjs@0.3.24: dependencies: faye-websocket: 0.11.4 uuid: 8.3.2 websocket-driver: 0.7.4 - /socks-proxy-agent@7.0.0: - resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} - engines: {node: '>= 10'} + socks-proxy-agent@7.0.0: dependencies: agent-base: 6.0.2 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) socks: 2.8.3 transitivePeerDependencies: - supports-color - dev: true - /socks@2.8.3: - resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} - engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} + socks@2.8.3: dependencies: ip-address: 9.0.5 smart-buffer: 4.2.0 - dev: true - /sort-keys-length@1.0.1: - resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==} - engines: {node: '>=0.10.0'} + sort-keys-length@1.0.1: dependencies: sort-keys: 1.1.2 - dev: true - /sort-keys@1.1.2: - resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==} - engines: {node: '>=0.10.0'} + sort-keys@1.1.2: dependencies: is-plain-obj: 1.1.0 - dev: true - /sort-keys@2.0.0: - resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} - engines: {node: '>=4'} + sort-keys@2.0.0: dependencies: is-plain-obj: 1.1.0 - dev: true - /sort-keys@4.2.0: - resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==} - engines: {node: '>=8'} + sort-keys@4.2.0: dependencies: is-plain-obj: 2.1.0 - dev: true - /source-list-map@2.0.1: - resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==} + source-list-map@2.0.1: {} - /source-map-js@1.2.0: - resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} - engines: {node: '>=0.10.0'} + source-map-js@1.2.0: {} - /source-map-loader@0.2.4: - resolution: {integrity: sha512-OU6UJUty+i2JDpTItnizPrlpOIBLmQbWMuBg9q5bVtnHACqw1tn9nNwqJLbv0/00JjnJb/Ee5g5WS5vrRv7zIQ==} - engines: {node: '>= 6'} + source-map-loader@0.2.4: dependencies: async: 2.6.4 loader-utils: 1.4.2 - dev: true - /source-map-loader@3.0.2(webpack@5.84.1): - resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: 5.84.1 + source-map-loader@3.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: abab: 2.0.6 iconv-lite: 0.6.3 source-map-js: 1.2.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /source-map-resolve@0.5.3: - resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} - deprecated: See https://github.com/lydell/source-map-resolve#deprecated + source-map-resolve@0.5.3: dependencies: atob: 2.1.2 decode-uri-component: 0.2.2 @@ -45829,58 +52081,36 @@ packages: source-map-url: 0.4.1 urix: 0.1.0 - /source-map-support@0.4.18: - resolution: {integrity: sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==} - dependencies: - source-map: 0.5.7 - dev: true - - /source-map-support@0.5.13: - resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + source-map-support@0.5.13: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - /source-map-support@0.5.19: - resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} + source-map-support@0.5.19: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - dev: true - /source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + source-map-support@0.5.21: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - /source-map-url@0.4.1: - resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} - deprecated: See https://github.com/lydell/source-map-url#deprecated + source-map-url@0.4.1: {} - /source-map@0.5.7: - resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} - engines: {node: '>=0.10.0'} + source-map@0.5.7: {} - /source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} + source-map@0.6.1: {} - /source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} + source-map@0.7.4: {} - /sourcemap-codec@1.4.8: - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} - deprecated: Please use @jridgewell/sourcemap-codec instead - dev: true + sourcemap-codec@1.4.8: {} - /space-separated-tokens@1.1.5: - resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} + space-separated-tokens@1.1.5: {} - /spawn-wrap@2.0.0: - resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==} - engines: {node: '>=8'} + space-separated-tokens@2.0.2: {} + + spawn-wrap@2.0.0: dependencies: foreground-child: 2.0.0 is-windows: 1.0.2 @@ -45888,35 +52118,38 @@ packages: rimraf: 3.0.2 signal-exit: 3.0.7 which: 2.0.2 - dev: true - /spawndamnit@2.0.0: - resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} + spawndamnit@2.0.0: dependencies: cross-spawn: 5.1.0 signal-exit: 3.0.7 - dev: true - /spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + spdx-correct@3.2.0: dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.18 - /spdx-exceptions@2.5.0: - resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + spdx-exceptions@2.5.0: {} - /spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + spdx-expression-parse@3.0.1: dependencies: spdx-exceptions: 2.5.0 spdx-license-ids: 3.0.18 - /spdx-license-ids@3.0.18: - resolution: {integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==} + spdx-license-ids@3.0.18: {} - /spdy-transport@3.0.0(supports-color@6.1.0): - resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} + spdy-transport@3.0.0: + dependencies: + debug: 4.3.5(supports-color@8.1.1) + detect-node: 2.1.0 + hpack.js: 2.1.6 + obuf: 1.1.2 + readable-stream: 3.6.2 + wbuf: 1.7.3 + transitivePeerDependencies: + - supports-color + + spdy-transport@3.0.0(supports-color@6.1.0): dependencies: debug: 4.3.5(supports-color@6.1.0) detect-node: 2.1.0 @@ -45927,9 +52160,17 @@ packages: transitivePeerDependencies: - supports-color - /spdy@4.0.2(supports-color@6.1.0): - resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} - engines: {node: '>=6.0.0'} + spdy@4.0.2: + dependencies: + debug: 4.3.5(supports-color@8.1.1) + handle-thing: 2.0.1 + http-deceiver: 1.2.7 + select-hose: 2.0.0 + spdy-transport: 3.0.0 + transitivePeerDependencies: + - supports-color + + spdy@4.0.2(supports-color@6.1.0): dependencies: debug: 4.3.5(supports-color@6.1.0) handle-thing: 2.0.1 @@ -45939,40 +52180,25 @@ packages: transitivePeerDependencies: - supports-color - /split-on-first@1.1.0: - resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} - engines: {node: '>=6'} - dev: true + split-on-first@1.1.0: {} - /split-string@3.1.0: - resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} - engines: {node: '>=0.10.0'} + split-string@3.1.0: dependencies: extend-shallow: 3.0.2 - /split2@3.2.2: - resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} + split2@3.2.2: dependencies: readable-stream: 3.6.2 - dev: true - /split@1.0.1: - resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} + split@1.0.1: dependencies: through: 2.3.8 - dev: true - /sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + sprintf-js@1.0.3: {} - /sprintf-js@1.1.3: - resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} - dev: true + sprintf-js@1.1.3: {} - /sshpk@1.18.0: - resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} - engines: {node: '>=0.10.0'} - hasBin: true + sshpk@1.18.0: dependencies: asn1: 0.2.6 assert-plus: 1.0.0 @@ -45983,71 +52209,45 @@ packages: jsbn: 0.1.1 safer-buffer: 2.1.2 tweetnacl: 0.14.5 - dev: true - /ssri@8.0.1: - resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} - engines: {node: '>= 8'} + ssri@8.0.1: dependencies: minipass: 3.3.6 - dev: false - /ssri@9.0.1: - resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + ssri@9.0.1: dependencies: minipass: 3.3.6 - dev: true - /stable@0.1.8: - resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} - deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' + stable@0.1.8: {} - /stack-utils@2.0.6: - resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} - engines: {node: '>=10'} + stack-utils@2.0.6: dependencies: escape-string-regexp: 2.0.0 - /stackframe@1.3.4: - resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} + stackframe@1.3.4: {} - /state-local@1.0.7: - resolution: {integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==} - dev: false + state-local@1.0.7: {} - /state-toggle@1.0.3: - resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==} + state-toggle@1.0.3: {} - /static-extend@0.1.2: - resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} - engines: {node: '>=0.10.0'} + static-extend@0.1.2: dependencies: define-property: 0.2.5 object-copy: 0.1.0 - /statuses@1.5.0: - resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} - engines: {node: '>= 0.6'} + statuses@1.5.0: {} - /statuses@2.0.1: - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: '>= 0.8'} + statuses@2.0.1: {} - /stop-iteration-iterator@1.0.0: - resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} - engines: {node: '>= 0.4'} + stop-iteration-iterator@1.0.0: dependencies: internal-slot: 1.0.7 - /store2@2.14.3: - resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==} + store2@2.14.3: {} - /storybook@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): - resolution: {integrity: sha512-+Ychak5QtcTx8EuQzu7eilw+65sk6q1LdI68vb1VOIYD29PEEC7MsZGKPi6AKYNbdhGp0cGu0j3Bf1TxGOBFEA==} - hasBin: true + storybook@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)): dependencies: - '@storybook/cli': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/cli': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) transitivePeerDependencies: - '@storybook/mdx2-csf' - '@swc/core' @@ -46063,93 +52263,64 @@ packages: - utf-8-validate - vue-template-compiler - webpack-cli - dev: false - /storybook@7.6.9: - resolution: {integrity: sha512-zsPLvhbEfheqt9bN7X38vgrhLcxSyn7HdWbjZC+02hgNQ0U1jZ4VfrzNbJSqFxzxU+B5gdDZSFMui7OUx9A9Ew==} - hasBin: true + storybook@7.6.9(encoding@0.1.13): dependencies: - '@storybook/cli': 7.6.9 + '@storybook/cli': 7.6.9(encoding@0.1.13) transitivePeerDependencies: - bufferutil - encoding - supports-color - utf-8-validate - dev: true - /stream-shift@1.0.3: - resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==} - dev: true + stream-shift@1.0.3: {} - /stream-transform@2.1.3: - resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} + stream-transform@2.1.3: dependencies: mixme: 0.5.10 - dev: true - /streamroller@1.0.6: - resolution: {integrity: sha512-3QC47Mhv3/aZNFpDDVO44qQb9gwB9QggMEE0sQmkTAwBVYdBRWISdsywlkfm5II1Q5y/pmrHflti/IgmIzdDBg==} - engines: {node: '>=6.0'} - deprecated: 1.x is no longer supported. Please upgrade to 3.x or higher. + streamroller@1.0.6: dependencies: async: 2.6.4 date-format: 2.1.0 - debug: 3.2.7(supports-color@6.1.0) + debug: 3.2.7(supports-color@8.1.1) fs-extra: 7.0.1 lodash: 4.17.21 transitivePeerDependencies: - supports-color - dev: true - /strict-event-emitter@0.2.8: - resolution: {integrity: sha512-KDf/ujU8Zud3YaLtMCcTI4xkZlZVIYxTLr+XIULexP+77EEVWixeXroLUXQXiVtH4XH2W7jr/3PT1v3zBuvc3A==} + strict-event-emitter@0.2.8: dependencies: events: 3.3.0 - dev: true - /strict-uri-encode@2.0.0: - resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} - engines: {node: '>=4'} - dev: true + strict-uri-encode@2.0.0: {} - /string-hash@1.1.3: - resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} - dev: true + string-hash@1.1.3: {} - /string-length@4.0.2: - resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} - engines: {node: '>=10'} + string-length@4.0.2: dependencies: char-regex: 1.0.2 strip-ansi: 6.0.1 - /string-width@3.1.0: - resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==} - engines: {node: '>=6'} + string-width@3.1.0: dependencies: emoji-regex: 7.0.3 is-fullwidth-code-point: 2.0.0 strip-ansi: 5.2.0 - /string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} + string-width@4.2.3: dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - /string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} + string-width@5.1.2: dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 strip-ansi: 7.1.0 - /string.prototype.matchall@4.0.11: - resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} - engines: {node: '>= 0.4'} + string.prototype.matchall@4.0.11: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -46164,261 +52335,167 @@ packages: set-function-name: 2.0.2 side-channel: 1.0.6 - /string.prototype.padend@3.1.6: - resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==} - engines: {node: '>= 0.4'} + string.prototype.padend@3.1.6: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 - dev: false - /string.prototype.padstart@3.1.6: - resolution: {integrity: sha512-1y15lz7otgfRTAVK5qbp3eHIga+w8j7+jIH+7HpUrOfnLVl6n0hbspi4EXf4tR+PNOpBjPstltemkx0SvViOCg==} - engines: {node: '>= 0.4'} + string.prototype.padstart@3.1.6: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 - dev: false - /string.prototype.trim@1.2.9: - resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} - engines: {node: '>= 0.4'} + string.prototype.trim@1.2.9: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 - /string.prototype.trimend@1.0.8: - resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} + string.prototype.trimend@1.0.8: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - /string.prototype.trimstart@1.0.8: - resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} - engines: {node: '>= 0.4'} + string.prototype.trimstart@1.0.8: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - /string_decoder@0.10.31: - resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} - dev: false + string_decoder@0.10.31: {} - /string_decoder@1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + string_decoder@1.1.1: dependencies: safe-buffer: 5.1.2 - /string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + string_decoder@1.3.0: dependencies: safe-buffer: 5.2.1 - /strip-ansi@3.0.1: - resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} - engines: {node: '>=0.10.0'} + stringify-entities@4.0.4: + dependencies: + character-entities-html4: 2.1.0 + character-entities-legacy: 3.0.0 + + strip-ansi@3.0.1: dependencies: ansi-regex: 2.1.1 - /strip-ansi@4.0.0: - resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==} - engines: {node: '>=4'} + strip-ansi@4.0.0: dependencies: ansi-regex: 3.0.1 - dev: true - /strip-ansi@5.2.0: - resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} - engines: {node: '>=6'} + strip-ansi@5.2.0: dependencies: ansi-regex: 4.1.1 - /strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} + strip-ansi@6.0.1: dependencies: ansi-regex: 5.0.1 - /strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} + strip-ansi@7.1.0: dependencies: ansi-regex: 6.0.1 - /strip-bom@2.0.0: - resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} - engines: {node: '>=0.10.0'} - requiresBuild: true + strip-bom@2.0.0: dependencies: is-utf8: 0.2.1 - dev: false optional: true - /strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} - dev: true + strip-bom@3.0.0: {} - /strip-bom@4.0.0: - resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} - engines: {node: '>=8'} + strip-bom@4.0.0: {} - /strip-color@0.1.0: - resolution: {integrity: sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==} - engines: {node: '>=0.10.0'} - dev: true + strip-color@0.1.0: {} - /strip-eof@1.0.0: - resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} - engines: {node: '>=0.10.0'} + strip-eof@1.0.0: {} - /strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} + strip-final-newline@2.0.0: {} - /strip-final-newline@3.0.0: - resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} - engines: {node: '>=12'} - dev: true + strip-final-newline@3.0.0: {} - /strip-indent@1.0.1: - resolution: {integrity: sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==} - engines: {node: '>=0.10.0'} - hasBin: true - requiresBuild: true + strip-indent@1.0.1: dependencies: get-stdin: 4.0.1 - dev: false optional: true - /strip-indent@3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} + strip-indent@3.0.0: dependencies: min-indent: 1.0.1 - /strip-indent@4.0.0: - resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==} - engines: {node: '>=12'} + strip-indent@4.0.0: dependencies: min-indent: 1.0.1 - dev: true - /strip-json-comments@1.0.4: - resolution: {integrity: sha512-AOPG8EBc5wAikaG1/7uFCNFJwnKOuQwFTpYBdTW6OvWHeZBQBrAA/amefHGrEiOnCPcLFZK6FUPtWVKpQVIRgg==} - engines: {node: '>=0.8.0'} - hasBin: true - dev: false + strip-json-comments@1.0.4: {} - /strip-json-comments@2.0.1: - resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} - engines: {node: '>=0.10.0'} + strip-json-comments@2.0.1: {} - /strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} + strip-json-comments@3.1.1: {} - /strip-outer@2.0.0: - resolution: {integrity: sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + strip-outer@2.0.0: {} - /strnum@1.0.5: - resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} - dev: true + strnum@1.0.5: {} - /strong-log-transformer@2.1.0: - resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} - engines: {node: '>=4'} - hasBin: true + strong-log-transformer@2.1.0: dependencies: duplexer: 0.1.2 minimist: 1.2.8 through: 2.3.8 - dev: true - /strtok3@7.1.0: - resolution: {integrity: sha512-19dQEwG6Jd+VabjPRyBhymIF069vZiqWSZa2jJBoKJTsqGKnTxowGoQaLnz+yLARfDI041IUQekyPUMWElOgsQ==} - engines: {node: '>=14.16'} + strtok3@7.1.0: dependencies: '@tokenizer/token': 0.3.0 peek-readable: 5.1.1 - dev: true - /style-inject@0.3.0: - resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==} - dev: true + style-inject@0.3.0: {} - /style-loader@0.23.1: - resolution: {integrity: sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==} - engines: {node: '>= 0.12.0'} + style-loader@0.23.1: dependencies: loader-utils: 1.4.2 schema-utils: 1.0.0 - dev: true - /style-loader@1.3.0(webpack@5.84.1): - resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==} - engines: {node: '>= 8.9.0'} - peerDependencies: - webpack: 5.84.1 + style-loader@1.3.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: loader-utils: 2.0.4 schema-utils: 2.7.1 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: false + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /style-loader@2.0.0(webpack@5.84.1): - resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 + style-loader@2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: false + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /style-loader@3.3.4(webpack@5.84.1): - resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: 5.84.1 + style-loader@3.3.4(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /style-to-js@1.1.1: - resolution: {integrity: sha512-RJ18Z9t2B02sYhZtfWKQq5uplVctgvjTfLWT7+Eb1zjUjIrWzX5SdlkwLGQozrqarTmEzJJ/YmdNJCUNI47elg==} + style-to-js@1.1.1: dependencies: style-to-object: 0.3.0 - dev: false - /style-to-object@0.3.0: - resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==} + style-to-object@0.3.0: dependencies: inline-style-parser: 0.1.1 - /styled-components@4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-RNqj14kYzw++6Sr38n7197xG33ipEOktGElty4I70IKzQF1jzaD1U4xQ+Ny/i03UUhHlC5NWEO+d8olRCDji6g==} - requiresBuild: true - peerDependencies: - react: '>= 16.3.0' - react-dom: '>= 16.3.0' + style-to-object@1.0.6: + dependencies: + inline-style-parser: 0.2.3 + + styled-components@4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0) '@babel/traverse': 7.24.7(supports-color@5.5.0) '@emotion/is-prop-valid': 0.8.8 '@emotion/unitless': 0.7.5 - babel-plugin-styled-components: 2.1.4(@babel/core@7.24.7)(styled-components@4.4.1)(supports-color@5.5.0) + babel-plugin-styled-components: 2.1.4(@babel/core@7.24.7)(styled-components@4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(supports-color@5.5.0) css-to-react-native: 2.3.2 memoize-one: 5.2.1 merge-anything: 2.4.4 @@ -46431,125 +52508,74 @@ packages: supports-color: 5.5.0 transitivePeerDependencies: - '@babel/core' - dev: false - /stylehacks@5.1.1(postcss@8.4.39): - resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + stylehacks@5.1.1(postcss@8.4.39): dependencies: browserslist: 4.23.1 postcss: 8.4.39 postcss-selector-parser: 6.1.0 - dev: true - /stylehacks@6.1.1(postcss@8.4.39): - resolution: {integrity: sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 + stylehacks@6.1.1(postcss@8.4.39): dependencies: browserslist: 4.23.1 postcss: 8.4.39 postcss-selector-parser: 6.1.0 - dev: true - /stylis-rule-sheet@0.0.10(stylis@3.5.4): - resolution: {integrity: sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==} - peerDependencies: - stylis: ^3.5.0 + stylis-rule-sheet@0.0.10(stylis@3.5.4): dependencies: stylis: 3.5.4 - dev: false - /stylis@3.5.4: - resolution: {integrity: sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==} - dev: false + stylis@3.5.4: {} - /stylis@4.2.0: - resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} - dev: false + stylis@4.2.0: {} - /stylus-loader@7.1.3(stylus@0.59.0)(webpack@5.84.1): - resolution: {integrity: sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==} - engines: {node: '>= 14.15.0'} - peerDependencies: - stylus: '>=0.52.4' - webpack: 5.84.1 + stylus-loader@7.1.3(stylus@0.59.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: fast-glob: 3.3.2 normalize-path: 3.0.0 stylus: 0.59.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /stylus@0.59.0: - resolution: {integrity: sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==} - hasBin: true + stylus@0.59.0: dependencies: '@adobe/css-tools': 4.4.0 - debug: 4.3.5(supports-color@6.1.0) + debug: 4.3.5(supports-color@8.1.1) glob: 7.2.3 sax: 1.2.4 source-map: 0.7.4 transitivePeerDependencies: - supports-color - dev: true - /supports-color@2.0.0: - resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} - engines: {node: '>=0.8.0'} - dev: true + supports-color@2.0.0: {} - /supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} + supports-color@5.5.0: dependencies: has-flag: 3.0.0 - /supports-color@6.1.0: - resolution: {integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==} - engines: {node: '>=6'} + supports-color@6.1.0: dependencies: has-flag: 3.0.0 - /supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} + supports-color@7.2.0: dependencies: has-flag: 4.0.0 - /supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} + supports-color@8.1.1: dependencies: has-flag: 4.0.0 - /supports-hyperlinks@2.3.0: - resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} - engines: {node: '>=8'} + supports-hyperlinks@2.3.0: dependencies: has-flag: 4.0.0 supports-color: 7.2.0 - dev: true - /supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} + supports-preserve-symlinks-flag@1.0.0: {} - /svg-country-flags@1.2.10: - resolution: {integrity: sha512-xrqwo0TYf/h2cfPvGpjdSuSguUbri4vNNizBnwzoZnX0xGo3O5nGJMlbYEp7NOYcnPGBm6LE2axqDWSB847bLw==} - dev: false + svg-country-flags@1.2.10: {} - /svg-parser@2.0.4: - resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} + svg-parser@2.0.4: {} - /svgo@1.3.2: - resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} - engines: {node: '>=4.0.0'} - deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. - hasBin: true + svgo@1.3.2: dependencies: chalk: 2.4.2 coa: 2.0.2 @@ -46564,12 +52590,8 @@ packages: stable: 0.1.8 unquote: 1.1.1 util.promisify: 1.0.1 - dev: true - /svgo@2.8.0: - resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} - engines: {node: '>=10.13.0'} - hasBin: true + svgo@2.8.0: dependencies: '@trysound/sax': 0.2.0 commander: 7.2.0 @@ -46579,10 +52601,7 @@ packages: picocolors: 1.0.1 stable: 0.1.8 - /svgo@3.3.2: - resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} - engines: {node: '>=14.0.0'} - hasBin: true + svgo@3.3.2: dependencies: '@trysound/sax': 0.2.0 commander: 7.2.0 @@ -46592,55 +52611,35 @@ packages: csso: 5.0.5 picocolors: 1.0.1 - /swc-loader@0.2.6(@swc/core@1.3.99)(webpack@5.84.1): - resolution: {integrity: sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg==} - peerDependencies: - '@swc/core': ^1.2.147 - webpack: 5.84.1 + swc-loader@0.2.6(@swc/core@1.3.99(@swc/helpers@0.5.9))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@swc/core': 1.3.99(@swc/helpers@0.5.9) '@swc/counter': 0.1.3 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /swr@2.2.5(react@18.3.1): - resolution: {integrity: sha512-QtxqyclFeAsxEUeZIYmsaQ0UjimSq1RZ9Un7I68/0ClKK/U3LoyQunwkQfJZr2fc22DfIXLNDc2wFyTEikCUpg==} - peerDependencies: - react: ^16.11.0 || ^17.0.0 || ^18.0.0 + swr@2.2.5(react@18.3.1): dependencies: client-only: 0.0.1 react: 18.3.1 use-sync-external-store: 1.2.2(react@18.3.1) - dev: false - /symbol-tree@3.2.4: - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} - dev: true + symbol-tree@3.2.4: {} - /symbol.prototype.description@1.0.6: - resolution: {integrity: sha512-VgVgtEabORsQtmuindtO7v8fF+bsKxUkvEMFj+ecBK6bomrwv5JUSWdMoC3ypa9+Jaqp/wOzkWk4f6I+p5GzyA==} - engines: {node: '>= 0.4'} + symbol.prototype.description@1.0.6: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 get-symbol-description: 1.0.2 has-symbols: 1.0.3 object.getownpropertydescriptors: 2.1.8 - dev: false - /synchronous-promise@2.0.17: - resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==} + synchronous-promise@2.0.17: {} - /synckit@0.6.2: - resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==} - engines: {node: '>=12.20'} + synckit@0.6.2: dependencies: tslib: 2.6.3 - dev: true - /table@6.8.2: - resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==} - engines: {node: '>=10.0.0'} + table@6.8.2: dependencies: ajv: 8.16.0 lodash.truncate: 4.4.2 @@ -46648,37 +52647,26 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 - /tapable@1.1.3: - resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} - engines: {node: '>=6'} + tapable@1.1.3: {} - /tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} + tapable@2.2.1: {} - /tar-fs@2.1.1: - resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} + tar-fs@2.1.1: dependencies: chownr: 1.1.4 mkdirp-classic: 0.5.3 pump: 3.0.0 tar-stream: 2.2.0 - dev: true - /tar-stream@2.2.0: - resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} - engines: {node: '>=6'} + tar-stream@2.2.0: dependencies: bl: 4.1.0 end-of-stream: 1.4.4 fs-constants: 1.0.0 inherits: 2.0.4 readable-stream: 3.6.2 - dev: true - /tar@6.2.1: - resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} - engines: {node: '>=10'} + tar@6.2.1: dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 @@ -46687,8 +52675,7 @@ packages: mkdirp: 1.0.4 yallist: 4.0.0 - /telejson@6.0.8: - resolution: {integrity: sha512-nerNXi+j8NK1QEfBHtZUN/aLdDcyupA//9kAboYLrtzZlPLpUfqbVGWb9zz91f/mIjRbAYhbgtnJHY8I1b5MBg==} + telejson@6.0.8: dependencies: '@types/is-function': 1.0.3 global: 4.4.0 @@ -46699,57 +52686,34 @@ packages: lodash: 4.17.21 memoizerific: 1.11.3 - /telejson@7.2.0: - resolution: {integrity: sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==} + telejson@7.2.0: dependencies: memoizerific: 1.11.3 - dev: true - /temp-dir@1.0.0: - resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==} - engines: {node: '>=4'} - dev: true + temp-dir@1.0.0: {} - /temp-dir@2.0.0: - resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} - engines: {node: '>=8'} - dev: true + temp-dir@2.0.0: {} - /temp@0.8.4: - resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} - engines: {node: '>=6.0.0'} + temp@0.8.4: dependencies: rimraf: 2.6.3 - /tempy@1.0.1: - resolution: {integrity: sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==} - engines: {node: '>=10'} + tempy@1.0.1: dependencies: del: 6.1.1 is-stream: 2.0.1 temp-dir: 2.0.0 type-fest: 0.16.0 unique-string: 2.0.0 - dev: true - /term-size@2.2.1: - resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} - engines: {node: '>=8'} - dev: true + term-size@2.2.1: {} - /terminal-link@2.1.1: - resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} - engines: {node: '>=8'} + terminal-link@2.1.1: dependencies: ansi-escapes: 4.3.2 supports-hyperlinks: 2.3.0 - dev: true - /terser-webpack-plugin@4.2.3(webpack@5.84.1): - resolution: {integrity: sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 + terser-webpack-plugin@4.2.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: cacache: 15.3.0 find-cache-dir: 3.3.2 @@ -46759,303 +52723,180 @@ packages: serialize-javascript: 5.0.1 source-map: 0.6.1 terser: 5.31.1 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) webpack-sources: 1.4.3 transitivePeerDependencies: - bluebird - dev: false - /terser-webpack-plugin@5.3.10(@swc/core@1.3.99)(esbuild@0.18.20)(webpack@5.84.1): - resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: 5.84.1 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true + terser-webpack-plugin@5.3.10(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@jridgewell/trace-mapping': 0.3.25 - '@swc/core': 1.3.99(@swc/helpers@0.5.9) - esbuild: 0.18.20 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.31.1 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + '@swc/core': 1.3.99(@swc/helpers@0.5.9) + esbuild: 0.18.20 - /terser@4.8.1: - resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} - engines: {node: '>=6.0.0'} - hasBin: true + terser@4.8.1: dependencies: acorn: 8.12.0 commander: 2.20.3 source-map: 0.6.1 source-map-support: 0.5.21 - dev: false - /terser@5.31.1: - resolution: {integrity: sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==} - engines: {node: '>=10'} - hasBin: true + terser@5.31.1: dependencies: '@jridgewell/source-map': 0.3.6 acorn: 8.12.0 commander: 2.20.3 source-map-support: 0.5.21 - /test-exclude@6.0.0: - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} - engines: {node: '>=8'} + test-exclude@6.0.0: dependencies: '@istanbuljs/schema': 0.1.3 glob: 7.2.3 minimatch: 3.1.2 - /text-extensions@1.9.0: - resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} - engines: {node: '>=0.10'} - dev: true + text-extensions@1.9.0: {} - /text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + text-table@0.2.0: {} - /thread-loader@2.1.3(webpack@5.84.1): - resolution: {integrity: sha512-wNrVKH2Lcf8ZrWxDF/khdlLlsTMczdcwPA9VEK4c2exlEPynYWxi9op3nPTo5lAnDIkE0rQEB3VBP+4Zncc9Hg==} - engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 + thread-loader@2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: loader-runner: 2.4.0 loader-utils: 1.4.2 neo-async: 2.6.2 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /throat@5.0.0: - resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} - dev: true + throat@5.0.0: {} - /throttleit@1.0.1: - resolution: {integrity: sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==} - dev: true + throttleit@1.0.1: {} - /through2@2.0.5: - resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + through2@2.0.5: dependencies: readable-stream: 2.3.8 xtend: 4.0.2 - dev: true - /through2@4.0.2: - resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} + through2@4.0.2: dependencies: readable-stream: 3.6.2 - dev: true - /through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - dev: true + through@2.3.8: {} - /thunky@1.1.0: - resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} + thunky@1.1.0: {} - /tiny-invariant@1.3.3: - resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} + tiny-invariant@1.3.3: {} - /tiny-warning@1.0.3: - resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} - dev: false + tiny-warning@1.0.3: {} - /tinycolor2@1.6.0: - resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} - dev: false + tinycolor2@1.6.0: {} - /tinycolor@0.0.1: - resolution: {integrity: sha512-+CorETse1kl98xg0WAzii8DTT4ABF4R3nquhrkIbVGcw1T8JYs5Gfx9xEfGINPUZGDj9C4BmOtuKeaTtuuRolg==} - engines: {node: '>=0.4.0'} - dev: false + tinycolor@0.0.1: {} - /tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} + tmp@0.0.33: dependencies: os-tmpdir: 1.0.2 - dev: true - /tmp@0.2.3: - resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} - engines: {node: '>=14.14'} - dev: true + tmp@0.2.3: {} - /tmpl@1.0.5: - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + tmpl@1.0.5: {} - /to-fast-properties@1.0.3: - resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==} - engines: {node: '>=0.10.0'} - dev: true + to-fast-properties@1.0.3: {} - /to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} + to-fast-properties@2.0.0: {} - /to-object-path@0.3.0: - resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} - engines: {node: '>=0.10.0'} + to-object-path@0.3.0: dependencies: kind-of: 3.2.2 - /to-readable-stream@1.0.0: - resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} - engines: {node: '>=6'} - dev: false + to-readable-stream@1.0.0: {} - /to-regex-range@2.1.1: - resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} - engines: {node: '>=0.10.0'} + to-regex-range@2.1.1: dependencies: is-number: 3.0.0 repeat-string: 1.6.1 - /to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} + to-regex-range@5.0.1: dependencies: is-number: 7.0.0 - /to-regex@3.0.2: - resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} - engines: {node: '>=0.10.0'} + to-regex@3.0.2: dependencies: define-property: 2.0.2 extend-shallow: 3.0.2 regex-not: 1.0.2 safe-regex: 1.1.0 - /toidentifier@1.0.1: - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} - engines: {node: '>=0.6'} + toidentifier@1.0.1: {} - /token-types@5.0.1: - resolution: {integrity: sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==} - engines: {node: '>=14.16'} + token-types@5.0.1: dependencies: '@tokenizer/token': 0.3.0 ieee754: 1.2.1 - dev: true - /toml@2.3.6: - resolution: {integrity: sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==} - dev: true + toml@2.3.6: {} - /totalist@3.0.1: - resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} - engines: {node: '>=6'} + totalist@3.0.1: {} - /tough-cookie@4.1.4: - resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} - engines: {node: '>=6'} + tough-cookie@4.1.4: dependencies: psl: 1.9.0 punycode: 2.3.1 universalify: 0.2.0 url-parse: 1.5.10 - dev: true - /tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + tr46@0.0.3: {} - /tr46@2.1.0: - resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} - engines: {node: '>=8'} + tr46@2.1.0: dependencies: punycode: 2.3.1 - dev: true - /tr46@3.0.0: - resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} - engines: {node: '>=12'} + tr46@3.0.0: dependencies: punycode: 2.3.1 - dev: true - /tree-changes@0.11.2: - resolution: {integrity: sha512-4gXlUthrl+RabZw6lLvcCDl6KfJOCmrC16BC5CRdut1EAH509Omgg0BfKLY+ViRlzrvYOTWR0FMS2SQTwzumrw==} + tree-changes@0.11.2: dependencies: '@gilbarbara/deep-equal': 0.3.1 is-lite: 1.2.1 - dev: false - /tree-changes@0.9.3: - resolution: {integrity: sha512-vvvS+O6kEeGRzMglTKbc19ltLWNtmNt1cpBoSYLj/iEcPVvpJasemKOlxBrmZaCtDJoF+4bwv3m01UKYi8mukQ==} + tree-changes@0.9.3: dependencies: '@gilbarbara/deep-equal': 0.1.2 is-lite: 0.8.2 - dev: false - /treeverse@2.0.0: - resolution: {integrity: sha512-N5gJCkLu1aXccpOTtqV6ddSEi6ZmGkh3hjmbu1IjcavJK4qyOVQmi0myQKM7z5jVGmD68SJoliaVrMmVObhj6A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - dev: true + treeverse@2.0.0: {} - /trim-newlines@1.0.0: - resolution: {integrity: sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==} - engines: {node: '>=0.10.0'} - requiresBuild: true - dev: false + trim-lines@3.0.1: {} + + trim-newlines@1.0.0: optional: true - /trim-newlines@3.0.1: - resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} - engines: {node: '>=8'} - dev: true + trim-newlines@3.0.1: {} - /trim-repeated@2.0.0: - resolution: {integrity: sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==} - engines: {node: '>=12'} + trim-repeated@2.0.0: dependencies: escape-string-regexp: 5.0.0 - dev: true - /trim-right@1.0.1: - resolution: {integrity: sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==} - engines: {node: '>=0.10.0'} - dev: true + trim-trailing-lines@1.1.4: {} - /trim-trailing-lines@1.1.4: - resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==} + trim@0.0.1: {} - /trim@0.0.1: - resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==} - deprecated: Use String.prototype.trim() instead + trough@1.0.5: {} - /trough@1.0.5: - resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} + trough@2.2.0: {} - /ts-dedent@2.2.0: - resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} - engines: {node: '>=6.10'} + ts-dedent@2.2.0: {} - /ts-jest@26.5.6(jest@26.6.3)(typescript@4.9.5): - resolution: {integrity: sha512-rua+rCP8DxpA8b4DQD/6X2HQS8Zy/xzViVYfEs2OQu68tkCuKLV0Md8pmX55+W24uRIyAsf/BajRfxOs+R2MKA==} - engines: {node: '>= 10'} - hasBin: true - peerDependencies: - jest: '>=26 <27' - typescript: '>=3.8 <5.0' + ts-jest@26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5): dependencies: bs-logger: 0.2.6 buffer-from: 1.1.2 fast-json-stable-stringify: 2.1.0 - jest: 26.6.3 + jest: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) jest-util: 26.6.2 json5: 2.2.3 lodash: 4.17.21 @@ -47064,38 +52905,12 @@ packages: semver: 7.6.2 typescript: 4.9.5 yargs-parser: 20.2.9 - dev: true - /ts-jest@29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.4.3)(typescript@5.1.6): - resolution: {integrity: sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg==} - engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@jest/transform': ^29.0.0 - '@jest/types': ^29.0.0 - babel-jest: ^29.0.0 - esbuild: '*' - jest: ^29.0.0 - typescript: '>=4.3 <6' - peerDependenciesMeta: - '@babel/core': - optional: true - '@jest/transform': - optional: true - '@jest/types': - optional: true - babel-jest: - optional: true - esbuild: - optional: true + ts-jest@29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.4.3(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)))(typescript@5.1.6): dependencies: - '@babel/core': 7.24.7 - babel-jest: 26.6.3(@babel/core@7.24.7) bs-logger: 0.2.6 - esbuild: 0.18.20 fast-json-stable-stringify: 2.1.0 - jest: 29.4.3(@types/node@18.11.9) + jest: 29.4.3(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -47103,51 +52918,52 @@ packages: semver: 7.6.2 typescript: 5.1.6 yargs-parser: 21.1.1 - dev: true + optionalDependencies: + '@babel/core': 7.24.7 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 26.6.3(@babel/core@7.24.7) + esbuild: 0.18.20 - /ts-jest@29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5): - resolution: {integrity: sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg==} - engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@jest/transform': ^29.0.0 - '@jest/types': ^29.0.0 - babel-jest: ^29.0.0 - esbuild: '*' - jest: ^29.0.0 - typescript: '>=4.3 <6' - peerDependenciesMeta: - '@babel/core': - optional: true - '@jest/transform': - optional: true - '@jest/types': - optional: true - babel-jest: - optional: true - esbuild: - optional: true + ts-jest@29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5): dependencies: + bs-logger: 0.2.6 + fast-json-stable-stringify: 2.1.0 + jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + jest-util: 29.7.0 + json5: 2.2.3 + lodash.memoize: 4.1.2 + make-error: 1.3.6 + semver: 7.6.2 + typescript: 4.9.5 + yargs-parser: 21.1.1 + optionalDependencies: '@babel/core': 7.24.7 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 babel-jest: 26.6.3(@babel/core@7.24.7) - bs-logger: 0.2.6 esbuild: 0.18.20 + + ts-jest@29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)))(typescript@5.1.6): + dependencies: + bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) + jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.6.2 - typescript: 4.9.5 + typescript: 5.1.6 yargs-parser: 21.1.1 + optionalDependencies: + '@babel/core': 7.24.7 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 26.6.3(@babel/core@7.24.7) + esbuild: 0.18.20 - /ts-loader@6.2.2(typescript@5.1.6): - resolution: {integrity: sha512-HDo5kXZCBml3EUPcc7RlZOV/JGlLHwppTLEHb3SHnr5V7NXD4klMEkrhJe5wgRbaWsSXi+Y1SIBN/K9B6zWGWQ==} - engines: {node: '>=8.6'} - peerDependencies: - typescript: '*' + ts-loader@6.2.2(typescript@5.1.6): dependencies: chalk: 2.4.2 enhanced-resolve: 4.5.0 @@ -47155,14 +52971,8 @@ packages: micromatch: 4.0.7 semver: 6.3.1 typescript: 5.1.6 - dev: true - /ts-loader@9.5.1(typescript@5.1.6)(webpack@5.84.1): - resolution: {integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==} - engines: {node: '>=12.0.0'} - peerDependencies: - typescript: '*' - webpack: 5.84.1 + ts-loader@9.5.1(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: chalk: 4.1.2 enhanced-resolve: 5.17.0 @@ -47170,25 +52980,11 @@ packages: semver: 7.6.2 source-map: 0.7.4 typescript: 5.1.6 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /ts-node@10.9.1(@swc/core@1.3.99)(@types/node@18.11.9)(typescript@5.1.6): - resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true + ts-node@10.9.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(typescript@5.1.6): dependencies: '@cspotcode/source-map-support': 0.8.1 - '@swc/core': 1.3.99(@swc/helpers@0.5.9) '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 @@ -47203,14 +52999,10 @@ packages: typescript: 5.1.6 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - dev: true + optionalDependencies: + '@swc/core': 1.3.99(@swc/helpers@0.5.9) - /ts-node@8.10.2(typescript@4.9.5): - resolution: {integrity: sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA==} - engines: {node: '>=6.0.0'} - hasBin: true - peerDependencies: - typescript: '>=2.7' + ts-node@8.10.2(typescript@4.9.5): dependencies: arg: 4.1.3 diff: 4.0.2 @@ -47219,84 +53011,60 @@ packages: typescript: 4.9.5 yn: 3.1.1 - /ts-pnp@1.2.0(typescript@4.9.5): - resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} - engines: {node: '>=6'} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + ts-node@8.10.2(typescript@5.1.6): dependencies: + arg: 4.1.3 + diff: 4.0.2 + make-error: 1.3.6 + source-map-support: 0.5.21 + typescript: 5.1.6 + yn: 3.1.1 + optional: true + + ts-pnp@1.2.0(typescript@4.9.5): + optionalDependencies: typescript: 4.9.5 - dev: false - /tsconfig-paths-webpack-plugin@3.5.2: - resolution: {integrity: sha512-EhnfjHbzm5IYI9YPNVIxx1moxMI4bpHD2e0zTXeDNQcwjjRaGepP7IhTHJkyDBG0CAOoxRfe7jCG630Ou+C6Pw==} + tsconfig-paths-webpack-plugin@3.5.2: dependencies: chalk: 4.1.2 enhanced-resolve: 5.17.0 tsconfig-paths: 3.15.0 - dev: true - /tsconfig-paths-webpack-plugin@4.0.0: - resolution: {integrity: sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==} - engines: {node: '>=10.13.0'} + tsconfig-paths-webpack-plugin@4.0.0: dependencies: chalk: 4.1.2 enhanced-resolve: 5.17.0 tsconfig-paths: 4.2.0 - dev: true - /tsconfig-paths@3.15.0: - resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + tsconfig-paths@3.15.0: dependencies: '@types/json5': 0.0.29 json5: 1.0.2 minimist: 1.2.8 strip-bom: 3.0.0 - dev: true - /tsconfig-paths@4.2.0: - resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} - engines: {node: '>=6'} + tsconfig-paths@4.2.0: dependencies: json5: 2.2.3 minimist: 1.2.8 strip-bom: 3.0.0 - dev: true - /tslib@1.14.1: - resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - dev: true + tslib@1.14.1: {} - /tslib@2.6.3: - resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} + tslib@2.6.3: {} - /tsutils@3.21.0(typescript@4.9.5): - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} - peerDependencies: - typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + tsutils@3.21.0(typescript@4.9.5): dependencies: - tslib: 1.14.1 - typescript: 4.9.5 - dev: true - - /tsutils@3.21.0(typescript@5.1.6): - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} - peerDependencies: - typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + tslib: 1.14.1 + typescript: 4.9.5 + + tsutils@3.21.0(typescript@5.1.6): dependencies: tslib: 1.14.1 typescript: 5.1.6 - dev: true - /tty-table@4.2.3: - resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==} - engines: {node: '>=8.0.0'} - hasBin: true + tty-table@4.2.3: dependencies: chalk: 4.1.2 csv: 5.5.3 @@ -47305,101 +53073,55 @@ packages: strip-ansi: 6.0.1 wcwidth: 1.0.1 yargs: 17.7.2 - dev: true - /tunnel-agent@0.6.0: - resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + tunnel-agent@0.6.0: dependencies: safe-buffer: 5.2.1 - dev: true - /tweetnacl@0.14.5: - resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} - dev: true + tweetnacl@0.14.5: {} - /type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} + type-check@0.4.0: dependencies: prelude-ls: 1.2.1 - /type-detect@4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: '>=4'} + type-detect@4.0.8: {} - /type-fest@0.13.1: - resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} - engines: {node: '>=10'} - dev: true + type-fest@0.13.1: {} - /type-fest@0.16.0: - resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} - engines: {node: '>=10'} - dev: true + type-fest@0.16.0: {} - /type-fest@0.18.1: - resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} - engines: {node: '>=10'} - dev: true + type-fest@0.18.1: {} - /type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} + type-fest@0.20.2: {} - /type-fest@0.21.3: - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} - engines: {node: '>=10'} + type-fest@0.21.3: {} - /type-fest@0.4.1: - resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==} - engines: {node: '>=6'} - dev: true + type-fest@0.4.1: {} - /type-fest@0.6.0: - resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} - engines: {node: '>=8'} + type-fest@0.6.0: {} - /type-fest@0.8.1: - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} - engines: {node: '>=8'} + type-fest@0.8.1: {} - /type-fest@1.4.0: - resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} - engines: {node: '>=10'} - dev: true + type-fest@1.4.0: {} - /type-fest@2.19.0: - resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} - engines: {node: '>=12.20'} - dev: true + type-fest@2.19.0: {} - /type-fest@4.20.1: - resolution: {integrity: sha512-R6wDsVsoS9xYOpy8vgeBlqpdOyzJ12HNfQhC/aAKWM3YoCV9TtunJzh/QpkMgeDhkoynDcw5f1y+qF9yc/HHyg==} - engines: {node: '>=16'} - dev: false + type-fest@4.20.1: {} - /type-is@1.6.18: - resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} - engines: {node: '>= 0.6'} + type-is@1.6.18: dependencies: media-typer: 0.3.0 mime-types: 2.1.35 - /type@2.7.3: - resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==} - dev: true + type@2.7.3: {} - /typed-array-buffer@1.0.2: - resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} - engines: {node: '>= 0.4'} + typed-array-buffer@1.0.2: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-typed-array: 1.1.13 - /typed-array-byte-length@1.0.1: - resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} - engines: {node: '>= 0.4'} + typed-array-byte-length@1.0.1: dependencies: call-bind: 1.0.7 for-each: 0.3.3 @@ -47407,9 +53129,7 @@ packages: has-proto: 1.0.3 is-typed-array: 1.1.13 - /typed-array-byte-offset@1.0.2: - resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} - engines: {node: '>= 0.4'} + typed-array-byte-offset@1.0.2: dependencies: available-typed-arrays: 1.0.7 call-bind: 1.0.7 @@ -47418,9 +53138,7 @@ packages: has-proto: 1.0.3 is-typed-array: 1.1.13 - /typed-array-length@1.0.6: - resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} - engines: {node: '>= 0.4'} + typed-array-length@1.0.6: dependencies: call-bind: 1.0.7 for-each: 0.3.3 @@ -47429,112 +53147,69 @@ packages: is-typed-array: 1.1.13 possible-typed-array-names: 1.0.0 - /typed-assert@1.0.9: - resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==} - dev: true + typed-assert@1.0.9: {} - /typedarray-to-buffer@3.1.5: - resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + typedarray-to-buffer@3.1.5: dependencies: is-typedarray: 1.0.0 - /typedarray@0.0.6: - resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} + typedarray@0.0.6: {} - /typescript@4.9.5: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} - engines: {node: '>=4.2.0'} - hasBin: true + typescript@4.9.5: {} - /typescript@5.1.6: - resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==} - engines: {node: '>=14.17'} - hasBin: true - dev: true + typescript@5.1.6: {} - /ua-parser-js@0.7.28: - resolution: {integrity: sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g==} - dev: false + ua-parser-js@0.7.28: {} - /ufo@1.5.3: - resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==} - dev: true + ufo@1.5.3: {} - /uglify-js@3.18.0: - resolution: {integrity: sha512-SyVVbcNBCk0dzr9XL/R/ySrmYf0s372K6/hFklzgcp2lBFyXtw4I7BOdDjlLhE1aVqaI/SHWXWmYdlZxuyF38A==} - engines: {node: '>=0.8.0'} - hasBin: true - requiresBuild: true + uglify-js@3.18.0: optional: true - /unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + unbox-primitive@1.0.2: dependencies: call-bind: 1.0.7 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 - /underscore.deep@0.5.3(underscore@1.7.0): - resolution: {integrity: sha512-4OuSOlFNkiVFVc3khkeG112Pdu1gbitMj7t9B9ENb61uFmN70Jq7Iluhi3oflcSgexkKfDdJ5XAJET2gEq6ikA==} - engines: {node: '>=0.10.x'} - peerDependencies: - underscore: 1.x + underscore.deep@0.5.3(underscore@1.7.0): dependencies: underscore: 1.7.0 - dev: false - /underscore@1.7.0: - resolution: {integrity: sha512-cp0oQQyZhUM1kpJDLdGO1jPZHgS/MpzoWYfe9+CM2h/QGDZlqwT2T3YGukuBdaNJ/CAPoeyAZRRHz8JFo176vA==} - dev: false + underscore@1.7.0: {} - /unfetch@4.2.0: - resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==} + unfetch@4.2.0: {} - /unherit@1.1.3: - resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==} + unherit@1.1.3: dependencies: inherits: 2.0.4 xtend: 4.0.2 - /unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} - engines: {node: '>=4'} + unicode-canonical-property-names-ecmascript@2.0.0: {} - /unicode-match-property-ecmascript@2.0.0: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} - engines: {node: '>=4'} + unicode-match-property-ecmascript@2.0.0: dependencies: unicode-canonical-property-names-ecmascript: 2.0.0 unicode-property-aliases-ecmascript: 2.1.0 - /unicode-match-property-value-ecmascript@2.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} - engines: {node: '>=4'} + unicode-match-property-value-ecmascript@2.1.0: {} - /unicode-property-aliases-ecmascript@2.1.0: - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} - engines: {node: '>=4'} + unicode-property-aliases-ecmascript@2.1.0: {} - /unicorn-magic@0.1.0: - resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} - engines: {node: '>=18'} - dev: true + unicorn-magic@0.1.0: {} - /unified@6.2.0: - resolution: {integrity: sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==} + unified@11.0.5: dependencies: - '@types/unist': 2.0.10 - bail: 1.0.5 + '@types/unist': 3.0.2 + bail: 2.0.2 + devlop: 1.1.0 extend: 3.0.2 - is-plain-obj: 1.1.0 - trough: 1.0.5 - vfile: 2.3.0 - x-is-string: 0.1.0 - dev: false + is-plain-obj: 4.1.0 + trough: 2.2.0 + vfile: 6.0.1 - /unified@9.2.0: - resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==} + unified@9.2.0: dependencies: '@types/unist': 2.0.10 bail: 1.0.5 @@ -47544,193 +53219,131 @@ packages: trough: 1.0.5 vfile: 4.2.1 - /union-value@1.0.1: - resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} - engines: {node: '>=0.10.0'} + union-value@1.0.1: dependencies: arr-union: 3.1.0 get-value: 2.0.6 is-extendable: 0.1.1 set-value: 2.0.1 - /union@0.5.0: - resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} - engines: {node: '>= 0.8.0'} + union@0.5.0: dependencies: qs: 6.12.3 - dev: true - /unique-filename@1.1.1: - resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} + unique-filename@1.1.1: dependencies: unique-slug: 2.0.2 - dev: false - /unique-filename@2.0.1: - resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + unique-filename@2.0.1: dependencies: unique-slug: 3.0.0 - dev: true - /unique-slug@2.0.2: - resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} + unique-slug@2.0.2: dependencies: imurmurhash: 0.1.4 - dev: false - /unique-slug@3.0.0: - resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + unique-slug@3.0.0: dependencies: imurmurhash: 0.1.4 - dev: true - /unique-string@2.0.0: - resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} - engines: {node: '>=8'} + unique-string@2.0.0: dependencies: crypto-random-string: 2.0.0 - /unist-builder@2.0.3: - resolution: {integrity: sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==} + unist-builder@2.0.3: {} - /unist-util-generated@1.1.6: - resolution: {integrity: sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==} + unist-util-generated@1.1.6: {} - /unist-util-is@3.0.0: - resolution: {integrity: sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==} - dev: false + unist-util-is@4.1.0: {} - /unist-util-is@4.1.0: - resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} + unist-util-is@6.0.0: + dependencies: + '@types/unist': 3.0.2 - /unist-util-position@3.1.0: - resolution: {integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==} + unist-util-position@3.1.0: {} - /unist-util-remove-position@1.1.4: - resolution: {integrity: sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==} + unist-util-position@5.0.0: dependencies: - unist-util-visit: 1.4.1 - dev: false + '@types/unist': 3.0.2 - /unist-util-remove-position@2.0.1: - resolution: {integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==} + unist-util-remove-position@2.0.1: dependencies: unist-util-visit: 2.0.3 - /unist-util-remove@2.1.0: - resolution: {integrity: sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==} + unist-util-remove-position@5.0.0: dependencies: - unist-util-is: 4.1.0 + '@types/unist': 3.0.2 + unist-util-visit: 5.0.0 - /unist-util-stringify-position@1.1.2: - resolution: {integrity: sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==} - dev: false + unist-util-remove@2.1.0: + dependencies: + unist-util-is: 4.1.0 - /unist-util-stringify-position@2.0.3: - resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} + unist-util-stringify-position@2.0.3: dependencies: '@types/unist': 2.0.10 - /unist-util-visit-parents@1.1.2: - resolution: {integrity: sha512-yvo+MMLjEwdc3RhhPYSximset7rwjMrdt9E41Smmvg25UQIenzrN83cRnF1JMzoMi9zZOQeYXHSDf7p+IQkW3Q==} - dev: false - - /unist-util-visit-parents@2.1.2: - resolution: {integrity: sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==} + unist-util-stringify-position@4.0.0: dependencies: - unist-util-is: 3.0.0 - dev: false + '@types/unist': 3.0.2 - /unist-util-visit-parents@3.1.1: - resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} + unist-util-visit-parents@3.1.1: dependencies: '@types/unist': 2.0.10 unist-util-is: 4.1.0 - /unist-util-visit@1.4.1: - resolution: {integrity: sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==} + unist-util-visit-parents@6.0.1: dependencies: - unist-util-visit-parents: 2.1.2 - dev: false + '@types/unist': 3.0.2 + unist-util-is: 6.0.0 - /unist-util-visit@2.0.3: - resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} + unist-util-visit@2.0.3: dependencies: '@types/unist': 2.0.10 unist-util-is: 4.1.0 unist-util-visit-parents: 3.1.1 - /universal-user-agent@6.0.1: - resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} - dev: true + unist-util-visit@5.0.0: + dependencies: + '@types/unist': 3.0.2 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 - /universalify@0.1.2: - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} - engines: {node: '>= 4.0.0'} - dev: true + universal-user-agent@6.0.1: {} - /universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} - dev: true + universalify@0.1.2: {} - /universalify@2.0.1: - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} - engines: {node: '>= 10.0.0'} + universalify@0.2.0: {} - /unpipe@1.0.0: - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} - engines: {node: '>= 0.8'} + universalify@2.0.1: {} - /unquote@1.1.1: - resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} - dev: true + unpipe@1.0.0: {} - /unset-value@1.0.0: - resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} - engines: {node: '>=0.10.0'} + unquote@1.1.1: {} + + unset-value@1.0.0: dependencies: has-value: 0.3.1 isobject: 3.0.1 - /untildify@2.1.0: - resolution: {integrity: sha512-sJjbDp2GodvkB0FZZcn7k6afVisqX5BZD7Yq3xp4nN2O15BBK0cLm3Vwn2vQaF7UDS0UUsrQMkkplmDI5fskig==} - engines: {node: '>=0.10.0'} - requiresBuild: true + untildify@2.1.0: dependencies: os-homedir: 1.0.2 - dev: false optional: true - /untildify@4.0.0: - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} - engines: {node: '>=8'} - dev: true + untildify@4.0.0: {} - /upath@1.2.0: - resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} - engines: {node: '>=4'} + upath@1.2.0: {} - /upath@2.0.1: - resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} - engines: {node: '>=4'} - dev: true + upath@2.0.1: {} - /update-browserslist-db@1.0.16(browserslist@4.23.1): - resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' + update-browserslist-db@1.0.16(browserslist@4.23.1): dependencies: browserslist: 4.23.1 escalade: 3.1.2 picocolors: 1.0.1 - /update-notifier@5.1.0: - resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==} - engines: {node: '>=10'} + update-notifier@5.1.0: dependencies: boxen: 5.1.2 chalk: 4.1.2 @@ -47746,257 +53359,162 @@ packages: semver: 7.6.2 semver-diff: 3.1.1 xdg-basedir: 4.0.0 - dev: false - /uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + uri-js@4.4.1: dependencies: punycode: 2.3.1 - /urix@0.1.0: - resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} - deprecated: Please see https://github.com/lydell/urix#deprecated + urix@0.1.0: {} - /url-join@4.0.1: - resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} - dev: true + url-join@4.0.1: {} - /url-loader@4.1.1(file-loader@2.0.0)(webpack@5.84.1): - resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - file-loader: '*' - webpack: 5.84.1 - peerDependenciesMeta: - file-loader: - optional: true + url-loader@4.1.1(file-loader@2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: - file-loader: 2.0.0(webpack@5.84.1) loader-utils: 2.0.4 mime-types: 2.1.35 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + file-loader: 2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - /url-loader@4.1.1(file-loader@6.2.0)(webpack@5.84.1): - resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - file-loader: '*' - webpack: 5.84.1 - peerDependenciesMeta: - file-loader: - optional: true + url-loader@4.1.1(file-loader@6.2.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: - file-loader: 6.2.0(webpack@5.84.1) loader-utils: 2.0.4 mime-types: 2.1.35 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: false + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + file-loader: 6.2.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - /url-parse-lax@3.0.0: - resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} - engines: {node: '>=4'} + url-parse-lax@3.0.0: dependencies: prepend-http: 2.0.0 - dev: false - /url-parse@1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + url-parse@1.5.10: dependencies: querystringify: 2.2.0 requires-port: 1.0.0 - /url@0.11.3: - resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==} + url@0.11.3: dependencies: punycode: 1.4.1 qs: 6.12.3 - /use-sync-external-store@1.2.0(react@18.3.1): - resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + use-sync-external-store@1.2.0(react@18.3.1): dependencies: react: 18.3.1 - dev: false - /use-sync-external-store@1.2.2(react@18.3.1): - resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + use-sync-external-store@1.2.2(react@18.3.1): dependencies: react: 18.3.1 - dev: false - /use@3.1.1: - resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} - engines: {node: '>=0.10.0'} + use@3.1.1: {} - /util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + util-deprecate@1.0.2: {} - /util.promisify@1.0.0: - resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==} + util.promisify@1.0.0: dependencies: define-properties: 1.2.1 object.getownpropertydescriptors: 2.1.8 - dev: false - /util.promisify@1.0.1: - resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} + util.promisify@1.0.1: dependencies: define-properties: 1.2.1 es-abstract: 1.23.3 has-symbols: 1.0.3 object.getownpropertydescriptors: 2.1.8 - dev: true - /util@0.10.4: - resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} + util@0.10.4: dependencies: inherits: 2.0.3 - dev: true - /util@0.12.5: - resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} + util@0.12.5: dependencies: inherits: 2.0.4 is-arguments: 1.1.1 is-generator-function: 1.0.10 is-typed-array: 1.1.13 which-typed-array: 1.1.15 - dev: true - /utila@0.4.0: - resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} + utila@0.4.0: {} - /utils-merge@1.0.1: - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} - engines: {node: '>= 0.4.0'} + utils-merge@1.0.1: {} - /uuid-browser@3.1.0: - resolution: {integrity: sha512-dsNgbLaTrd6l3MMxTtouOCFw4CBFc/3a+GgYA2YyrJvyQ1u6q4pcu3ktLoUZ/VN/Aw9WsauazbgsgdfVWgAKQg==} - deprecated: Package no longer supported and required. Use the uuid package or crypto.randomUUID instead - dev: true + uuid-browser@3.1.0: {} - /uuid@3.4.0: - resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} - deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. - hasBin: true + uuid@3.4.0: {} - /uuid@8.3.2: - resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} - hasBin: true + uuid@8.3.2: {} - /v8-compile-cache-lib@3.0.1: - resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - dev: true + v8-compile-cache-lib@3.0.1: {} - /v8-compile-cache@2.3.0: - resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} - dev: true + v8-compile-cache@2.3.0: {} - /v8-compile-cache@2.4.0: - resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} + v8-compile-cache@2.4.0: {} - /v8-to-istanbul@7.1.2: - resolution: {integrity: sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==} - engines: {node: '>=10.10.0'} + v8-to-istanbul@7.1.2: dependencies: '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 1.9.0 source-map: 0.7.4 - dev: true - /v8-to-istanbul@9.3.0: - resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} - engines: {node: '>=10.12.0'} + v8-to-istanbul@9.3.0: dependencies: '@jridgewell/trace-mapping': 0.3.25 '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 2.0.0 - /validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + validate-npm-package-license@3.0.4: dependencies: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 - /validate-npm-package-name@3.0.0: - resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==} + validate-npm-package-name@3.0.0: dependencies: builtins: 1.0.3 - dev: true - /validate-npm-package-name@4.0.0: - resolution: {integrity: sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + validate-npm-package-name@4.0.0: dependencies: builtins: 5.1.0 - dev: true - /validate-npm-package-name@5.0.1: - resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + validate-npm-package-name@5.0.1: {} - /value-equal@1.0.1: - resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==} - dev: false + value-equal@1.0.1: {} - /vary@1.1.2: - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} - engines: {node: '>= 0.8'} + vary@1.1.2: {} - /verror@1.10.0: - resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} - engines: {'0': node >=0.6.0} + verror@1.10.0: dependencies: assert-plus: 1.0.0 core-util-is: 1.0.2 extsprintf: 1.3.0 - dev: true - - /vfile-location@2.0.6: - resolution: {integrity: sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==} - dev: false - /vfile-location@3.2.0: - resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==} - - /vfile-message@1.1.1: - resolution: {integrity: sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==} - dependencies: - unist-util-stringify-position: 1.1.2 - dev: false + vfile-location@3.2.0: {} - /vfile-message@2.0.4: - resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==} + vfile-message@2.0.4: dependencies: '@types/unist': 2.0.10 unist-util-stringify-position: 2.0.3 - /vfile@2.3.0: - resolution: {integrity: sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==} + vfile-message@4.0.2: dependencies: - is-buffer: 1.1.6 - replace-ext: 1.0.0 - unist-util-stringify-position: 1.1.2 - vfile-message: 1.1.1 - dev: false + '@types/unist': 3.0.2 + unist-util-stringify-position: 4.0.0 - /vfile@4.2.1: - resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==} + vfile@4.2.1: dependencies: '@types/unist': 2.0.10 is-buffer: 2.0.5 unist-util-stringify-position: 2.0.3 vfile-message: 2.0.4 - /victory-vendor@36.9.2: - resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==} + vfile@6.0.1: + dependencies: + '@types/unist': 3.0.2 + unist-util-stringify-position: 4.0.0 + vfile-message: 4.0.2 + + victory-vendor@36.9.2: dependencies: '@types/d3-array': 3.2.1 '@types/d3-ease': 3.0.2 @@ -48012,101 +53530,60 @@ packages: d3-shape: 3.2.0 d3-time: 3.1.0 d3-timer: 3.0.1 - dev: false - /void-elements@3.1.0: - resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} - engines: {node: '>=0.10.0'} - dev: false + void-elements@3.1.0: {} - /w3c-hr-time@1.0.2: - resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} - deprecated: Use your platform's native performance.now() and performance.timeOrigin. + w3c-hr-time@1.0.2: dependencies: browser-process-hrtime: 1.0.0 - dev: true - /w3c-xmlserializer@2.0.0: - resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} - engines: {node: '>=10'} + w3c-xmlserializer@2.0.0: dependencies: xml-name-validator: 3.0.0 - dev: true - /w3c-xmlserializer@4.0.0: - resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} - engines: {node: '>=14'} + w3c-xmlserializer@4.0.0: dependencies: xml-name-validator: 4.0.0 - dev: true - /walk-up-path@1.0.0: - resolution: {integrity: sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg==} - dev: true + walk-up-path@1.0.0: {} - /walker@1.0.8: - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + walker@1.0.8: dependencies: makeerror: 1.0.12 - /warning@4.0.3: - resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==} + warning@4.0.3: dependencies: loose-envify: 1.4.0 - dev: false - /watch@1.0.2: - resolution: {integrity: sha512-1u+Z5n9Jc1E2c7qDO8SinPoZuHj7FgbgU1olSFoyaklduDvvtX7GMMtlE6OC9FTXq4KvNAOfj6Zu4vI1e9bAKA==} - engines: {node: '>=0.1.95'} - hasBin: true + watch@1.0.2: dependencies: exec-sh: 0.2.2 minimist: 1.2.8 - dev: true - /watchpack@2.4.1: - resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==} - engines: {node: '>=10.13.0'} + watchpack@2.4.1: dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 - /wbuf@1.7.3: - resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} + wbuf@1.7.3: dependencies: minimalistic-assert: 1.0.1 - /wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + wcwidth@1.0.1: dependencies: defaults: 1.0.4 - dev: true - /web-namespaces@1.1.4: - resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==} + web-namespaces@1.1.4: {} - /webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + webidl-conversions@3.0.1: {} - /webidl-conversions@5.0.0: - resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} - engines: {node: '>=8'} - dev: true + webidl-conversions@5.0.0: {} - /webidl-conversions@6.1.0: - resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} - engines: {node: '>=10.4'} - dev: true + webidl-conversions@6.1.0: {} - /webidl-conversions@7.0.0: - resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} - engines: {node: '>=12'} - dev: true + webidl-conversions@7.0.0: {} - /webpack-bundle-analyzer@4.10.2: - resolution: {integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==} - engines: {node: '>= 10.13.0'} - hasBin: true + webpack-bundle-analyzer@4.10.2: dependencies: '@discoveryjs/json-ext': 0.5.7 acorn: 8.12.0 @@ -48124,30 +53601,12 @@ packages: - bufferutil - utf-8-validate - /webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1): - resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - '@webpack-cli/generators': '*' - '@webpack-cli/migrate': '*' - webpack: 5.84.1 - webpack-bundle-analyzer: '*' - webpack-dev-server: '*' - peerDependenciesMeta: - '@webpack-cli/generators': - optional: true - '@webpack-cli/migrate': - optional: true - webpack-bundle-analyzer: - optional: true - webpack-dev-server: - optional: true + webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1): dependencies: '@discoveryjs/json-ext': 0.5.7 - '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0)(webpack@5.84.1) - '@webpack-cli/info': 1.5.0(webpack-cli@4.10.0) - '@webpack-cli/serve': 1.7.0(webpack-cli@4.10.0)(webpack-dev-server@3.11.3) + '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@webpack-cli/info': 1.5.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@webpack-cli/serve': 1.7.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1)) colorette: 2.0.20 commander: 7.2.0 cross-spawn: 7.0.3 @@ -48155,29 +53614,22 @@ packages: import-local: 3.1.0 interpret: 2.2.0 rechoir: 0.7.1 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - webpack-bundle-analyzer: 4.10.2 - webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) webpack-merge: 5.10.0 + optionalDependencies: + webpack-bundle-analyzer: 4.10.2 + webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - /webpack-dev-middleware@3.7.3(webpack@5.84.1): - resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==} - engines: {node: '>= 6'} - peerDependencies: - webpack: 5.84.1 + webpack-dev-middleware@3.7.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: memory-fs: 0.4.1 mime: 2.6.0 mkdirp: 0.5.6 range-parser: 1.2.1 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) webpack-log: 2.0.0 - /webpack-dev-middleware@4.3.0(webpack@5.84.1): - resolution: {integrity: sha512-PjwyVY95/bhBh6VUqt6z4THplYcsvQ8YNNBTBM873xLVmw8FLeALn0qurHbs9EmcfhzQis/eoqypSnZeuUz26w==} - engines: {node: '>= v10.23.3'} - peerDependencies: - webpack: 5.84.1 + webpack-dev-middleware@4.3.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: colorette: 1.4.0 mem: 8.1.1 @@ -48185,50 +53637,28 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: false + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /webpack-dev-middleware@5.3.4(webpack@5.84.1): - resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: 5.84.1 + webpack-dev-middleware@5.3.4(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: colorette: 2.0.20 memfs: 3.5.3 mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.2.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /webpack-dev-middleware@6.1.3(webpack@5.84.1): - resolution: {integrity: sha512-A4ChP0Qj8oGociTs6UdlRUGANIGrCDL3y+pmQMc+dSsraXHCatFpmMey4mYELA+juqwUqwQsUgJJISXl1KWmiw==} - engines: {node: '>= 14.15.0'} - peerDependencies: - webpack: 5.84.1 - peerDependenciesMeta: - webpack: - optional: true + webpack-dev-middleware@6.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: colorette: 2.0.20 memfs: 3.5.3 mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.2.0 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + optionalDependencies: + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1): - resolution: {integrity: sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==} - engines: {node: '>= 6.11.5'} - hasBin: true - peerDependencies: - webpack: 5.84.1 - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true + webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: ansi-html-community: 0.0.8 bonjour: 3.5.0 @@ -48239,7 +53669,7 @@ packages: del: 4.1.1 express: 4.19.2(supports-color@6.1.0) html-entities: 1.4.0 - http-proxy-middleware: 0.19.1(debug@4.3.5)(supports-color@6.1.0) + http-proxy-middleware: 0.19.1(debug@4.3.5(supports-color@6.1.0))(supports-color@6.1.0) import-local: 2.0.0 internal-ip: 4.3.0 ip: 1.1.9 @@ -48259,28 +53689,18 @@ packages: strip-ansi: 3.0.1 supports-color: 6.1.0 url: 0.11.3 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) - webpack-dev-middleware: 3.7.3(webpack@5.84.1) + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-dev-middleware: 3.7.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) webpack-log: 2.0.0 ws: 6.2.3 yargs: 13.3.2 + optionalDependencies: + webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) transitivePeerDependencies: - bufferutil - utf-8-validate - /webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.84.1): - resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==} - engines: {node: '>= 12.13.0'} - hasBin: true - peerDependencies: - webpack: 5.84.1 - webpack-cli: '*' - peerDependenciesMeta: - webpack: - optional: true - webpack-cli: - optional: true + webpack-dev-server@4.15.2(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: '@types/bonjour': 3.5.13 '@types/connect-history-api-fallback': 1.5.4 @@ -48309,114 +53729,73 @@ packages: selfsigned: 2.4.1 serve-index: 1.9.1(supports-color@6.1.0) sockjs: 0.3.24 - spdy: 4.0.2(supports-color@6.1.0) - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) - webpack-dev-middleware: 5.3.4(webpack@5.84.1) + spdy: 4.0.2 + webpack-dev-middleware: 5.3.4(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) ws: 8.17.1 + optionalDependencies: + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) transitivePeerDependencies: - bufferutil - debug - supports-color - utf-8-validate - dev: true - /webpack-filter-warnings-plugin@1.2.1(webpack@5.84.1): - resolution: {integrity: sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==} - engines: {node: '>= 4.3 < 5.0.0 || >= 5.10'} - peerDependencies: - webpack: 5.84.1 + webpack-filter-warnings-plugin@1.2.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: false + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /webpack-hot-middleware@2.26.1: - resolution: {integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==} + webpack-hot-middleware@2.26.1: dependencies: ansi-html-community: 0.0.8 html-entities: 2.5.2 strip-ansi: 6.0.1 - /webpack-log@1.2.0: - resolution: {integrity: sha512-U9AnICnu50HXtiqiDxuli5gLB5PGBo7VvcHx36jRZHwK4vzOYLbImqT4lwWwoMHdQWwEKw736fCHEekokTEKHA==} - engines: {node: '>=6'} + webpack-log@1.2.0: dependencies: chalk: 2.4.2 log-symbols: 2.2.0 loglevelnext: 1.0.5 uuid: 3.4.0 - dev: true - /webpack-log@2.0.0: - resolution: {integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==} - engines: {node: '>= 6'} + webpack-log@2.0.0: dependencies: ansi-colors: 3.2.4 uuid: 3.4.0 - /webpack-merge@5.10.0: - resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} - engines: {node: '>=10.0.0'} + webpack-merge@5.10.0: dependencies: clone-deep: 4.0.1 flat: 5.0.2 wildcard: 2.0.1 - /webpack-node-externals@3.0.0: - resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==} - engines: {node: '>=6'} - dev: true + webpack-node-externals@3.0.0: {} - /webpack-sources@1.4.3: - resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==} + webpack-sources@1.4.3: dependencies: source-list-map: 2.0.1 source-map: 0.6.1 - /webpack-sources@3.2.3: - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} - engines: {node: '>=10.13.0'} + webpack-sources@3.2.3: {} - /webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.0)(webpack@5.84.1): - resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==} - engines: {node: '>= 12'} - peerDependencies: - html-webpack-plugin: '>= 5.0.0-beta.1 < 6' - webpack: 5.84.1 - peerDependenciesMeta: - html-webpack-plugin: - optional: true + webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: - html-webpack-plugin: 5.6.0(webpack@5.84.1) typed-assert: 1.0.9 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + optionalDependencies: + html-webpack-plugin: 5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - /webpack-virtual-modules@0.2.2: - resolution: {integrity: sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==} + webpack-virtual-modules@0.2.2: dependencies: - debug: 3.2.7(supports-color@6.1.0) + debug: 3.2.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: false - /webpack-virtual-modules@0.4.6: - resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==} - dev: false + webpack-virtual-modules@0.4.6: {} - /webpack-virtual-modules@0.5.0: - resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==} - dev: true + webpack-virtual-modules@0.5.0: {} - /webpack@5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0): - resolution: {integrity: sha512-ZP4qaZ7vVn/K8WN/p990SGATmrL1qg4heP/MrVneczYtpDGJWlrgZv55vxaV2ul885Kz+25MP2kSXkPe3LZfmg==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true + webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)): dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.5 @@ -48439,78 +53818,55 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(@swc/core@1.3.99)(esbuild@0.18.20)(webpack@5.84.1) + terser-webpack-plugin: 5.3.10(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) watchpack: 2.4.1 - webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) webpack-sources: 3.2.3 + optionalDependencies: + webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) transitivePeerDependencies: - '@swc/core' - esbuild - uglify-js - /websocket-driver@0.7.4: - resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} - engines: {node: '>=0.8.0'} + websocket-driver@0.7.4: dependencies: http-parser-js: 0.5.8 safe-buffer: 5.2.1 websocket-extensions: 0.1.4 - /websocket-extensions@0.1.4: - resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} - engines: {node: '>=0.8.0'} + websocket-extensions@0.1.4: {} - /whatwg-encoding@1.0.5: - resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} + whatwg-encoding@1.0.5: dependencies: iconv-lite: 0.4.24 - dev: true - /whatwg-encoding@2.0.0: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} - engines: {node: '>=12'} + whatwg-encoding@2.0.0: dependencies: iconv-lite: 0.6.3 - dev: true - /whatwg-fetch@3.6.20: - resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} - dev: false + whatwg-fetch@3.6.20: {} - /whatwg-mimetype@2.3.0: - resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} - dev: true + whatwg-mimetype@2.3.0: {} - /whatwg-mimetype@3.0.0: - resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} - engines: {node: '>=12'} - dev: true + whatwg-mimetype@3.0.0: {} - /whatwg-url@11.0.0: - resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} - engines: {node: '>=12'} + whatwg-url@11.0.0: dependencies: tr46: 3.0.0 webidl-conversions: 7.0.0 - dev: true - /whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + whatwg-url@5.0.0: dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 - /whatwg-url@8.7.0: - resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} - engines: {node: '>=10'} + whatwg-url@8.7.0: dependencies: lodash: 4.17.21 tr46: 2.1.0 webidl-conversions: 6.1.0 - dev: true - /which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + which-boxed-primitive@1.0.2: dependencies: is-bigint: 1.0.4 is-boolean-object: 1.1.2 @@ -48518,9 +53874,7 @@ packages: is-string: 1.0.7 is-symbol: 1.0.4 - /which-builtin-type@1.1.3: - resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} - engines: {node: '>= 0.4'} + which-builtin-type@1.1.3: dependencies: function.prototype.name: 1.1.6 has-tostringtag: 1.0.2 @@ -48534,31 +53888,22 @@ packages: which-boxed-primitive: 1.0.2 which-collection: 1.0.2 which-typed-array: 1.1.15 - dev: true - /which-collection@1.0.2: - resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} - engines: {node: '>= 0.4'} + which-collection@1.0.2: dependencies: is-map: 2.0.3 is-set: 2.0.3 is-weakmap: 2.0.2 is-weakset: 2.0.3 - /which-module@2.0.1: - resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} + which-module@2.0.1: {} - /which-pm@2.2.0: - resolution: {integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==} - engines: {node: '>=8.15'} + which-pm@2.2.0: dependencies: load-yaml-file: 0.2.0 path-exists: 4.0.0 - dev: true - /which-typed-array@1.1.15: - resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} - engines: {node: '>= 0.4'} + which-typed-array@1.1.15: dependencies: available-typed-arrays: 1.0.7 call-bind: 1.0.7 @@ -48566,126 +53911,88 @@ packages: gopd: 1.0.1 has-tostringtag: 1.0.2 - /which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true + which@1.3.1: dependencies: isexe: 2.0.0 - /which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} - hasBin: true + which@2.0.2: dependencies: isexe: 2.0.0 - /wide-align@1.1.5: - resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + wide-align@1.1.5: dependencies: string-width: 4.2.3 - /widest-line@3.1.0: - resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} - engines: {node: '>=8'} + widest-line@3.1.0: dependencies: string-width: 4.2.3 - dev: false - /wildcard@2.0.1: - resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} + wildcard@2.0.1: {} - /word-wrap@1.2.5: - resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} - engines: {node: '>=0.10.0'} + word-wrap@1.2.5: {} - /wordwrap@1.0.0: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + wordwrap@1.0.0: {} - /worker-loader@2.0.0(webpack@5.84.1): - resolution: {integrity: sha512-tnvNp4K3KQOpfRnD20m8xltE3eWh89Ye+5oj7wXEEHKac1P4oZ6p9oTj8/8ExqoSBnk9nu5Pr4nKfQ1hn2APJw==} - engines: {node: '>= 6.9.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 + worker-loader@2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): dependencies: loader-utils: 1.4.2 schema-utils: 0.4.7 - webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - dev: true + webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - /worker-rpc@0.1.1: - resolution: {integrity: sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==} + worker-rpc@0.1.1: dependencies: microevent.ts: 0.1.1 - dev: false - /world-countries@5.0.0: - resolution: {integrity: sha512-wAfOT9Y5i/xnxNOdKJKXdOCw9Q3yQLahBUeuRol+s+o20F6h2a4tLEbJ1lBCYwEQ30Sf9Meqeipk1gib3YwF5w==} - dev: false + world-countries@5.0.0: {} - /wrap-ansi@5.1.0: - resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==} - engines: {node: '>=6'} + wrap-ansi@5.1.0: dependencies: ansi-styles: 3.2.1 string-width: 3.1.0 strip-ansi: 5.2.0 - /wrap-ansi@6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: '>=8'} + wrap-ansi@6.2.0: dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - dev: true - /wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} + wrap-ansi@7.0.0: dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - /wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} + wrap-ansi@8.1.0: dependencies: ansi-styles: 6.2.1 string-width: 5.1.2 strip-ansi: 7.1.0 - /wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + wrappy@1.0.2: {} - /write-file-atomic@2.4.3: - resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} + write-file-atomic@2.4.3: dependencies: graceful-fs: 4.2.11 imurmurhash: 0.1.4 signal-exit: 3.0.7 - /write-file-atomic@3.0.3: - resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + write-file-atomic@3.0.3: dependencies: imurmurhash: 0.1.4 is-typedarray: 1.0.0 signal-exit: 3.0.7 typedarray-to-buffer: 3.1.5 - /write-file-atomic@4.0.2: - resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + write-file-atomic@4.0.2: dependencies: imurmurhash: 0.1.4 signal-exit: 3.0.7 - /write-file-webpack-plugin@4.5.1: - resolution: {integrity: sha512-AZ7qJUvhTCBiOtG21aFJUcNuLVo2FFM6JMGKvaUGAH+QDqQAp2iG0nq3GcuXmJOFQR2JjpjhyYkyPrbFKhdjNQ==} - engines: {node: '>=4'} + write-file-webpack-plugin@4.5.1: dependencies: chalk: 2.4.2 - debug: 3.2.7(supports-color@6.1.0) + debug: 3.2.7(supports-color@8.1.1) filesize: 3.6.1 lodash: 4.17.21 mkdirp: 0.5.6 @@ -48693,11 +54000,8 @@ packages: write-file-atomic: 2.4.3 transitivePeerDependencies: - supports-color - dev: true - /write-json-file@3.2.0: - resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==} - engines: {node: '>=6'} + write-json-file@3.2.0: dependencies: detect-indent: 5.0.0 graceful-fs: 4.2.11 @@ -48705,11 +54009,8 @@ packages: pify: 4.0.1 sort-keys: 2.0.0 write-file-atomic: 2.4.3 - dev: true - /write-json-file@4.3.0: - resolution: {integrity: sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ==} - engines: {node: '>=8.3'} + write-json-file@4.3.0: dependencies: detect-indent: 6.1.0 graceful-fs: 4.2.11 @@ -48717,137 +54018,64 @@ packages: make-dir: 3.1.0 sort-keys: 4.2.0 write-file-atomic: 3.0.3 - dev: true - /write-pkg@4.0.0: - resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==} - engines: {node: '>=8'} + write-pkg@4.0.0: dependencies: sort-keys: 2.0.0 type-fest: 0.4.1 write-json-file: 3.2.0 - dev: true - /ws@6.2.3: - resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true + ws@6.2.3: dependencies: async-limiter: 1.0.1 - /ws@7.5.10: - resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} - engines: {node: '>=8.3.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true + ws@7.5.10: {} - /ws@8.17.1: - resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true + ws@8.17.1: {} - /x-default-browser@0.4.0: - resolution: {integrity: sha512-7LKo7RtWfoFN/rHx1UELv/2zHGMx8MkZKDq1xENmOCTkfIqZJ0zZ26NEJX8czhnPXVcqS0ARjjfJB+eJ0/5Cvw==} - hasBin: true + x-default-browser@0.4.0: optionalDependencies: default-browser-id: 1.0.4 - dev: false - - /x-is-string@0.1.0: - resolution: {integrity: sha512-GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w==} - dev: false - /xdg-basedir@4.0.0: - resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} - engines: {node: '>=8'} - dev: false + xdg-basedir@4.0.0: {} - /xml-name-validator@3.0.0: - resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} - dev: true + xml-name-validator@3.0.0: {} - /xml-name-validator@4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} - engines: {node: '>=12'} - dev: true + xml-name-validator@4.0.0: {} - /xmlchars@2.2.0: - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} - dev: true + xmlchars@2.2.0: {} - /xtend@4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: '>=0.4'} + xtend@4.0.2: {} - /y18n@4.0.3: - resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + y18n@4.0.3: {} - /y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} + y18n@5.0.8: {} - /yallist@2.1.2: - resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} - dev: true + yallist@2.1.2: {} - /yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + yallist@3.1.1: {} - /yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + yallist@4.0.0: {} - /yaml@1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} + yaml@1.10.2: {} - /yargs-parser@13.1.2: - resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==} + yargs-parser@13.1.2: dependencies: camelcase: 5.3.1 decamelize: 1.2.0 - /yargs-parser@18.1.3: - resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} - engines: {node: '>=6'} + yargs-parser@18.1.3: dependencies: camelcase: 5.3.1 decamelize: 1.2.0 - dev: true - /yargs-parser@20.2.4: - resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} - engines: {node: '>=10'} - dev: true + yargs-parser@20.2.4: {} - /yargs-parser@20.2.9: - resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} - engines: {node: '>=10'} + yargs-parser@20.2.9: {} - /yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} + yargs-parser@21.1.1: {} - /yargs@13.3.2: - resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==} + yargs@13.3.2: dependencies: cliui: 5.0.0 find-up: 3.0.0 @@ -48860,9 +54088,7 @@ packages: y18n: 4.0.3 yargs-parser: 13.1.2 - /yargs@15.4.1: - resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} - engines: {node: '>=8'} + yargs@15.4.1: dependencies: cliui: 6.0.0 decamelize: 1.2.0 @@ -48875,11 +54101,8 @@ packages: which-module: 2.0.1 y18n: 4.0.3 yargs-parser: 18.1.3 - dev: true - /yargs@16.2.0: - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} - engines: {node: '>=10'} + yargs@16.2.0: dependencies: cliui: 7.0.4 escalade: 3.1.2 @@ -48889,9 +54112,7 @@ packages: y18n: 5.0.8 yargs-parser: 20.2.9 - /yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} + yargs@17.7.2: dependencies: cliui: 8.0.1 escalade: 3.1.2 @@ -48901,55 +54122,24 @@ packages: y18n: 5.0.8 yargs-parser: 21.1.1 - /yauzl@2.10.0: - resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + yauzl@2.10.0: dependencies: buffer-crc32: 0.2.13 fd-slicer: 1.1.0 - /yn@3.1.1: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} - engines: {node: '>=6'} + yn@3.1.1: {} - /yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} + yocto-queue@0.1.0: {} - /yocto-queue@1.1.1: - resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} - engines: {node: '>=12.20'} - dev: true + yocto-queue@1.1.1: {} - /zustand@4.5.4(@types/react@18.0.18)(react@18.3.1): - resolution: {integrity: sha512-/BPMyLKJPtFEvVL0E9E9BTUM63MNyhPGlvxk1XjrfWTUlV+BR8jufjsovHzrtR6YNcBEcL7cMHovL1n9xHawEg==} - engines: {node: '>=12.7.0'} - peerDependencies: - '@types/react': 18.0.18 - immer: '>=9.0.6' - react: '>=16.8' - peerDependenciesMeta: - '@types/react': - optional: true - immer: - optional: true - react: - optional: true + zustand@4.5.4(@types/react@18.0.18)(react@18.3.1): dependencies: + use-sync-external-store: 1.2.0(react@18.3.1) + optionalDependencies: '@types/react': 18.0.18 react: 18.3.1 - use-sync-external-store: 1.2.0(react@18.3.1) - dev: false - /zwitch@1.0.5: - resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==} + zwitch@1.0.5: {} - github.com/jeradrutnam/eslint-plugin-header/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3(eslint@8.46.0): - resolution: {tarball: https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3} - id: github.com/jeradrutnam/eslint-plugin-header/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3 - name: eslint-plugin-header - version: 3.2.0 - peerDependencies: - eslint: '>=7.7.0' - dependencies: - eslint: 8.46.0 - dev: true + zwitch@2.0.4: {} From ce62d7ad8fd2d50fc1dacadf6f500617a555275f Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Sun, 14 Jul 2024 19:29:56 +0530 Subject: [PATCH 069/114] fix the linting erros --- features/admin.core.v1/constants/i18n-constants.ts | 12 ++++++------ .../admin.template-core.v1/constants/templates.ts | 2 +- .../src/components/renderer/index.ts | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/features/admin.core.v1/constants/i18n-constants.ts b/features/admin.core.v1/constants/i18n-constants.ts index 0203ca8cc7f..4cede27c397 100644 --- a/features/admin.core.v1/constants/i18n-constants.ts +++ b/features/admin.core.v1/constants/i18n-constants.ts @@ -74,13 +74,13 @@ export class I18nConstants { * JWT private key configuration namespace. */ public static readonly JWT_PRIVATE_KEY_CONFIGURATION_NAMESPACE: string = - I18nModuleConstants.JWT_PRIVATE_KEY_CONFIGURATION_NAMESPACE; + I18nModuleConstants.JWT_PRIVATE_KEY_CONFIGURATION_NAMESPACE; /** * JWT private key configuration namespace. */ public static readonly IMPERSONATION_CONFIGURATION_NAMESPACE: string = - I18nModuleConstants.IMPERSONATION_NAMESPACE; + I18nModuleConstants.IMPERSONATION_NAMESPACE; /** * transferList namespace. @@ -101,7 +101,7 @@ export class I18nConstants { * governanceConnectors namespace. */ public static readonly GOVERNANCE_CONNECTORS_NAMESPACE: string = - I18nModuleConstants.GOVERNANCE_CONNECTORS_NAMESPACE; + I18nModuleConstants.GOVERNANCE_CONNECTORS_NAMESPACE; /** * Groups namespace. @@ -127,7 +127,7 @@ export class I18nConstants { * Parent org invitations namespace. */ public static readonly PARENT_ORG_INVITATIONS_NAMESPACE: string = - I18nModuleConstants.PARENT_ORG_INVITATIONS_NAMESPACE; + I18nModuleConstants.PARENT_ORG_INVITATIONS_NAMESPACE; /** * OIDC scopes namespace. @@ -143,7 +143,7 @@ export class I18nConstants { * Organization discovery namespace. */ public static readonly ORGANIZATION_DISCOVERY_NAMESPACE: string = - I18nModuleConstants.ORGANIZATION_DISCOVERY_NAMESPACE; + I18nModuleConstants.ORGANIZATION_DISCOVERY_NAMESPACE; /** * Organizations namespace. @@ -244,7 +244,7 @@ export class I18nConstants { * authenticationProvider namespace. */ public static readonly AUTHENTICATION_PROVIDER_NAMESPACE: string = - I18nModuleConstants.AUTHENTICATION_PROVIDER_NAMESPACE; + I18nModuleConstants.AUTHENTICATION_PROVIDER_NAMESPACE; /** * AI namespace. diff --git a/features/admin.template-core.v1/constants/templates.ts b/features/admin.template-core.v1/constants/templates.ts index 0df33df760f..3c405f7ab71 100644 --- a/features/admin.template-core.v1/constants/templates.ts +++ b/features/admin.template-core.v1/constants/templates.ts @@ -29,5 +29,5 @@ export class ExtensionTemplateConstants { displayName: "templateCore:categories.other.displayName", displayOrder: Infinity, id: "OTHER" - } + }; } diff --git a/modules/react-components/src/components/renderer/index.ts b/modules/react-components/src/components/renderer/index.ts index d8dfe0d5384..8739df361aa 100644 --- a/modules/react-components/src/components/renderer/index.ts +++ b/modules/react-components/src/components/renderer/index.ts @@ -1,5 +1,5 @@ /** - * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). All Rights Reserved. + * Copyright (c) 2020, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except From a55e4b53c0346012b22513997bbd48e30cf40eb7 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Mon, 15 Jul 2024 11:57:58 +0530 Subject: [PATCH 070/114] add file picker adapter component --- .../components/application-edit-form.tsx | 8 +- .../components/form-dynamic-field.tsx | 40 +++- .../models/dynamic-fields.ts | 36 +++- .../adapters/file-picker-adapter.scss | 56 +++++ .../adapters/file-picker-adapter.tsx | 195 ++++++++++++++++++ modules/form/src/components/index.ts | 1 + 6 files changed, 328 insertions(+), 8 deletions(-) create mode 100644 modules/form/src/components/adapters/file-picker-adapter.scss create mode 100644 modules/form/src/components/adapters/file-picker-adapter.tsx diff --git a/features/admin.application-templates.v1/components/application-edit-form.tsx b/features/admin.application-templates.v1/components/application-edit-form.tsx index 0662267f78f..d076edf3543 100644 --- a/features/admin.application-templates.v1/components/application-edit-form.tsx +++ b/features/admin.application-templates.v1/components/application-edit-form.tsx @@ -235,17 +235,19 @@ export const ApplicationEditForm: FunctionComponent { + callback(); + if (error?.response?.data?.description) { dispatch(addAlert({ description: error.response.data.description, @@ -264,8 +266,6 @@ export const ApplicationEditForm: FunctionComponent ); + case DynamicInputFieldTypes.FILE: + return ( + } + component={ FilePickerAdapter } + required={ field?.required } + helperText={ + field?.helperText ? ( + + { field?.helperText } + + ) : null + } + /> + ); default: return ( } = { + default: new DefaultFileStrategy(), + xml: new XMLFileStrategy() +}; + +/** + * Interface for the FilePickerAdapter component. + */ +export interface FilePickerAdapterPropsInterface extends FieldRenderProps { + /** + * The label to display above the FilePicker. + */ + label: string; + /** + * File type to be used in the FilePicker component. + */ + fileType: SupportedFileTypes; + /** + * In the dropzone we can explain what types of file + * and some descriptive info about the required file. + */ + dropzoneText: string; + /** + * This is the placeholder text for paste tab content + * area. By default this has a value like the following:- + * "Paste your content in this area..." + */ + pasteAreaPlaceholderText?: string; + /** + * The manual upload button text. This button is + * placed beneath the description. + */ + uploadButtonText: string; + /** + * Hide selection tabs & paste section. + */ + hidePasteOption?: boolean; + /** + * Form control props. + */ + FormControlProps?: FormControlProps; + /** + * Props for the input label component. + */ + InputLabelProps?: InputLabelProps; + /** + * Whether the FilePicker should take full width. + */ + fullWidth?: boolean; + /** + * Indicates whether the field is required. + */ + required?: boolean; + /** + * Helper text for the input field. + */ + helperText: string; + /** + * Placeholder icon for the file picker. + */ + placeholderIcon?: SemanticICONS | Icon | SVGElement | string | any; + /** + * Icon displayed after selecting the file. + */ + selectedIcon?: SemanticICONS | Icon | SVGElement | string | any; +} + +/** + * FilePickerAdapter is a React Final Form adapter for the FilePicker component. + * + * @param props - Props for the FilePickerAdapter component. + * @returns The rendered FilePickerAdapter component. + */ +const FilePickerAdapter: FunctionComponent = ( + props: FilePickerAdapterPropsInterface +): ReactElement => { + const { + name, + input, + meta, + label, + fileType, + dropzoneText, + pasteAreaPlaceholderText, + uploadButtonText, + fullWidth = true, + InputLabelProps, + required, + helperText, + hidePasteOption, + placeholderIcon, + selectedIcon, + FormControlProps = {} + } = props; + + const [ file, setFile ] = useState(null); + const [ pastedContent, setPastedContent ] = useState(null); + + const isError: boolean = (meta.error || meta.submitError) && meta.touched; + + const classes: string = classNames( + "file-picker-adapter", + { + error: isError + } + ); + + return ( + + { label && ( + + ) } + ) => { + setFile(result?.file); + setPastedContent(result?.pastedContent); + input.onChange(result?.serialized); + } } + dropzoneText={ dropzoneText } + pasteAreaPlaceholderText={ pasteAreaPlaceholderText } + uploadButtonText={ uploadButtonText } + icon={ placeholderIcon } + placeholderIcon={ selectedIcon } + file={ file } + pastedContent={ pastedContent } + normalizeStateOnRemoveOperations={ true } + hidePasteOption={ hidePasteOption } + /> + { isError && + { meta.error || meta.submitError } } + { helperText && { helperText } } + + ); +}; + +FilePickerAdapter.defaultProps = { + InputLabelProps: { + disableAnimation: true, + shrink: false + } +}; + +export default FilePickerAdapter; diff --git a/modules/form/src/components/index.ts b/modules/form/src/components/index.ts index 05d3869697b..e82eccd2237 100644 --- a/modules/form/src/components/index.ts +++ b/modules/form/src/components/index.ts @@ -19,6 +19,7 @@ export * from "./adapters/__DEPRECATED__adapters"; export * from "./adapters/text-field-adapter"; export { default as TextFieldAdapter } from "./adapters/text-field-adapter"; +export { default as FilePickerAdapter } from "./adapters/file-picker-adapter"; export { default as SelectFieldAdapter } from "./adapters/select-field-adapter"; export { default as AutocompleteFieldAdapter } from "./adapters/autocomplete-field-adapter"; export * from "./adapters/url-field-adapter"; From aea13ac6f5e93248c80925d0cc4749f5affc0158 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Mon, 15 Jul 2024 12:23:21 +0530 Subject: [PATCH 071/114] downgrade the eslint version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 27dc4727ea6..f9f2ba3038f 100755 --- a/package.json +++ b/package.json @@ -136,7 +136,7 @@ "css-loader": "^6.4.0", "cypress": "^9.1.0", "dotenv": "^16.0.3", - "eslint": "8.46.0", + "eslint": "^7.20.0", "eslint-config-prettier": "9.1.0", "eslint-plugin-cypress": "2.15.2", "eslint-plugin-header": "jeradrutnam/eslint-plugin-header#main", From 23780f4d41470844c7e88ec3c6eed3c9aa499576 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Mon, 15 Jul 2024 13:57:09 +0530 Subject: [PATCH 072/114] update pnpm lock file --- pnpm-lock.yaml | 38571 +++++++++++++++++++++-------------------------- 1 file changed, 16930 insertions(+), 21641 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1deeb914cdf..c19c97f4403 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: '9.0' +lockfileVersion: '6.0' settings: autoInstallPeers: true @@ -69,7 +69,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react-app-polyfill: specifier: ^1.0.4 version: 1.0.6 @@ -84,16 +84,16 @@ importers: version: 5.2.1(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@16.14.0)(react@16.14.0) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) react-top-loading-bar: specifier: ^1.2.0 - version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 @@ -136,76 +136,76 @@ importers: version: 7.24.7 '@changesets/changelog-github': specifier: ^0.4.8 - version: 0.4.8(encoding@0.1.13) + version: 0.4.8 '@changesets/cli': specifier: ^2.26.1 version: 2.27.5 '@nx/cypress': specifier: 17.0.0 - version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6) '@nx/devkit': specifier: 17.0.0 - version: 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + version: 17.0.0(nx@17.0.0) '@nx/eslint': specifier: 17.0.0 - version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0) '@nx/eslint-plugin': specifier: 17.0.0 - version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint-config-prettier@9.1.0(eslint@8.46.0))(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0)(eslint-config-prettier@9.1.0)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6) '@nx/jest': specifier: 17.0.0 - version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) + version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) '@nx/js': specifier: 17.0.0 - version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) '@nx/plugin': specifier: 17.0.0 - version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(eslint@8.46.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) + version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6) '@nx/react': specifier: 17.0.0 - version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6)(webpack@5.84.1) '@nx/rollup': specifier: 17.0.0 - version: 17.0.0(@babel/core@7.24.7)(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/babel__core@7.20.5)(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) + version: 17.0.0(@babel/core@7.24.7)(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) '@nx/storybook': specifier: 17.0.0 - version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6) '@nx/web': specifier: 17.0.0 - version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) '@nx/webpack': specifier: 17.0.0 - version: 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0)(nx@17.0.0)(typescript@5.1.6)(webpack-cli@4.10.0) '@nx/workspace': specifier: 17.0.0 - version: 17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) + version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.5.7 - version: 0.5.15(@types/webpack@4.41.38)(react-refresh@0.10.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.5.15(react-refresh@0.10.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@storybook/core-server': specifier: 7.6.9 - version: 7.6.9(encoding@0.1.13) + version: 7.6.9 '@storybook/react': specifier: 7.6.9 - version: 7.6.9(encoding@0.1.13)(typescript@5.1.6) + version: 7.6.9(typescript@5.1.6) '@storybook/react-webpack5': specifier: 7.6.9 - version: 7.6.9(@babel/core@7.24.7)(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)(@types/webpack@4.41.38)(encoding@0.1.13)(esbuild@0.18.20)(sockjs-client@1.6.1)(type-fest@4.20.1)(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1) + version: 7.6.9(@babel/core@7.24.7)(@swc/core@1.3.99)(@swc/helpers@0.5.9)(esbuild@0.18.20)(typescript@5.1.6)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3) '@swc-node/register': specifier: 1.6.8 - version: 1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6) + version: 1.6.8(@swc/core@1.3.99)(@swc/types@0.1.9)(typescript@5.1.6) '@swc/cli': specifier: 0.1.65 - version: 0.1.65(@swc/core@1.3.99(@swc/helpers@0.5.9))(chokidar@3.6.0) + version: 0.1.65(@swc/core@1.3.99) '@swc/core': specifier: 1.3.99 version: 1.3.99(@swc/helpers@0.5.9) '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.4.4)(jest@29.4.3(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6))) + version: 6.4.6(@types/jest@29.4.4)(jest@29.4.3) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.3.1(react-dom@18.3.1)(react@18.3.1) '@testing-library/user-event': specifier: ^14.5.2 version: 14.5.2(@testing-library/dom@9.3.4) @@ -256,34 +256,34 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: 5.62.0 - version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint@8.46.0)(typescript@5.1.6) + version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)(typescript@5.1.6) '@typescript-eslint/parser': specifier: 5.62.0 - version: 5.62.0(eslint@8.46.0)(typescript@5.1.6) + version: 5.62.0(eslint@7.32.0)(typescript@5.1.6) autoprefixer: specifier: 10.4.13 version: 10.4.13(postcss@8.4.39) babel-loader: specifier: ^8.1.0 - version: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) babel-plugin-rename-jsx-attribute: specifier: ^0.2.4 - version: 0.2.4(babel-core@7.0.0-bridge.0(@babel/core@7.24.7)) + version: 0.2.4(babel-core@6.26.3) child_process: specifier: ^1.0.2 version: 1.0.2 compression-webpack-plugin: specifier: ^7.1.2 - version: 7.1.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 7.1.2(webpack@5.84.1) copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) core-js: specifier: ^3.6.5 version: 3.37.1 css-loader: specifier: ^6.4.0 - version: 6.11.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.11.0(webpack@5.84.1) cypress: specifier: ^9.1.0 version: 9.7.0 @@ -291,47 +291,47 @@ importers: specifier: ^16.0.3 version: 16.4.5 eslint: - specifier: 8.46.0 - version: 8.46.0 + specifier: ^7.20.0 + version: 7.32.0 eslint-config-prettier: specifier: 9.1.0 - version: 9.1.0(eslint@8.46.0) + version: 9.1.0(eslint@7.32.0) eslint-plugin-cypress: specifier: 2.15.2 - version: 2.15.2(eslint@8.46.0) + version: 2.15.2(eslint@7.32.0) eslint-plugin-header: specifier: jeradrutnam/eslint-plugin-header#main - version: https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3(eslint@8.46.0) + version: github.com/jeradrutnam/eslint-plugin-header/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3(eslint@7.32.0) eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint@8.46.0) + version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@7.32.0) eslint-plugin-jsx-a11y: specifier: 6.5.1 - version: 6.5.1(eslint@8.46.0) + version: 6.5.1(eslint@7.32.0) eslint-plugin-react: specifier: 7.31.11 - version: 7.31.11(eslint@8.46.0) + version: 7.31.11(eslint@7.32.0) eslint-plugin-react-hooks: specifier: ^4.0.0 - version: 4.6.2(eslint@8.46.0) + version: 4.6.2(eslint@7.32.0) eslint-plugin-tsdoc: specifier: ^0.2.16 version: 0.2.17 eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@8.46.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) extract-text-webpack-plugin: specifier: ^4.0.0-beta.0 - version: 4.0.0-beta.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0-beta.0(webpack@5.84.1) fast-xml-parser: specifier: ^3.15.0 version: 3.21.1 file-loader: specifier: ^2.0.0 - version: 2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.0.0(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@8.46.0)(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@5.1.6)(webpack@5.84.1) fs-extra: specifier: ^9.0.1 version: 9.1.0 @@ -340,22 +340,22 @@ importers: version: 7.2.3 html-webpack-plugin: specifier: ^5.2.0 - version: 5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 5.6.0(webpack@5.84.1) identity-obj-proxy: specifier: ^3.0.0 version: 3.0.0 jest: specifier: 29.4.3 - version: 29.4.3(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) + version: 29.4.3(@types/node@18.11.9) jsonc-eslint-parser: specifier: ^2.1.0 version: 2.4.0 lerna: specifier: ^5.1.2 - version: 5.6.2(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13) + version: 5.6.2(@swc-node/register@1.6.8)(@swc/core@1.3.99) less-loader: specifier: ^5.0.0 - version: 5.0.0(less@4.1.3)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 5.0.0(less@3.13.1)(webpack@5.84.1) less-plugin-inline-urls: specifier: ^1.2.0 version: 1.2.0 @@ -376,10 +376,10 @@ importers: version: 1.2.0 mini-css-extract-plugin: specifier: ^0.4.3 - version: 0.4.5(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.5(webpack@5.84.1) nx: specifier: 17.0.0 - version: 17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) + version: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) nyc: specifier: ^15.1.0 version: 15.1.0 @@ -397,10 +397,10 @@ importers: version: 15.8.1 raw-loader: specifier: ^4.0.2 - version: 4.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.2(webpack@5.84.1) react-hot-loader: specifier: ^4.13.0 - version: 4.13.1(@types/react@18.0.18) + version: 4.13.1 react-refresh: specifier: ^0.10.0 version: 0.10.0 @@ -418,25 +418,25 @@ importers: version: 0.2.4 storybook: specifier: 7.6.9 - version: 7.6.9(encoding@0.1.13) + version: 7.6.9 style-loader: specifier: ^3.3.0 - version: 3.3.4(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 3.3.4(webpack@5.84.1) stylus: specifier: 0.59.0 version: 0.59.0 stylus-loader: specifier: ^7.1.0 - version: 7.1.3(stylus@0.59.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 7.1.3(stylus@0.59.0)(webpack@5.84.1) terser-webpack-plugin: specifier: ^5.1.1 - version: 5.3.10(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 5.3.10(@swc/core@1.3.99)(esbuild@0.18.20)(webpack@5.84.1) thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: 29.1.5 - version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.4.3(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)))(typescript@5.1.6) + version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.4.3)(typescript@5.1.6) ts-loader: specifier: ^6.0.1 version: 6.2.2(typescript@5.1.6) @@ -445,13 +445,13 @@ importers: version: 5.1.6 url-loader: specifier: ^4.1.1 - version: 4.1.1(file-loader@2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.1.1(file-loader@2.0.0)(webpack@5.84.1) watch: specifier: ^1.0.2 version: 1.0.2 webpack: specifier: 5.84.1 - version: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + version: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-bundle-analyzer: specifier: ^4.4.0 version: 4.10.2 @@ -460,13 +460,13 @@ importers: version: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) webpack-dev-server: specifier: ^3.11.2 - version: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) webpack-merge: specifier: ^5.8.0 version: 5.10.0 worker-loader: specifier: ^2.0.0 - version: 2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.0.0(webpack@5.84.1) write-file-webpack-plugin: specifier: ^4.5.1 version: 4.5.1 @@ -475,37 +475,37 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -691,7 +691,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -700,31 +700,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: 11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -733,7 +733,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -745,13 +745,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -761,7 +761,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@svgr/webpack': specifier: 4.3.2 version: 4.3.2 @@ -770,10 +770,10 @@ importers: version: 9.3.4 '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) + version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.3.1(react-dom@18.3.1)(react@18.3.1) '@testing-library/user-event': specifier: ^14.5.2 version: 14.5.2(@testing-library/dom@9.3.4) @@ -830,7 +830,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -839,16 +839,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -866,13 +866,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) jest-environment-jsdom: specifier: ^29.7.0 version: 29.7.0 @@ -881,10 +881,10 @@ importers: version: 4.0.0(jest-environment-jsdom@29.7.0) json-minimizer-webpack-plugin: specifier: ^5.0.0 - version: 5.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 5.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -902,10 +902,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -914,22 +914,22 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@babel/polyfill': specifier: ^7.0.0 version: 7.12.1 '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -998,19 +998,19 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) react-top-loading-bar: specifier: ^1.2.0 - version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 @@ -1022,7 +1022,7 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -1032,7 +1032,7 @@ importers: devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) + version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) '@types/history': specifier: ^4.7.3 version: 4.7.11 @@ -1074,7 +1074,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -1083,16 +1083,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -1110,10 +1110,10 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^3.1.1 - version: 3.2.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 3.2.0(eslint@7.32.0)(webpack@5.84.1) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -1122,10 +1122,10 @@ importers: version: 4.0.0(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^5.0.0 - version: 5.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 5.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -1143,10 +1143,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -1155,37 +1155,37 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../modules/access-control @@ -1230,7 +1230,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -1263,7 +1263,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -1272,31 +1272,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: 11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -1305,7 +1305,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -1317,13 +1317,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -1333,7 +1333,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -1420,7 +1420,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -1432,16 +1432,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -1456,13 +1456,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -1471,10 +1471,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -1513,10 +1513,10 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -1525,31 +1525,31 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -1588,10 +1588,10 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) @@ -1600,7 +1600,7 @@ importers: version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) devDependencies: '@rollup/plugin-commonjs': specifier: ^25.0.7 @@ -1658,34 +1658,34 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -1724,10 +1724,10 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) @@ -1736,7 +1736,7 @@ importers: version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) devDependencies: '@rollup/plugin-commonjs': specifier: ^25.0.7 @@ -1845,16 +1845,16 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) devDependencies: '@rollup/plugin-commonjs': specifier: ^25.0.7 @@ -1985,34 +1985,34 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -2135,13 +2135,13 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) @@ -2150,7 +2150,7 @@ importers: version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 @@ -2226,31 +2226,31 @@ importers: version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/admin.applications.v1': specifier: ^2.21.30 version: link:../admin.applications.v1 @@ -2310,19 +2310,19 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) redux: specifier: ^4.0.4 version: 4.2.1 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) devDependencies: '@rollup/plugin-commonjs': specifier: ^25.0.7 @@ -2389,7 +2389,7 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@wso2is/admin.authorization.v1': specifier: ^2.20.22 version: link:../admin.authorization.v1 @@ -2425,261 +2425,17 @@ importers: version: 18.3.1(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) - redux: - specifier: ^4.0.4 - version: 4.2.1 - redux-thunk: - specifier: ^2.3.0 - version: 2.4.2(redux@4.2.1) - devDependencies: - '@rollup/plugin-commonjs': - specifier: ^25.0.7 - version: 25.0.8(rollup@4.18.1) - '@rollup/plugin-dynamic-import-vars': - specifier: ^2.1.2 - version: 2.1.2(rollup@4.18.1) - '@rollup/plugin-image': - specifier: ^3.0.3 - version: 3.0.3(rollup@4.18.1) - '@rollup/plugin-json': - specifier: ^6.1.0 - version: 6.1.0(rollup@4.18.1) - '@rollup/plugin-node-resolve': - specifier: ^15.2.3 - version: 15.2.3(rollup@4.18.1) - '@rollup/plugin-typescript': - specifier: ^11.1.6 - version: 11.1.6(rollup@4.18.1)(tslib@2.6.3)(typescript@5.1.6) - '@svgr/rollup': - specifier: ^6.2.1 - version: 6.5.1 - '@types/lodash-es': - specifier: ^4.17.4 - version: 4.17.12 - '@types/react': - specifier: 18.0.18 - version: 18.0.18 - '@types/react-redux': - specifier: ^7.1.25 - version: 7.1.33 - rollup: - specifier: ^4.17.2 - version: 4.18.1 - rollup-plugin-dts: - specifier: ^6.1.1 - version: 6.1.1(rollup@4.18.1)(typescript@5.1.6) - rollup-plugin-generate-package-json: - specifier: ^3.2.0 - version: 3.2.0(rollup@4.18.1) - rollup-plugin-polyfill-node: - specifier: ^0.13.0 - version: 0.13.0(rollup@4.18.1) - rollup-plugin-scss: - specifier: ^4.0.0 - version: 4.0.0 - rollup-plugin-styles: - specifier: ^4.0.0 - version: 4.0.0(rollup@4.18.1) - rollup-plugin-svg: - specifier: ^2.0.0 - version: 2.0.0 - - features/admin.authorization.v1: - dependencies: - '@asgardeo/auth-react': - specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) - '@emotion/react': - specifier: ^11.11.0 - version: 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': - specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) - '@microsoft/applicationinsights-core-js': - specifier: ^3.0.0 - version: 3.2.1(tslib@2.6.3) - '@microsoft/applicationinsights-react-js': - specifier: ^3.4.2 - version: 3.4.3(history@4.10.1)(react@18.3.1)(tslib@2.6.3) - '@microsoft/applicationinsights-web': - specifier: ^3.0.0 - version: 3.2.1(tslib@2.6.3) - '@monaco-editor/react': - specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/icons-material': - specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) - '@mui/lab': - specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/material': - specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/system': - specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) - '@mui/utils': - specifier: ^5.12.3 - version: 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@oxygen-ui/react': - specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) - '@oxygen-ui/react-icons': - specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) - '@wso2is/access-control': - specifier: ^3.0.11 - version: link:../../modules/access-control - '@wso2is/core': - specifier: ^2.0.51 - version: link:../../modules/core - '@wso2is/dynamic-forms': - specifier: ^2.0.72 - version: link:../../modules/dynamic-forms - '@wso2is/form': - specifier: ^2.0.73 - version: link:../../modules/form - '@wso2is/forms': - specifier: ^2.0.41 - version: link:../../modules/forms - '@wso2is/i18n': - specifier: ^2.5.1 - version: link:../../modules/i18n - '@wso2is/react-components': - specifier: ^2.2.14 - version: link:../../modules/react-components - '@wso2is/theme': - specifier: ^2.0.89 - version: link:../../modules/theme - '@wso2is/validation': - specifier: ^2.0.6 - version: link:../../modules/validation - axios: - specifier: ^0.19.2 - version: 0.19.2 - codemirror: - specifier: ^5.52.0 - version: 5.65.16 - country-language: - specifier: ^0.1.7 - version: 0.1.7 - deep-equal: - specifier: ^2.2.2 - version: 2.2.3 - file-saver: - specifier: ^2.0.5 - version: 2.0.5 - framer-motion: - specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - history: - specifier: ^4.9.0 - version: 4.10.1 - html-react-parser: - specifier: ^2.0.0 - version: 2.0.0(react@18.3.1) - i18next: - specifier: ^21.9.1 - version: 21.10.0 - i18next-browser-languagedetector: - specifier: ^6.1.5 - version: 6.1.8 - i18next-xhr-backend: - specifier: ^3.2.2 - version: 3.2.2 - js-beautify: - specifier: ^1.13.0 - version: 1.15.1 - lodash-es: - specifier: ^4.17.21 - version: 4.17.21 - moment: - specifier: ^2.24.0 - version: 2.30.1 - mustache: - specifier: ^4.2.0 - version: 4.2.0 - node-forge: - specifier: ^0.10.0 - version: 0.10.0 - rc-tree: - specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: - specifier: ^18.2.0 - version: 18.3.1 - react-dom: - specifier: ^18.2.0 - version: 18.3.1(react@18.3.1) - react-draggable: - specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-helmet: - specifier: ^5.2.1 - version: 5.2.1(react@18.3.1) - react-i18next: - specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-joyride: - specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-notification-system: - specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-redux: - specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) - reactflow: - specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - recharts: - specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - reduce-reducers: - specifier: ^1.0.4 - version: 1.0.4 redux: specifier: ^4.0.4 version: 4.2.1 - redux-form: - specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) - redux-mock-store: - specifier: ^1.5.4 - version: 1.5.4 redux-thunk: specifier: ^2.3.0 version: 2.4.2(redux@4.2.1) - regenerator-runtime: - specifier: ^0.13.9 - version: 0.13.11 - semantic-ui-react: - specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - slashes: - specifier: ^2.0.2 - version: 2.0.2 - styled-components: - specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - swr: - specifier: ^2.0.0 - version: 2.2.5(react@18.3.1) - uuid: - specifier: ^8.3.0 - version: 8.3.2 devDependencies: - '@pmmmwh/react-refresh-webpack-plugin': - specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -2701,135 +2457,15 @@ importers: '@svgr/rollup': specifier: ^6.2.1 version: 6.5.1 - '@svgr/webpack': - specifier: 4.3.2 - version: 4.3.2 - '@testing-library/dom': - specifier: ^7.24.3 - version: 7.31.2 - '@testing-library/jest-dom': - specifier: ^5.11.9 - version: 5.17.0 - '@testing-library/user-event': - specifier: ^12.7.3 - version: 12.8.3(@testing-library/dom@7.31.2) - '@types/file-saver': - specifier: ^2.0.1 - version: 2.0.7 - '@types/history': - specifier: ^4.7.3 - version: 4.7.11 - '@types/jest': - specifier: ^26.0.14 - version: 26.0.24 '@types/lodash-es': specifier: ^4.17.4 version: 4.17.12 - '@types/node': - specifier: ^13.9.2 - version: 13.13.52 - '@types/node-forge': - specifier: ^0.9.3 - version: 0.9.10 '@types/react': specifier: 18.0.18 version: 18.0.18 - '@types/react-dom': - specifier: ^18.0.6 - version: 18.3.0 - '@types/react-notification-system': - specifier: 0.2.39 - version: 0.2.39 '@types/react-redux': specifier: ^7.1.25 version: 7.1.33 - '@types/react-router': - specifier: ^5.1.18 - version: 5.1.20 - '@types/react-router-dom': - specifier: ^5.1.3 - version: 5.3.3 - '@types/reactour': - specifier: ^1.18.1 - version: 1.18.5 - '@types/redux-mock-store': - specifier: ^1.0.2 - version: 1.0.6 - '@types/testing-library__jest-dom': - specifier: ^5.14.3 - version: 5.14.9 - '@types/uuid': - specifier: ^9.0.1 - version: 9.0.8 - '@types/webpack-env': - specifier: ^1.16.0 - version: 1.18.5 - '@typescript-eslint/eslint-plugin': - specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) - '@typescript-eslint/parser': - specifier: ^4.32.0 - version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) - connect-history-api-fallback: - specifier: ^2.0.0 - version: 2.0.0 - copy-webpack-plugin: - specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - css-loader: - specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - eslint: - specifier: ^7.20.0 - version: 7.32.0 - eslint-plugin-import: - specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) - eslint-plugin-jest-dom: - specifier: ^4.0.1 - version: 4.0.3(eslint@7.32.0) - eslint-plugin-react: - specifier: ^7.18.3 - version: 7.34.3(eslint@7.32.0) - eslint-plugin-react-hooks: - specifier: ^4.0.0 - version: 4.6.2(eslint@7.32.0) - eslint-plugin-testing-library: - specifier: ^5.0.5 - version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) - eslint-webpack-plugin: - specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - fork-ts-checker-webpack-plugin: - specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - jest: - specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) - jest-environment-jsdom: - specifier: ^26.3.0 - version: 26.6.2 - jest-environment-jsdom-global: - specifier: ^2.0.4 - version: 2.0.4(jest-environment-jsdom@26.6.2) - json-minimizer-webpack-plugin: - specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - msw: - specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) - process: - specifier: ^0.11.10 - version: 0.11.10 - react-refresh: - specifier: ^0.9.0 - version: 0.9.0 - redux-devtools-extension: - specifier: ^2.13.8 - version: 2.13.9(redux@4.2.1) - rimraf: - specifier: ^3.0.2 - version: 3.0.2 rollup: specifier: ^4.17.2 version: 4.18.1 @@ -2851,88 +2487,18 @@ importers: rollup-plugin-svg: specifier: ^2.0.0 version: 2.0.0 - style-loader: - specifier: ^0.23.1 - version: 0.23.1 - thread-loader: - specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - ts-jest: - specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) - typescript: - specifier: ^4.6.4 - version: 4.9.5 - features/admin.base.v1: - dependencies: - react: - specifier: ^18.2.0 - version: 18.3.1 - react-dom: - specifier: ^18.2.0 - version: 18.3.1(react@18.3.1) - devDependencies: - '@rollup/plugin-commonjs': - specifier: '*' - version: 25.0.8(rollup@4.18.1) - '@rollup/plugin-dynamic-import-vars': - specifier: '*' - version: 2.1.2(rollup@4.18.1) - '@rollup/plugin-image': - specifier: ^3.0.3 - version: 3.0.3(rollup@4.18.1) - '@rollup/plugin-json': - specifier: ^6.1.0 - version: 6.1.0(rollup@4.18.1) - '@rollup/plugin-node-resolve': - specifier: '*' - version: 15.2.3(rollup@4.18.1) - '@rollup/plugin-typescript': - specifier: ^11.1.6 - version: 11.1.6(rollup@4.18.1)(tslib@2.6.3)(typescript@4.9.5) - '@svgr/rollup': - specifier: ^6.2.1 - version: 6.5.1 - rollup: - specifier: ^4.17.2 - version: 4.18.1 - rollup-plugin-dts: - specifier: '*' - version: 6.1.1(rollup@4.18.1)(typescript@4.9.5) - rollup-plugin-generate-package-json: - specifier: ^3.2.0 - version: 3.2.0(rollup@4.18.1) - rollup-plugin-polyfill-node: - specifier: ^0.13.0 - version: 0.13.0(rollup@4.18.1) - rollup-plugin-scss: - specifier: ^4.0.0 - version: 4.0.0 - rollup-plugin-styles: - specifier: ^4.0.0 - version: 4.0.0(rollup@4.18.1) - rollup-plugin-svg: - specifier: ^2.0.0 - version: 2.0.0 - tslib: - specifier: '*' - version: 2.6.3 - typescript: - specifier: ^4.5.2 - version: 4.9.5 - - features/admin.branding.ai.v1: + features/admin.authorization.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -2944,46 +2510,31 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control - '@wso2is/admin.branding.v1': - specifier: ^2.20.60 - version: link:../admin.branding.v1 - '@wso2is/admin.core.v1': - specifier: ^2.22.2 - version: link:../admin.core.v1 - '@wso2is/admin.organizations.v1': - specifier: ^2.20.60 - version: link:../admin.organizations.v1 - '@wso2is/common.ai.v1': - specifier: ^2.20.60 - version: link:../common.ai.v1 - '@wso2is/common.branding.v1': - specifier: ^2.20.60 - version: link:../common.branding.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -3025,7 +2576,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -3058,7 +2609,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -3067,31 +2618,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -3100,7 +2651,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -3112,13 +2663,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -3128,7 +2679,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -3215,7 +2766,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -3224,16 +2775,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -3248,13 +2799,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -3263,10 +2814,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -3305,25 +2856,83 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.branding.v1: + features/admin.base.v1: + dependencies: + react: + specifier: ^18.2.0 + version: 18.3.1 + react-dom: + specifier: ^18.2.0 + version: 18.3.1(react@18.3.1) + devDependencies: + '@rollup/plugin-commonjs': + specifier: '*' + version: 25.0.8(rollup@4.18.1) + '@rollup/plugin-dynamic-import-vars': + specifier: '*' + version: 2.1.2(rollup@4.18.1) + '@rollup/plugin-image': + specifier: ^3.0.3 + version: 3.0.3(rollup@4.18.1) + '@rollup/plugin-json': + specifier: ^6.1.0 + version: 6.1.0(rollup@4.18.1) + '@rollup/plugin-node-resolve': + specifier: '*' + version: 15.2.3(rollup@4.18.1) + '@rollup/plugin-typescript': + specifier: ^11.1.6 + version: 11.1.6(rollup@4.18.1)(tslib@2.6.3)(typescript@4.9.5) + '@svgr/rollup': + specifier: ^6.2.1 + version: 6.5.1 + rollup: + specifier: ^4.17.2 + version: 4.18.1 + rollup-plugin-dts: + specifier: '*' + version: 6.1.1(rollup@4.18.1)(typescript@4.9.5) + rollup-plugin-generate-package-json: + specifier: ^3.2.0 + version: 3.2.0(rollup@4.18.1) + rollup-plugin-polyfill-node: + specifier: ^0.13.0 + version: 0.13.0(rollup@4.18.1) + rollup-plugin-scss: + specifier: ^4.0.0 + version: 4.0.0 + rollup-plugin-styles: + specifier: ^4.0.0 + version: 4.0.0(rollup@4.18.1) + rollup-plugin-svg: + specifier: ^2.0.0 + version: 2.0.0 + tslib: + specifier: '*' + version: 2.6.3 + typescript: + specifier: ^4.5.2 + version: 4.9.5 + + features/admin.branding.ai.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -3335,46 +2944,43 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control - '@wso2is/admin.branding.ai.v1': + '@wso2is/admin.branding.v1': specifier: ^2.20.60 - version: link:../admin.branding.ai.v1 + version: link:../admin.branding.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/admin.extensions.v1': - specifier: ^2.21.30 - version: link:../admin.extensions.v1 '@wso2is/admin.organizations.v1': specifier: ^2.20.60 version: link:../admin.organizations.v1 - '@wso2is/admin.server-configurations.v1': - specifier: ^2.21.2 - version: link:../admin.server-configurations.v1 + '@wso2is/common.ai.v1': + specifier: ^2.20.60 + version: link:../common.ai.v1 '@wso2is/common.branding.v1': specifier: ^2.20.60 version: link:../common.branding.v1 @@ -3405,9 +3011,6 @@ importers: axios: specifier: ^0.19.2 version: 0.19.2 - classnames: - specifier: ^2.2.6 - version: 2.5.1 codemirror: specifier: ^5.52.0 version: 5.65.16 @@ -3422,7 +3025,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -3455,7 +3058,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -3464,31 +3067,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -3497,7 +3100,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -3509,13 +3112,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -3525,7 +3128,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -3612,7 +3215,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -3621,16 +3224,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -3645,13 +3248,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -3660,10 +3263,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -3702,25 +3305,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.certificates.v1: + features/admin.branding.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -3732,34 +3335,49 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control + '@wso2is/admin.branding.ai.v1': + specifier: ^2.20.60 + version: link:../admin.branding.ai.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 + '@wso2is/admin.extensions.v1': + specifier: ^2.21.30 + version: link:../admin.extensions.v1 + '@wso2is/admin.organizations.v1': + specifier: ^2.20.60 + version: link:../admin.organizations.v1 + '@wso2is/admin.server-configurations.v1': + specifier: ^2.21.2 + version: link:../admin.server-configurations.v1 + '@wso2is/common.branding.v1': + specifier: ^2.20.60 + version: link:../common.branding.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -3787,6 +3405,9 @@ importers: axios: specifier: ^0.19.2 version: 0.19.2 + classnames: + specifier: ^2.2.6 + version: 2.5.1 codemirror: specifier: ^5.52.0 version: 5.65.16 @@ -3801,7 +3422,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -3820,9 +3441,6 @@ importers: js-beautify: specifier: ^1.13.0 version: 1.15.1 - jsrsasign: - specifier: ^10.5.26 - version: 10.9.0 lodash-es: specifier: ^4.17.21 version: 4.17.21 @@ -3837,7 +3455,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -3846,31 +3464,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -3879,7 +3497,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -3891,13 +3509,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -3907,7 +3525,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -3994,7 +3612,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -4003,16 +3621,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -4027,13 +3645,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -4042,10 +3660,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -4084,25 +3702,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.claims.v1: + features/admin.certificates.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -4114,52 +3732,34 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control - '@wso2is/admin.claims.v1': - specifier: ^2.20.60 - version: 'link:' '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/admin.extensions.v1': - specifier: ^2.21.30 - version: link:../admin.extensions.v1 - '@wso2is/admin.server-configurations.v1': - specifier: ^2.21.2 - version: link:../admin.server-configurations.v1 - '@wso2is/admin.users.v1': - specifier: ^2.20.60 - version: link:../admin.users.v1 - '@wso2is/admin.userstores.v1': - specifier: ^2.20.60 - version: link:../admin.userstores.v1 - '@wso2is/admin.validation.v1': - specifier: ^2.20.60 - version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -4201,7 +3801,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -4220,6 +3820,9 @@ importers: js-beautify: specifier: ^1.13.0 version: 1.15.1 + jsrsasign: + specifier: ^10.5.26 + version: 10.9.0 lodash-es: specifier: ^4.17.21 version: 4.17.21 @@ -4234,7 +3837,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -4243,31 +3846,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -4276,7 +3879,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -4288,13 +3891,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -4304,7 +3907,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -4391,7 +3994,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -4400,16 +4003,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -4424,13 +4027,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -4439,10 +4042,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -4481,25 +4084,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.connections.v1: + features/admin.claims.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -4511,64 +4114,52 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control - '@wso2is/admin.applications.v1': - specifier: ^2.21.30 - version: link:../admin.applications.v1 '@wso2is/admin.claims.v1': - specifier: ^2.20.60 - version: link:../admin.claims.v1 - '@wso2is/admin.connections.v1': specifier: ^2.20.60 version: 'link:' - '@wso2is/admin.console-settings.v1': - specifier: ^2.20.60 - version: link:../admin.console-settings.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': specifier: ^2.21.30 version: link:../admin.extensions.v1 - '@wso2is/admin.identity-providers.v1': - specifier: ^2.20.60 - version: link:../admin.identity-providers.v1 - '@wso2is/admin.organizations.v1': - specifier: ^2.20.60 - version: link:../admin.organizations.v1 - '@wso2is/admin.roles.v2': + '@wso2is/admin.server-configurations.v1': + specifier: ^2.21.2 + version: link:../admin.server-configurations.v1 + '@wso2is/admin.users.v1': specifier: ^2.20.60 - version: link:../admin.roles.v2 - '@wso2is/admin.template-core.v1': - specifier: ^1.0.0 - version: link:../admin.template-core.v1 + version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': specifier: ^2.20.60 version: link:../admin.userstores.v1 + '@wso2is/admin.validation.v1': + specifier: ^2.20.60 + version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -4610,7 +4201,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -4643,7 +4234,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -4652,31 +4243,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -4685,7 +4276,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -4697,13 +4288,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -4713,7 +4304,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -4800,7 +4391,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -4809,16 +4400,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -4833,13 +4424,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -4848,10 +4439,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -4890,25 +4481,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.console-settings.v1: + features/admin.connections.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -4920,37 +4511,43 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control '@wso2is/admin.applications.v1': specifier: ^2.21.30 version: link:../admin.applications.v1 - '@wso2is/admin.authentication.v1': + '@wso2is/admin.claims.v1': specifier: ^2.20.60 - version: link:../admin.authentication.v1 + version: link:../admin.claims.v1 + '@wso2is/admin.connections.v1': + specifier: ^2.20.60 + version: 'link:' + '@wso2is/admin.console-settings.v1': + specifier: ^2.20.60 + version: link:../admin.console-settings.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 @@ -4960,21 +4557,15 @@ importers: '@wso2is/admin.identity-providers.v1': specifier: ^2.20.60 version: link:../admin.identity-providers.v1 - '@wso2is/admin.login-flow.ai.v1': - specifier: ^2.20.60 - version: link:../admin.login-flow.ai.v1 '@wso2is/admin.organizations.v1': specifier: ^2.20.60 version: link:../admin.organizations.v1 '@wso2is/admin.roles.v2': specifier: ^2.20.60 version: link:../admin.roles.v2 - '@wso2is/admin.server-configurations.v1': - specifier: ^2.21.2 - version: link:../admin.server-configurations.v1 - '@wso2is/admin.users.v1': - specifier: ^2.20.60 - version: link:../admin.users.v1 + '@wso2is/admin.template-core.v1': + specifier: ^1.0.0 + version: link:../admin.template-core.v1 '@wso2is/admin.userstores.v1': specifier: ^2.20.60 version: link:../admin.userstores.v1 @@ -5019,7 +4610,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -5052,7 +4643,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -5061,31 +4652,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -5094,7 +4685,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -5106,13 +4697,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -5122,7 +4713,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -5209,7 +4800,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -5218,16 +4809,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -5242,13 +4833,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -5257,10 +4848,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -5299,178 +4890,103 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.core.v1: + features/admin.console-settings.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + '@microsoft/applicationinsights-core-js': + specifier: ^3.0.0 + version: 3.2.1(tslib@2.6.3) + '@microsoft/applicationinsights-react-js': + specifier: ^3.4.2 + version: 3.4.3(history@4.10.1)(react@18.3.1)(tslib@2.6.3) + '@microsoft/applicationinsights-web': + specifier: ^3.0.0 + version: 3.2.1(tslib@2.6.3) + '@monaco-editor/react': + specifier: ^4.5.1 + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control - '@wso2is/admin.api-resources.v1': - specifier: ^2.20.60 - version: link:../admin.api-resources.v1 - '@wso2is/admin.api-resources.v2': - specifier: ^2.20.60 - version: link:../admin.api-resources.v2 - '@wso2is/admin.application-templates.v1': - specifier: ^1.0.0 - version: link:../admin.application-templates.v1 '@wso2is/admin.applications.v1': specifier: ^2.21.30 version: link:../admin.applications.v1 '@wso2is/admin.authentication.v1': specifier: ^2.20.60 version: link:../admin.authentication.v1 - '@wso2is/admin.authorization.v1': - specifier: ^2.20.22 - version: link:../admin.authorization.v1 - '@wso2is/admin.branding.v1': - specifier: ^2.20.60 - version: link:../admin.branding.v1 - '@wso2is/admin.certificates.v1': - specifier: ^2.20.60 - version: link:../admin.certificates.v1 - '@wso2is/admin.claims.v1': - specifier: ^2.20.60 - version: link:../admin.claims.v1 - '@wso2is/admin.connections.v1': - specifier: ^2.20.60 - version: link:../admin.connections.v1 - '@wso2is/admin.console-settings.v1': - specifier: ^2.20.60 - version: link:../admin.console-settings.v1 - '@wso2is/admin.email-and-sms.v1': - specifier: ^2.20.60 - version: link:../admin.email-and-sms.v1 - '@wso2is/admin.email-management.v1': - specifier: ^2.20.60 - version: link:../admin.email-management.v1 - '@wso2is/admin.email-providers.v1': - specifier: ^2.20.60 - version: link:../admin.email-providers.v1 - '@wso2is/admin.email-templates.v1': - specifier: ^2.20.60 - version: link:../admin.email-templates.v1 + '@wso2is/admin.core.v1': + specifier: ^2.22.2 + version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': specifier: ^2.21.30 version: link:../admin.extensions.v1 - '@wso2is/admin.extensions.v2': - specifier: ^2.20.60 - version: link:../admin.extensions.v2 - '@wso2is/admin.groups.v1': - specifier: ^2.20.60 - version: link:../admin.groups.v1 '@wso2is/admin.identity-providers.v1': specifier: ^2.20.60 version: link:../admin.identity-providers.v1 - '@wso2is/admin.identity-verification-providers.v1': - specifier: ^2.20.60 - version: link:../admin.identity-verification-providers.v1 - '@wso2is/admin.impersonation.v1': - specifier: ^1.1.2 - version: link:../admin.impersonation.v1 - '@wso2is/admin.oidc-scopes.v1': - specifier: ^2.20.60 - version: link:../admin.oidc-scopes.v1 - '@wso2is/admin.org-insights.v1': - specifier: ^2.20.60 - version: link:../admin.org-insights.v1 - '@wso2is/admin.organization-discovery.v1': + '@wso2is/admin.login-flow.ai.v1': specifier: ^2.20.60 - version: link:../admin.organization-discovery.v1 + version: link:../admin.login-flow.ai.v1 '@wso2is/admin.organizations.v1': specifier: ^2.20.60 version: link:../admin.organizations.v1 - '@wso2is/admin.private-key-jwt.v1': - specifier: ^2.20.60 - version: link:../admin.private-key-jwt.v1 - '@wso2is/admin.remote-repository-configuration.v1': - specifier: ^2.20.60 - version: link:../admin.remote-repository-configuration.v1 - '@wso2is/admin.roles.v1': - specifier: ^2.20.60 - version: link:../admin.roles.v1 '@wso2is/admin.roles.v2': specifier: ^2.20.60 version: link:../admin.roles.v2 - '@wso2is/admin.saml2-configuration.v1': - specifier: ^2.20.60 - version: link:../admin.saml2-configuration.v1 - '@wso2is/admin.secrets.v1': - specifier: ^2.20.60 - version: link:../admin.secrets.v1 '@wso2is/admin.server-configurations.v1': specifier: ^2.21.2 version: link:../admin.server-configurations.v1 - '@wso2is/admin.server.v1': - specifier: ^2.20.60 - version: link:../admin.server.v1 - '@wso2is/admin.session-management.v1': - specifier: ^2.20.60 - version: link:../admin.session-management.v1 - '@wso2is/admin.sms-providers.v1': - specifier: ^2.20.60 - version: link:../admin.sms-providers.v1 - '@wso2is/admin.template-core.v1': - specifier: ^1.0.0 - version: link:../admin.template-core.v1 - '@wso2is/admin.tenants.v1': - specifier: ^2.20.60 - version: link:../admin.tenants.v1 '@wso2is/admin.users.v1': specifier: ^2.20.60 version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': specifier: ^2.20.60 version: link:../admin.userstores.v1 - '@wso2is/admin.validation.v1': - specifier: ^2.20.60 - version: link:../admin.validation.v1 - '@wso2is/admin.workflow-approvals.v1': - specifier: ^2.20.60 - version: link:../admin.workflow-approvals.v1 - '@wso2is/admin.wsfed-configuration.v1': - specifier: ^2.20.60 - version: link:../admin.wsfed-configuration.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core + '@wso2is/dynamic-forms': + specifier: ^2.0.72 + version: link:../../modules/dynamic-forms + '@wso2is/form': + specifier: ^2.0.73 + version: link:../../modules/form '@wso2is/forms': specifier: ^2.0.41 version: link:../../modules/forms @@ -5480,33 +4996,63 @@ importers: '@wso2is/react-components': specifier: ^2.2.14 version: link:../../modules/react-components + '@wso2is/theme': + specifier: ^2.0.89 + version: link:../../modules/theme + '@wso2is/validation': + specifier: ^2.0.6 + version: link:../../modules/validation axios: specifier: ^0.19.2 version: 0.19.2 - classnames: - specifier: ^2.2.6 - version: 2.5.1 + codemirror: + specifier: ^5.52.0 + version: 5.65.16 + country-language: + specifier: ^0.1.7 + version: 0.1.7 + deep-equal: + specifier: ^2.2.2 + version: 2.2.3 + file-saver: + specifier: ^2.0.5 + version: 2.0.5 + framer-motion: + specifier: ^11.1.9 + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 + html-react-parser: + specifier: ^2.0.0 + version: 2.0.0(react@18.3.1) i18next: specifier: ^21.9.1 version: 21.10.0 - jsrsasign: - specifier: ^10.5.26 - version: 10.9.0 + i18next-browser-languagedetector: + specifier: ^6.1.5 + version: 6.1.8 + i18next-xhr-backend: + specifier: ^3.2.2 + version: 3.2.2 + js-beautify: + specifier: ^1.13.0 + version: 1.15.1 lodash-es: specifier: ^4.17.21 version: 4.17.21 moment: specifier: ^2.24.0 version: 2.30.1 + mustache: + specifier: ^4.2.0 + version: 4.2.0 node-forge: specifier: ^0.10.0 version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -5515,31 +5061,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -5548,7 +5094,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -5560,20 +5106,23 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) + uuid: + specifier: ^8.3.0 + version: 8.3.2 devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -5660,7 +5209,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -5669,16 +5218,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -5693,13 +5242,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -5708,10 +5257,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -5750,76 +5299,178 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.email-and-sms.v1: + features/admin.core.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) - '@microsoft/applicationinsights-core-js': - specifier: ^3.0.0 - version: 3.2.1(tslib@2.6.3) - '@microsoft/applicationinsights-react-js': - specifier: ^3.4.2 - version: 3.4.3(history@4.10.1)(react@18.3.1)(tslib@2.6.3) - '@microsoft/applicationinsights-web': - specifier: ^3.0.0 - version: 3.2.1(tslib@2.6.3) - '@monaco-editor/react': - specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control - '@wso2is/admin.core.v1': - specifier: ^2.22.2 - version: link:../admin.core.v1 + '@wso2is/admin.api-resources.v1': + specifier: ^2.20.60 + version: link:../admin.api-resources.v1 + '@wso2is/admin.api-resources.v2': + specifier: ^2.20.60 + version: link:../admin.api-resources.v2 + '@wso2is/admin.application-templates.v1': + specifier: ^1.0.0 + version: link:../admin.application-templates.v1 + '@wso2is/admin.applications.v1': + specifier: ^2.21.30 + version: link:../admin.applications.v1 + '@wso2is/admin.authentication.v1': + specifier: ^2.20.60 + version: link:../admin.authentication.v1 + '@wso2is/admin.authorization.v1': + specifier: ^2.20.22 + version: link:../admin.authorization.v1 + '@wso2is/admin.branding.v1': + specifier: ^2.20.60 + version: link:../admin.branding.v1 + '@wso2is/admin.certificates.v1': + specifier: ^2.20.60 + version: link:../admin.certificates.v1 + '@wso2is/admin.claims.v1': + specifier: ^2.20.60 + version: link:../admin.claims.v1 + '@wso2is/admin.connections.v1': + specifier: ^2.20.60 + version: link:../admin.connections.v1 + '@wso2is/admin.console-settings.v1': + specifier: ^2.20.60 + version: link:../admin.console-settings.v1 + '@wso2is/admin.email-and-sms.v1': + specifier: ^2.20.60 + version: link:../admin.email-and-sms.v1 + '@wso2is/admin.email-management.v1': + specifier: ^2.20.60 + version: link:../admin.email-management.v1 + '@wso2is/admin.email-providers.v1': + specifier: ^2.20.60 + version: link:../admin.email-providers.v1 + '@wso2is/admin.email-templates.v1': + specifier: ^2.20.60 + version: link:../admin.email-templates.v1 + '@wso2is/admin.extensions.v1': + specifier: ^2.21.30 + version: link:../admin.extensions.v1 + '@wso2is/admin.extensions.v2': + specifier: ^2.20.60 + version: link:../admin.extensions.v2 + '@wso2is/admin.groups.v1': + specifier: ^2.20.60 + version: link:../admin.groups.v1 + '@wso2is/admin.identity-providers.v1': + specifier: ^2.20.60 + version: link:../admin.identity-providers.v1 + '@wso2is/admin.identity-verification-providers.v1': + specifier: ^2.20.60 + version: link:../admin.identity-verification-providers.v1 + '@wso2is/admin.impersonation.v1': + specifier: ^1.1.2 + version: link:../admin.impersonation.v1 + '@wso2is/admin.oidc-scopes.v1': + specifier: ^2.20.60 + version: link:../admin.oidc-scopes.v1 + '@wso2is/admin.org-insights.v1': + specifier: ^2.20.60 + version: link:../admin.org-insights.v1 + '@wso2is/admin.organization-discovery.v1': + specifier: ^2.20.60 + version: link:../admin.organization-discovery.v1 '@wso2is/admin.organizations.v1': specifier: ^2.20.60 version: link:../admin.organizations.v1 + '@wso2is/admin.private-key-jwt.v1': + specifier: ^2.20.60 + version: link:../admin.private-key-jwt.v1 + '@wso2is/admin.remote-repository-configuration.v1': + specifier: ^2.20.60 + version: link:../admin.remote-repository-configuration.v1 + '@wso2is/admin.roles.v1': + specifier: ^2.20.60 + version: link:../admin.roles.v1 + '@wso2is/admin.roles.v2': + specifier: ^2.20.60 + version: link:../admin.roles.v2 + '@wso2is/admin.saml2-configuration.v1': + specifier: ^2.20.60 + version: link:../admin.saml2-configuration.v1 + '@wso2is/admin.secrets.v1': + specifier: ^2.20.60 + version: link:../admin.secrets.v1 + '@wso2is/admin.server-configurations.v1': + specifier: ^2.21.2 + version: link:../admin.server-configurations.v1 + '@wso2is/admin.server.v1': + specifier: ^2.20.60 + version: link:../admin.server.v1 + '@wso2is/admin.session-management.v1': + specifier: ^2.20.60 + version: link:../admin.session-management.v1 + '@wso2is/admin.sms-providers.v1': + specifier: ^2.20.60 + version: link:../admin.sms-providers.v1 + '@wso2is/admin.template-core.v1': + specifier: ^1.0.0 + version: link:../admin.template-core.v1 + '@wso2is/admin.tenants.v1': + specifier: ^2.20.60 + version: link:../admin.tenants.v1 + '@wso2is/admin.users.v1': + specifier: ^2.20.60 + version: link:../admin.users.v1 + '@wso2is/admin.userstores.v1': + specifier: ^2.20.60 + version: link:../admin.userstores.v1 + '@wso2is/admin.validation.v1': + specifier: ^2.20.60 + version: link:../admin.validation.v1 + '@wso2is/admin.workflow-approvals.v1': + specifier: ^2.20.60 + version: link:../admin.workflow-approvals.v1 + '@wso2is/admin.wsfed-configuration.v1': + specifier: ^2.20.60 + version: link:../admin.wsfed-configuration.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core - '@wso2is/dynamic-forms': - specifier: ^2.0.72 - version: link:../../modules/dynamic-forms - '@wso2is/form': - specifier: ^2.0.73 - version: link:../../modules/form '@wso2is/forms': specifier: ^2.0.41 version: link:../../modules/forms @@ -5829,63 +5480,33 @@ importers: '@wso2is/react-components': specifier: ^2.2.14 version: link:../../modules/react-components - '@wso2is/theme': - specifier: ^2.0.89 - version: link:../../modules/theme - '@wso2is/validation': - specifier: ^2.0.6 - version: link:../../modules/validation axios: specifier: ^0.19.2 version: 0.19.2 - codemirror: - specifier: ^5.52.0 - version: 5.65.16 - country-language: - specifier: ^0.1.7 - version: 0.1.7 - deep-equal: - specifier: ^2.2.2 - version: 2.2.3 - file-saver: - specifier: ^2.0.5 - version: 2.0.5 - framer-motion: - specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + classnames: + specifier: ^2.2.6 + version: 2.5.1 history: specifier: ^4.9.0 version: 4.10.1 - html-react-parser: - specifier: ^2.0.0 - version: 2.0.0(react@18.3.1) i18next: specifier: ^21.9.1 version: 21.10.0 - i18next-browser-languagedetector: - specifier: ^6.1.5 - version: 6.1.8 - i18next-xhr-backend: - specifier: ^3.2.2 - version: 3.2.2 - js-beautify: - specifier: ^1.13.0 - version: 1.15.1 + jsrsasign: + specifier: ^10.5.26 + version: 10.9.0 lodash-es: specifier: ^4.17.21 version: 4.17.21 moment: specifier: ^2.24.0 version: 2.30.1 - mustache: - specifier: ^4.2.0 - version: 4.2.0 node-forge: specifier: ^0.10.0 version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -5894,31 +5515,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -5927,7 +5548,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -5939,23 +5560,20 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) - uuid: - specifier: ^8.3.0 - version: 8.3.2 devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -6042,7 +5660,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -6051,16 +5669,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -6075,13 +5693,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -6090,10 +5708,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -6132,25 +5750,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.email-management.v1: + features/admin.email-and-sms.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -6162,40 +5780,37 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control - '@wso2is/admin.branding.v1': - specifier: ^2.20.60 - version: link:../admin.branding.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/common.branding.v1': + '@wso2is/admin.organizations.v1': specifier: ^2.20.60 - version: link:../common.branding.v1 + version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -6237,7 +5852,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -6270,7 +5885,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -6279,31 +5894,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -6312,7 +5927,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -6324,13 +5939,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -6340,7 +5955,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -6427,7 +6042,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -6436,16 +6051,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -6460,13 +6075,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -6475,10 +6090,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -6517,25 +6132,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.email-providers.v1: + features/admin.email-management.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -6547,34 +6162,40 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control + '@wso2is/admin.branding.v1': + specifier: ^2.20.60 + version: link:../admin.branding.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 + '@wso2is/common.branding.v1': + specifier: ^2.20.60 + version: link:../common.branding.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -6616,7 +6237,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -6649,7 +6270,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -6658,31 +6279,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -6691,7 +6312,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -6703,13 +6324,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -6719,7 +6340,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -6806,7 +6427,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -6815,16 +6436,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -6839,13 +6460,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -6854,10 +6475,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -6896,25 +6517,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.email-templates.v1: + features/admin.email-providers.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -6926,37 +6547,34 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/admin.organizations.v1': - specifier: ^2.20.60 - version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -6998,7 +6616,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -7031,7 +6649,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -7040,31 +6658,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -7073,7 +6691,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -7085,13 +6703,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -7101,7 +6719,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -7188,7 +6806,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -7197,16 +6815,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -7221,13 +6839,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -7236,10 +6854,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -7278,25 +6896,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.extensions.v1: + features/admin.email-templates.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -7308,88 +6926,37 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control - '@wso2is/admin.api-resources.v1': - specifier: ^2.20.60 - version: link:../admin.api-resources.v1 - '@wso2is/admin.applications.v1': - specifier: ^2.21.30 - version: link:../admin.applications.v1 - '@wso2is/admin.authentication.v1': - specifier: ^2.20.60 - version: link:../admin.authentication.v1 - '@wso2is/admin.authorization.v1': - specifier: ^2.20.22 - version: link:../admin.authorization.v1 - '@wso2is/admin.claims.v1': - specifier: ^2.20.60 - version: link:../admin.claims.v1 - '@wso2is/admin.connections.v1': - specifier: ^2.20.60 - version: link:../admin.connections.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/admin.extensions.v2': - specifier: ^2.20.60 - version: link:../admin.extensions.v2 - '@wso2is/admin.groups.v1': - specifier: ^2.20.60 - version: link:../admin.groups.v1 - '@wso2is/admin.identity-providers.v1': - specifier: ^2.20.60 - version: link:../admin.identity-providers.v1 '@wso2is/admin.organizations.v1': specifier: ^2.20.60 version: link:../admin.organizations.v1 - '@wso2is/admin.provisioning.v1': - specifier: ^2.20.60 - version: link:../admin.provisioning.v1 - '@wso2is/admin.roles.v2': - specifier: ^2.20.60 - version: link:../admin.roles.v2 - '@wso2is/admin.server-configurations.v1': - specifier: ^2.21.2 - version: link:../admin.server-configurations.v1 - '@wso2is/admin.sms-providers.v1': - specifier: ^2.20.60 - version: link:../admin.sms-providers.v1 - '@wso2is/admin.tenants.v1': - specifier: ^2.20.60 - version: link:../admin.tenants.v1 - '@wso2is/admin.users.v1': - specifier: ^2.20.60 - version: link:../admin.users.v1 - '@wso2is/admin.userstores.v1': - specifier: ^2.20.60 - version: link:../admin.userstores.v1 - '@wso2is/admin.validation.v1': - specifier: ^2.20.60 - version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -7431,7 +6998,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -7464,7 +7031,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -7473,31 +7040,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -7506,7 +7073,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -7518,13 +7085,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -7534,7 +7101,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -7621,7 +7188,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -7630,16 +7197,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -7654,13 +7221,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -7669,10 +7236,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -7711,25 +7278,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.extensions.v2: + features/admin.extensions.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -7741,37 +7308,88 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control + '@wso2is/admin.api-resources.v1': + specifier: ^2.20.60 + version: link:../admin.api-resources.v1 + '@wso2is/admin.applications.v1': + specifier: ^2.21.30 + version: link:../admin.applications.v1 + '@wso2is/admin.authentication.v1': + specifier: ^2.20.60 + version: link:../admin.authentication.v1 + '@wso2is/admin.authorization.v1': + specifier: ^2.20.22 + version: link:../admin.authorization.v1 + '@wso2is/admin.claims.v1': + specifier: ^2.20.60 + version: link:../admin.claims.v1 + '@wso2is/admin.connections.v1': + specifier: ^2.20.60 + version: link:../admin.connections.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/admin.extensions.v1': - specifier: ^2.21.30 - version: link:../admin.extensions.v1 + '@wso2is/admin.extensions.v2': + specifier: ^2.20.60 + version: link:../admin.extensions.v2 + '@wso2is/admin.groups.v1': + specifier: ^2.20.60 + version: link:../admin.groups.v1 + '@wso2is/admin.identity-providers.v1': + specifier: ^2.20.60 + version: link:../admin.identity-providers.v1 + '@wso2is/admin.organizations.v1': + specifier: ^2.20.60 + version: link:../admin.organizations.v1 + '@wso2is/admin.provisioning.v1': + specifier: ^2.20.60 + version: link:../admin.provisioning.v1 + '@wso2is/admin.roles.v2': + specifier: ^2.20.60 + version: link:../admin.roles.v2 + '@wso2is/admin.server-configurations.v1': + specifier: ^2.21.2 + version: link:../admin.server-configurations.v1 + '@wso2is/admin.sms-providers.v1': + specifier: ^2.20.60 + version: link:../admin.sms-providers.v1 + '@wso2is/admin.tenants.v1': + specifier: ^2.20.60 + version: link:../admin.tenants.v1 + '@wso2is/admin.users.v1': + specifier: ^2.20.60 + version: link:../admin.users.v1 + '@wso2is/admin.userstores.v1': + specifier: ^2.20.60 + version: link:../admin.userstores.v1 + '@wso2is/admin.validation.v1': + specifier: ^2.20.60 + version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -7813,7 +7431,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -7846,7 +7464,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -7855,31 +7473,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -7888,7 +7506,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -7900,13 +7518,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -7916,7 +7534,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -8003,7 +7621,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -8012,16 +7630,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -8036,13 +7654,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -8051,10 +7669,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -8093,25 +7711,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.groups.v1: + features/admin.extensions.v2: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -8123,52 +7741,37 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control - '@wso2is/admin.authorization.v1': - specifier: ^2.20.22 - version: link:../admin.authorization.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': specifier: ^2.21.30 version: link:../admin.extensions.v1 - '@wso2is/admin.organizations.v1': - specifier: ^2.20.60 - version: link:../admin.organizations.v1 - '@wso2is/admin.roles.v2': - specifier: ^2.20.60 - version: link:../admin.roles.v2 - '@wso2is/admin.users.v1': - specifier: ^2.20.60 - version: link:../admin.users.v1 - '@wso2is/admin.userstores.v1': - specifier: ^2.20.60 - version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -8210,7 +7813,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -8243,7 +7846,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -8252,31 +7855,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -8285,7 +7888,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -8297,13 +7900,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -8313,7 +7916,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -8400,7 +8003,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -8409,16 +8012,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -8433,13 +8036,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -8448,10 +8051,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -8490,25 +8093,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.identity-providers.v1: + features/admin.groups.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -8520,58 +8123,49 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control - '@wso2is/admin.applications.v1': - specifier: ^2.21.30 - version: link:../admin.applications.v1 - '@wso2is/admin.claims.v1': - specifier: ^2.20.60 - version: link:../admin.claims.v1 - '@wso2is/admin.connections.v1': - specifier: ^2.20.60 - version: link:../admin.connections.v1 + '@wso2is/admin.authorization.v1': + specifier: ^2.20.22 + version: link:../admin.authorization.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': specifier: ^2.21.30 version: link:../admin.extensions.v1 - '@wso2is/admin.identity-providers.v1': - specifier: ^2.20.60 - version: 'link:' '@wso2is/admin.organizations.v1': specifier: ^2.20.60 version: link:../admin.organizations.v1 '@wso2is/admin.roles.v2': specifier: ^2.20.60 version: link:../admin.roles.v2 - '@wso2is/admin.server-configurations.v1': - specifier: ^2.21.2 - version: link:../admin.server-configurations.v1 + '@wso2is/admin.users.v1': + specifier: ^2.20.60 + version: link:../admin.users.v1 '@wso2is/admin.userstores.v1': specifier: ^2.20.60 version: link:../admin.userstores.v1 @@ -8616,7 +8210,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -8649,7 +8243,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -8658,31 +8252,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -8691,7 +8285,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -8703,13 +8297,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -8719,7 +8313,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -8806,7 +8400,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -8815,16 +8409,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -8839,13 +8433,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -8854,10 +8448,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -8896,25 +8490,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.identity-verification-providers.v1: + features/admin.identity-providers.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -8926,37 +8520,61 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control + '@wso2is/admin.applications.v1': + specifier: ^2.21.30 + version: link:../admin.applications.v1 '@wso2is/admin.claims.v1': specifier: ^2.20.60 version: link:../admin.claims.v1 + '@wso2is/admin.connections.v1': + specifier: ^2.20.60 + version: link:../admin.connections.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 + '@wso2is/admin.extensions.v1': + specifier: ^2.21.30 + version: link:../admin.extensions.v1 + '@wso2is/admin.identity-providers.v1': + specifier: ^2.20.60 + version: 'link:' + '@wso2is/admin.organizations.v1': + specifier: ^2.20.60 + version: link:../admin.organizations.v1 + '@wso2is/admin.roles.v2': + specifier: ^2.20.60 + version: link:../admin.roles.v2 + '@wso2is/admin.server-configurations.v1': + specifier: ^2.21.2 + version: link:../admin.server-configurations.v1 + '@wso2is/admin.userstores.v1': + specifier: ^2.20.60 + version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -8998,7 +8616,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -9031,7 +8649,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -9040,31 +8658,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -9073,7 +8691,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -9085,13 +8703,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -9101,7 +8719,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -9188,7 +8806,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -9197,16 +8815,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -9221,13 +8839,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -9236,10 +8854,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -9278,25 +8896,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.impersonation.v1: + features/admin.identity-verification-providers.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -9308,37 +8926,37 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control + '@wso2is/admin.claims.v1': + specifier: ^2.20.60 + version: link:../admin.claims.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/admin.server-configurations.v1': - specifier: ^2.21.2 - version: link:../admin.server-configurations.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -9358,7 +8976,7 @@ importers: specifier: ^2.2.14 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.0.87 + specifier: ^2.0.89 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.0.6 @@ -9366,6 +8984,12 @@ importers: axios: specifier: ^0.19.2 version: 0.19.2 + codemirror: + specifier: ^5.52.0 + version: 5.65.16 + country-language: + specifier: ^0.1.7 + version: 0.1.7 deep-equal: specifier: ^2.2.2 version: 2.2.3 @@ -9374,7 +8998,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -9407,7 +9031,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -9416,25 +9040,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) + reactflow: + specifier: ^11.7.2 + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + recharts: + specifier: ^2.6.2 + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -9443,7 +9073,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -9455,13 +9085,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -9471,7 +9101,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -9558,7 +9188,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -9567,16 +9197,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -9591,13 +9221,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -9606,10 +9236,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -9648,25 +9278,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.login-flow.ai.v1: + features/admin.impersonation.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -9678,49 +9308,37 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control - '@wso2is/admin.applications.v1': - specifier: ^2.21.30 - version: link:../admin.applications.v1 - '@wso2is/admin.claims.v1': - specifier: ^2.20.60 - version: link:../admin.claims.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/admin.identity-providers.v1': - specifier: ^2.20.60 - version: link:../admin.identity-providers.v1 - '@wso2is/admin.organizations.v1': - specifier: ^2.20.60 - version: link:../admin.organizations.v1 - '@wso2is/common.ai.v1': - specifier: ^2.20.60 - version: link:../common.ai.v1 + '@wso2is/admin.server-configurations.v1': + specifier: ^2.21.2 + version: link:../admin.server-configurations.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -9740,7 +9358,7 @@ importers: specifier: ^2.2.14 version: link:../../modules/react-components '@wso2is/theme': - specifier: ^2.0.89 + specifier: ^2.0.87 version: link:../../modules/theme '@wso2is/validation': specifier: ^2.0.6 @@ -9748,12 +9366,6 @@ importers: axios: specifier: ^0.19.2 version: 0.19.2 - codemirror: - specifier: ^5.52.0 - version: 5.65.16 - country-language: - specifier: ^0.1.7 - version: 0.1.7 deep-equal: specifier: ^2.2.2 version: 2.2.3 @@ -9762,7 +9374,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -9795,7 +9407,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -9804,31 +9416,25 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) - reactflow: - specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - recharts: - specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -9837,7 +9443,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -9849,13 +9455,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -9865,7 +9471,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -9952,7 +9558,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -9961,16 +9567,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -9985,13 +9591,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -10000,10 +9606,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -10042,25 +9648,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.oidc-scopes.v1: + features/admin.login-flow.ai.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -10072,28 +9678,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -10106,6 +9712,15 @@ importers: '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 + '@wso2is/admin.identity-providers.v1': + specifier: ^2.20.60 + version: link:../admin.identity-providers.v1 + '@wso2is/admin.organizations.v1': + specifier: ^2.20.60 + version: link:../admin.organizations.v1 + '@wso2is/common.ai.v1': + specifier: ^2.20.60 + version: link:../common.ai.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -10147,7 +9762,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -10180,7 +9795,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -10189,31 +9804,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -10222,7 +9837,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -10234,13 +9849,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -10250,7 +9865,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -10337,7 +9952,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -10346,16 +9961,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -10370,13 +9985,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -10385,10 +10000,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -10427,25 +10042,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.org-insights.v1: + features/admin.oidc-scopes.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -10457,31 +10072,37 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control + '@wso2is/admin.applications.v1': + specifier: ^2.21.30 + version: link:../admin.applications.v1 + '@wso2is/admin.claims.v1': + specifier: ^2.20.60 + version: link:../admin.claims.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 @@ -10526,7 +10147,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -10559,7 +10180,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -10568,31 +10189,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -10601,7 +10222,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -10613,13 +10234,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -10629,7 +10250,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -10716,7 +10337,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -10725,16 +10346,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -10749,13 +10370,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -10764,10 +10385,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -10806,25 +10427,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.organization-discovery.v1: + features/admin.org-insights.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -10836,37 +10457,34 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/admin.organizations.v1': - specifier: ^2.20.60 - version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -10908,7 +10526,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -10941,7 +10559,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -10950,31 +10568,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -10983,7 +10601,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -10995,13 +10613,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -11011,7 +10629,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -11098,7 +10716,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -11107,16 +10725,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -11131,13 +10749,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -11146,10 +10764,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -11188,25 +10806,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.organizations.v1: + features/admin.organization-discovery.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -11218,67 +10836,37 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control - '@wso2is/admin.applications.v1': - specifier: ^2.21.30 - version: link:../admin.applications.v1 - '@wso2is/admin.authentication.v1': - specifier: ^2.20.60 - version: link:../admin.authentication.v1 - '@wso2is/admin.authorization.v1': - specifier: ^2.20.22 - version: link:../admin.authorization.v1 - '@wso2is/admin.connections.v1': - specifier: ^2.20.60 - version: link:../admin.connections.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/admin.extensions.v1': - specifier: ^2.21.30 - version: link:../admin.extensions.v1 - '@wso2is/admin.groups.v1': - specifier: ^2.20.60 - version: link:../admin.groups.v1 - '@wso2is/admin.identity-providers.v1': - specifier: ^2.20.60 - version: link:../admin.identity-providers.v1 - '@wso2is/admin.roles.v2': - specifier: ^2.20.60 - version: link:../admin.roles.v2 - '@wso2is/admin.tenants.v1': - specifier: ^2.20.60 - version: link:../admin.tenants.v1 - '@wso2is/admin.users.v1': - specifier: ^2.20.60 - version: link:../admin.users.v1 - '@wso2is/admin.userstores.v1': + '@wso2is/admin.organizations.v1': specifier: ^2.20.60 - version: link:../admin.userstores.v1 + version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -11320,7 +10908,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -11353,7 +10941,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -11362,31 +10950,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -11395,7 +10983,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -11407,13 +10995,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -11423,7 +11011,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -11510,7 +11098,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -11519,16 +11107,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -11543,13 +11131,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -11558,10 +11146,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -11600,25 +11188,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.parent-roles.v1: + features/admin.organizations.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -11630,37 +11218,67 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control + '@wso2is/admin.applications.v1': + specifier: ^2.21.30 + version: link:../admin.applications.v1 + '@wso2is/admin.authentication.v1': + specifier: ^2.20.60 + version: link:../admin.authentication.v1 + '@wso2is/admin.authorization.v1': + specifier: ^2.20.22 + version: link:../admin.authorization.v1 + '@wso2is/admin.connections.v1': + specifier: ^2.20.60 + version: link:../admin.connections.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': specifier: ^2.21.30 version: link:../admin.extensions.v1 + '@wso2is/admin.groups.v1': + specifier: ^2.20.60 + version: link:../admin.groups.v1 + '@wso2is/admin.identity-providers.v1': + specifier: ^2.20.60 + version: link:../admin.identity-providers.v1 + '@wso2is/admin.roles.v2': + specifier: ^2.20.60 + version: link:../admin.roles.v2 + '@wso2is/admin.tenants.v1': + specifier: ^2.20.60 + version: link:../admin.tenants.v1 + '@wso2is/admin.users.v1': + specifier: ^2.20.60 + version: link:../admin.users.v1 + '@wso2is/admin.userstores.v1': + specifier: ^2.20.60 + version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -11702,7 +11320,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -11735,7 +11353,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -11744,31 +11362,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -11777,7 +11395,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -11789,13 +11407,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -11805,7 +11423,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -11892,7 +11510,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -11901,16 +11519,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -11925,13 +11543,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -11940,10 +11558,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -11982,25 +11600,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.private-key-jwt.v1: + features/admin.parent-roles.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -12012,37 +11630,37 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/admin.server-configurations.v1': - specifier: ^2.21.2 - version: link:../admin.server-configurations.v1 + '@wso2is/admin.extensions.v1': + specifier: ^2.21.30 + version: link:../admin.extensions.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -12084,7 +11702,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -12117,7 +11735,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -12126,31 +11744,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -12159,7 +11777,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -12171,13 +11789,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -12187,7 +11805,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -12274,7 +11892,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -12283,16 +11901,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -12307,13 +11925,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -12322,10 +11940,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -12364,25 +11982,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.provisioning.v1: + features/admin.private-key-jwt.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -12394,43 +12012,37 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control - '@wso2is/admin.applications.v1': - specifier: ^2.21.30 - version: link:../admin.applications.v1 - '@wso2is/admin.connections.v1': - specifier: ^2.20.60 - version: link:../admin.connections.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/admin.identity-providers.v1': - specifier: ^2.20.60 - version: link:../admin.identity-providers.v1 + '@wso2is/admin.server-configurations.v1': + specifier: ^2.21.2 + version: link:../admin.server-configurations.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -12472,7 +12084,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -12505,7 +12117,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -12514,31 +12126,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -12547,7 +12159,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -12559,13 +12171,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -12575,7 +12187,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -12662,7 +12274,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -12671,16 +12283,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -12695,13 +12307,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -12710,10 +12322,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -12752,25 +12364,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.remote-repository-configuration.v1: + features/admin.provisioning.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -12782,34 +12394,43 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control + '@wso2is/admin.applications.v1': + specifier: ^2.21.30 + version: link:../admin.applications.v1 + '@wso2is/admin.connections.v1': + specifier: ^2.20.60 + version: link:../admin.connections.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 + '@wso2is/admin.identity-providers.v1': + specifier: ^2.20.60 + version: link:../admin.identity-providers.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -12851,7 +12472,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -12884,7 +12505,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -12893,31 +12514,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -12926,7 +12547,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -12938,13 +12559,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -12954,7 +12575,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -13041,7 +12662,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -13050,16 +12671,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -13074,13 +12695,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -13089,10 +12710,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -13131,25 +12752,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.roles.v1: + features/admin.remote-repository-configuration.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -13161,49 +12782,34 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/admin.groups.v1': - specifier: ^2.20.60 - version: link:../admin.groups.v1 - '@wso2is/admin.organizations.v1': - specifier: ^2.20.60 - version: link:../admin.organizations.v1 - '@wso2is/admin.server-configurations.v1': - specifier: ^2.21.2 - version: link:../admin.server-configurations.v1 - '@wso2is/admin.users.v1': - specifier: ^2.20.60 - version: link:../admin.users.v1 - '@wso2is/admin.userstores.v1': - specifier: ^2.20.60 - version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -13245,7 +12851,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -13278,7 +12884,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -13287,31 +12893,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -13320,7 +12926,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -13332,13 +12938,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -13348,7 +12954,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -13435,7 +13041,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -13444,16 +13050,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -13468,13 +13074,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -13483,10 +13089,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -13525,25 +13131,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.roles.v2: + features/admin.roles.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -13555,55 +13161,37 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control - '@wso2is/admin.api-resources.v2': - specifier: ^2.20.60 - version: link:../admin.api-resources.v2 - '@wso2is/admin.applications.v1': - specifier: ^2.21.30 - version: link:../admin.applications.v1 - '@wso2is/admin.authorization.v1': - specifier: ^2.20.22 - version: link:../admin.authorization.v1 - '@wso2is/admin.connections.v1': - specifier: ^2.20.60 - version: link:../admin.connections.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/admin.extensions.v1': - specifier: ^2.21.30 - version: link:../admin.extensions.v1 '@wso2is/admin.groups.v1': specifier: ^2.20.60 version: link:../admin.groups.v1 - '@wso2is/admin.identity-providers.v1': - specifier: ^2.20.60 - version: link:../admin.identity-providers.v1 '@wso2is/admin.organizations.v1': specifier: ^2.20.60 version: link:../admin.organizations.v1 @@ -13657,7 +13245,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -13690,7 +13278,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -13699,31 +13287,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -13732,7 +13320,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -13744,13 +13332,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -13760,7 +13348,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -13847,7 +13435,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -13856,16 +13444,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -13880,13 +13468,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -13895,10 +13483,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -13937,25 +13525,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.saml2-configuration.v1: + features/admin.roles.v2: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -13967,34 +13555,67 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control + '@wso2is/admin.api-resources.v2': + specifier: ^2.20.60 + version: link:../admin.api-resources.v2 + '@wso2is/admin.applications.v1': + specifier: ^2.21.30 + version: link:../admin.applications.v1 + '@wso2is/admin.authorization.v1': + specifier: ^2.20.22 + version: link:../admin.authorization.v1 + '@wso2is/admin.connections.v1': + specifier: ^2.20.60 + version: link:../admin.connections.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 + '@wso2is/admin.extensions.v1': + specifier: ^2.21.30 + version: link:../admin.extensions.v1 + '@wso2is/admin.groups.v1': + specifier: ^2.20.60 + version: link:../admin.groups.v1 + '@wso2is/admin.identity-providers.v1': + specifier: ^2.20.60 + version: link:../admin.identity-providers.v1 + '@wso2is/admin.organizations.v1': + specifier: ^2.20.60 + version: link:../admin.organizations.v1 + '@wso2is/admin.server-configurations.v1': + specifier: ^2.21.2 + version: link:../admin.server-configurations.v1 + '@wso2is/admin.users.v1': + specifier: ^2.20.60 + version: link:../admin.users.v1 + '@wso2is/admin.userstores.v1': + specifier: ^2.20.60 + version: link:../admin.userstores.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -14036,7 +13657,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -14069,7 +13690,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -14078,31 +13699,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -14111,7 +13732,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -14123,13 +13744,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -14139,7 +13760,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -14226,7 +13847,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -14235,16 +13856,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -14259,13 +13880,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -14274,10 +13895,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -14316,25 +13937,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.secrets.v1: + features/admin.saml2-configuration.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -14346,28 +13967,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -14415,7 +14036,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -14448,7 +14069,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -14457,31 +14078,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -14490,7 +14111,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -14502,13 +14123,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -14518,7 +14139,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -14605,7 +14226,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -14614,16 +14235,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -14638,13 +14259,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -14653,10 +14274,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -14695,25 +14316,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.server-configurations.v1: + features/admin.secrets.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -14725,49 +14346,34 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/admin.extensions.v1': - specifier: ^2.21.30 - version: link:../admin.extensions.v1 - '@wso2is/admin.identity-providers.v1': - specifier: ^2.20.60 - version: link:../admin.identity-providers.v1 - '@wso2is/admin.server-configurations.v1': - specifier: ^2.21.2 - version: 'link:' - '@wso2is/admin.users.v1': - specifier: ^2.20.60 - version: link:../admin.users.v1 - '@wso2is/admin.validation.v1': - specifier: ^2.20.60 - version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -14809,7 +14415,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -14842,7 +14448,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -14851,31 +14457,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -14884,7 +14490,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -14896,13 +14502,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -14912,7 +14518,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -14999,7 +14605,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -15008,16 +14614,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -15032,13 +14638,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -15047,10 +14653,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -15089,25 +14695,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.server.v1: + features/admin.server-configurations.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -15119,37 +14725,49 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 + '@wso2is/admin.extensions.v1': + specifier: ^2.21.30 + version: link:../admin.extensions.v1 + '@wso2is/admin.identity-providers.v1': + specifier: ^2.20.60 + version: link:../admin.identity-providers.v1 '@wso2is/admin.server-configurations.v1': specifier: ^2.21.2 - version: link:../admin.server-configurations.v1 + version: 'link:' + '@wso2is/admin.users.v1': + specifier: ^2.20.60 + version: link:../admin.users.v1 + '@wso2is/admin.validation.v1': + specifier: ^2.20.60 + version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -15191,7 +14809,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -15224,7 +14842,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -15233,31 +14851,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -15266,7 +14884,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -15278,13 +14896,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -15294,7 +14912,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -15381,7 +14999,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -15390,16 +15008,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -15414,13 +15032,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -15429,10 +15047,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -15471,25 +15089,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.session-management.v1: + features/admin.server.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -15501,34 +15119,37 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 + '@wso2is/admin.server-configurations.v1': + specifier: ^2.21.2 + version: link:../admin.server-configurations.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -15570,7 +15191,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -15603,7 +15224,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -15612,31 +15233,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -15645,7 +15266,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -15657,13 +15278,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -15673,7 +15294,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -15760,7 +15381,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -15769,16 +15390,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -15793,13 +15414,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -15808,10 +15429,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -15850,25 +15471,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.sms-providers.v1: + features/admin.session-management.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -15880,40 +15501,34 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control - '@wso2is/admin.connections.v1': - specifier: ^2.20.60 - version: link:../admin.connections.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/admin.extensions.v1': - specifier: ^2.21.30 - version: link:../admin.extensions.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -15955,7 +15570,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -15988,7 +15603,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -15997,31 +15612,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -16030,7 +15645,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -16042,13 +15657,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -16058,7 +15673,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -16145,7 +15760,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -16154,16 +15769,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -16178,13 +15793,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -16193,10 +15808,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -16235,104 +15850,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.template-core.v1: - dependencies: - '@wso2is/admin.application-templates.v1': - specifier: ^1.0.0 - version: link:../admin.application-templates.v1 - '@wso2is/admin.applications.v1': - specifier: ^2.21.11 - version: link:../admin.applications.v1 - '@wso2is/admin.core.v1': - specifier: ^2.21.11 - version: link:../admin.core.v1 - '@wso2is/core': - specifier: ^2.0.50 - version: link:../../modules/core - i18next: - specifier: ^21.9.1 - version: 21.10.0 - react: - specifier: ^18.2.0 - version: 18.3.1 - react-dom: - specifier: ^18.2.0 - version: 18.3.1(react@18.3.1) - react-redux: - specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-router-dom: - specifier: ^4.3.1 - version: 4.3.1(react@18.3.1) - redux: - specifier: ^4.0.4 - version: 4.2.1 - devDependencies: - '@rollup/plugin-commonjs': - specifier: ^25.0.7 - version: 25.0.8(rollup@4.18.1) - '@rollup/plugin-dynamic-import-vars': - specifier: ^2.1.2 - version: 2.1.2(rollup@4.18.1) - '@rollup/plugin-image': - specifier: ^3.0.3 - version: 3.0.3(rollup@4.18.1) - '@rollup/plugin-json': - specifier: ^6.1.0 - version: 6.1.0(rollup@4.18.1) - '@rollup/plugin-node-resolve': - specifier: ^15.2.3 - version: 15.2.3(rollup@4.18.1) - '@rollup/plugin-typescript': - specifier: ^11.1.6 - version: 11.1.6(rollup@4.18.1)(tslib@2.6.3)(typescript@4.9.5) - '@svgr/rollup': - specifier: ^6.2.1 - version: 6.5.1 - rollup: - specifier: ^4.17.2 - version: 4.18.1 - rollup-plugin-dts: - specifier: ^6.1.1 - version: 6.1.1(rollup@4.18.1)(typescript@4.9.5) - rollup-plugin-generate-package-json: - specifier: ^3.2.0 - version: 3.2.0(rollup@4.18.1) - rollup-plugin-polyfill-node: - specifier: ^0.13.0 - version: 0.13.0(rollup@4.18.1) - rollup-plugin-scss: - specifier: ^4.0.0 - version: 4.0.0 - rollup-plugin-styles: - specifier: ^4.0.0 - version: 4.0.0(rollup@4.18.1) - rollup-plugin-svg: - specifier: ^2.0.0 - version: 2.0.0 - typescript: - specifier: ^4.6.4 - version: 4.9.5 - - features/admin.tenants.v1: + features/admin.sms-providers.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -16344,40 +15880,40 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control + '@wso2is/admin.connections.v1': + specifier: ^2.20.60 + version: link:../admin.connections.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': specifier: ^2.21.30 version: link:../admin.extensions.v1 - '@wso2is/admin.organizations.v1': - specifier: ^2.20.60 - version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -16419,7 +15955,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -16452,7 +15988,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -16461,31 +15997,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -16494,7 +16030,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -16506,13 +16042,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -16522,7 +16058,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -16609,7 +16145,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -16618,16 +16154,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -16642,13 +16178,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -16657,10 +16193,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -16699,25 +16235,104 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.users.v1: + features/admin.template-core.v1: + dependencies: + '@wso2is/admin.application-templates.v1': + specifier: ^1.0.0 + version: link:../admin.application-templates.v1 + '@wso2is/admin.applications.v1': + specifier: ^2.21.11 + version: link:../admin.applications.v1 + '@wso2is/admin.core.v1': + specifier: ^2.21.11 + version: link:../admin.core.v1 + '@wso2is/core': + specifier: ^2.0.50 + version: link:../../modules/core + i18next: + specifier: ^21.9.1 + version: 21.10.0 + react: + specifier: ^18.2.0 + version: 18.3.1 + react-dom: + specifier: ^18.2.0 + version: 18.3.1(react@18.3.1) + react-redux: + specifier: ^7.2.9 + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + react-router-dom: + specifier: ^4.3.1 + version: 4.3.1(react@18.3.1) + redux: + specifier: ^4.0.4 + version: 4.2.1 + devDependencies: + '@rollup/plugin-commonjs': + specifier: ^25.0.7 + version: 25.0.8(rollup@4.18.1) + '@rollup/plugin-dynamic-import-vars': + specifier: ^2.1.2 + version: 2.1.2(rollup@4.18.1) + '@rollup/plugin-image': + specifier: ^3.0.3 + version: 3.0.3(rollup@4.18.1) + '@rollup/plugin-json': + specifier: ^6.1.0 + version: 6.1.0(rollup@4.18.1) + '@rollup/plugin-node-resolve': + specifier: ^15.2.3 + version: 15.2.3(rollup@4.18.1) + '@rollup/plugin-typescript': + specifier: ^11.1.6 + version: 11.1.6(rollup@4.18.1)(tslib@2.6.3)(typescript@4.9.5) + '@svgr/rollup': + specifier: ^6.2.1 + version: 6.5.1 + rollup: + specifier: ^4.17.2 + version: 4.18.1 + rollup-plugin-dts: + specifier: ^6.1.1 + version: 6.1.1(rollup@4.18.1)(typescript@4.9.5) + rollup-plugin-generate-package-json: + specifier: ^3.2.0 + version: 3.2.0(rollup@4.18.1) + rollup-plugin-polyfill-node: + specifier: ^0.13.0 + version: 0.13.0(rollup@4.18.1) + rollup-plugin-scss: + specifier: ^4.0.0 + version: 4.0.0 + rollup-plugin-styles: + specifier: ^4.0.0 + version: 4.0.0(rollup@4.18.1) + rollup-plugin-svg: + specifier: ^2.0.0 + version: 2.0.0 + typescript: + specifier: ^4.6.4 + version: 4.9.5 + + features/admin.tenants.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -16729,70 +16344,40 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control - '@wso2is/admin.authentication.v1': - specifier: ^2.20.60 - version: link:../admin.authentication.v1 - '@wso2is/admin.authorization.v1': - specifier: ^2.20.22 - version: link:../admin.authorization.v1 - '@wso2is/admin.claims.v1': - specifier: ^2.20.60 - version: link:../admin.claims.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': specifier: ^2.21.30 version: link:../admin.extensions.v1 - '@wso2is/admin.groups.v1': - specifier: ^2.20.60 - version: link:../admin.groups.v1 - '@wso2is/admin.identity-providers.v1': - specifier: ^2.20.60 - version: link:../admin.identity-providers.v1 '@wso2is/admin.organizations.v1': specifier: ^2.20.60 version: link:../admin.organizations.v1 - '@wso2is/admin.roles.v2': - specifier: ^2.20.60 - version: link:../admin.roles.v2 - '@wso2is/admin.server-configurations.v1': - specifier: ^2.21.2 - version: link:../admin.server-configurations.v1 - '@wso2is/admin.users.v1': - specifier: ^2.20.60 - version: 'link:' - '@wso2is/admin.userstores.v1': - specifier: ^2.20.60 - version: link:../admin.userstores.v1 - '@wso2is/admin.validation.v1': - specifier: ^2.20.60 - version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -16834,7 +16419,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -16867,7 +16452,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -16876,31 +16461,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -16909,7 +16494,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -16921,13 +16506,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -16937,7 +16522,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -17024,7 +16609,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -17033,16 +16618,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -17057,13 +16642,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -17072,10 +16657,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -17114,25 +16699,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.userstores.v1: + features/admin.users.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -17144,37 +16729,70 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control + '@wso2is/admin.authentication.v1': + specifier: ^2.20.60 + version: link:../admin.authentication.v1 + '@wso2is/admin.authorization.v1': + specifier: ^2.20.22 + version: link:../admin.authorization.v1 + '@wso2is/admin.claims.v1': + specifier: ^2.20.60 + version: link:../admin.claims.v1 '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 '@wso2is/admin.extensions.v1': specifier: ^2.21.30 version: link:../admin.extensions.v1 + '@wso2is/admin.groups.v1': + specifier: ^2.20.60 + version: link:../admin.groups.v1 + '@wso2is/admin.identity-providers.v1': + specifier: ^2.20.60 + version: link:../admin.identity-providers.v1 + '@wso2is/admin.organizations.v1': + specifier: ^2.20.60 + version: link:../admin.organizations.v1 + '@wso2is/admin.roles.v2': + specifier: ^2.20.60 + version: link:../admin.roles.v2 + '@wso2is/admin.server-configurations.v1': + specifier: ^2.21.2 + version: link:../admin.server-configurations.v1 + '@wso2is/admin.users.v1': + specifier: ^2.20.60 + version: 'link:' + '@wso2is/admin.userstores.v1': + specifier: ^2.20.60 + version: link:../admin.userstores.v1 + '@wso2is/admin.validation.v1': + specifier: ^2.20.60 + version: link:../admin.validation.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -17216,7 +16834,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -17249,7 +16867,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -17258,31 +16876,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -17291,7 +16909,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -17303,13 +16921,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -17319,7 +16937,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -17406,7 +17024,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -17415,16 +17033,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -17439,13 +17057,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -17454,10 +17072,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -17496,25 +17114,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.validation.v1: + features/admin.userstores.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -17526,28 +17144,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -17557,15 +17175,6 @@ importers: '@wso2is/admin.extensions.v1': specifier: ^2.21.30 version: link:../admin.extensions.v1 - '@wso2is/admin.organizations.v1': - specifier: ^2.20.60 - version: link:../admin.organizations.v1 - '@wso2is/admin.server-configurations.v1': - specifier: ^2.21.2 - version: link:../admin.server-configurations.v1 - '@wso2is/admin.users.v1': - specifier: ^2.20.60 - version: link:../admin.users.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -17607,7 +17216,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -17640,7 +17249,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -17649,31 +17258,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -17682,7 +17291,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -17694,13 +17303,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -17710,7 +17319,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -17797,7 +17406,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -17806,16 +17415,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -17830,13 +17439,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -17845,10 +17454,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -17887,25 +17496,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.workflow-approvals.v1: + features/admin.validation.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -17917,34 +17526,46 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 + '@wso2is/admin.extensions.v1': + specifier: ^2.21.30 + version: link:../admin.extensions.v1 + '@wso2is/admin.organizations.v1': + specifier: ^2.20.60 + version: link:../admin.organizations.v1 + '@wso2is/admin.server-configurations.v1': + specifier: ^2.21.2 + version: link:../admin.server-configurations.v1 + '@wso2is/admin.users.v1': + specifier: ^2.20.60 + version: link:../admin.users.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -17986,7 +17607,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -18019,7 +17640,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -18028,31 +17649,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -18061,7 +17682,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -18073,13 +17694,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -18089,7 +17710,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -18176,7 +17797,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -18185,16 +17806,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -18209,13 +17830,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -18224,10 +17845,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -18266,25 +17887,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/admin.wsfed-configuration.v1: + features/admin.workflow-approvals.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -18296,28 +17917,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -18365,7 +17986,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -18398,7 +18019,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -18407,31 +18028,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -18440,7 +18061,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -18452,13 +18073,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -18468,7 +18089,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -18555,7 +18176,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -18564,16 +18185,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -18588,13 +18209,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -18603,10 +18224,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -18645,25 +18266,25 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/common.ai.v1: + features/admin.wsfed-configuration.v1: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@microsoft/applicationinsights-core-js': specifier: ^3.0.0 version: 3.2.1(tslib@2.6.3) @@ -18675,28 +18296,28 @@ importers: version: 3.2.1(tslib@2.6.3) '@monaco-editor/react': specifier: ^4.5.1 - version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/access-control': specifier: ^3.0.11 version: link:../../modules/access-control @@ -18744,7 +18365,7 @@ importers: version: 2.0.5 framer-motion: specifier: ^11.1.9 - version: 11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) history: specifier: ^4.9.0 version: 4.10.1 @@ -18777,7 +18398,7 @@ importers: version: 0.10.0 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -18786,31 +18407,31 @@ importers: version: 18.3.1(react@18.3.1) react-draggable: specifier: ^4.2.0 - version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) react-helmet: specifier: ^5.2.1 version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-joyride: specifier: ^2.3.0 - version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-redux: specifier: ^7.2.9 - version: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) reactflow: specifier: ^11.7.2 - version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) recharts: specifier: ^2.6.2 - version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) reduce-reducers: specifier: ^1.0.4 version: 1.0.4 @@ -18819,7 +18440,7 @@ importers: version: 4.2.1 redux-form: specifier: ^8.3.7 - version: 8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1) + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) redux-mock-store: specifier: ^1.5.4 version: 1.5.4 @@ -18831,13 +18452,13 @@ importers: version: 0.13.11 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) slashes: specifier: ^2.0.2 version: 2.0.2 styled-components: specifier: ^4.4.1 - version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) swr: specifier: ^2.0.0 version: 2.2.5(react@18.3.1) @@ -18847,7 +18468,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.4.3 - version: 0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.8(rollup@4.18.1) @@ -18934,7 +18555,7 @@ importers: version: 1.18.5 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -18943,16 +18564,16 @@ importers: version: 2.0.0 copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) css-loader: specifier: ^1.0.0 - version: 1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 1.0.1(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-jest-dom: specifier: ^4.0.1 version: 4.0.3(eslint@7.32.0) @@ -18967,13 +18588,13 @@ importers: version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) eslint-webpack-plugin: specifier: ^2.5.3 - version: 2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) fork-ts-checker-webpack-plugin: specifier: ^6.1.0 - version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) jest: specifier: ^26.4.2 - version: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + version: 26.6.3 jest-environment-jsdom: specifier: ^26.3.0 version: 26.6.2 @@ -18982,10 +18603,10 @@ importers: version: 2.0.4(jest-environment-jsdom@26.6.2) json-minimizer-webpack-plugin: specifier: ^4.0.0 - version: 4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 4.0.0(webpack@5.84.1) msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 process: specifier: ^0.11.10 version: 0.11.10 @@ -19024,46 +18645,425 @@ importers: version: 0.23.1 thread-loader: specifier: ^2.1.3 - version: 2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 2.1.3(webpack@5.84.1) ts-jest: specifier: ^26.4.0 - version: 26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 - features/common.branding.v1: + features/common.ai.v1: dependencies: + '@asgardeo/auth-react': + specifier: ^4.0.4 + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1) '@emotion/react': specifier: ^11.11.0 version: 11.11.4(@types/react@18.0.18)(react@18.3.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + '@microsoft/applicationinsights-core-js': + specifier: ^3.0.0 + version: 3.2.1(tslib@2.6.3) + '@microsoft/applicationinsights-react-js': + specifier: ^3.4.2 + version: 3.4.3(history@4.10.1)(react@18.3.1)(tslib@2.6.3) + '@microsoft/applicationinsights-web': + specifier: ^3.0.0 + version: 3.2.1(tslib@2.6.3) + '@monaco-editor/react': + specifier: ^4.5.1 + version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) '@mui/icons-material': specifier: ^5.11.16 - version: 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) '@mui/lab': specifier: 5.0.0-alpha.129 - version: 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/system': specifier: ^5.12.3 - version: 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': specifier: ^5.12.3 version: 5.15.20(@types/react@18.0.18)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + '@oxygen-ui/react-icons': + specifier: ^1.11.0 + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + '@wso2is/access-control': + specifier: ^3.0.11 + version: link:../../modules/access-control '@wso2is/admin.core.v1': specifier: ^2.22.2 version: link:../admin.core.v1 - '@wso2is/admin.organizations.v1': - specifier: ^2.20.60 - version: link:../admin.organizations.v1 + '@wso2is/core': + specifier: ^2.0.51 + version: link:../../modules/core + '@wso2is/dynamic-forms': + specifier: ^2.0.72 + version: link:../../modules/dynamic-forms + '@wso2is/form': + specifier: ^2.0.73 + version: link:../../modules/form + '@wso2is/forms': + specifier: ^2.0.41 + version: link:../../modules/forms + '@wso2is/i18n': + specifier: ^2.5.1 + version: link:../../modules/i18n + '@wso2is/react-components': + specifier: ^2.2.14 + version: link:../../modules/react-components + '@wso2is/theme': + specifier: ^2.0.89 + version: link:../../modules/theme + '@wso2is/validation': + specifier: ^2.0.6 + version: link:../../modules/validation + axios: + specifier: ^0.19.2 + version: 0.19.2 + codemirror: + specifier: ^5.52.0 + version: 5.65.16 + country-language: + specifier: ^0.1.7 + version: 0.1.7 + deep-equal: + specifier: ^2.2.2 + version: 2.2.3 + file-saver: + specifier: ^2.0.5 + version: 2.0.5 + framer-motion: + specifier: ^11.1.9 + version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + history: + specifier: ^4.9.0 + version: 4.10.1 + html-react-parser: + specifier: ^2.0.0 + version: 2.0.0(react@18.3.1) + i18next: + specifier: ^21.9.1 + version: 21.10.0 + i18next-browser-languagedetector: + specifier: ^6.1.5 + version: 6.1.8 + i18next-xhr-backend: + specifier: ^3.2.2 + version: 3.2.2 + js-beautify: + specifier: ^1.13.0 + version: 1.15.1 + lodash-es: + specifier: ^4.17.21 + version: 4.17.21 + moment: + specifier: ^2.24.0 + version: 2.30.1 + mustache: + specifier: ^4.2.0 + version: 4.2.0 + node-forge: + specifier: ^0.10.0 + version: 0.10.0 + rc-tree: + specifier: ^4.0.0-beta.2 + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) + react: + specifier: ^18.2.0 + version: 18.3.1 + react-dom: + specifier: ^18.2.0 + version: 18.3.1(react@18.3.1) + react-draggable: + specifier: ^4.2.0 + version: 4.4.6(react-dom@18.3.1)(react@18.3.1) + react-helmet: + specifier: ^5.2.1 + version: 5.2.1(react@18.3.1) + react-i18next: + specifier: ^11.18.5 + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) + react-joyride: + specifier: ^2.3.0 + version: 2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + react-notification-system: + specifier: ^0.4.0 + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) + react-redux: + specifier: ^7.2.9 + version: 7.2.9(react-dom@18.3.1)(react@18.3.1) + react-router-dom: + specifier: ^4.3.1 + version: 4.3.1(react@18.3.1) + reactflow: + specifier: ^11.7.2 + version: 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + recharts: + specifier: ^2.6.2 + version: 2.12.7(react-dom@18.3.1)(react@18.3.1) + reduce-reducers: + specifier: ^1.0.4 + version: 1.0.4 + redux: + specifier: ^4.0.4 + version: 4.2.1 + redux-form: + specifier: ^8.3.7 + version: 8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1) + redux-mock-store: + specifier: ^1.5.4 + version: 1.5.4 + redux-thunk: + specifier: ^2.3.0 + version: 2.4.2(redux@4.2.1) + regenerator-runtime: + specifier: ^0.13.9 + version: 0.13.11 + semantic-ui-react: + specifier: ^2.1.3 + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) + slashes: + specifier: ^2.0.2 + version: 2.0.2 + styled-components: + specifier: ^4.4.1 + version: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) + swr: + specifier: ^2.0.0 + version: 2.2.5(react@18.3.1) + uuid: + specifier: ^8.3.0 + version: 8.3.2 + devDependencies: + '@pmmmwh/react-refresh-webpack-plugin': + specifier: ^0.4.3 + version: 0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + '@rollup/plugin-commonjs': + specifier: ^25.0.7 + version: 25.0.8(rollup@4.18.1) + '@rollup/plugin-dynamic-import-vars': + specifier: ^2.1.2 + version: 2.1.2(rollup@4.18.1) + '@rollup/plugin-image': + specifier: ^3.0.3 + version: 3.0.3(rollup@4.18.1) + '@rollup/plugin-json': + specifier: ^6.1.0 + version: 6.1.0(rollup@4.18.1) + '@rollup/plugin-node-resolve': + specifier: ^15.2.3 + version: 15.2.3(rollup@4.18.1) + '@rollup/plugin-typescript': + specifier: ^11.1.6 + version: 11.1.6(rollup@4.18.1)(tslib@2.6.3)(typescript@4.9.5) + '@svgr/rollup': + specifier: ^6.2.1 + version: 6.5.1 + '@svgr/webpack': + specifier: 4.3.2 + version: 4.3.2 + '@testing-library/dom': + specifier: ^7.24.3 + version: 7.31.2 + '@testing-library/jest-dom': + specifier: ^5.11.9 + version: 5.17.0 + '@testing-library/user-event': + specifier: ^12.7.3 + version: 12.8.3(@testing-library/dom@7.31.2) + '@types/file-saver': + specifier: ^2.0.1 + version: 2.0.7 + '@types/history': + specifier: ^4.7.3 + version: 4.7.11 + '@types/jest': + specifier: ^26.0.14 + version: 26.0.24 + '@types/lodash-es': + specifier: ^4.17.4 + version: 4.17.12 + '@types/node': + specifier: ^13.9.2 + version: 13.13.52 + '@types/node-forge': + specifier: ^0.9.3 + version: 0.9.10 + '@types/react': + specifier: 18.0.18 + version: 18.0.18 + '@types/react-dom': + specifier: ^18.0.6 + version: 18.3.0 + '@types/react-notification-system': + specifier: 0.2.39 + version: 0.2.39 + '@types/react-redux': + specifier: ^7.1.25 + version: 7.1.33 + '@types/react-router': + specifier: ^5.1.18 + version: 5.1.20 + '@types/react-router-dom': + specifier: ^5.1.3 + version: 5.3.3 + '@types/reactour': + specifier: ^1.18.1 + version: 1.18.5 + '@types/redux-mock-store': + specifier: ^1.0.2 + version: 1.0.6 + '@types/testing-library__jest-dom': + specifier: ^5.14.3 + version: 5.14.9 + '@types/uuid': + specifier: ^9.0.1 + version: 9.0.8 + '@types/webpack-env': + specifier: ^1.16.0 + version: 1.18.5 + '@typescript-eslint/eslint-plugin': + specifier: ^4.32.0 + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + '@typescript-eslint/parser': + specifier: ^4.32.0 + version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) + connect-history-api-fallback: + specifier: ^2.0.0 + version: 2.0.0 + copy-webpack-plugin: + specifier: ^12.0.2 + version: 12.0.2(webpack@5.84.1) + css-loader: + specifier: ^1.0.0 + version: 1.0.1(webpack@5.84.1) + eslint: + specifier: ^7.20.0 + version: 7.32.0 + eslint-plugin-import: + specifier: ^2.20.2 + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) + eslint-plugin-jest-dom: + specifier: ^4.0.1 + version: 4.0.3(eslint@7.32.0) + eslint-plugin-react: + specifier: ^7.18.3 + version: 7.34.3(eslint@7.32.0) + eslint-plugin-react-hooks: + specifier: ^4.0.0 + version: 4.6.2(eslint@7.32.0) + eslint-plugin-testing-library: + specifier: ^5.0.5 + version: 5.11.1(eslint@7.32.0)(typescript@4.9.5) + eslint-webpack-plugin: + specifier: ^2.5.3 + version: 2.7.0(eslint@7.32.0)(webpack@5.84.1) + fork-ts-checker-webpack-plugin: + specifier: ^6.1.0 + version: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) + jest: + specifier: ^26.4.2 + version: 26.6.3 + jest-environment-jsdom: + specifier: ^26.3.0 + version: 26.6.2 + jest-environment-jsdom-global: + specifier: ^2.0.4 + version: 2.0.4(jest-environment-jsdom@26.6.2) + json-minimizer-webpack-plugin: + specifier: ^4.0.0 + version: 4.0.0(webpack@5.84.1) + msw: + specifier: ^0.36.8 + version: 0.36.8 + process: + specifier: ^0.11.10 + version: 0.11.10 + react-refresh: + specifier: ^0.9.0 + version: 0.9.0 + redux-devtools-extension: + specifier: ^2.13.8 + version: 2.13.9(redux@4.2.1) + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + rollup: + specifier: ^4.17.2 + version: 4.18.1 + rollup-plugin-dts: + specifier: ^6.1.1 + version: 6.1.1(rollup@4.18.1)(typescript@4.9.5) + rollup-plugin-generate-package-json: + specifier: ^3.2.0 + version: 3.2.0(rollup@4.18.1) + rollup-plugin-polyfill-node: + specifier: ^0.13.0 + version: 0.13.0(rollup@4.18.1) + rollup-plugin-scss: + specifier: ^4.0.0 + version: 4.0.0 + rollup-plugin-styles: + specifier: ^4.0.0 + version: 4.0.0(rollup@4.18.1) + rollup-plugin-svg: + specifier: ^2.0.0 + version: 2.0.0 + style-loader: + specifier: ^0.23.1 + version: 0.23.1 + thread-loader: + specifier: ^2.1.3 + version: 2.1.3(webpack@5.84.1) + ts-jest: + specifier: ^26.4.0 + version: 26.5.6(jest@26.6.3)(typescript@4.9.5) + typescript: + specifier: ^4.6.4 + version: 4.9.5 + + features/common.branding.v1: + dependencies: + '@emotion/react': + specifier: ^11.11.0 + version: 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': + specifier: ^11.11.0 + version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + '@mui/icons-material': + specifier: ^5.11.16 + version: 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + '@mui/lab': + specifier: 5.0.0-alpha.129 + version: 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/material': + specifier: 5.13.0 + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/system': + specifier: ^5.12.3 + version: 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + '@mui/utils': + specifier: ^5.12.3 + version: 5.15.20(@types/react@18.0.18)(react@18.3.1) + '@oxygen-ui/react': + specifier: ^1.11.0 + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + '@wso2is/admin.core.v1': + specifier: ^2.22.2 + version: link:../admin.core.v1 + '@wso2is/admin.organizations.v1': + specifier: ^2.20.60 + version: link:../admin.organizations.v1 '@wso2is/core': specifier: ^2.0.51 version: link:../../modules/core @@ -19151,7 +19151,7 @@ importers: version: link:../core jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + version: 29.7.0(@types/node@18.11.9) react: specifier: '*' version: 18.3.1 @@ -19160,14 +19160,14 @@ importers: version: 18.3.1(react@18.3.1) ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) devDependencies: '@types/react': specifier: 18.0.18 version: 18.0.18 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19176,7 +19176,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19194,7 +19194,7 @@ importers: dependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.24.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@16.14.0)(react-router-dom@6.24.1)(react@16.14.0) '@braintree/sanitize-url': specifier: ^5.0.0 version: 5.0.2 @@ -19218,7 +19218,7 @@ importers: version: 2.0.5 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) js-yaml: specifier: 3.13.1 version: 3.13.1 @@ -19233,10 +19233,10 @@ importers: version: 0.10.0 react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@16.14.0)(react@16.14.0) ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) ua-parser-js: specifier: 0.7.28 version: 0.7.28 @@ -19267,7 +19267,7 @@ importers: version: 0.7.36 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19276,7 +19276,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19294,10 +19294,10 @@ importers: dependencies: '@mui/material': specifier: 5.13.0 - version: 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/core': specifier: ^2.0.51 version: link:../core @@ -19324,14 +19324,14 @@ importers: version: 6.5.9(final-form@4.20.10)(react@18.3.1) semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) + version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.3.1(react-dom@18.3.1)(react@18.3.1) '@types/jest': specifier: ^29.5.12 version: 29.5.12 @@ -19346,7 +19346,7 @@ importers: version: 5.14.9 '@typescript-eslint/eslint-plugin': specifier: ^4.17.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.17.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19358,7 +19358,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19367,13 +19367,13 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + version: 29.7.0(@types/node@18.11.9) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19382,7 +19382,7 @@ importers: dependencies: '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@wso2is/core': specifier: ^2.0.51 version: link:../core @@ -19406,14 +19406,14 @@ importers: version: 6.5.9(final-form@4.20.10)(react@18.3.1) semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) + version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.3.1(react-dom@18.3.1)(react@18.3.1) '@types/jest': specifier: ^29.5.12 version: 29.5.12 @@ -19425,7 +19425,7 @@ importers: version: 18.0.18 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19434,7 +19434,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19443,13 +19443,13 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + version: 29.7.0(@types/node@18.11.9) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19467,14 +19467,14 @@ importers: version: 4.17.21 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) devDependencies: '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))) + version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) '@testing-library/react': specifier: ^14.2.1 - version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.3.1(react-dom@18.3.1)(react@18.3.1) '@types/jest': specifier: ^29.5.12 version: 29.5.12 @@ -19489,7 +19489,7 @@ importers: version: 5.14.9 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19501,7 +19501,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19510,13 +19510,13 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + version: 29.7.0(@types/node@18.11.9) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19546,7 +19546,7 @@ importers: version: 4.17.21 react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) devDependencies: '@types/i18next': specifier: 8.4.3 @@ -19562,7 +19562,7 @@ importers: version: 13.13.52 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19571,7 +19571,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19580,13 +19580,13 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 @@ -19598,28 +19598,28 @@ importers: version: 6.2.1(react@18.3.1) '@oxygen-ui/react': specifier: ^1.11.0 - version: 1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@oxygen-ui/react-icons': specifier: ^1.11.0 - version: 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + version: 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) '@storybook/addons': specifier: ^6.5.9 - version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/builder-webpack5': specifier: ^6.5.9 - version: 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + version: 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/core-server': specifier: ^6.5.9 - version: 6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + version: 6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/manager-webpack5': specifier: ^6.5.9 - version: 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + version: 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/react': specifier: ^6.5.9 - version: 6.5.16(@babel/core@7.24.7)(@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/webpack@4.41.38)(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(require-from-string@2.0.2)(sockjs-client@1.6.1)(type-fest@4.20.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1) + version: 6.5.16(@babel/core@7.24.7)(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(require-from-string@2.0.2)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3) '@storybook/theming': specifier: ^6.5.9 - version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.5.16(react-dom@18.3.1)(react@18.3.1) '@wso2is/core': specifier: ^2.0.51 version: link:../core @@ -19664,31 +19664,31 @@ importers: version: 5.2.1(react@18.3.1) react-i18next: specifier: ^11.18.5 - version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1) react-markdown: specifier: ^9.0.1 version: 9.0.1(@types/react@18.0.18)(react@18.3.1) react-notification-system: specifier: ^0.4.0 - version: 0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 0.4.0(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^4.3.1 version: 4.3.1(react@18.3.1) react-top-loading-bar: specifier: ^1.2.0 - version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1) react-transition-group: specifier: ^4.4.1 - version: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.4.5(react-dom@18.3.1)(react@18.3.1) rehype-attr: specifier: ^3.0.3 version: 3.0.3 semantic-ui-react: specifier: ^2.1.3 - version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.1.5(react-dom@18.3.1)(react@18.3.1) storybook: specifier: ^6.5.9 - version: 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + version: 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) tinycolor: specifier: 0.0.1 version: 0.0.1 @@ -19701,34 +19701,34 @@ importers: version: 7.24.7 '@rollup/plugin-url': specifier: ^7.0.0 - version: 7.0.0(rollup@4.18.1) + version: 7.0.0(rollup@2.79.1) '@storybook/addon-actions': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/addon-backgrounds': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/addon-controls': specifier: ^6.5.12 - version: 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + version: 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/addon-docs': specifier: ^6.5.12 - version: 6.5.16(@babel/core@7.24.7)(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 6.5.16(@babel/core@7.24.7)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1) '@storybook/addon-links': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/addon-measure': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/addon-outline': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/addon-toolbars': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/addon-viewport': specifier: ^6.5.12 - version: 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.5.16(react-dom@18.3.1)(react@18.3.1) '@svgr/rollup': specifier: ^6.2.1 version: 6.5.1 @@ -19767,25 +19767,25 @@ importers: version: 5.3.3 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) babel-loader: specifier: ^8.1.0 - version: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) babel-plugin-rename-jsx-attribute: specifier: ^0.2.4 - version: 0.2.4(babel-core@7.0.0-bridge.0(@babel/core@7.24.7)) + version: 0.2.4(babel-core@6.26.3) copy-webpack-plugin: specifier: ^12.0.2 - version: 12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 12.0.2(webpack@5.84.1) eslint: specifier: ^7.20.0 version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19794,16 +19794,16 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + version: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) postcss-import: specifier: ^14.1.0 - version: 14.1.0(postcss@7.0.39) + version: 14.1.0(postcss@8.4.39) postcss-import-ext-glob: specifier: ^2.0.1 - version: 2.1.1(postcss@7.0.39) + version: 2.1.1(postcss@8.4.39) react-docgen-typescript-loader: specifier: ^3.6.0 - version: 3.7.2(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + version: 3.7.2(typescript@4.9.5)(webpack@5.84.1) react-dom: specifier: ^18.2.0 version: 18.3.1(react@18.3.1) @@ -19812,7 +19812,7 @@ importers: version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) ts-node: specifier: ^8.5.4 version: 8.10.2(typescript@4.9.5) @@ -19836,10 +19836,10 @@ importers: version: 29.5.12 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.1.6))(eslint@7.32.0)(typescript@5.1.6) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 - version: 4.33.0(eslint@7.32.0)(typescript@5.1.6) + version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) babel-plugin-transform-es2015-modules-commonjs: specifier: ^6.26.2 version: 6.26.2 @@ -19851,7 +19851,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.1.6))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19863,7 +19863,7 @@ importers: version: 9.1.0 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) + version: 29.7.0(@types/node@18.11.9) less: specifier: ^3.10.3 version: 3.13.1 @@ -19878,7 +19878,7 @@ importers: version: 0.1.2 rc-tree: specifier: ^4.0.0-beta.2 - version: 4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 4.2.2(react-dom@18.3.1)(react@18.3.1) replace: specifier: ^1.1.5 version: 1.2.2 @@ -19893,7 +19893,7 @@ importers: version: 2.5.0 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)))(typescript@5.1.6) + version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) watch: specifier: ^1.0.2 version: 1.0.2 @@ -19902,7 +19902,7 @@ importers: devDependencies: '@asgardeo/auth-react': specifier: ^4.0.4 - version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.24.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + version: 4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@6.24.1)(react@18.3.1) '@wso2is/access-control': specifier: workspace:* version: link:../access-control @@ -19914,7 +19914,7 @@ importers: version: link:../../features/admin.extensions.v1 msw: specifier: ^0.36.8 - version: 0.36.8(encoding@0.1.13) + version: 0.36.8 react: specifier: ^18.2.0 version: 18.3.1 @@ -19942,7 +19942,7 @@ importers: version: 29.5.12 '@typescript-eslint/eslint-plugin': specifier: ^4.32.0 - version: 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': specifier: ^4.32.0 version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) @@ -19951,7 +19951,7 @@ importers: version: 7.32.0 eslint-plugin-import: specifier: ^2.20.2 - version: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + version: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0) eslint-plugin-react: specifier: ^7.18.3 version: 7.34.3(eslint@7.32.0) @@ -19960,14627 +19960,582 @@ importers: version: 4.6.2(eslint@7.32.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + version: 29.7.0(@types/node@18.11.9) rimraf: specifier: ^3.0.2 version: 3.0.2 ts-jest: specifier: ^29.1.2 - version: 29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5) + version: 29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5) typescript: specifier: ^4.6.4 version: 4.9.5 packages: - '@adobe/css-tools@4.4.0': + /@adobe/css-tools@4.4.0: resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==} + dev: true - '@ampproject/remapping@2.3.0': + /@ampproject/remapping@2.3.0: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 - '@artsy/fresnel@6.2.1': + /@artsy/fresnel@6.2.1(react@18.3.1): resolution: {integrity: sha512-UAyHZU64Vie3sLDdL3qD+7pODGzKNu9pSpxGKpDOCaiBvCDZnFXIfJEEfV9v9i+QiJJwzO+lqsFwvw6YiJeXFQ==} engines: {node: '>=12.20.2', yarn: 1.x.x} peerDependencies: react: '>=16.3.0' + dependencies: + react: 18.3.1 + dev: false - '@asgardeo/auth-js@5.0.1': + /@asgardeo/auth-js@5.0.1: resolution: {integrity: sha512-XTb/+jPPBAnNGlZYeHVz2Ut5hI8DeJiMmX5YcAijiAvtW4Ove82lT4aLXm+FL8XmCYc+61hFNG1QLf8q2nMfSQ==} - '@asgardeo/auth-react@4.0.4': + /@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@16.14.0)(react-router-dom@6.24.1)(react@16.14.0): + resolution: {integrity: sha512-PltiGPAUVyekEOun9BMte3H2AmFsihiLisobjax5NxdkpDurvrgUR9xCUh7qKkoQQHq4N1Y5crc8UpCg+hkLmQ==} + peerDependencies: + '@babel/runtime-corejs3': ^7.11.2 + react: '>=16.8' + react-dom: '>=16.8' + react-router-dom: ^6.3.0 + dependencies: + '@asgardeo/auth-spa': 3.0.3 + '@babel/runtime-corejs3': 7.24.7 + react: 16.14.0 + react-dom: 16.14.0(react@16.14.0) + react-router-dom: 6.24.1(react-dom@16.14.0)(react@16.14.0) + transitivePeerDependencies: + - debug + dev: false + + /@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@4.3.1)(react@18.3.1): + resolution: {integrity: sha512-PltiGPAUVyekEOun9BMte3H2AmFsihiLisobjax5NxdkpDurvrgUR9xCUh7qKkoQQHq4N1Y5crc8UpCg+hkLmQ==} + peerDependencies: + '@babel/runtime-corejs3': ^7.11.2 + react: '>=16.8' + react-dom: '>=16.8' + react-router-dom: ^6.3.0 + dependencies: + '@asgardeo/auth-spa': 3.0.3 + '@babel/runtime-corejs3': 7.24.7 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router-dom: 4.3.1(react@18.3.1) + transitivePeerDependencies: + - debug + dev: false + + /@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1)(react-router-dom@6.24.1)(react@18.3.1): resolution: {integrity: sha512-PltiGPAUVyekEOun9BMte3H2AmFsihiLisobjax5NxdkpDurvrgUR9xCUh7qKkoQQHq4N1Y5crc8UpCg+hkLmQ==} peerDependencies: '@babel/runtime-corejs3': ^7.11.2 react: '>=16.8' react-dom: '>=16.8' react-router-dom: ^6.3.0 + dependencies: + '@asgardeo/auth-spa': 3.0.3 + '@babel/runtime-corejs3': 7.24.7 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router-dom: 6.24.1(react-dom@18.3.1)(react@18.3.1) + transitivePeerDependencies: + - debug + dev: true - '@asgardeo/auth-spa@3.0.3': + /@asgardeo/auth-spa@3.0.3: resolution: {integrity: sha512-2iRy6Si/xl68EsUV92IuMz0s9/8nFq/a+63Ui0Xr2Ysjc3YsWIO0zVmdpqevZ1J9yzGb9Fyy7uqlKE0QY7m8pA==} + dependencies: + '@asgardeo/auth-js': 5.0.1 + await-semaphore: 0.1.3 + axios: 0.26.1 + base64url: 3.0.1 + buffer: 6.0.3 + fast-sha256: 1.3.0 + jose: 4.15.7 + randombytes: 2.1.0 + transitivePeerDependencies: + - debug - '@aw-web-design/x-default-browser@1.4.126': + /@aw-web-design/x-default-browser@1.4.126: resolution: {integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==} hasBin: true + dependencies: + default-browser-id: 3.0.0 + dev: true - '@babel/cli@7.24.7': + /@babel/cli@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-8dfPprJgV4O14WTx+AQyEA+opgUKPrsIXX/MdL50J1n06EQJ6m1T+CdsJe0qEC0B/Xl85i+Un5KVAxd/PACX9A==} engines: {node: '>=6.9.0'} hasBin: true peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@jridgewell/trace-mapping': 0.3.25 + commander: 6.2.1 + convert-source-map: 2.0.0 + fs-readdir-recursive: 1.1.0 + glob: 7.2.3 + make-dir: 2.1.0 + slash: 2.0.0 + optionalDependencies: + '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3 + chokidar: 3.6.0 + dev: true - '@babel/code-frame@7.12.11': + /@babel/code-frame@7.12.11: resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} + dependencies: + '@babel/highlight': 7.24.7 - '@babel/code-frame@7.24.7': + /@babel/code-frame@7.24.7: resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.24.7 + picocolors: 1.0.1 - '@babel/compat-data@7.24.7': + /@babel/compat-data@7.24.7: resolution: {integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==} engines: {node: '>=6.9.0'} - '@babel/core@7.12.9': + /@babel/core@7.12.9: resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.24.7 + '@babel/generator': 7.24.7 + '@babel/helper-module-transforms': 7.24.7(@babel/core@7.12.9) + '@babel/helpers': 7.24.7 + '@babel/parser': 7.24.7 + '@babel/template': 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + convert-source-map: 1.9.0 + debug: 4.3.5(supports-color@6.1.0) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + lodash: 4.17.21 + resolve: 1.22.8 + semver: 5.7.2 + source-map: 0.5.7 + transitivePeerDependencies: + - supports-color - '@babel/core@7.24.7': + /@babel/core@7.24.7: resolution: {integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==} engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.24.7 + '@babel/generator': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) + '@babel/helpers': 7.24.7 + '@babel/parser': 7.24.7 + '@babel/template': 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + convert-source-map: 2.0.0 + debug: 4.3.5(supports-color@6.1.0) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - '@babel/generator@7.24.7': + /@babel/generator@7.24.7: resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.24.7 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 2.5.2 - '@babel/helper-annotate-as-pure@7.24.7': + /@babel/helper-annotate-as-pure@7.24.7: resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.24.7 - '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7': + /@babel/helper-builder-binary-assignment-operator-visitor@7.24.7: resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/helper-compilation-targets@7.24.7': + /@babel/helper-compilation-targets@7.24.7: resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/compat-data': 7.24.7 + '@babel/helper-validator-option': 7.24.7 + browserslist: 4.23.1 + lru-cache: 5.1.1 + semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.24.7': + /@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-function-name': 7.24.7 + '@babel/helper-member-expression-to-functions': 7.24.7 + '@babel/helper-optimise-call-expression': 7.24.7 + '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7) + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/helper-split-export-declaration': 7.24.7 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - '@babel/helper-create-regexp-features-plugin@7.24.7': + /@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + regexpu-core: 5.3.2 + semver: 6.3.1 - '@babel/helper-define-polyfill-provider@0.1.5': + /@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.24.7): resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: '@babel/core': ^7.4.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/traverse': 7.24.7 + debug: 4.3.5(supports-color@6.1.0) + lodash.debounce: 4.0.8 + resolve: 1.22.8 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - '@babel/helper-define-polyfill-provider@0.6.2': + /@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.7): resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-compilation-targets': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + debug: 4.3.5(supports-color@6.1.0) + lodash.debounce: 4.0.8 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color - '@babel/helper-environment-visitor@7.24.7': + /@babel/helper-environment-visitor@7.24.7: resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.24.7 - '@babel/helper-function-name@7.24.7': + /@babel/helper-function-name@7.24.7: resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.24.7 + '@babel/types': 7.24.7 - '@babel/helper-hoist-variables@7.24.7': + /@babel/helper-hoist-variables@7.24.7: resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.24.7 - '@babel/helper-member-expression-to-functions@7.24.7': + /@babel/helper-member-expression-to-functions@7.24.7: resolution: {integrity: sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color + + /@babel/helper-module-imports@7.24.7: + resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/helper-module-imports@7.24.7': + /@babel/helper-module-imports@7.24.7(supports-color@5.5.0): resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.24.7(supports-color@5.5.0) + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/helper-module-transforms@7.24.7(@babel/core@7.12.9): + resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-simple-access': 7.24.7 + '@babel/helper-split-export-declaration': 7.24.7 + '@babel/helper-validator-identifier': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/helper-module-transforms@7.24.7': + /@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-simple-access': 7.24.7 + '@babel/helper-split-export-declaration': 7.24.7 + '@babel/helper-validator-identifier': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/helper-optimise-call-expression@7.24.7': + /@babel/helper-optimise-call-expression@7.24.7: resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.24.7 - '@babel/helper-plugin-utils@7.10.4': + /@babel/helper-plugin-utils@7.10.4: resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} - '@babel/helper-plugin-utils@7.24.7': + /@babel/helper-plugin-utils@7.24.7: resolution: {integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==} engines: {node: '>=6.9.0'} - '@babel/helper-remap-async-to-generator@7.24.7': + /@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-wrap-function': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/helper-replace-supers@7.24.7': + /@babel/helper-replace-supers@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-member-expression-to-functions': 7.24.7 + '@babel/helper-optimise-call-expression': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/helper-simple-access@7.24.7': + /@babel/helper-simple-access@7.24.7: resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/helper-skip-transparent-expression-wrappers@7.24.7': + /@babel/helper-skip-transparent-expression-wrappers@7.24.7: resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/helper-split-export-declaration@7.24.7': + /@babel/helper-split-export-declaration@7.24.7: resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.24.7 - '@babel/helper-string-parser@7.24.7': + /@babel/helper-string-parser@7.24.7: resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.24.7': + /@babel/helper-validator-identifier@7.24.7: resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-option@7.24.7': + /@babel/helper-validator-option@7.24.7: resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==} engines: {node: '>=6.9.0'} - '@babel/helper-wrap-function@7.24.7': + /@babel/helper-wrap-function@7.24.7: resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-function-name': 7.24.7 + '@babel/template': 7.24.7 + '@babel/traverse': 7.24.7 + '@babel/types': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/helpers@7.24.7': + /@babel/helpers@7.24.7: resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.24.7 + '@babel/types': 7.24.7 - '@babel/highlight@7.24.7': + /@babel/highlight@7.24.7: resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.24.7 + chalk: 2.4.2 + js-tokens: 4.0.0 + picocolors: 1.0.1 - '@babel/parser@7.24.7': + /@babel/parser@7.24.7: resolution: {integrity: sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==} engines: {node: '>=6.0.0'} hasBin: true + dependencies: + '@babel/types': 7.24.7 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7': + /@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7': + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7': + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7': + /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-proposal-class-properties@7.18.6': + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.7): 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: + '@babel/core': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + transitivePeerDependencies: + - supports-color - '@babel/plugin-proposal-decorators@7.24.7': + /@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.24.7) + transitivePeerDependencies: + - supports-color - '@babel/plugin-proposal-export-default-from@7.24.7': + /@babel/plugin-proposal-export-default-from@7.24.7(@babel/core@7.24.7): resolution: {integrity: sha512-CcmFwUJ3tKhLjPdt4NP+SHMshebytF8ZTYOv5ZDpkzq2sin80Wb5vJrGt8fhPrORQCfoSa0LAxC/DW+GAC5+Hw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6': + /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.7): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} 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-nullish-coalescing-operator instead. peerDependencies: '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.7 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-proposal-object-rest-spread@7.12.1': + /@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9): resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. peerDependencies: '@babel/core': ^7.0.0-0 - - '@babel/plugin-proposal-object-rest-spread@7.20.7': - resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} - 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-object-rest-spread instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-proposal-optional-chaining@7.21.0': - resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} - 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-optional-chaining instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-proposal-private-methods@7.18.6': - resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} - 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-private-methods instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': - resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-proposal-private-property-in-object@7.21.11': - resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} - 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-private-property-in-object instead. - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-async-generators@7.8.4': - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-bigint@7.8.3': - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-class-properties@7.12.13': - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-class-static-block@7.14.5': - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-decorators@7.24.7': - resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-dynamic-import@7.8.3': - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-export-default-from@7.24.7': - resolution: {integrity: sha512-bTPz4/635WQ9WhwsyPdxUJDVpsi/X9BMmy/8Rf/UAlOO4jSql4CxUCjWI5PiM+jG+c4LVPTScoTw80geFj9+Bw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-export-namespace-from@7.8.3': - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-flow@7.24.7': - resolution: {integrity: sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-import-assertions@7.24.7': - resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-import-attributes@7.24.7': - resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-import-meta@7.10.4': - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-json-strings@7.8.3': - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-jsx@7.12.1': - resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-jsx@7.24.7': - resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-logical-assignment-operators@7.10.4': - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-numeric-separator@7.10.4': - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-object-rest-spread@7.8.3': - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-optional-catch-binding@7.8.3': - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-optional-chaining@7.8.3': - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-private-property-in-object@7.14.5': - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-top-level-await@7.14.5': - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-typescript@7.24.7': - resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-unicode-sets-regex@7.18.6': - resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-transform-arrow-functions@7.24.7': - resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-async-generator-functions@7.24.7': - resolution: {integrity: sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-async-to-generator@7.24.7': - resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-block-scoped-functions@7.24.7': - resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-block-scoping@7.24.7': - resolution: {integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-class-properties@7.24.7': - resolution: {integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-class-static-block@7.24.7': - resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - - '@babel/plugin-transform-classes@7.24.7': - resolution: {integrity: sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-computed-properties@7.24.7': - resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-destructuring@7.24.7': - resolution: {integrity: sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-dotall-regex@7.24.7': - resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-duplicate-keys@7.24.7': - resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-dynamic-import@7.24.7': - resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-exponentiation-operator@7.24.7': - resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-export-namespace-from@7.24.7': - resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-flow-strip-types@7.24.7': - resolution: {integrity: sha512-cjRKJ7FobOH2eakx7Ja+KpJRj8+y+/SiB3ooYm/n2UJfxu0oEaOoxOinitkJcPqv9KxS0kxTGPUaR7L2XcXDXA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-for-of@7.24.7': - resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-function-name@7.24.7': - resolution: {integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-json-strings@7.24.7': - resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-literals@7.24.7': - resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-logical-assignment-operators@7.24.7': - resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-member-expression-literals@7.24.7': - resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-amd@7.24.7': - resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-commonjs@7.24.7': - resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-systemjs@7.24.7': - resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-umd@7.24.7': - resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-named-capturing-groups-regex@7.24.7': - resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-transform-new-target@7.24.7': - resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-nullish-coalescing-operator@7.24.7': - resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-numeric-separator@7.24.7': - resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-object-rest-spread@7.24.7': - resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-object-super@7.24.7': - resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-optional-catch-binding@7.24.7': - resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-optional-chaining@7.24.7': - resolution: {integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-parameters@7.24.7': - resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-private-methods@7.24.7': - resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-private-property-in-object@7.24.7': - resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-property-literals@7.24.7': - resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-constant-elements@7.24.7': - resolution: {integrity: sha512-7LidzZfUXyfZ8/buRW6qIIHBY8wAZ1OrY9c/wTr8YhZ6vMPo+Uc/CVFLYY1spZrEQlD4w5u8wjqk5NQ3OVqQKA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-display-name@7.24.7': - resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-jsx-development@7.24.7': - resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-jsx@7.24.7': - resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-pure-annotations@7.24.7': - resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-regenerator@7.24.7': - resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-reserved-words@7.24.7': - resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-runtime@7.24.7': - resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-shorthand-properties@7.24.7': - resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-spread@7.24.7': - resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-sticky-regex@7.24.7': - resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-template-literals@7.24.7': - resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-typeof-symbol@7.24.7': - resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-typescript@7.24.7': - resolution: {integrity: sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-escapes@7.24.7': - resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-property-regex@7.24.7': - resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-regex@7.24.7': - resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-sets-regex@7.24.7': - resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/polyfill@7.12.1': - resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==} - deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information. - - '@babel/preset-env@7.24.7': - resolution: {integrity: sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/preset-flow@7.24.7': - resolution: {integrity: sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/preset-modules@0.1.6-no-external-plugins': - resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} - peerDependencies: - '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 - - '@babel/preset-react@7.24.7': - resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/preset-typescript@7.24.7': - resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/register@7.24.6': - resolution: {integrity: sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/regjsgen@0.8.0': - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} - - '@babel/runtime-corejs3@7.24.7': - resolution: {integrity: sha512-eytSX6JLBY6PVAeQa2bFlDx/7Mmln/gaEpsit5a3WEvjGfiIytEsgAwuIXCPM0xvw0v0cJn3ilq0/TvXrW0kgA==} - engines: {node: '>=6.9.0'} - - '@babel/runtime@7.24.7': - resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==} - engines: {node: '>=6.9.0'} - - '@babel/template@7.24.7': - resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==} - engines: {node: '>=6.9.0'} - - '@babel/traverse@7.24.7': - resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==} - engines: {node: '>=6.9.0'} - - '@babel/types@7.24.7': - resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==} - engines: {node: '>=6.9.0'} - - '@base2/pretty-print-object@1.0.1': - resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} - - '@bcoe/v8-coverage@0.2.3': - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} - - '@braintree/sanitize-url@5.0.2': - resolution: {integrity: sha512-NBEJlHWrhQucLhZGHtSxM2loSaNUMajC7KOYJLyfcdW/6goVoff2HoYI3bz8YCDN0wKGbxtUL0gx2dvHpvnWlw==} - deprecated: Potential XSS vulnerability patched in v6.0.0. - - '@changesets/apply-release-plan@7.0.3': - resolution: {integrity: sha512-klL6LCdmfbEe9oyfLxnidIf/stFXmrbFO/3gT5LU5pcyoZytzJe4gWpTBx3BPmyNPl16dZ1xrkcW7b98e3tYkA==} - - '@changesets/assemble-release-plan@6.0.2': - resolution: {integrity: sha512-n9/Tdq+ze+iUtjmq0mZO3pEhJTKkku9hUxtUadW30jlN7kONqJG3O6ALeXrmc6gsi/nvoCuKjqEJ68Hk8RbMTQ==} - - '@changesets/changelog-git@0.2.0': - resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} - - '@changesets/changelog-github@0.4.8': - resolution: {integrity: sha512-jR1DHibkMAb5v/8ym77E4AMNWZKB5NPzw5a5Wtqm1JepAuIF+hrKp2u04NKM14oBZhHglkCfrla9uq8ORnK/dw==} - - '@changesets/cli@2.27.5': - resolution: {integrity: sha512-UVppOvzCjjylBenFcwcZNG5IaZ8jsIaEVraV/pbXgukYNb0Oqa0d8UWb0LkYzA1Bf1HmUrOfccFcRLheRuA7pA==} - hasBin: true - - '@changesets/config@3.0.1': - resolution: {integrity: sha512-nCr8pOemUjvGJ8aUu8TYVjqnUL+++bFOQHBVmtNbLvKzIDkN/uiP/Z4RKmr7NNaiujIURHySDEGFPftR4GbTUA==} - - '@changesets/errors@0.2.0': - resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} - - '@changesets/get-dependents-graph@2.1.0': - resolution: {integrity: sha512-QOt6pQq9RVXKGHPVvyKimJDYJumx7p4DO5MO9AhRJYgAPgv0emhNqAqqysSVKHBm4sxKlGN4S1zXOIb5yCFuhQ==} - - '@changesets/get-github-info@0.5.2': - resolution: {integrity: sha512-JppheLu7S114aEs157fOZDjFqUDpm7eHdq5E8SSR0gUBTEK0cNSHsrSR5a66xs0z3RWuo46QvA3vawp8BxDHvg==} - - '@changesets/get-release-plan@4.0.2': - resolution: {integrity: sha512-rOalz7nMuMV2vyeP7KBeAhqEB7FM2GFPO5RQSoOoUKKH9L6wW3QyPA2K+/rG9kBrWl2HckPVES73/AuwPvbH3w==} - - '@changesets/get-version-range-type@0.4.0': - resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} - - '@changesets/git@3.0.0': - resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} - - '@changesets/logger@0.1.0': - resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} - - '@changesets/parse@0.4.0': - resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} - - '@changesets/pre@2.0.0': - resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} - - '@changesets/read@0.6.0': - resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} - - '@changesets/should-skip-package@0.1.0': - resolution: {integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==} - - '@changesets/types@4.1.0': - resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} - - '@changesets/types@5.2.1': - resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==} - - '@changesets/types@6.0.0': - resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} - - '@changesets/write@0.3.1': - resolution: {integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==} - - '@cnakazawa/watch@1.0.4': - resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==} - engines: {node: '>=0.1.95'} - hasBin: true - - '@colors/colors@1.5.0': - resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} - engines: {node: '>=0.1.90'} - - '@cspotcode/source-map-support@0.8.1': - resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} - engines: {node: '>=12'} - - '@cypress/request@2.88.12': - resolution: {integrity: sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==} - engines: {node: '>= 6'} - - '@cypress/xvfb@1.2.4': - resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} - - '@discoveryjs/json-ext@0.5.7': - resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} - engines: {node: '>=10.0.0'} - - '@emotion/babel-plugin@11.11.0': - resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} - - '@emotion/cache@11.11.0': - resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==} - - '@emotion/hash@0.9.1': - resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==} - - '@emotion/is-prop-valid@0.8.8': - resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} - - '@emotion/is-prop-valid@1.2.2': - resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==} - - '@emotion/memoize@0.7.4': - resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} - - '@emotion/memoize@0.8.1': - resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} - - '@emotion/react@11.11.4': - resolution: {integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==} - peerDependencies: - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@types/react': - optional: true - - '@emotion/serialize@1.1.4': - resolution: {integrity: sha512-RIN04MBT8g+FnDwgvIUi8czvr1LU1alUMI05LekWB5DGyTm8cCBMCRpq3GqaiyEDRptEXOyXnvZ58GZYu4kBxQ==} - - '@emotion/sheet@1.2.2': - resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} - - '@emotion/styled@11.11.5': - resolution: {integrity: sha512-/ZjjnaNKvuMPxcIiUkf/9SHoG4Q196DRl1w82hQ3WCsjo1IUR8uaGWrC6a87CrYAW0Kb/pK7hk8BnLgLRi9KoQ==} - peerDependencies: - '@emotion/react': ^11.0.0-rc.0 - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@types/react': - optional: true - - '@emotion/unitless@0.7.5': - resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==} - - '@emotion/unitless@0.8.1': - resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} - - '@emotion/use-insertion-effect-with-fallbacks@1.0.1': - resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} - peerDependencies: - react: '>=16.8.0' - - '@emotion/utils@1.2.1': - resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} - - '@emotion/weak-memoize@0.3.1': - resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==} - - '@esbuild/android-arm64@0.18.20': - resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - - '@esbuild/android-arm@0.18.20': - resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - - '@esbuild/android-x64@0.18.20': - resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - - '@esbuild/darwin-arm64@0.18.20': - resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - - '@esbuild/darwin-x64@0.18.20': - resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - - '@esbuild/freebsd-arm64@0.18.20': - resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - - '@esbuild/freebsd-x64@0.18.20': - resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - - '@esbuild/linux-arm64@0.18.20': - resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - - '@esbuild/linux-arm@0.18.20': - resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - - '@esbuild/linux-ia32@0.18.20': - resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - - '@esbuild/linux-loong64@0.18.20': - resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - - '@esbuild/linux-mips64el@0.18.20': - resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - - '@esbuild/linux-ppc64@0.18.20': - resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - - '@esbuild/linux-riscv64@0.18.20': - resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - - '@esbuild/linux-s390x@0.18.20': - resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - - '@esbuild/linux-x64@0.18.20': - resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - - '@esbuild/netbsd-x64@0.18.20': - resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - - '@esbuild/openbsd-x64@0.18.20': - resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - - '@esbuild/sunos-x64@0.18.20': - resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - - '@esbuild/win32-arm64@0.18.20': - resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - - '@esbuild/win32-ia32@0.18.20': - resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - - '@esbuild/win32-x64@0.18.20': - resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - - '@eslint-community/eslint-utils@4.4.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 - - '@eslint-community/regexpp@4.11.0': - resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - - '@eslint/eslintrc@0.4.3': - resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} - engines: {node: ^10.12.0 || >=12.0.0} - - '@eslint/eslintrc@2.1.4': - resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@eslint/js@8.57.0': - resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@fal-works/esbuild-plugin-global-externals@2.1.2': - resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} - - '@fluentui/react-component-event-listener@0.63.1': - resolution: {integrity: sha512-gSMdOh6tI3IJKZFqxfQwbTpskpME0CvxdxGM2tdglmf6ZPVDi0L4+KKIm+2dN8nzb8Ya1A8ZT+Ddq0KmZtwVQg==} - peerDependencies: - react: ^16.8.0 || ^17 || ^18 - react-dom: ^16.8.0 || ^17 || ^18 - - '@fluentui/react-component-ref@0.63.1': - resolution: {integrity: sha512-8MkXX4+R3i80msdbD4rFpEB4WWq2UDvGwG386g3ckIWbekdvN9z2kWAd9OXhRGqB7QeOsoAGWocp6gAMCivRlw==} - peerDependencies: - react: ^16.8.0 || ^17 || ^18 - react-dom: ^16.8.0 || ^17 || ^18 - - '@gar/promisify@1.1.3': - resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} - - '@gilbarbara/deep-equal@0.1.2': - resolution: {integrity: sha512-jk+qzItoEb0D0xSSmrKDDzf9sheQj/BAPxlgNxgmOaA3mxpUa6ndJLYGZKsJnIVEQSD8zcTbyILz7I0HcnBCRA==} - - '@gilbarbara/deep-equal@0.3.1': - resolution: {integrity: sha512-I7xWjLs2YSVMc5gGx1Z3ZG1lgFpITPndpi8Ku55GeEIKpACCPQNS/OTqQbxgTCfq0Ncvcc+CrFov96itVh6Qvw==} - - '@hapi/hoek@9.3.0': - resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} - - '@hapi/topo@5.1.0': - resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} - - '@humanwhocodes/config-array@0.11.14': - resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} - engines: {node: '>=10.10.0'} - deprecated: Use @eslint/config-array instead - - '@humanwhocodes/config-array@0.5.0': - resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} - engines: {node: '>=10.10.0'} - deprecated: Use @eslint/config-array instead - - '@humanwhocodes/module-importer@1.0.1': - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} - engines: {node: '>=12.22'} - - '@humanwhocodes/object-schema@1.2.1': - resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} - deprecated: Use @eslint/object-schema instead - - '@humanwhocodes/object-schema@2.0.3': - resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} - deprecated: Use @eslint/object-schema instead - - '@hutson/parse-repository-url@3.0.2': - resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} - engines: {node: '>=6.9.0'} - - '@icons/material@0.2.4': - resolution: {integrity: sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==} - peerDependencies: - react: '*' - - '@isaacs/cliui@8.0.2': - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: '>=12'} - - '@isaacs/string-locale-compare@1.1.0': - resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==} - - '@istanbuljs/load-nyc-config@1.1.0': - resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} - engines: {node: '>=8'} - - '@istanbuljs/schema@0.1.3': - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} - engines: {node: '>=8'} - - '@jest/console@26.6.2': - resolution: {integrity: sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==} - engines: {node: '>= 10.14.2'} - - '@jest/console@29.7.0': - resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/core@26.6.3': - resolution: {integrity: sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==} - engines: {node: '>= 10.14.2'} - - '@jest/core@29.7.0': - resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - - '@jest/environment@26.6.2': - resolution: {integrity: sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==} - engines: {node: '>= 10.14.2'} - - '@jest/environment@29.7.0': - resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/expect-utils@29.7.0': - resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/expect@29.7.0': - resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/fake-timers@26.6.2': - resolution: {integrity: sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==} - engines: {node: '>= 10.14.2'} - - '@jest/fake-timers@29.7.0': - resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/globals@26.6.2': - resolution: {integrity: sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==} - engines: {node: '>= 10.14.2'} - - '@jest/globals@29.7.0': - resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/reporters@26.6.2': - resolution: {integrity: sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==} - engines: {node: '>= 10.14.2'} - - '@jest/reporters@29.7.0': - resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - - '@jest/schemas@29.6.3': - resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/source-map@26.6.2': - resolution: {integrity: sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==} - engines: {node: '>= 10.14.2'} - - '@jest/source-map@29.6.3': - resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/test-result@26.6.2': - resolution: {integrity: sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==} - engines: {node: '>= 10.14.2'} - - '@jest/test-result@29.7.0': - resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/test-sequencer@26.6.3': - resolution: {integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==} - engines: {node: '>= 10.14.2'} - - '@jest/test-sequencer@29.7.0': - resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/transform@26.6.2': - resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} - engines: {node: '>= 10.14.2'} - - '@jest/transform@29.7.0': - resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/types@26.6.2': - resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} - engines: {node: '>= 10.14.2'} - - '@jest/types@29.6.3': - resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jridgewell/gen-mapping@0.3.5': - resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} - engines: {node: '>=6.0.0'} - - '@jridgewell/resolve-uri@3.1.2': - resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} - engines: {node: '>=6.0.0'} - - '@jridgewell/set-array@1.2.1': - resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} - engines: {node: '>=6.0.0'} - - '@jridgewell/source-map@0.3.6': - resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} - - '@jridgewell/sourcemap-codec@1.5.0': - resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} - - '@jridgewell/trace-mapping@0.3.25': - resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} - - '@jridgewell/trace-mapping@0.3.9': - resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} - - '@leichtgewicht/ip-codec@2.0.5': - resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} - - '@lerna/add@5.6.2': - resolution: {integrity: sha512-NHrm7kYiqP+EviguY7/NltJ3G9vGmJW6v2BASUOhP9FZDhYbq3O+rCDlFdoVRNtcyrSg90rZFMOWHph4KOoCQQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/bootstrap@5.6.2': - resolution: {integrity: sha512-S2fMOEXbef7nrybQhzBywIGSLhuiQ5huPp1sU+v9Y6XEBsy/2IA+lb0gsZosvPqlRfMtiaFstL+QunaBhlWECA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/changed@5.6.2': - resolution: {integrity: sha512-uUgrkdj1eYJHQGsXXlpH5oEAfu3x0qzeTjgvpdNrxHEdQWi7zWiW59hRadmiImc14uJJYIwVK5q/QLugrsdGFQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/check-working-tree@5.6.2': - resolution: {integrity: sha512-6Vf3IB6p+iNIubwVgr8A/KOmGh5xb4SyRmhFtAVqe33yWl2p3yc+mU5nGoz4ET3JLF1T9MhsePj0hNt6qyOTLQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/child-process@5.6.2': - resolution: {integrity: sha512-QIOQ3jIbWdduHd5892fbo3u7/dQgbhzEBB7cvf+Ys/iCPP8UQrBECi1lfRgA4kcTKC2MyMz0SoyXZz/lFcXc3A==} - engines: {node: ^14.15.0 || >=16.0.0} - - '@lerna/clean@5.6.2': - resolution: {integrity: sha512-A7j8r0Hk2pGyLUyaCmx4keNHen1L/KdcOjb4nR6X8GtTJR5AeA47a8rRKOCz9wwdyMPlo2Dau7d3RV9viv7a5g==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/cli@5.6.2': - resolution: {integrity: sha512-w0NRIEqDOmYKlA5t0iyqx0hbY7zcozvApmfvwF0lhkuhf3k6LRAFSamtimGQWicC779a7J2NXw4ASuBV47Fs1Q==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/collect-uncommitted@5.6.2': - resolution: {integrity: sha512-i0jhxpypyOsW2PpPwIw4xg6EPh7/N3YuiI6P2yL7PynZ8nOv8DkIdoyMkhUP4gALjBfckH8Bj94eIaKMviqW4w==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/collect-updates@5.6.2': - resolution: {integrity: sha512-DdTK13X6PIsh9HINiMniFeiivAizR/1FBB+hDVe6tOhsXFBfjHMw1xZhXlE+mYIoFmDm1UFK7zvQSexoaxRqFA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/command@5.6.2': - resolution: {integrity: sha512-eLVGI9TmxcaGt1M7TXGhhBZoeWOtOedMiH7NuCGHtL6TMJ9k+SCExyx+KpNmE6ImyNOzws6EvYLPLjftiqmoaA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/conventional-commits@5.6.2': - resolution: {integrity: sha512-fPrJpYJhxCgY2uyOCTcAAC6+T6lUAtpEGxLbjWHWTb13oKKEygp9THoFpe6SbAD0fYMb3jeZCZCqNofM62rmuA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/create-symlink@5.6.2': - resolution: {integrity: sha512-0WIs3P6ohPVh2+t5axrLZDE5Dt7fe3Kv0Auj0sBiBd6MmKZ2oS76apIl0Bspdbv8jX8+TRKGv6ib0280D0dtEw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/create@5.6.2': - resolution: {integrity: sha512-+Y5cMUxMNXjTTU9IHpgRYIwKo39w+blui1P+s+qYlZUSCUAew0xNpOBG8iN0Nc5X9op4U094oIdHxv7Dyz6tWQ==} - engines: {node: ^14.15.0 || >=16.0.0} - - '@lerna/describe-ref@5.6.2': - resolution: {integrity: sha512-UqU0N77aT1W8duYGir7R+Sk3jsY/c4lhcCEcnayMpFScMbAp0ETGsW04cYsHK29sgg+ZCc5zEwebBqabWhMhnA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/diff@5.6.2': - resolution: {integrity: sha512-aHKzKvUvUI8vOcshC2Za/bdz+plM3r/ycqUrPqaERzp+kc1pYHyPeXezydVdEmgmmwmyKI5hx4+2QNnzOnun2A==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/exec@5.6.2': - resolution: {integrity: sha512-meZozok5stK7S0oAVn+kdbTmU+kHj9GTXjW7V8kgwG9ld+JJMTH3nKK1L3mEKyk9TFu9vFWyEOF7HNK6yEOoVg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/filter-options@5.6.2': - resolution: {integrity: sha512-4Z0HIhPak2TabTsUqEBQaQeOqgqEt0qyskvsY0oviYvqP/nrJfJBZh4H93jIiNQF59LJCn5Ce3KJJrLExxjlzw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/filter-packages@5.6.2': - resolution: {integrity: sha512-el9V2lTEG0Bbz+Omo45hATkRVnChCTJhcTpth19cMJ6mQ4M5H4IgbWCJdFMBi/RpTnOhz9BhJxDbj95kuIvvzw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/get-npm-exec-opts@5.6.2': - resolution: {integrity: sha512-0RbSDJ+QC9D5UWZJh3DN7mBIU1NhBmdHOE289oHSkjDY+uEjdzMPkEUy+wZ8fCzMLFnnNQkAEqNaOAzZ7dmFLA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/get-packed@5.6.2': - resolution: {integrity: sha512-pp5nNDmtrtd21aKHjwwOY5CS7XNIHxINzGa+Jholn1jMDYUtdskpN++ZqYbATGpW831++NJuiuBVyqAWi9xbXg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/github-client@5.6.2': - resolution: {integrity: sha512-pjALazZoRZtKqfwLBwmW3HPptVhQm54PvA8s3qhCQ+3JkqrZiIFwkkxNZxs3jwzr+aaSOzfhSzCndg0urb0GXA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/gitlab-client@5.6.2': - resolution: {integrity: sha512-TInJmbrsmYIwUyrRxytjO82KjJbRwm67F7LoZs1shAq6rMvNqi4NxSY9j+hT/939alFmEq1zssoy/caeLXHRfQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/global-options@5.6.2': - resolution: {integrity: sha512-kaKELURXTlczthNJskdOvh6GGMyt24qat0xMoJZ8plYMdofJfhz24h1OFcvB/EwCUwP/XV1+ohE5P+vdktbrEg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/has-npm-version@5.6.2': - resolution: {integrity: sha512-kXCnSzffmTWsaK0ol30coyCfO8WH26HFbmJjRBzKv7VGkuAIcB6gX2gqRRgNLLlvI+Yrp+JSlpVNVnu15SEH2g==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/import@5.6.2': - resolution: {integrity: sha512-xQUE49mtcP0z3KUdXBsyvp8rGDz6phuYUoQbhcFRJ7WPcQKzMvtm0XYrER6c2YWEX7QOuDac6tU82P8zTrTBaA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/info@5.6.2': - resolution: {integrity: sha512-MPjY5Olj+fiZHgfEdwXUFRKamdEuLr9Ob/qut8JsB/oQSQ4ALdQfnrOcMT8lJIcC2R67EA5yav2lHPBIkezm8A==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/init@5.6.2': - resolution: {integrity: sha512-ahU3/lgF+J8kdJAQysihFJROHthkIDXfHmvhw7AYnzf94HjxGNXj7nz6i3At1/dM/1nQhR+4/uNR1/OU4tTYYQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/link@5.6.2': - resolution: {integrity: sha512-hXxQ4R3z6rUF1v2x62oIzLyeHL96u7ZBhxqYMJrm763D1VMSDcHKF9CjJfc6J9vH5Z2ZbL6CQg50Hw5mUpJbjg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/list@5.6.2': - resolution: {integrity: sha512-WjE5O2tQ3TcS+8LqXUaxi0YdldhxUhNihT5+Gg4vzGdIlrPDioO50Zjo9d8jOU7i3LMIk6EzCma0sZr2CVfEGg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/listable@5.6.2': - resolution: {integrity: sha512-8Yp49BwkY/5XqVru38Zko+6Wj/sgbwzJfIGEPy3Qu575r1NA/b9eI1gX22aMsEeXUeGOybR7nWT5ewnPQHjqvA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/log-packed@5.6.2': - resolution: {integrity: sha512-O9GODG7tMtWk+2fufn2MOkIDBYMRoKBhYMHshO5Aw/VIsH76DIxpX1koMzWfUngM/C70R4uNAKcVWineX4qzIw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/npm-conf@5.6.2': - resolution: {integrity: sha512-gWDPhw1wjXYXphk/PAghTLexO5T6abVFhXb+KOMCeem366mY0F5bM88PiorL73aErTNUoR8n+V4X29NTZzDZpQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/npm-dist-tag@5.6.2': - resolution: {integrity: sha512-t2RmxV6Eog4acXkUI+EzWuYVbeVVY139pANIWS9qtdajfgp4GVXZi1S8mAIb70yeHdNpCp1mhK0xpCrFH9LvGQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/npm-install@5.6.2': - resolution: {integrity: sha512-AT226zdEo+uGENd37jwYgdALKJAIJK4pNOfmXWZWzVb9oMOr8I2YSjPYvSYUNG7gOo2YJQU8x5Zd7OShv2924Q==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/npm-publish@5.6.2': - resolution: {integrity: sha512-ldSyewCfv9fAeC5xNjL0HKGSUxcC048EJoe/B+KRUmd+IPidvZxMEzRu08lSC/q3V9YeUv9ZvRnxATXOM8CffA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/npm-run-script@5.6.2': - resolution: {integrity: sha512-MOQoWNcAyJivM8SYp0zELM7vg/Dj07j4YMdxZkey+S1UO0T4/vKBxb575o16hH4WeNzC3Pd7WBlb7C8dLOfNwQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/otplease@5.6.2': - resolution: {integrity: sha512-dGS4lzkEQVTMAgji82jp8RK6UK32wlzrBAO4P4iiVHCUTuwNLsY9oeBXvVXSMrosJnl6Hbe0NOvi43mqSucGoA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/output@5.6.2': - resolution: {integrity: sha512-++d+bfOQwY66yo7q1XuAvRcqtRHCG45e/awP5xQomTZ6R1rhWiZ3whWdc9Z6lF7+UtBB9toSYYffKU/xc3L0yQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/pack-directory@5.6.2': - resolution: {integrity: sha512-w5Jk5fo+HkN4Le7WMOudTcmAymcf0xPd302TqAQncjXpk0cb8tZbj+5bbNHsGb58GRjOIm5icQbHXooQUxbHhA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/package-graph@5.6.2': - resolution: {integrity: sha512-TmL61qBBvA3Tc4qICDirZzdFFwWOA6qicIXUruLiE2PblRowRmCO1bKrrP6XbDOspzwrkPef6N2F2/5gHQAnkQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/package@5.6.2': - resolution: {integrity: sha512-LaOC8moyM5J9WnRiWZkedjOninSclBOJyPqhif6mHb2kCFX6jAroNYzE8KM4cphu8CunHuhI6Ixzswtv+Dultw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/prerelease-id-from-version@5.6.2': - resolution: {integrity: sha512-7gIm9fecWFVNy2kpj/KbH11bRcpyANAwpsft3X5m6J7y7A6FTUscCbEvl3ZNdpQKHNuvnHgCtkm3A5PMSCEgkA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/profiler@5.6.2': - resolution: {integrity: sha512-okwkagP5zyRIOYTceu/9/esW7UZFt7lyL6q6ZgpSG3TYC5Ay+FXLtS6Xiha/FQdVdumFqKULDWTGovzUlxcwaw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/project@5.6.2': - resolution: {integrity: sha512-kPIMcIy/0DVWM91FPMMFmXyAnCuuLm3NdhnA8NusE//VuY9wC6QC/3OwuCY39b2dbko/fPZheqKeAZkkMH6sGg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/prompt@5.6.2': - resolution: {integrity: sha512-4hTNmVYADEr0GJTMegWV+GW6n+dzKx1vN9v2ISqyle283Myv930WxuyO0PeYGqTrkneJsyPreCMovuEGCvZ0iQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/publish@5.6.2': - resolution: {integrity: sha512-QaW0GjMJMuWlRNjeDCjmY/vjriGSWgkLS23yu8VKNtV5U3dt5yIKA3DNGV3HgZACuu45kQxzMDsfLzgzbGNtYA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/pulse-till-done@5.6.2': - resolution: {integrity: sha512-eA/X1RCxU5YGMNZmbgPi+Kyfx1Q3bn4P9jo/LZy+/NRRr1po3ASXP2GJZ1auBh/9A2ELDvvKTOXCVHqczKC6rA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/query-graph@5.6.2': - resolution: {integrity: sha512-KRngr96yBP8XYDi9/U62fnGO+ZXqm04Qk6a2HtoTr/ha8QvO1s7Tgm0xs/G7qWXDQHZgunWIbmK/LhxM7eFQrw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/resolve-symlink@5.6.2': - resolution: {integrity: sha512-PDQy+7M8JEFtwIVHJgWvSxHkxJf9zXCENkvIWDB+SsoDPhw9+caewt46bTeP5iGm9pOMu3oZukaWo/TvF7sNjg==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/rimraf-dir@5.6.2': - resolution: {integrity: sha512-jgEfzz7uBUiQKteq3G8MtJiA2D2VoKmZSSY3VSiW/tPOSXYxxSHxEsClQdCeNa6+sYrDNDT8fP6MJ3lPLjDeLA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/run-lifecycle@5.6.2': - resolution: {integrity: sha512-u9gGgq/50Fm8dvfcc/TSHOCAQvzLD7poVanDMhHYWOAqRDnellJEEmA1K/Yka4vZmySrzluahkry9G6jcREt+g==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/run-topologically@5.6.2': - resolution: {integrity: sha512-QQ/jGOIsVvUg3izShWsd67RlWYh9UOH2yw97Ol1zySX9+JspCMVQrn9eKq1Pk8twQOFhT87LpT/aaxbTBgREPw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/run@5.6.2': - resolution: {integrity: sha512-c2kJxdFrNg5KOkrhmgwKKUOsfSrGNlFCe26EttufOJ3xfY0VnXlEw9rHOkTgwtu7969rfCdyaVP1qckMrF1Dgw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/symlink-binary@5.6.2': - resolution: {integrity: sha512-Cth+miwYyO81WAmrQbPBrLHuF+F0UUc0el5kRXLH6j5zzaRS3kMM68r40M7MmfH8m3GPi7691UARoWFEotW5jw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/symlink-dependencies@5.6.2': - resolution: {integrity: sha512-dUVNQLEcjVOIQiT9OlSAKt0ykjyJPy8l9i4NJDe2/0XYaUjo8PWsxJ0vrutz27jzi2aZUy07ASmowQZEmnLHAw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/temp-write@5.6.2': - resolution: {integrity: sha512-S5ZNVTurSwWBmc9kh5alfSjmO3+BnRT6shYtOlmVIUYqWeYVYA5C1Htj322bbU4CSNCMFK6NQl4qGKL17HMuig==} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/timer@5.6.2': - resolution: {integrity: sha512-AjMOiLc2B+5Nzdd9hNORetAdZ/WK8YNGX/+2ypzM68TMAPfIT5C40hMlSva9Yg4RsBz22REopXgM5s2zQd5ZQA==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/validation-error@5.6.2': - resolution: {integrity: sha512-4WlDUHaa+RSJNyJRtX3gVIAPVzjZD2tle8AJ0ZYBfdZnZmG0VlB2pD1FIbOQPK8sY2h5m0cHLRvfLoLncqHvdQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/version@5.6.2': - resolution: {integrity: sha512-odNSR2rTbHW++xMZSQKu/F6Syrd/sUvwDLPaMKktoOSPKmycHt/eWcuQQyACdtc43Iqeu4uQd7PCLsniqOVFrw==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@lerna/write-log-file@5.6.2': - resolution: {integrity: sha512-J09l18QnWQ3sXIRwuJkjXY3+KwPR2uO5NgbZGE3GXJK1V/LzOBRMvjGAIbuQHXw25uqe7vpLUpB8drtnFrubCQ==} - engines: {node: ^14.15.0 || >=16.0.0} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - '@manypkg/find-root@1.1.0': - resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} - - '@manypkg/get-packages@1.1.3': - resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} - - '@mdx-js/mdx@1.6.22': - resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==} - - '@mdx-js/react@1.6.22': - resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} - peerDependencies: - react: ^16.13.1 || ^17.0.0 - - '@mdx-js/util@1.6.22': - resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==} - - '@microsoft/applicationinsights-analytics-js@3.2.1': - resolution: {integrity: sha512-BDFnV0WwLcUIqgPmC3Sl8Z35ybf4898WSbrfCC80BNbxi2zztyJSLlxWXKSw9j+DCkKZMYIJIsWnpKQfEtqA7g==} - peerDependencies: - tslib: '*' - - '@microsoft/applicationinsights-cfgsync-js@3.2.1': - resolution: {integrity: sha512-a0gf3czbRycOXwIRO/dYqmTThYkGRS26TVETRpSnW12IcAuLE82FJfWHlHRmSNX9xY/F+wWc0N7BqHcWjFIbeQ==} - peerDependencies: - tslib: '*' - - '@microsoft/applicationinsights-channel-js@3.2.1': - resolution: {integrity: sha512-+aWBBbIW4/Tf4sLGZmWhd5chktBpKQpnCbkuoTHGe+AWO8Q8fsDa4w2Y89OGuEg9OJ3kr2VKTUU7LgILKFz/cg==} - peerDependencies: - tslib: '*' - - '@microsoft/applicationinsights-common@2.8.18': - resolution: {integrity: sha512-/PBRmRL6rFCoO3vWpIEHuFnu+TinEYRKWOj+I+XVUH5myZpv+nYvaRdwryVTkmCYxLyL9kxtNn7hQx8DBlhdSw==} - peerDependencies: - tslib: '*' - - '@microsoft/applicationinsights-common@3.2.1': - resolution: {integrity: sha512-vRYQ1SIZJEz1eFbs2AQiLtev5L+zmjZ1Jkj3BWfIxJLd6n0cVR4NZETBSyMuk11KH7MIOrDLvh1CzjBIJIpDAg==} - peerDependencies: - tslib: '*' - - '@microsoft/applicationinsights-core-js@2.8.18': - resolution: {integrity: sha512-yPHRZFLpnEO0uSgFPM1BLMRRwjoten9YBbn4pJRbCT4PigLnj748knmWsMwXIdcehtkRTYz78kPYa/LWP7nvmA==} - peerDependencies: - tslib: '*' - - '@microsoft/applicationinsights-core-js@3.2.1': - resolution: {integrity: sha512-euxkDrF5BroAY7wgviaTVZdMvRAENQtUW4pDTsIjJK26shi1m5fPCc5l+vMn7kO2wQEaEgAOVw+/kSQgXDHN+Q==} - peerDependencies: - tslib: '*' - - '@microsoft/applicationinsights-dependencies-js@3.2.1': - resolution: {integrity: sha512-NZ7OY/7KYmJ6/TFsDZojsr9mA4uNv4ZTrNNXfWqtPxx0ClYalSm6Xyjna0N1d1wktrfecHe8K/ZrWJgxI2bfRw==} - peerDependencies: - tslib: '*' - - '@microsoft/applicationinsights-properties-js@3.2.1': - resolution: {integrity: sha512-GO96t7tQ1eEHPENVXjOlf91h/Iz8p4I0XayALTSshHMc+eDfsi1a/b2JYrfNDC4fanPU44Kmx3QZkXrBb1ri5A==} - peerDependencies: - tslib: '*' - - '@microsoft/applicationinsights-react-js@3.4.3': - resolution: {integrity: sha512-+IIPDYU7DKBwByN7lK/mkMGrnWMGdyIsEZfDzBh/fKDZgGGGgH9B3WHej+vIpdwBcVaPbYx++lonTshn56C9/A==} - peerDependencies: - history: '>= 4.10.1' - react: '>= 17.0.1' - tslib: '*' - - '@microsoft/applicationinsights-shims@2.0.2': - resolution: {integrity: sha512-PoHEgsnmcqruLNHZ/amACqdJ6YYQpED0KSRe6J7gIJTtpZC1FfFU9b1fmDKDKtFoUSrPzEh1qzO3kmRZP0betg==} - - '@microsoft/applicationinsights-shims@3.0.1': - resolution: {integrity: sha512-DKwboF47H1nb33rSUfjqI6ryX29v+2QWcTrRvcQDA32AZr5Ilkr7whOOSsD1aBzwqX0RJEIP1Z81jfE3NBm/Lg==} - - '@microsoft/applicationinsights-web@3.2.1': - resolution: {integrity: sha512-+U0wsifFEmvdT2hckmsoNcMx/SQrAA8qBBM7y0zefT03wHbFh0jCL/kd2MFOyKZ39v9C4uIO5L8Ftu4hBpnYWA==} - peerDependencies: - tslib: '*' - - '@microsoft/dynamicproto-js@1.1.11': - resolution: {integrity: sha512-gNw9z9LbqLV+WadZ6/MMrWwO3e0LuoUH1wve/1iPsBNbgqeVCiB0EZFNNj2lysxS2gkqoF9hmyVaG3MoM1BkxA==} - - '@microsoft/dynamicproto-js@2.0.3': - resolution: {integrity: sha512-JTWTU80rMy3mdxOjjpaiDQsTLZ6YSGGqsjURsY6AUQtIj0udlF/jYmhdLZu8693ZIC0T1IwYnFa0+QeiMnziBA==} - - '@microsoft/tsdoc-config@0.16.2': - resolution: {integrity: sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==} - - '@microsoft/tsdoc@0.14.2': - resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==} - - '@mole-inc/bin-wrapper@8.0.1': - resolution: {integrity: sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - '@monaco-editor/loader@1.4.0': - resolution: {integrity: sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==} - peerDependencies: - monaco-editor: '>= 0.21.0 < 1' - - '@monaco-editor/react@4.6.0': - resolution: {integrity: sha512-RFkU9/i7cN2bsq/iTkurMWOEErmYcY6JiQI3Jn+WeR/FGISH8JbHERjpS9oRuSOPvDMJI0Z8nJeKkbOs9sBYQw==} - peerDependencies: - monaco-editor: '>= 0.25.0 < 1' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@mrmlnc/readdir-enhanced@2.2.1': - resolution: {integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==} - engines: {node: '>=4'} - - '@mswjs/cookies@0.1.7': - resolution: {integrity: sha512-bDg1ReMBx+PYDB4Pk7y1Q07Zz1iKIEUWQpkEXiA2lEWg9gvOZ8UBmGXilCEUvyYoRFlmr/9iXTRR69TrgSwX/Q==} - - '@mswjs/interceptors@0.12.7': - resolution: {integrity: sha512-eGjZ3JRAt0Fzi5FgXiV/P3bJGj0NqsN7vBS0J0FO2AQRQ0jCKQS4lEFm4wvlSgKQNfeuc/Vz6d81VtU3Gkx/zg==} - - '@mui/base@5.0.0-alpha.128': - resolution: {integrity: sha512-wub3wxNN+hUp8hzilMlXX3sZrPo75vsy1cXEQpqdTfIFlE9HprP1jlulFiPg5tfPst2OKmygXr2hhmgvAKRrzQ==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@mui/base@5.0.0-beta.0': - resolution: {integrity: sha512-ap+juKvt8R8n3cBqd/pGtZydQ4v2I/hgJKnvJRGjpSh3RvsvnDHO4rXov8MHQlH6VqpOekwgilFLGxMZjNTucA==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@mui/core-downloads-tracker@5.15.20': - resolution: {integrity: sha512-DoL2ppgldL16utL8nNyj/P12f8mCNdx/Hb/AJnX9rLY4b52hCMIx1kH83pbXQ6uMy6n54M3StmEbvSGoj2OFuA==} - - '@mui/icons-material@5.15.20': - resolution: {integrity: sha512-oGcKmCuHaYbAAoLN67WKSXtHmEgyWcJToT1uRtmPyxMj9N5uqwc/mRtEnst4Wj/eGr+zYH2FiZQ79v9k7kSk1Q==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@mui/material': 5.13.0 - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@mui/lab@5.0.0-alpha.129': - resolution: {integrity: sha512-niv2mFgSTgdrRJXbWoX9pIivhe80BaFXfdWajXe1bS8VYH3Y5WyJpk8KiU3rbHyJswbFEGd8N6EBBrq11X8yMA==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@mui/material': 5.13.0 - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true - - '@mui/material@5.13.0': - resolution: {integrity: sha512-ckS+9tCpAzpdJdaTF+btF0b6mF9wbXg/EVKtnoAWYi0UKXoXBAVvEUMNpLGA5xdpCdf+A6fPbVUEHs9TsfU+Yw==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true - - '@mui/private-theming@5.15.20': - resolution: {integrity: sha512-BK8F94AIqSrnaPYXf2KAOjGZJgWfvqAVQ2gVR3EryvQFtuBnG6RwodxrCvd3B48VuMy6Wsk897+lQMUxJyk+6g==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@mui/styled-engine@5.15.14': - resolution: {integrity: sha512-RILkuVD8gY6PvjZjqnWhz8fu68dVkqhM5+jYWfB5yhlSQKg+2rHkmEwm75XIeAqI3qwOndK6zELK5H6Zxn4NHw==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.4.1 - '@emotion/styled': ^11.3.0 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - - '@mui/system@5.15.20': - resolution: {integrity: sha512-LoMq4IlAAhxzL2VNUDBTQxAb4chnBe8JvRINVNDiMtHE2PiPOoHlhOPutSxEbaL5mkECPVWSv6p8JEV+uykwIA==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true - - '@mui/types@7.2.14': - resolution: {integrity: sha512-MZsBZ4q4HfzBsywtXgM1Ksj6HDThtiwmOKUXH1pKYISI9gAVXCNHNpo7TlGoGrBaYWZTdNoirIN7JsQcQUjmQQ==} - peerDependencies: - '@types/react': 18.0.18 - peerDependenciesMeta: - '@types/react': - optional: true - - '@mui/utils@5.15.20': - resolution: {integrity: sha512-mAbYx0sovrnpAu1zHc3MDIhPqL8RPVC5W5xcO1b7PiSCJPtckIZmBkp8hefamAvUiAV8gpfMOM6Zb+eSisbI2A==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/react': 18.0.18 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - '@mui/x-data-grid@6.20.1': - resolution: {integrity: sha512-x1muWWIG9otkk4FuvoTxH3I4foyA1caFu8ZC9TvMQ+7NSBKcfy/JeLQfKkZk8ACUUosvENdrRIkhqU2xdIqIVg==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@mui/material': 5.13.0 - '@mui/system': ^5.4.1 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - - '@ndelangen/get-tarball@3.0.9': - resolution: {integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==} - - '@nevware21/ts-async@0.5.2': - resolution: {integrity: sha512-Zf2vUNjCw2vJsiVKhWXA9hCNHsn59AOSGa5jGP4tWrp/vTH9XrI4eG/65khuoAgrS83migj0Xv5/j6fUAz69Zw==} - - '@nevware21/ts-utils@0.11.3': - resolution: {integrity: sha512-oipW+tyKN68bREjoESYAzOZiatM+1LF+ez1TX3BaeinhCkI18xsLgmpH9tvwHaVgKf1Tsth25sdbXVtYmgRYvQ==} - - '@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3': - resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==} - - '@nodelib/fs.scandir@2.1.5': - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} - - '@nodelib/fs.stat@1.1.3': - resolution: {integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==} - engines: {node: '>= 6'} - - '@nodelib/fs.stat@2.0.5': - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} - - '@nodelib/fs.walk@1.2.8': - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} - - '@npmcli/arborist@5.3.0': - resolution: {integrity: sha512-+rZ9zgL1lnbl8Xbb1NQdMjveOMwj4lIYfcDtyJHHi5x4X8jtR6m8SXooJMZy5vmFVZ8w7A2Bnd/oX9eTuU8w5A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true - - '@npmcli/fs@1.1.1': - resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} - - '@npmcli/fs@2.1.2': - resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - '@npmcli/git@3.0.2': - resolution: {integrity: sha512-CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - '@npmcli/installed-package-contents@1.0.7': - resolution: {integrity: sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==} - engines: {node: '>= 10'} - hasBin: true - - '@npmcli/map-workspaces@2.0.4': - resolution: {integrity: sha512-bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - '@npmcli/metavuln-calculator@3.1.1': - resolution: {integrity: sha512-n69ygIaqAedecLeVH3KnO39M6ZHiJ2dEv5A7DGvcqCB8q17BGUgW8QaanIkbWUo2aYGZqJaOORTLAlIvKjNDKA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - '@npmcli/move-file@1.1.2': - resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} - engines: {node: '>=10'} - deprecated: This functionality has been moved to @npmcli/fs - - '@npmcli/move-file@2.0.1': - resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This functionality has been moved to @npmcli/fs - - '@npmcli/name-from-folder@1.0.1': - resolution: {integrity: sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA==} - - '@npmcli/node-gyp@2.0.0': - resolution: {integrity: sha512-doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - '@npmcli/package-json@2.0.0': - resolution: {integrity: sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - '@npmcli/promise-spawn@3.0.0': - resolution: {integrity: sha512-s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - '@npmcli/run-script@4.2.1': - resolution: {integrity: sha512-7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - '@nrwl/cli@15.9.3': - resolution: {integrity: sha512-qiAKHkov3iBx6hroPTitUrkRSUZFQqVgNJiF9gXRFC6pNJe9RS4rlmcIaoUFOboi9CnH5jwblNJVcz8YSVYOvA==} - - '@nrwl/cypress@17.0.0': - resolution: {integrity: sha512-p7LcNa6q1yZXSp1BOlMrn79QB4BEioAwWzAyqbtsrOd+5JkgQwAetwI7VFktjXohbH0SmVASqXhVJgXacoPgOA==} - - '@nrwl/devkit@15.9.7': - resolution: {integrity: sha512-Sb7Am2TMT8AVq8e+vxOlk3AtOA2M0qCmhBzoM1OJbdHaPKc0g0UgSnWRml1kPGg5qfPk72tWclLoZJ5/ut0vTg==} - peerDependencies: - nx: '>= 14.1 <= 16' - - '@nrwl/devkit@17.0.0': - resolution: {integrity: sha512-HvV4GrohNxmN5niRu+XRWuy/gNXFkCLJTNqS3eeZ1h96BnVIiGQL6qHkXvwt0HShcse+Bn55BijKNO7JSo7oIQ==} - - '@nrwl/eslint-plugin-nx@17.0.0': - resolution: {integrity: sha512-kOYPAQMdS9qDkOG5CyAjerBN4UwxUipqZjjahVyA3GS5JwRe9DQUZ0vrFtMp5DSfJ+Cs9fNd4voHvZQEKanq2Q==} - - '@nrwl/jest@17.0.0': - resolution: {integrity: sha512-j+7SM/y63c5zET9YQ6TAt8W6bxxagu3e3zIV68ccEq3pF1jdGnmx9r9RMaiFRo5LWA5gsIayDQDtJ8vpdH2M2g==} - - '@nrwl/js@17.0.0': - resolution: {integrity: sha512-Qjl21rnmwOzDmqAzBOLOQHgggGNpNXzRLTuV9fNGWSH/hMmYxC7oFqViaUVf53aTHpXgD5a/G6aj3hxThZWbdA==} - - '@nrwl/nx-darwin-arm64@15.9.3': - resolution: {integrity: sha512-2htJzVa+S/uLg5tj4nbO/tRz2SRMQIpT6EeWMgDGuEKQdpuRLVj2ez9hMpkRn9tl1tBUwR05hbV28DnOLRESVA==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - - '@nrwl/nx-darwin-x64@15.9.3': - resolution: {integrity: sha512-p+8UkfC6KTLOX4XRt7NSP8DoTzEgs73+SN0csoXT9VsNO35+F0Z5zMZxpEc7RVo5Wen/4PGh2OWA+8gtgntsJQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - - '@nrwl/nx-linux-arm-gnueabihf@15.9.3': - resolution: {integrity: sha512-xwW7bZtggrxhFbYvvWWArtcSWwoxWzi/4wNgP3wPbcZFNZiraahVQSpIyJXrS9aajGbdvuDBM8cbDsMj9v7mwg==} - engines: {node: '>= 10'} - cpu: [arm] - os: [linux] - - '@nrwl/nx-linux-arm64-gnu@15.9.3': - resolution: {integrity: sha512-KNxDL2OAHxhFqztEjv2mNwXD6xrzoUury7NsYZYqlxJUNc3YYBfRSLEatnw491crvMBndbxfGVTWEO9S4YmRuw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - - '@nrwl/nx-linux-arm64-musl@15.9.3': - resolution: {integrity: sha512-AxoZzfsXH7ZqDE+WrQtRumufIcSIBw4U/LikiDLaWWoGtNpAfKLkD/PHirZiNxHIeGy1Toi4ccMUolXbafLVFw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - - '@nrwl/nx-linux-x64-gnu@15.9.3': - resolution: {integrity: sha512-P8AOPRufvV4a5cSczNsw84zFAI7NgAiEBTybYcyymdNJmo0iArJXEmvj/G4mB20O8VCsCkwqMYAu6nQEnES1Kw==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - - '@nrwl/nx-linux-x64-musl@15.9.3': - resolution: {integrity: sha512-4ZYDp7T319+xbw7Z7KVtRefzaXJipZfgrM49r+Y1FAfYDc8y18zvKz3slK26wfWz+EUZwKsa/DfA2KmyRG3DvQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - - '@nrwl/nx-plugin@17.0.0': - resolution: {integrity: sha512-lVX/ec/reLrS2tb+9/2MbiEg4rEmKeNPTu1jpa24Sz7yCttMjEU+C8wjQnVZmMRre2xiQmFflZUR/tJ9f5/Jpw==} - - '@nrwl/nx-win32-arm64-msvc@15.9.3': - resolution: {integrity: sha512-UhgxIPgTZBKN1oxlLPSklkSzVL3hA4lAiVc9A0Utumpbp0ob/Xx+2vHzg3cnmNH3jWkZ+9OsC2dKyeMB6gAbSw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - - '@nrwl/nx-win32-x64-msvc@15.9.3': - resolution: {integrity: sha512-gdnvqURKnu0EQGOFJ6NUKq6wSB+viNb7Z8qtKhzSmFwVjT8akOnLWn7ZhL9v28TAjLM7/s1Mwvmz/IMj1PGlcQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - - '@nrwl/react@17.0.0': - resolution: {integrity: sha512-YXm5of00b2wa/y4lRsddORtW5yRkG9tn7G2NRwcPUqvCfSOlZsr6iPXa45nW8/EcPjAhl73nA+rjsnTLDouUdA==} - - '@nrwl/rollup@17.0.0': - resolution: {integrity: sha512-WBTfMWZ2cH8QgC1EezbS3chPpwUmpE51Iv/GHM7Igkb7/BIPPHVnk1p1AUM+VUDqnrbkvF0y5MfCIQvhBcc6Mg==} - - '@nrwl/storybook@17.0.0': - resolution: {integrity: sha512-h/E47WNElhqvFInrCld8EBpOZqCo1P3taUu77nlwdmuOfe7hy/IYhGlPRt1c114Nc9DVZoVZ52xOhT6Xk2b74Q==} - - '@nrwl/tao@15.9.3': - resolution: {integrity: sha512-NcjFCbuMa53C3fBrK7qLUImUBySyr9EVwmiZuAv9sZZtm4eILK8w3qihjrB4FFUuLjPU/SViriYXi+hF2tbP4w==} - hasBin: true - - '@nrwl/tao@17.0.0': - resolution: {integrity: sha512-ujvXd8yde1faH0zHKWWnZUhSym/+5SJT6NctBKNQTe8FVm0yBErsbxv8kdvVg/bizsRv+fbOkLdII0xX0aMkKQ==} - hasBin: true - - '@nrwl/web@17.0.0': - resolution: {integrity: sha512-Kj6S5M9KA5/UVgAf0E/AqQXyDDpbNxdZeXsWoT1CDD7w3GewWOMh/BxDZyMKQ/GIZfX1yFCbPj5+zCtpQCk3jQ==} - - '@nrwl/webpack@17.0.0': - resolution: {integrity: sha512-RiYfqKrfb+xb3/jsi8sRn19hqF6nQPWYzlLIw0Y5kX8h7N7ZQjBFpLkJuZwEUhGPEb+VC9BBzC9cXuMgWwwiSQ==} - - '@nrwl/workspace@17.0.0': - resolution: {integrity: sha512-kh30WXFmrKnrFYuk/zo7yByDjo9JWwJ3SbgdXf1S4RtZXtiDcDpat2UQ2oOe8bB6fYLrGjudsVTIWmnNKTjmNw==} - - '@nx/cypress@17.0.0': - resolution: {integrity: sha512-HDNMG/IazDaftBRRAsAVpaXo3QN6F8FjbdpWmx2vcbaG0fS0teHcQxPpHJqaT5jg/V17VEailepGOA+BoI4PWg==} - peerDependencies: - cypress: '>= 3 < 14' - peerDependenciesMeta: - cypress: - optional: true - - '@nx/devkit@17.0.0': - resolution: {integrity: sha512-NqN+I3R+Gxuy+gf04cdMg1Wo29CyhT2F87Yvu2JU355BfB3MOAFfOrQpPQt5sPlZRloZCrz0K3c2uftNkGSMUg==} - peerDependencies: - nx: '>= 16 <= 18' - - '@nx/eslint-plugin@17.0.0': - resolution: {integrity: sha512-q1kUSPRGHhbaXwJq+JthprIDVjL9mVaPeB/2mFmMFdsU6RPZsud8oJoQCamMKkGMMcN/VrtAm3L680EYv/abQw==} - peerDependencies: - '@typescript-eslint/parser': ^5.60.1 - eslint-config-prettier: ^9.0.0 - peerDependenciesMeta: - eslint-config-prettier: - optional: true - - '@nx/eslint@17.0.0': - resolution: {integrity: sha512-GWoEoxKgKrjwIB38a8JPhE6MM6wacaZfYZCAb5N2F8+7GPQUJxNW8gyhaCbLIrUglSJL+SLFtE91txOwHnDsBQ==} - peerDependencies: - eslint: ^8.0.0 - peerDependenciesMeta: - eslint: - optional: true - - '@nx/jest@17.0.0': - resolution: {integrity: sha512-ITl074j0tdDkPxMtwFQWWC+Zp23wklxlHjLfhf0CUbPqzQnofEToUd7MiuKkjzvVjXJxD/zYX9sMl6iXmFpGiA==} - - '@nx/js@17.0.0': - resolution: {integrity: sha512-j0YzvINQWH7OseoJp6zlbIioOKRDQ746MKROCDBx50uRkkJ2FlpHPYkLwv0M721JHJqf0dM0sBDa+HTxFHPcIg==} - peerDependencies: - verdaccio: ^5.0.4 - peerDependenciesMeta: - verdaccio: - optional: true - - '@nx/linter@17.0.0': - resolution: {integrity: sha512-4rDylew15CAlAsFxYvXzY6EvmGqG7uE7qWtBlkGFoDnGCNfVakzTpU6b4GJGLE1QMToKFgehrxOHL1SVzdkogg==} - - '@nx/nx-darwin-arm64@17.0.0': - resolution: {integrity: sha512-ZPW6uTVskpIbNJrH3I60lmYgXBnbszsmIX6haEhb4NKCwgPdZzMdbPqNNjIxKn6eL1A6FGKZYFh519OM8+z91A==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - - '@nx/nx-darwin-x64@17.0.0': - resolution: {integrity: sha512-pAPqfyfhSIogaUfsp5P3rbha5Xa4yZ3bHG5agi6AE9P62N/Om4r8utdZpHPKyXbWywsJZM0lL5llSfiruuO+fg==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - - '@nx/nx-freebsd-x64@17.0.0': - resolution: {integrity: sha512-DbbsthLTE+cKVUP6HDE6sza/8wRey2vy/6HfNuVnu7A/ZQaxWJUudkKviQidh7QEhHWiJoyEkjskExYTow6OoQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [freebsd] - - '@nx/nx-linux-arm-gnueabihf@17.0.0': - resolution: {integrity: sha512-ZYgYLscl4Zj/Ux7N5DJ0it9sTODEiqZjfx80w05q18GjXUWAcozFp/CZgXdT7AxONtESl/ZKDdqM+p8Hv0rI2Q==} - engines: {node: '>= 10'} - cpu: [arm] - os: [linux] - - '@nx/nx-linux-arm64-gnu@17.0.0': - resolution: {integrity: sha512-Mb0ffRV3X43OQtY5sY9wuAxFZ8VUQGM5LPwX908M2gAJH8FYtnWl06rfJAGhFAMf1Dt3bWsNebMC5iJprtF3SQ==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - - '@nx/nx-linux-arm64-musl@17.0.0': - resolution: {integrity: sha512-Xwzy3QysngtXVCJ3YRJ9rl8JL13yqluknftwxiHsMaYD7BMlh2YXdyt5D7g4yvLywq+6SezKS6cB+X4/OQlQUA==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - - '@nx/nx-linux-x64-gnu@17.0.0': - resolution: {integrity: sha512-KNbLZCNhFK/cRMavh5b7ruWX2J6KA1rR1LV5rF/liDM0scyARkJzy5PcwwhXqxaUPQD+EXWWiRkKKRYk+mwVLA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - - '@nx/nx-linux-x64-musl@17.0.0': - resolution: {integrity: sha512-T8xJTO+kac3l8528YxpAjOeke3QbRYmdSY09E6f0OrSL43D3sfJcWB8NNatx3k5q0bJ9TVl7VVJG/3Rwux/99A==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - - '@nx/nx-win32-arm64-msvc@17.0.0': - resolution: {integrity: sha512-Y/g9w6lLWMKvr9htS3ZD3jbVzMVWPq01+Bw440E5gBexAp1mvrv1cih0lKkduuIAlVppyjJu+htpEdp2wxUv9Q==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - - '@nx/nx-win32-x64-msvc@17.0.0': - resolution: {integrity: sha512-VIF01yfR2jSMQi/1x04TqJxhbKCzrdRG6QBjPCXTl6ZLnb7eGolKVPxDJd3blhYtRsS3pp20u2ra6i7C1oRrMQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - - '@nx/plugin@17.0.0': - resolution: {integrity: sha512-47evs4zB6DtpRzYhRednjZXdCA0XS6uhkLddz7DZveaBHGJds7qMAgZ3YDkbsTf7VoBtI7uYuWYt/Z9IoVfHjA==} - - '@nx/react@17.0.0': - resolution: {integrity: sha512-YHYyM0RA5+SEDgT5gSBv+a2hOBcRVrzEuRiLaOY+Za3ACxrOoO3Z0ZV0QdWLBc2hI+aYIiZkHVp9F9ro8Lx8SQ==} - - '@nx/rollup@17.0.0': - resolution: {integrity: sha512-cGTrhZRXd+0m2R8xS/rlxNiGh2mqxPp0T/bNT9FarwNKEDeWwqNBx51d27kfEBC1pSWbf7AFFmXvZzR/sSrjJA==} - - '@nx/storybook@17.0.0': - resolution: {integrity: sha512-LpxUVrt/LdO39sTPDHWVfNuxxbukmmfxyIFk/XtWoi0rFn7Ut/Zc3SdD9+7lEhIklnXu90ob5aALl4YG9OtY9A==} - - '@nx/web@17.0.0': - resolution: {integrity: sha512-H8R3QRs7nBKFei+KBvn4D8h9b4YEH8v4vfigFFD2Px1WCi0S8fWUqr9mF/EUUt6pUAf7Qgq3qp+EHArQ19X8MA==} - - '@nx/webpack@17.0.0': - resolution: {integrity: sha512-/qDyFGMCVvNPUW7T/qCh1CvRIcLDgCWcAz7KCeM5v90jRajSnfZDM0z7oQ4h/IClNQ3c57JJ8Mdm6rpY0XoMgw==} - - '@nx/workspace@17.0.0': - resolution: {integrity: sha512-7rG+7S7f6CyxrvLSduSyvJZ4DYfpCO1WZkEfZDpp9cuQVJudeZqrXqolupkmQqymTTWyNSRASvLbL1GBRLtU3w==} - - '@octokit/auth-token@3.0.4': - resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==} - engines: {node: '>= 14'} - - '@octokit/core@4.2.4': - resolution: {integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==} - engines: {node: '>= 14'} - - '@octokit/endpoint@7.0.6': - resolution: {integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==} - engines: {node: '>= 14'} - - '@octokit/graphql@5.0.6': - resolution: {integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==} - engines: {node: '>= 14'} - - '@octokit/openapi-types@18.1.1': - resolution: {integrity: sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==} - - '@octokit/plugin-enterprise-rest@6.0.1': - resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==} - - '@octokit/plugin-paginate-rest@6.1.2': - resolution: {integrity: sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==} - engines: {node: '>= 14'} - peerDependencies: - '@octokit/core': '>=4' - - '@octokit/plugin-request-log@1.0.4': - resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} - peerDependencies: - '@octokit/core': '>=3' - - '@octokit/plugin-rest-endpoint-methods@7.2.3': - resolution: {integrity: sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==} - engines: {node: '>= 14'} - peerDependencies: - '@octokit/core': '>=3' - - '@octokit/request-error@3.0.3': - resolution: {integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==} - engines: {node: '>= 14'} - - '@octokit/request@6.2.8': - resolution: {integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==} - engines: {node: '>= 14'} - - '@octokit/rest@19.0.13': - resolution: {integrity: sha512-/EzVox5V9gYGdbAI+ovYj3nXQT1TtTHRT+0eZPcuC05UFSWO3mdO9UY1C0i2eLF9Un1ONJkAk+IEtYGAC+TahA==} - engines: {node: '>= 14'} - - '@octokit/tsconfig@1.0.2': - resolution: {integrity: sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==} - - '@octokit/types@10.0.0': - resolution: {integrity: sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==} - - '@octokit/types@9.3.2': - resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==} - - '@one-ini/wasm@0.1.1': - resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} - - '@open-draft/until@1.0.3': - resolution: {integrity: sha512-Aq58f5HiWdyDlFffbbSjAlv596h/cOnt2DO1w3DOC7OJ5EHs0hd/nycJfiu9RJbT6Yk6F1knnRRXNSpxoIVZ9Q==} - - '@oxygen-ui/primitives@1.11.0': - resolution: {integrity: sha512-z1d75MVfkYYrLiBRFPJJNvcMc1/j5qd9eZZGMXH04Ipg1VbVHj3DGl6BvqRGIHeBdNtm3NgjBwx8VfqHQ/i6HA==} - - '@oxygen-ui/react-icons@1.11.0': - resolution: {integrity: sha512-qb1bCzC6c0xecRHneQy6T0LlGNLMvqomw1kuExubstn1kcebF7Y+TH8hjlrr4F3tp+upTBRXNEsVAUeq24Xnpw==} - peerDependencies: - react: '>=18.0.0' - react-dom: '>=18.0.0' - typescript: '>=4.0.0' - peerDependenciesMeta: - typescript: - optional: true - - '@oxygen-ui/react@1.11.0': - resolution: {integrity: sha512-Ij9E3CvX/fNGQkWbH6ic9LNsldFHeuy/2adksNsJLQgVsbvPct/coXyPYF8duH17dPEu6nksEHJwIfxoz9ekww==} - peerDependencies: - '@emotion/react': ^11.10.5 - '@emotion/styled': ^11.10.5 - '@mui/icons-material': ^5.10.16 - '@mui/lab': 5.0.0-alpha.110 - '@mui/material': 5.13.0 - '@mui/system': ^5.10.16 - '@mui/utils': ^5.10.16 - react: '>=18.0.0' - react-dom: '>=18.0.0' - typescript: '>=4.0.0' - peerDependenciesMeta: - typescript: - optional: true - - '@parcel/watcher@2.0.4': - resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==} - engines: {node: '>= 10.0.0'} - - '@phenomnomnominal/tsquery@5.0.1': - resolution: {integrity: sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==} - peerDependencies: - typescript: ^3 || ^4 || ^5 - - '@pkgjs/parseargs@0.11.0': - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: '>=14'} - - '@pmmmwh/react-refresh-webpack-plugin@0.4.3': - resolution: {integrity: sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==} - engines: {node: '>= 10.x'} - peerDependencies: - '@types/webpack': 4.x - react-refresh: '>=0.8.3 <0.10.0' - sockjs-client: ^1.4.0 - type-fest: ^0.13.1 - webpack: 5.84.1 - webpack-dev-server: 3.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - '@types/webpack': - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true - - '@pmmmwh/react-refresh-webpack-plugin@0.5.15': - resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==} - engines: {node: '>= 10.13'} - peerDependencies: - '@types/webpack': 4.x || 5.x - react-refresh: '>=0.10.0 <1.0.0' - sockjs-client: ^1.4.0 - type-fest: '>=0.17.0 <5.0.0' - webpack: 5.84.1 - webpack-dev-server: 3.x || 4.x || 5.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - '@types/webpack': - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true - - '@polka/url@1.0.0-next.25': - resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} - - '@popperjs/core@2.11.8': - resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} - - '@reactflow/background@11.2.2': - resolution: {integrity: sha512-gOtae79Zx1zOs9tD4tmKfuiQQOyG0O81BWBCHqlAQgemKlYExElFKOC67lgTDZ4GGFK+4sXrgrWQ5h14hzaFgg==} - peerDependencies: - react: '>=17' - react-dom: '>=17' - - '@reactflow/controls@11.1.13': - resolution: {integrity: sha512-rA74+mbt2bnz9Fba6JL1JsKHNNEK6Nl70+ssfOLKMpRFIg512IroayBWufgPJB82X9dgMIzZfx/UcEFFUFJQ8Q==} - peerDependencies: - react: '>=17' - react-dom: '>=17' - - '@reactflow/core@11.7.2': - resolution: {integrity: sha512-AhszxILp1RNk3SwrnC/eYh1XsOil5yzthYG5k+oTpvLH5H3BtIWIVkeLEJwmL611lPKL3JuScfjliUxBm9128w==} - peerDependencies: - react: '>=17' - react-dom: '>=17' - - '@reactflow/minimap@11.5.2': - resolution: {integrity: sha512-564gP/GMZKaJjVRGIrVLv2gIjgc89+qvNwuZzHnQLXjBw5+nS/QkW57Qx/M33MxVAaM+Z5rJ8gKknMSnxekwvQ==} - peerDependencies: - react: '>=17' - react-dom: '>=17' - - '@reactflow/node-resizer@2.1.0': - resolution: {integrity: sha512-DVL8nnWsltP8/iANadAcTaDB4wsEkx2mOLlBEPNE3yc5loSm3u9l5m4enXRcBym61MiMuTtDPzZMyYYQUjuYIg==} - peerDependencies: - react: '>=17' - react-dom: '>=17' - - '@reactflow/node-toolbar@1.2.1': - resolution: {integrity: sha512-EcMUMzJGAACYQTiUaBm3zxeiiKCPwU2MaoDeZdnEMbvq+2SfohKOur6JklANjv30kL+Pf3xj8QopEtyKTS4XrA==} - peerDependencies: - react: '>=17' - react-dom: '>=17' - - '@remix-run/router@1.17.1': - resolution: {integrity: sha512-mCOMec4BKd6BRGBZeSnGiIgwsbLGp3yhVqAD8H+PxiRNEHgDpZb8J1TnrSDlg97t0ySKMQJTHCWBCmBpSmkF6Q==} - engines: {node: '>=14.0.0'} - - '@rollup/plugin-babel@5.3.1': - resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} - engines: {node: '>= 10.0.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@types/babel__core': ^7.1.9 - rollup: ^1.20.0||^2.0.0 - peerDependenciesMeta: - '@types/babel__core': - optional: true - - '@rollup/plugin-commonjs@20.0.0': - resolution: {integrity: sha512-5K0g5W2Ol8hAcTHqcTBHiA7M58tfmYi1o9KxeJuuRNpGaTa5iLjcyemBitCBcKXaHamOBBEH2dGom6v6Unmqjg==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^2.38.3 - - '@rollup/plugin-commonjs@25.0.8': - resolution: {integrity: sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.68.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/plugin-dynamic-import-vars@2.1.2': - resolution: {integrity: sha512-4lr2oXxs9hcxtGGaK8s0i9evfjzDrAs7ngw28TqruWKTEm0+U4Eljb+F6HXGYdFv8xRojQlrQwV7M/yxeh3yzQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/plugin-image@2.1.1': - resolution: {integrity: sha512-AgP4U85zuQJdUopLUCM+hTf45RepgXeTb8EJsleExVy99dIoYpt3ZlDYJdKmAc2KLkNntCDg6BPJvgJU3uGF+g==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 - - '@rollup/plugin-image@3.0.3': - resolution: {integrity: sha512-qXWQwsXpvD4trSb8PeFPFajp8JLpRtqqOeNYRUKnEQNHm7e5UP7fuSRcbjQAJ7wDZBbnJvSdY5ujNBQd9B1iFg==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/plugin-inject@5.0.5': - resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/plugin-json@4.1.0': - resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 - - '@rollup/plugin-json@6.1.0': - resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/plugin-node-resolve@13.3.0': - resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} - engines: {node: '>= 10.0.0'} - peerDependencies: - rollup: ^2.42.0 - - '@rollup/plugin-node-resolve@15.2.3': - resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.78.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/plugin-typescript@11.1.6': - resolution: {integrity: sha512-R92yOmIACgYdJ7dJ97p4K69I8gg6IEHt8M7dUBxN3W6nrO8uUxX5ixl0yU/N3aZTi8WhPuICvOHXQvF6FaykAA==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.14.0||^3.0.0||^4.0.0 - tslib: '*' - typescript: '>=3.7.0' - peerDependenciesMeta: - rollup: - optional: true - tslib: - optional: true - - '@rollup/plugin-url@7.0.0': - resolution: {integrity: sha512-cIWcEObrmEPAU8q8NluGWlCPlQDuoSKvkyI3eOFO4fx6W02mLNj4ZEiUT0X2mKMIvQzoWL1feEK9d1yr1ICgrw==} - engines: {node: '>=10.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 - - '@rollup/pluginutils@3.1.0': - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 - - '@rollup/pluginutils@4.2.1': - resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} - engines: {node: '>= 8.0.0'} - - '@rollup/pluginutils@5.1.0': - resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/rollup-android-arm-eabi@4.18.1': - resolution: {integrity: sha512-lncuC4aHicncmbORnx+dUaAgzee9cm/PbIqgWz1PpXuwc+sa1Ct83tnqUDy/GFKleLiN7ZIeytM6KJ4cAn1SxA==} - cpu: [arm] - os: [android] - - '@rollup/rollup-android-arm64@4.18.1': - resolution: {integrity: sha512-F/tkdw0WSs4ojqz5Ovrw5r9odqzFjb5LIgHdHZG65dFI1lWTWRVy32KDJLKRISHgJvqUeUhdIvy43fX41znyDg==} - cpu: [arm64] - os: [android] - - '@rollup/rollup-darwin-arm64@4.18.1': - resolution: {integrity: sha512-vk+ma8iC1ebje/ahpxpnrfVQJibTMyHdWpOGZ3JpQ7Mgn/3QNHmPq7YwjZbIE7km73dH5M1e6MRRsnEBW7v5CQ==} - cpu: [arm64] - os: [darwin] - - '@rollup/rollup-darwin-x64@4.18.1': - resolution: {integrity: sha512-IgpzXKauRe1Tafcej9STjSSuG0Ghu/xGYH+qG6JwsAUxXrnkvNHcq/NL6nz1+jzvWAnQkuAJ4uIwGB48K9OCGA==} - cpu: [x64] - os: [darwin] - - '@rollup/rollup-linux-arm-gnueabihf@4.18.1': - resolution: {integrity: sha512-P9bSiAUnSSM7EmyRK+e5wgpqai86QOSv8BwvkGjLwYuOpaeomiZWifEos517CwbG+aZl1T4clSE1YqqH2JRs+g==} - cpu: [arm] - os: [linux] - - '@rollup/rollup-linux-arm-musleabihf@4.18.1': - resolution: {integrity: sha512-5RnjpACoxtS+aWOI1dURKno11d7krfpGDEn19jI8BuWmSBbUC4ytIADfROM1FZrFhQPSoP+KEa3NlEScznBTyQ==} - cpu: [arm] - os: [linux] - - '@rollup/rollup-linux-arm64-gnu@4.18.1': - resolution: {integrity: sha512-8mwmGD668m8WaGbthrEYZ9CBmPug2QPGWxhJxh/vCgBjro5o96gL04WLlg5BA233OCWLqERy4YUzX3bJGXaJgQ==} - cpu: [arm64] - os: [linux] - - '@rollup/rollup-linux-arm64-musl@4.18.1': - resolution: {integrity: sha512-dJX9u4r4bqInMGOAQoGYdwDP8lQiisWb9et+T84l2WXk41yEej8v2iGKodmdKimT8cTAYt0jFb+UEBxnPkbXEQ==} - cpu: [arm64] - os: [linux] - - '@rollup/rollup-linux-powerpc64le-gnu@4.18.1': - resolution: {integrity: sha512-V72cXdTl4EI0x6FNmho4D502sy7ed+LuVW6Ym8aI6DRQ9hQZdp5sj0a2usYOlqvFBNKQnLQGwmYnujo2HvjCxQ==} - cpu: [ppc64] - os: [linux] - - '@rollup/rollup-linux-riscv64-gnu@4.18.1': - resolution: {integrity: sha512-f+pJih7sxoKmbjghrM2RkWo2WHUW8UbfxIQiWo5yeCaCM0TveMEuAzKJte4QskBp1TIinpnRcxkquY+4WuY/tg==} - cpu: [riscv64] - os: [linux] - - '@rollup/rollup-linux-s390x-gnu@4.18.1': - resolution: {integrity: sha512-qb1hMMT3Fr/Qz1OKovCuUM11MUNLUuHeBC2DPPAWUYYUAOFWaxInaTwTQmc7Fl5La7DShTEpmYwgdt2hG+4TEg==} - cpu: [s390x] - os: [linux] - - '@rollup/rollup-linux-x64-gnu@4.18.1': - resolution: {integrity: sha512-7O5u/p6oKUFYjRbZkL2FLbwsyoJAjyeXHCU3O4ndvzg2OFO2GinFPSJFGbiwFDaCFc+k7gs9CF243PwdPQFh5g==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-linux-x64-musl@4.18.1': - resolution: {integrity: sha512-pDLkYITdYrH/9Cv/Vlj8HppDuLMDUBmgsM0+N+xLtFd18aXgM9Nyqupb/Uw+HeidhfYg2lD6CXvz6CjoVOaKjQ==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-win32-arm64-msvc@4.18.1': - resolution: {integrity: sha512-W2ZNI323O/8pJdBGil1oCauuCzmVd9lDmWBBqxYZcOqWD6aWqJtVBQ1dFrF4dYpZPks6F+xCZHfzG5hYlSHZ6g==} - cpu: [arm64] - os: [win32] - - '@rollup/rollup-win32-ia32-msvc@4.18.1': - resolution: {integrity: sha512-ELfEX1/+eGZYMaCIbK4jqLxO1gyTSOIlZr6pbC4SRYFaSIDVKOnZNMdoZ+ON0mrFDp4+H5MhwNC1H/AhE3zQLg==} - cpu: [ia32] - os: [win32] - - '@rollup/rollup-win32-x64-msvc@4.18.1': - resolution: {integrity: sha512-yjk2MAkQmoaPYCSu35RLJ62+dz358nE83VfTePJRp8CG7aMg25mEJYpXFiD+NcevhX8LxD5OP5tktPXnXN7GDw==} - cpu: [x64] - os: [win32] - - '@semantic-ui-react/event-stack@3.1.3': - resolution: {integrity: sha512-FdTmJyWvJaYinHrKRsMLDrz4tTMGdFfds299Qory53hBugiDvGC0tEJf+cHsi5igDwWb/CLOgOiChInHwq8URQ==} - peerDependencies: - react: ^16.0.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 - - '@sideway/address@4.1.5': - resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} - - '@sideway/formula@3.0.1': - resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} - - '@sideway/pinpoint@2.0.0': - resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} - - '@sinclair/typebox@0.27.8': - resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} - - '@sindresorhus/is@0.14.0': - resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} - engines: {node: '>=6'} - - '@sindresorhus/is@4.6.0': - resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} - engines: {node: '>=10'} - - '@sindresorhus/merge-streams@2.3.0': - resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} - engines: {node: '>=18'} - - '@sinonjs/commons@1.8.6': - resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} - - '@sinonjs/commons@3.0.1': - resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} - - '@sinonjs/fake-timers@10.3.0': - resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} - - '@sinonjs/fake-timers@6.0.1': - resolution: {integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==} - - '@storybook/addon-actions@6.5.16': - resolution: {integrity: sha512-aADjilFmuD6TNGz2CRPSupnyiA/IGkPJHDBTqMpsDXTUr8xnuD122xkIhg6UxmCM2y1c+ncwYXy3WPK2xXK57g==} - 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 - - '@storybook/addon-backgrounds@6.5.16': - resolution: {integrity: sha512-t7qooZ892BruhilFmzYPbysFwpULt/q4zYXNSmKVbAYta8UVvitjcU4F18p8FpWd9WvhiTr0SDlyhNZuzvDfug==} - 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 - - '@storybook/addon-controls@6.5.16': - resolution: {integrity: sha512-kShSGjq1MjmmyL3l8i+uPz6yddtf82mzys0l82VKtcuyjrr5944wYFJ5NTXMfZxrO/U6FeFsfuFZE/k6ex3EMg==} - 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 - - '@storybook/addon-docs@6.5.16': - resolution: {integrity: sha512-QM9WDZG9P02UvbzLu947a8ZngOrQeAKAT8jCibQFM/+RJ39xBlfm8rm+cQy3dm94wgtjmVkA3mKGOV/yrrsddg==} - peerDependencies: - '@storybook/mdx2-csf': ^0.0.3 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@storybook/mdx2-csf': - optional: true - react: - optional: true - react-dom: - optional: true - - '@storybook/addon-links@6.5.16': - resolution: {integrity: sha512-P/mmqK57NGXnR0i3d/T5B0rIt0Lg8Yq+qionRr3LK3AwG/4yGnYt4GNomLEknn/eEwABYq1Q/Z1aOpgIhNdq5A==} - 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 - - '@storybook/addon-measure@6.5.16': - resolution: {integrity: sha512-DMwnXkmM2L6POTh4KaOWvOAtQ2p9Tr1UUNxz6VXiN5cKFohpCs6x0txdLU5WN8eWIq0VFsO7u5ZX34CGCc6gCg==} - 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 - - '@storybook/addon-outline@6.5.16': - resolution: {integrity: sha512-0du96nha4qltexO0Xq1xB7LeRSbqjC9XqtZLflXG7/X3ABoPD2cXgOV97eeaXUodIyb2qYBbHUfftBeA75x0+w==} - 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 - - '@storybook/addon-toolbars@6.5.16': - resolution: {integrity: sha512-y3PuUKiwOWrAvqx1YdUvArg0UaAwmboXFeR2bkrowk1xcT+xnRO3rML4npFeUl26OQ1FzwxX/cw6nknREBBLEA==} - 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 - - '@storybook/addon-viewport@6.5.16': - resolution: {integrity: sha512-1Vyqf1U6Qng6TXlf4SdqUKyizlw1Wn6+qW8YeA2q1lbkJqn3UlnHXIp8Q0t/5q1dK5BFtREox3+jkGwbJrzkmA==} - 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 - - '@storybook/addons@6.5.16': - resolution: {integrity: sha512-p3DqQi+8QRL5k7jXhXmJZLsE/GqHqyY6PcoA1oNTJr0try48uhTGUOYkgzmqtDaa/qPFO5LP+xCPzZXckGtquQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/api@6.5.16': - resolution: {integrity: sha512-HOsuT8iomqeTMQJrRx5U8nsC7lJTwRr1DhdD0SzlqL4c80S/7uuCy4IZvOt4sYQjOzW5fOo/kamcoBXyLproTA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/builder-manager@7.6.9': - resolution: {integrity: sha512-F9Fujde0G4g7Df6mYu6VQy26c3B1hcAC0KLbjKrrp1v9+E5mE12hSq/y+mYQUGmCe86YBVuQiazO4W3Mm/HRsw==} - - '@storybook/builder-webpack4@6.5.16': - resolution: {integrity: sha512-YqDIrVNsUo8r9xc6AxsYDLxVYtMgl5Bxk+8/h1adsOko+jAFhdg6hOcAVxEmoSI0TMASOOVMFlT2hr23ppN2rQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/builder-webpack5@6.5.16': - resolution: {integrity: sha512-kh8Sofm1sbijaHDWtm0sXabqACHVFjikU/fIkkW786kpjoPIPIec1a+hrLgDsZxMU3I7XapSOaCFzWt6FjVXjg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/builder-webpack5@7.6.9': - resolution: {integrity: sha512-LDwD1chjTVRKxJebkN4GkMl/aR7jzVYIx+0VuFKjDM/6er341ixE5GMIlvXKdYb8JWI8bI7suknSjbsd3LeBoA==} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/channel-postmessage@6.5.16': - resolution: {integrity: sha512-fZZSN29dsUArWOx7e7lTdMA9+7zijVwCwbvi2Fo4fqhRLh1DsTb/VXfz1FKMCWAjNlcX7QQvV25tnxbqsD6lyw==} - - '@storybook/channel-websocket@6.5.16': - resolution: {integrity: sha512-wJg2lpBjmRC2GJFzmhB9kxlh109VE58r/0WhFtLbwKvPqsvGf82xkBEl6BtBCvIQ4stzYnj/XijjA8qSi2zpOg==} - - '@storybook/channels@6.5.16': - resolution: {integrity: sha512-VylzaWQZaMozEwZPJdyJoz+0jpDa8GRyaqu9TGG6QGv+KU5POoZaGLDkRE7TzWkyyP0KQLo80K99MssZCpgSeg==} - - '@storybook/channels@7.6.9': - resolution: {integrity: sha512-goGGZPT294CS1QDF65Fs+PCauvM/nTMseU913ZVSZbFTk4uvqIXOaOraqhQze8A/C8a0yls4qu2Wp00tCnyaTA==} - - '@storybook/cli@6.5.16': - resolution: {integrity: sha512-6hcIUvoQxmK9OZ/dmt2eXMbdeCJseRjLwIk4y2SdWd3chpjMDUVhIMJHU4qc2+6rbK+iwL7JAsOUEu/ywkgEow==} - hasBin: true - - '@storybook/cli@7.6.9': - resolution: {integrity: sha512-HXxr8m1S9wsCtVZ/iQy/bHIUcGlNZ6bMo8jBcFh2V5EgDi350LGQ8q1w/zbwNMD0z0OhmPiv84okksBrOMW6pw==} - hasBin: true - - '@storybook/client-api@6.5.16': - resolution: {integrity: sha512-i3UwkzzUFw8I+E6fOcgB5sc4oU2fhvaKnqC1mpd9IYGJ9JN9MnGIaVl3Ko28DtFItu/QabC9JsLIJVripFLktQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/client-logger@6.5.16': - resolution: {integrity: sha512-pxcNaCj3ItDdicPTXTtmYJE3YC1SjxFrBmHcyrN+nffeNyiMuViJdOOZzzzucTUG0wcOOX8jaSyak+nnHg5H1Q==} - - '@storybook/client-logger@7.6.9': - resolution: {integrity: sha512-Xm6fa6AR3cjxabauMldBv/66OOp5IhDiUEpp4D/a7hXfvCWqwmjVJ6EPz9WzkMhcPbMJr8vWJBaS3glkFqsRng==} - - '@storybook/codemod@6.5.16': - resolution: {integrity: sha512-bYu0QzkWpgILFdQnbIsnICfL08Z4xmLSmL0Rq9WWGRnSnNnGzX5P57gz+fW7+NHFGxdCTCuHJPvwAXGuJQApPQ==} - - '@storybook/codemod@7.6.9': - resolution: {integrity: sha512-7vj5zVu4GmBpY6fxrRsJby5ttN/tN5Z8RFil06PhTy8SI8JxFoJCWBaPwtOvICObdBAqDx9idGVzbcVpdVdJEg==} - - '@storybook/components@6.5.16': - resolution: {integrity: sha512-LzBOFJKITLtDcbW9jXl0/PaG+4xAz25PK8JxPZpIALbmOpYWOAPcO6V9C2heX6e6NgWFMUxjplkULEk9RCQMNA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/core-client@6.5.16': - resolution: {integrity: sha512-14IRaDrVtKrQ+gNWC0wPwkCNfkZOKghYV/swCUnQX3rP99defsZK8Hc7xHIYoAiOP5+sc3sweRAxgmFiJeQ1Ig==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - webpack: 5.84.1 - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/core-client@7.6.9': - resolution: {integrity: sha512-a94YHpRilFhhfPLmCsnEuGQld7ZY7VfQPtzKL/a8MjNEYiJTghquLx20ZPAeO/CjKZmtTfLVhO95InkNtKz33A==} - - '@storybook/core-common@6.5.16': - resolution: {integrity: sha512-2qtnKP3TTOzt2cp6LXKRTh7XrI9z5VanMnMTgeoFcA5ebnndD4V6BExQUdYPClE/QooLx6blUWNgS9dFEpjSqQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/core-common@7.6.9': - resolution: {integrity: sha512-K3xHn2wvyTRXv+boAei5mVqO6P+5EGdGAILF+iSINrdNfz899HAovlnj68dBZguiHqFibhYyFIv1PyGuPgVn6g==} - - '@storybook/core-events@6.5.16': - resolution: {integrity: sha512-qMZQwmvzpH5F2uwNUllTPg6eZXr2OaYZQRRN8VZJiuorZzDNdAFmiVWMWdkThwmyLEJuQKXxqCL8lMj/7PPM+g==} - - '@storybook/core-events@7.6.9': - resolution: {integrity: sha512-YCds7AA6sbnnZ2qq5l+AIxhQqYlXB8eVTkjj6phgczsLjkqKapYFxAFc3ppRnE0FcsL2iji17ikHzZ8+eHYznA==} - - '@storybook/core-server@6.5.16': - resolution: {integrity: sha512-/3NPfmNyply395Dm0zaVZ8P9aruwO+tPx4D6/jpw8aqrRSwvAMndPMpoMCm0NXcpSm5rdX+Je4S3JW6JcggFkA==} - peerDependencies: - '@storybook/builder-webpack5': '*' - '@storybook/manager-webpack5': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - '@storybook/builder-webpack5': - optional: true - '@storybook/manager-webpack5': - optional: true - typescript: - optional: true - - '@storybook/core-server@7.6.9': - resolution: {integrity: sha512-zRzKmdYhDiIxX+K3i/Ri6v3uuWzwFcdNaKkWnUSDsIR40kI5vCQB6aad/4Lrf/qMVvjWCOkLNFxOD2X4cXMM6w==} - - '@storybook/core-webpack@7.6.9': - resolution: {integrity: sha512-2nDHBFY4fxSsESL0bhnWapfRHMZyIYsW9dQvtjkPLKf2v8d7iF8NNM7Rn8j862s2HoMWd8otRW4r3UrG5+FNKw==} - - '@storybook/core@6.5.16': - resolution: {integrity: sha512-CEF3QFTsm/VMnMKtRNr4rRdLeIkIG0g1t26WcmxTdSThNPBd8CsWzQJ7Jqu7CKiut+MU4A1LMOwbwCE5F2gmyA==} - peerDependencies: - '@storybook/builder-webpack5': '*' - '@storybook/manager-webpack5': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - webpack: 5.84.1 - peerDependenciesMeta: - '@storybook/builder-webpack5': - optional: true - '@storybook/manager-webpack5': - optional: true - typescript: - optional: true - - '@storybook/csf-tools@6.5.16': - resolution: {integrity: sha512-+WD4sH/OwAfXZX3IN6/LOZ9D9iGEFcN+Vvgv9wOsLRgsAZ10DG/NK6c1unXKDM/ogJtJYccNI8Hd+qNE/GFV6A==} - peerDependencies: - '@storybook/mdx2-csf': ^0.0.3 - peerDependenciesMeta: - '@storybook/mdx2-csf': - optional: true - - '@storybook/csf-tools@7.6.9': - resolution: {integrity: sha512-1Lfq+d3NBhmCq07Tz3Fc5Y2szpXKFtQ8Xx9/Ht0NC/dihn8ZgRlFa8uak9BKNWh5kTQb4EP7e0PMmwyowR1JWQ==} - - '@storybook/csf@0.0.2--canary.4566f4d.1': - resolution: {integrity: sha512-9OVvMVh3t9znYZwb0Svf/YQoxX2gVOeQTGe2bses2yj+a3+OJnCrUF3/hGv6Em7KujtOdL2LL+JnG49oMVGFgQ==} - - '@storybook/csf@0.1.11': - resolution: {integrity: sha512-dHYFQH3mA+EtnCkHXzicbLgsvzYjcDJ1JWsogbItZogkPHgSJM/Wr71uMkcvw8v9mmCyP4NpXJuu6bPoVsOnzg==} - - '@storybook/docs-mdx@0.1.0': - resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==} - - '@storybook/docs-tools@6.5.16': - resolution: {integrity: sha512-o+rAWPRGifjBF5xZzTKOqnHN3XQWkl0QFJYVDIiJYJrVll7ExCkpEq/PahOGzIBBV+tpMstJgmKM3lr/lu/jmg==} - - '@storybook/docs-tools@7.6.9': - resolution: {integrity: sha512-p5+jkQk+9cTIjnHYqytJARtoupxn7fORAtk33+DOiSv026cSx5LsW2rZwZuGeH+bloVeLoxiwhQWeK61PN14Jw==} - - '@storybook/global@5.0.0': - resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} - - '@storybook/manager-webpack4@6.5.16': - resolution: {integrity: sha512-5VJZwmQU6AgdsBPsYdu886UKBHQ9SJEnFMaeUxKEclXk+iRsmbzlL4GHKyVd6oGX/ZaecZtcHPR6xrzmA4Ziew==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/manager-webpack5@6.5.16': - resolution: {integrity: sha512-OtxXv8JCe0r/0rE5HxaFicsNsXA+fqZxzokxquFFgrYf/1Jg4d7QX6/pG5wINF+5qInJfVkRG6xhPzv1s5bk9Q==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/manager@7.6.9': - resolution: {integrity: sha512-FGY4Dsttg1P9fPVeXuQyIEpXdQYHMMvqUoCpEc0hkDBf4cu6tbQCLOeP7EPKN4oVW+zKh4BanJlrOlqGAD5jWA==} - - '@storybook/mdx1-csf@0.0.1': - resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} - - '@storybook/node-logger@6.5.16': - resolution: {integrity: sha512-YjhBKrclQtjhqFNSO+BZK+RXOx6EQypAELJKoLFaawg331e8VUfvUuRCNB3fcEWp8G9oH13PQQte0OTjLyyOYg==} - - '@storybook/node-logger@7.6.9': - resolution: {integrity: sha512-JoK5mJkjjpFfbiXbCdCiQceIUzIfeHpYCDd6+Jpx9+Sk4osR3BgdW2qYBviosato9c9D3dvKyrfhzbSp5rX+bQ==} - - '@storybook/postinstall@6.5.16': - resolution: {integrity: sha512-08K2q+qN6pqyPW7PHLCZ5G5Xa6Wosd6t0F16PQ4abX2ItlJLabVoJN5mZ0gm/aeLTjD8QYr8IDvacu4eXh0SVA==} - - '@storybook/preset-react-webpack@7.6.9': - resolution: {integrity: sha512-53zfRsr+YeP6SkoIBXCQjKhAMlVTRNtSpzuvhd7MvLoaU3YO9xE1ZzHMljk1r6gXt+GOMdEzZhFRGc/z/M62Vg==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@babel/core': ^7.22.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - '@babel/core': - optional: true - typescript: - optional: true - - '@storybook/preview-api@7.6.9': - resolution: {integrity: sha512-qVRylkOc70Ivz/oRE3cXaQA9r60qXSCXhY8xFjnBvZFjoYr0ImGx+tt0818YzSkhTf6LsNbx9HxwW4+x7JD6dw==} - - '@storybook/preview-web@6.5.16': - resolution: {integrity: sha512-IJnvfe2sKCfk7apN9Fu9U8qibbarrPX5JB55ZzK1amSHVmSDuYk5MIMc/U3NnSQNnvd1DO5v/zMcGgj563hrtg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/preview@7.6.9': - resolution: {integrity: sha512-cQbejRzUYghU913ZWLc37YinzU4Ziv5eYonQzGk7C5O2hP2MoDYqIL9CIll00tNb9lXDuK1kYz7AVJNrsDrvCg==} - - '@storybook/react-docgen-typescript-plugin@1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0': - resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==} - peerDependencies: - typescript: '>= 3.x' - webpack: 5.84.1 - - '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0': - resolution: {integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==} - peerDependencies: - typescript: '>= 4.x' - webpack: 5.84.1 - - '@storybook/react-dom-shim@7.6.9': - resolution: {integrity: sha512-8n0MFq52lKGPHmqLN8PHueAE+5Kj+LMUTg7Sw0PeQhuaLYRT/1v0QpQXxuiwpkwEbrQr/u9MzZ8B0KsZHKxROQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/react-webpack5@7.6.9': - resolution: {integrity: sha512-J0LzsLYJ4vkTcep4u3kwnblyTJSh4E+KPQPGLMd8KmQ9/Z1i4JFONNrs0yn5PofhnBGvfD9Y8iNBhh3NDAH4XA==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@babel/core': ^7.22.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - '@babel/core': - optional: true - typescript: - optional: true - - '@storybook/react@6.5.16': - resolution: {integrity: sha512-cBtNlOzf/MySpNLBK22lJ8wFU22HnfTB2xJyBk7W7Zi71Lm7Uxkhv1Pz8HdiQndJ0SlsAAQOWjQYsSZsGkZIaA==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - '@babel/core': ^7.11.5 - '@storybook/builder-webpack4': '*' - '@storybook/builder-webpack5': '*' - '@storybook/manager-webpack4': '*' - '@storybook/manager-webpack5': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - require-from-string: ^2.0.2 - typescript: '*' - peerDependenciesMeta: - '@babel/core': - optional: true - '@storybook/builder-webpack4': - optional: true - '@storybook/builder-webpack5': - optional: true - '@storybook/manager-webpack4': - optional: true - '@storybook/manager-webpack5': - optional: true - typescript: - optional: true - - '@storybook/react@7.6.9': - resolution: {integrity: sha512-nKBiI0wVyN3yj9xgNjIVKaaYSwe+qBqn0pxmiHSY20mUY4GH1thEY2KMtL0BLIU/mvcp6cw/Sj3oDFKCe+G0MA==} - engines: {node: '>=16.0.0'} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@storybook/router@6.5.16': - resolution: {integrity: sha512-ZgeP8a5YV/iuKbv31V8DjPxlV4AzorRiR8OuSt/KqaiYXNXlOoQDz/qMmiNcrshrfLpmkzoq7fSo4T8lWo2UwQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/semver@7.3.2': - resolution: {integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==} - engines: {node: '>=10'} - hasBin: true - - '@storybook/source-loader@6.5.16': - resolution: {integrity: sha512-fyVl4jrM/5JLrb48aqXPu7sTsmySQaVGFp1zfeqvPPlJRFMastDrePm5XGPN7Qjv1wsKmpuBvuweFKOT1pru3g==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/store@6.5.16': - resolution: {integrity: sha512-g+bVL5hmMq/9cM51K04e37OviUPHT0rHHrRm5wj/hrf18Kd9120b3sxdQ5Dc+HZ292yuME0n+cyrQPTYx9Epmw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/telemetry@6.5.16': - resolution: {integrity: sha512-CWr5Uko1l9jJW88yTXsZTj/3GTabPvw0o7pDPOXPp8JRZiJTxv1JFaFCafhK9UzYbgcRuGfCC8kEWPZims7iKA==} - - '@storybook/telemetry@7.6.9': - resolution: {integrity: sha512-0Dj2RH5oAL1mY72OcZKmiOlAcWyex2bwYJZUnsFrA+RFvOr7FbHAVWwudz4orWzIkYFTESixF4wuF0mYk8ds6g==} - - '@storybook/theming@6.5.16': - resolution: {integrity: sha512-hNLctkjaYLRdk1+xYTkC1mg4dYz2wSv6SqbLpcKMbkPHTE0ElhddGPHQqB362md/w9emYXNkt1LSMD8Xk9JzVQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@storybook/types@7.6.9': - resolution: {integrity: sha512-Qnx7exS6bO1MrqasHl12h8/HeBuxrwg2oMXROO7t0qmprV6+DGb6OxztsVIgbKR+m6uqFFM1q+f/Q5soI1qJ6g==} - - '@storybook/ui@6.5.16': - resolution: {integrity: sha512-rHn/n12WM8BaXtZ3IApNZCiS+C4Oc5+Lkl4MoctX8V7QSml0SxZBB5hsJ/AiWkgbRxjQpa/L/Nt7/Qw0FjTH/A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - '@svgr/babel-plugin-add-jsx-attribute@4.2.0': - resolution: {integrity: sha512-j7KnilGyZzYr/jhcrSYS3FGWMZVaqyCG0vzMCwzvei0coIkczuYMcniK07nI0aHJINciujjH11T72ICW5eL5Ig==} - engines: {node: '>=8'} - - '@svgr/babel-plugin-add-jsx-attribute@5.4.0': - resolution: {integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-add-jsx-attribute@6.5.1': - resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-add-jsx-attribute@8.0.0': - resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-remove-jsx-attribute@4.2.0': - resolution: {integrity: sha512-3XHLtJ+HbRCH4n28S7y/yZoEQnRpl0tvTZQsHqvaeNXPra+6vE5tbRliH3ox1yZYPCxrlqaJT/Mg+75GpDKlvQ==} - engines: {node: '>=8'} - - '@svgr/babel-plugin-remove-jsx-attribute@5.4.0': - resolution: {integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-remove-jsx-attribute@8.0.0': - resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-remove-jsx-empty-expression@4.2.0': - resolution: {integrity: sha512-yTr2iLdf6oEuUE9MsRdvt0NmdpMBAkgK8Bjhl6epb+eQWk6abBaX3d65UZ3E3FWaOwePyUgNyNCMVG61gGCQ7w==} - engines: {node: '>=8'} - - '@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1': - resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0': - resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-replace-jsx-attribute-value@4.2.0': - resolution: {integrity: sha512-U9m870Kqm0ko8beHawRXLGLvSi/ZMrl89gJ5BNcT452fAjtF2p4uRzXkdzvGJJJYBgx7BmqlDjBN/eCp5AAX2w==} - engines: {node: '>=8'} - - '@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1': - resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1': - resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0': - resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-svg-dynamic-title@4.3.3': - resolution: {integrity: sha512-w3Be6xUNdwgParsvxkkeZb545VhXEwjGMwExMVBIdPQJeyMQHqm9Msnb2a1teHBqUYL66qtwfhNkbj1iarCG7w==} - engines: {node: '>=8'} - - '@svgr/babel-plugin-svg-dynamic-title@5.4.0': - resolution: {integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-svg-dynamic-title@6.5.1': - resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-svg-dynamic-title@8.0.0': - resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-svg-em-dimensions@4.2.0': - resolution: {integrity: sha512-C0Uy+BHolCHGOZ8Dnr1zXy/KgpBOkEUYY9kI/HseHVPeMbluaX3CijJr7D4C5uR8zrc1T64nnq/k63ydQuGt4w==} - engines: {node: '>=8'} - - '@svgr/babel-plugin-svg-em-dimensions@5.4.0': - resolution: {integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-svg-em-dimensions@6.5.1': - resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-svg-em-dimensions@8.0.0': - resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-transform-react-native-svg@4.2.0': - resolution: {integrity: sha512-7YvynOpZDpCOUoIVlaaOUU87J4Z6RdD6spYN4eUb5tfPoKGSF9OG2NuhgYnq4jSkAxcpMaXWPf1cePkzmqTPNw==} - engines: {node: '>=8'} - - '@svgr/babel-plugin-transform-react-native-svg@5.4.0': - resolution: {integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-transform-react-native-svg@6.5.1': - resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-transform-react-native-svg@8.1.0': - resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-transform-svg-component@4.2.0': - resolution: {integrity: sha512-hYfYuZhQPCBVotABsXKSCfel2slf/yvJY8heTVX1PCTaq/IgASq1IyxPPKJ0chWREEKewIU/JMSsIGBtK1KKxw==} - engines: {node: '>=8'} - - '@svgr/babel-plugin-transform-svg-component@5.5.0': - resolution: {integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-transform-svg-component@6.5.1': - resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} - engines: {node: '>=12'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-transform-svg-component@8.0.0': - resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==} - engines: {node: '>=12'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-preset@4.3.3': - resolution: {integrity: sha512-6PG80tdz4eAlYUN3g5GZiUjg2FMcp+Wn6rtnz5WJG9ITGEF1pmFdzq02597Hn0OmnQuCVaBYQE1OVFAnwOl+0A==} - engines: {node: '>=8'} - - '@svgr/babel-preset@5.5.0': - resolution: {integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==} - engines: {node: '>=10'} - - '@svgr/babel-preset@6.5.1': - resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-preset@8.1.0': - resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/core@4.3.3': - resolution: {integrity: sha512-qNuGF1QON1626UCaZamWt5yedpgOytvLj5BQZe2j1k1B8DUG4OyugZyfEwBeXozCUwhLEpsrgPrE+eCu4fY17w==} - engines: {node: '>=8'} - - '@svgr/core@5.5.0': - resolution: {integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==} - engines: {node: '>=10'} - - '@svgr/core@6.5.1': - resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} - engines: {node: '>=10'} - - '@svgr/core@8.1.0': - resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==} - engines: {node: '>=14'} - - '@svgr/hast-util-to-babel-ast@4.3.2': - resolution: {integrity: sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg==} - engines: {node: '>=8'} - - '@svgr/hast-util-to-babel-ast@5.5.0': - resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} - engines: {node: '>=10'} - - '@svgr/hast-util-to-babel-ast@6.5.1': - resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} - engines: {node: '>=10'} - - '@svgr/hast-util-to-babel-ast@8.0.0': - resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==} - engines: {node: '>=14'} - - '@svgr/plugin-jsx@4.3.3': - resolution: {integrity: sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w==} - engines: {node: '>=8'} - - '@svgr/plugin-jsx@5.5.0': - resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} - engines: {node: '>=10'} - - '@svgr/plugin-jsx@6.5.1': - resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==} - engines: {node: '>=10'} - peerDependencies: - '@svgr/core': ^6.0.0 - - '@svgr/plugin-jsx@8.1.0': - resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==} - engines: {node: '>=14'} - peerDependencies: - '@svgr/core': '*' - - '@svgr/plugin-svgo@4.3.1': - resolution: {integrity: sha512-PrMtEDUWjX3Ea65JsVCwTIXuSqa3CG9px+DluF1/eo9mlDrgrtFE7NE/DjdhjJgSM9wenlVBzkzneSIUgfUI/w==} - engines: {node: '>=8'} - - '@svgr/plugin-svgo@5.5.0': - resolution: {integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==} - engines: {node: '>=10'} - - '@svgr/plugin-svgo@6.5.1': - resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==} - engines: {node: '>=10'} - peerDependencies: - '@svgr/core': '*' - - '@svgr/plugin-svgo@8.1.0': - resolution: {integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==} - engines: {node: '>=14'} - peerDependencies: - '@svgr/core': '*' - - '@svgr/rollup@6.5.1': - resolution: {integrity: sha512-GeUfq0grJfpcn2jRWRaZ4npn27nnWK21vUj6MqDqknuJnEqGADcZZjO9wrUAaPLr3InAnQi0Z7nwiNUdzkaj6A==} - engines: {node: '>=10'} - - '@svgr/webpack@4.3.2': - resolution: {integrity: sha512-F3VE5OvyOWBEd2bF7BdtFRyI6E9it3mN7teDw0JQTlVtc4HZEYiiLSl+Uf9Uub6IYHVGc+qIrxxDyeedkQru2w==} - engines: {node: '>=8'} - - '@svgr/webpack@5.5.0': - resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==} - engines: {node: '>=10'} - - '@svgr/webpack@6.5.1': - resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==} - engines: {node: '>=10'} - - '@svgr/webpack@8.1.0': - resolution: {integrity: sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==} - engines: {node: '>=14'} - - '@swc-node/core@1.13.1': - resolution: {integrity: sha512-emB5l2nZsXjUEAuusqjYvWnQMLWZp6K039Mv8aq5SX1rsNM/N7DNhw1i4/DX7AyzNZ0tT+ASWyTvqEURldp5HA==} - engines: {node: '>= 10'} - peerDependencies: - '@swc/core': '>= 1.4.13' - '@swc/types': '>= 0.1' - - '@swc-node/register@1.6.8': - resolution: {integrity: sha512-74ijy7J9CWr1Z88yO+ykXphV29giCrSpANQPQRooE0bObpkTO1g4RzQovIfbIaniBiGDDVsYwDoQ3FIrCE8HcQ==} - peerDependencies: - '@swc/core': '>= 1.3' - typescript: '>= 4.3' - - '@swc-node/sourcemap-support@0.3.0': - resolution: {integrity: sha512-gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA==} - - '@swc/cli@0.1.65': - resolution: {integrity: sha512-4NcgsvJVHhA7trDnMmkGLLvWMHu2kSy+qHx6QwRhhJhdiYdNUrhdp+ERxen73sYtaeEOYeLJcWrQ60nzKi6rpg==} - engines: {node: '>= 12.13'} - hasBin: true - peerDependencies: - '@swc/core': ^1.2.66 - chokidar: ^3.5.1 - peerDependenciesMeta: - chokidar: - optional: true - - '@swc/core-darwin-arm64@1.3.99': - resolution: {integrity: sha512-Qj7Jct68q3ZKeuJrjPx7k8SxzWN6PqLh+VFxzA+KwLDpQDPzOlKRZwkIMzuFjLhITO4RHgSnXoDk/Syz0ZeN+Q==} - engines: {node: '>=10'} - cpu: [arm64] - os: [darwin] - - '@swc/core-darwin-x64@1.3.99': - resolution: {integrity: sha512-wR7m9QVJjgiBu1PSOHy7s66uJPa45Kf9bZExXUL+JAa9OQxt5y+XVzr+n+F045VXQOwdGWplgPnWjgbUUHEVyw==} - engines: {node: '>=10'} - cpu: [x64] - os: [darwin] - - '@swc/core-linux-arm64-gnu@1.3.99': - resolution: {integrity: sha512-gcGv1l5t0DScEONmw5OhdVmEI/o49HCe9Ik38zzH0NtDkc+PDYaCcXU5rvfZP2qJFaAAr8cua8iJcOunOSLmnA==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - - '@swc/core-linux-arm64-musl@1.3.99': - resolution: {integrity: sha512-XL1/eUsTO8BiKsWq9i3iWh7H99iPO61+9HYiWVKhSavknfj4Plbn+XyajDpxsauln5o8t+BRGitymtnAWJM4UQ==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - - '@swc/core-linux-x64-gnu@1.3.99': - resolution: {integrity: sha512-fGrXYE6DbTfGNIGQmBefYxSk3rp/1lgbD0nVg4rl4mfFRQPi7CgGhrrqSuqZ/ezXInUIgoCyvYGWFSwjLXt/Qg==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - - '@swc/core-linux-x64-musl@1.3.99': - resolution: {integrity: sha512-kvgZp/mqf3IJ806gUOL6gN6VU15+DfzM1Zv4Udn8GqgXiUAvbQehrtruid4Snn5pZTLj4PEpSCBbxgxK1jbssA==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - - '@swc/core-win32-arm64-msvc@1.3.99': - resolution: {integrity: sha512-yt8RtZ4W/QgFF+JUemOUQAkVW58cCST7mbfKFZ1v16w3pl3NcWd9OrtppFIXpbjU1rrUX2zp2R7HZZzZ2Zk/aQ==} - engines: {node: '>=10'} - cpu: [arm64] - os: [win32] - - '@swc/core-win32-ia32-msvc@1.3.99': - resolution: {integrity: sha512-62p5fWnOJR/rlbmbUIpQEVRconICy5KDScWVuJg1v3GPLBrmacjphyHiJC1mp6dYvvoEWCk/77c/jcQwlXrDXw==} - engines: {node: '>=10'} - cpu: [ia32] - os: [win32] - - '@swc/core-win32-x64-msvc@1.3.99': - resolution: {integrity: sha512-PdppWhkoS45VGdMBxvClVgF1hVjqamtvYd82Gab1i4IV45OSym2KinoDCKE1b6j3LwBLOn2J9fvChGSgGfDCHQ==} - engines: {node: '>=10'} - cpu: [x64] - os: [win32] - - '@swc/core@1.3.99': - resolution: {integrity: sha512-8O996RfuPC4ieb4zbYMfbyCU9k4gSOpyCNnr7qBQ+o7IEmh8JCV6B8wwu+fT/Om/6Lp34KJe1IpJ/24axKS6TQ==} - engines: {node: '>=10'} - peerDependencies: - '@swc/helpers': ^0.5.0 - peerDependenciesMeta: - '@swc/helpers': - optional: true - - '@swc/counter@0.1.3': - resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} - - '@swc/helpers@0.5.9': - resolution: {integrity: sha512-XI76sLwMJoLjJTOK5RblBZkouOJG3X3hjxLCzLnyN1ifAiKQc6Hck3uvnU4Z/dV/Dyk36Ffj8FLvDLV2oWvKTw==} - - '@swc/types@0.1.9': - resolution: {integrity: sha512-qKnCno++jzcJ4lM4NTfYifm1EFSCeIfKiAHAfkENZAV5Kl9PjJIyd2yeeVv6c/2CckuLyv2NmRC5pv6pm2WQBg==} - - '@szmarczak/http-timer@1.1.2': - resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} - engines: {node: '>=6'} - - '@szmarczak/http-timer@4.0.6': - resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} - engines: {node: '>=10'} - - '@testing-library/dom@7.31.2': - resolution: {integrity: sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==} - engines: {node: '>=10'} - - '@testing-library/dom@8.20.1': - resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==} - engines: {node: '>=12'} - - '@testing-library/dom@9.3.4': - resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} - engines: {node: '>=14'} - - '@testing-library/jest-dom@5.17.0': - resolution: {integrity: sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==} - engines: {node: '>=8', npm: '>=6', yarn: '>=1'} - - '@testing-library/jest-dom@6.4.6': - resolution: {integrity: sha512-8qpnGVincVDLEcQXWaHOf6zmlbwTKc6Us6PPu4CRnPXCzo2OGBS5cwgMMOWdxDpEz1mkbvXHpEy99M5Yvt682w==} - engines: {node: '>=14', npm: '>=6', yarn: '>=1'} - peerDependencies: - '@jest/globals': '>= 28' - '@types/bun': latest - '@types/jest': '>= 28' - jest: '>= 28' - vitest: '>= 0.32' - peerDependenciesMeta: - '@jest/globals': - optional: true - '@types/bun': - optional: true - '@types/jest': - optional: true - jest: - optional: true - vitest: - optional: true - - '@testing-library/react@14.3.1': - resolution: {integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==} - engines: {node: '>=14'} - peerDependencies: - react: ^18.0.0 - react-dom: ^18.0.0 - - '@testing-library/user-event@12.8.3': - resolution: {integrity: sha512-IR0iWbFkgd56Bu5ZI/ej8yQwrkCv8Qydx6RzwbKz9faXazR/+5tvYKsZQgyXJiwgpcva127YO6JcWy7YlCfofQ==} - engines: {node: '>=10', npm: '>=6'} - peerDependencies: - '@testing-library/dom': '>=7.21.4' - - '@testing-library/user-event@14.5.2': - resolution: {integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==} - engines: {node: '>=12', npm: '>=6'} - peerDependencies: - '@testing-library/dom': '>=7.21.4' - - '@tokenizer/token@0.3.0': - resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} - - '@tootallnate/once@1.1.2': - resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} - engines: {node: '>= 6'} - - '@tootallnate/once@2.0.0': - resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} - engines: {node: '>= 10'} - - '@trysound/sax@0.2.0': - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} - engines: {node: '>=10.13.0'} - - '@tsconfig/node10@1.0.11': - resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} - - '@tsconfig/node12@1.0.11': - resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} - - '@tsconfig/node14@1.0.3': - resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} - - '@tsconfig/node16@1.0.4': - resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} - - '@types/aria-query@4.2.2': - resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} - - '@types/aria-query@5.0.4': - resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} - - '@types/babel__core@7.20.5': - resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} - - '@types/babel__generator@7.6.8': - resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} - - '@types/babel__template@7.4.4': - resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} - - '@types/babel__traverse@7.20.6': - resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} - - '@types/body-parser@1.19.5': - resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} - - '@types/bonjour@3.5.13': - resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} - - '@types/cacheable-request@6.0.3': - resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} - - '@types/connect-history-api-fallback@1.5.4': - resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} - - '@types/connect@3.4.38': - resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} - - '@types/cookie@0.4.1': - resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==} - - '@types/cross-spawn@6.0.6': - resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==} - - '@types/crypto-js@3.1.47': - resolution: {integrity: sha512-eI6gvpcGHLk3dAuHYnRCAjX+41gMv1nz/VP55wAe5HtmAKDOoPSfr3f6vkMc08ov1S0NsjvUBxDtHHxqQY1LGA==} - - '@types/cssnano@5.1.0': - resolution: {integrity: sha512-ikR+18UpFGgvaWSur4og6SJYF/6QEYHXvrIt36dp81p1MG3cAPTYDMBJGeyWa3LCnqEbgNMHKRb+FP0NrXtoWQ==} - deprecated: This is a stub types definition. cssnano provides its own type definitions, so you do not need this installed. - - '@types/d3-array@3.2.1': - resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==} - - '@types/d3-axis@3.0.6': - resolution: {integrity: sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==} - - '@types/d3-brush@3.0.6': - resolution: {integrity: sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==} - - '@types/d3-chord@3.0.6': - resolution: {integrity: sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==} - - '@types/d3-color@3.1.3': - resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==} - - '@types/d3-contour@3.0.6': - resolution: {integrity: sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==} - - '@types/d3-delaunay@6.0.4': - resolution: {integrity: sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==} - - '@types/d3-dispatch@3.0.6': - resolution: {integrity: sha512-4fvZhzMeeuBJYZXRXrRIQnvUYfyXwYmLsdiN7XXmVNQKKw1cM8a5WdID0g1hVFZDqT9ZqZEY5pD44p24VS7iZQ==} - - '@types/d3-drag@3.0.7': - resolution: {integrity: sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==} - - '@types/d3-dsv@3.0.7': - resolution: {integrity: sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==} - - '@types/d3-ease@3.0.2': - resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==} - - '@types/d3-fetch@3.0.7': - resolution: {integrity: sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==} - - '@types/d3-force@3.0.10': - resolution: {integrity: sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==} - - '@types/d3-format@3.0.4': - resolution: {integrity: sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==} - - '@types/d3-geo@3.1.0': - resolution: {integrity: sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==} - - '@types/d3-hierarchy@3.1.7': - resolution: {integrity: sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==} - - '@types/d3-interpolate@3.0.4': - resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==} - - '@types/d3-path@3.1.0': - resolution: {integrity: sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==} - - '@types/d3-polygon@3.0.2': - resolution: {integrity: sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==} - - '@types/d3-quadtree@3.0.6': - resolution: {integrity: sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==} - - '@types/d3-random@3.0.3': - resolution: {integrity: sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==} - - '@types/d3-scale-chromatic@3.0.3': - resolution: {integrity: sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==} - - '@types/d3-scale@4.0.8': - resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==} - - '@types/d3-selection@3.0.10': - resolution: {integrity: sha512-cuHoUgS/V3hLdjJOLTT691+G2QoqAjCVLmr4kJXR4ha56w1Zdu8UUQ5TxLRqudgNjwXeQxKMq4j+lyf9sWuslg==} - - '@types/d3-shape@3.1.6': - resolution: {integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==} - - '@types/d3-time-format@4.0.3': - resolution: {integrity: sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==} - - '@types/d3-time@3.0.3': - resolution: {integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==} - - '@types/d3-timer@3.0.2': - resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==} - - '@types/d3-transition@3.0.8': - resolution: {integrity: sha512-ew63aJfQ/ms7QQ4X7pk5NxQ9fZH/z+i24ZfJ6tJSfqxJMrYLiK01EAs2/Rtw/JreGUsS3pLPNV644qXFGnoZNQ==} - - '@types/d3-zoom@3.0.8': - resolution: {integrity: sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==} - - '@types/d3@7.4.3': - resolution: {integrity: sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==} - - '@types/debug@4.1.12': - resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} - - '@types/detect-port@1.3.5': - resolution: {integrity: sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==} - - '@types/doctrine@0.0.3': - resolution: {integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==} - - '@types/doctrine@0.0.9': - resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==} - - '@types/ejs@3.1.5': - resolution: {integrity: sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==} - - '@types/emscripten@1.39.13': - resolution: {integrity: sha512-cFq+fO/isvhvmuP/+Sl4K4jtU6E23DoivtbO4r50e3odaxAiVdbfSYRDdJ4gCdxx+3aRjhphS5ZMwIH4hFy/Cw==} - - '@types/escodegen@0.0.6': - resolution: {integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==} - - '@types/eslint-scope@3.7.7': - resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} - - '@types/eslint@7.29.0': - resolution: {integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==} - - '@types/eslint@8.56.10': - resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==} - - '@types/estree-jsx@1.0.5': - resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} - - '@types/estree@0.0.39': - resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} - - '@types/estree@0.0.51': - resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} - - '@types/estree@1.0.5': - resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} - - '@types/express-serve-static-core@4.19.5': - resolution: {integrity: sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==} - - '@types/express@4.17.21': - resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} - - '@types/file-saver@2.0.7': - resolution: {integrity: sha512-dNKVfHd/jk0SkR/exKGj2ggkB45MAkzvWCaqLUUgkyjITkGNzH8H+yUwr+BLJUBjZOe9w8X3wgmXhZDRg1ED6A==} - - '@types/find-cache-dir@3.2.1': - resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==} - - '@types/fs-extra@8.1.5': - resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==} - - '@types/geojson@7946.0.14': - resolution: {integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==} - - '@types/glob@7.2.0': - resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} - - '@types/glob@8.1.0': - resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==} - - '@types/graceful-fs@4.1.9': - resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} - - '@types/hast@2.3.10': - resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} - - '@types/hast@3.0.4': - resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} - - '@types/history@4.7.11': - resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==} - - '@types/hoist-non-react-statics@3.3.5': - resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==} - - '@types/html-minifier-terser@5.1.2': - resolution: {integrity: sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==} - - '@types/html-minifier-terser@6.1.0': - resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} - - '@types/http-cache-semantics@4.0.4': - resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} - - '@types/http-errors@2.0.4': - resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} - - '@types/http-proxy@1.17.14': - resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} - - '@types/i18next-xhr-backend@1.4.2': - resolution: {integrity: sha512-uykS5BvdSoN+G7j7D19xzR12pEVkWmUrIEIxMsj2brVVzjc3gIthWCQKYqbe/b1q87SLbWb/ZHN9bR4qxi1H6A==} - deprecated: This is a stub types definition. i18next-xhr-backend provides its own type definitions, so you do not need this installed. - - '@types/i18next@8.4.3': - resolution: {integrity: sha512-ayqHEU+i9H7/Fkefnhyvml1ChKEZXcDwmVqo3jmrxy7PoAtTSY1t4/hr58Xz8hkXLPoCGS1hTc6bLJOUaOAjfQ==} - - '@types/inquirer@8.2.10': - resolution: {integrity: sha512-IdD5NmHyVjWM8SHWo/kPBgtzXatwPkfwzyP3fN1jF2g9BWt5WO+8hL2F4o2GKIYsU40PpqeevuUWvkS/roXJkA==} - - '@types/is-function@1.0.3': - resolution: {integrity: sha512-/CLhCW79JUeLKznI6mbVieGbl4QU5Hfn+6udw1YHZoofASjbQ5zaP5LzAUZYDpRYEjS4/P+DhEgyJ/PQmGGTWw==} - - '@types/istanbul-lib-coverage@2.0.6': - resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} - - '@types/istanbul-lib-report@3.0.3': - resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} - - '@types/istanbul-reports@3.0.4': - resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} - - '@types/jest@26.0.24': - resolution: {integrity: sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==} - - '@types/jest@29.4.4': - resolution: {integrity: sha512-qezb65VIH7X1wobSnd6Lvdve7PXSyQRa3dljTkhTtDhi603RvHQCshSlJcuyMLHJpeHgY3NKwvDJWxMOOHxGDQ==} - - '@types/jest@29.5.12': - resolution: {integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==} - - '@types/js-beautify@1.14.3': - resolution: {integrity: sha512-FMbQHz+qd9DoGvgLHxeqqVPaNRffpIu5ZjozwV8hf9JAGpIOzuAf4wGbRSo8LNITHqGjmmVjaMggTT5P4v4IHg==} - - '@types/js-levenshtein@1.1.3': - resolution: {integrity: sha512-jd+Q+sD20Qfu9e2aEXogiO3vpOC1PYJOUdyN9gvs4Qrvkg4wF43L5OhqrPeokdv8TL0/mXoYfpkcoGZMNN2pkQ==} - - '@types/js-yaml@3.12.3': - resolution: {integrity: sha512-otRe77JNNWzoVGLKw8TCspKswRoQToys4tuL6XYVBFxjgeM0RUrx7m3jkaTdxILxeGry3zM8mGYkGXMeQ02guA==} - - '@types/jsdom@20.0.1': - resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} - - '@types/json-schema@7.0.15': - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} - - '@types/json5@0.0.29': - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} - - '@types/keyv@3.1.4': - resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} - - '@types/lodash-es@4.17.12': - resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==} - - '@types/lodash@4.17.5': - resolution: {integrity: sha512-MBIOHVZqVqgfro1euRDWX7OO0fBVUUMrN6Pwm8LQsz8cWhEpihlvR70ENj3f40j58TNxZaWv2ndSkInykNBBJw==} - - '@types/mdast@3.0.15': - resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} - - '@types/mdast@4.0.4': - resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} - - '@types/mime-types@2.1.4': - resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==} - - '@types/mime@1.3.5': - resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} - - '@types/minimatch@3.0.5': - resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} - - '@types/minimatch@5.1.2': - resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} - - '@types/minimist@1.2.5': - resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} - - '@types/ms@0.7.34': - resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} - - '@types/node-fetch@2.6.11': - resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==} - - '@types/node-forge@0.9.10': - resolution: {integrity: sha512-+BbPlhZeYs/WETWftQi2LeRx9VviWSwawNo+Pid5qNrSZHb60loYjpph3OrbwXMMseadu9rE9NeK34r4BHT+QQ==} - - '@types/node-forge@1.3.11': - resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} - - '@types/node@12.20.55': - resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - - '@types/node@13.13.52': - resolution: {integrity: sha512-s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ==} - - '@types/node@14.18.63': - resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==} - - '@types/node@16.18.101': - resolution: {integrity: sha512-AAsx9Rgz2IzG8KJ6tXd6ndNkVcu+GYB6U/SnFAaokSPNx2N7dcIIfnighYUNumvj6YS2q39Dejz5tT0NCV7CWA==} - - '@types/node@18.11.9': - resolution: {integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==} - - '@types/normalize-package-data@2.4.4': - resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} - - '@types/npmlog@4.1.6': - resolution: {integrity: sha512-0l3z16vnlJGl2Mi/rgJFrdwfLZ4jfNYgE6ZShEpjqhHuGTqdEzNles03NpYHwUMVYZa+Tj46UxKIEpE78lQ3DQ==} - - '@types/parse-json@4.0.2': - resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} - - '@types/parse5@5.0.3': - resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==} - - '@types/prettier@2.7.3': - resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} - - '@types/pretty-hrtime@1.0.3': - resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==} - - '@types/prop-types@15.7.12': - resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} - - '@types/q@1.5.8': - resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==} - - '@types/qs@6.9.15': - resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==} - - '@types/range-parser@1.2.7': - resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - - '@types/react-color@3.0.12': - resolution: {integrity: sha512-pr3uKE3lSvf7GFo1Rn2K3QktiZQFFrSgSGJ/3iMvSOYWt2pPAJ97rVdVfhWxYJZ8prAEXzoP2XX//3qGSQgu7Q==} - - '@types/react-dom@18.3.0': - resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} - - '@types/react-notification-system@0.2.39': - resolution: {integrity: sha512-yfptO86dbfW4qaw34CIedfakdKWV3sPM0xb4T5EQZOza80WLvOUUKjdmZTeGyEKk/7n2za8RJa6aZpz/A+2Qbw==} - - '@types/react-redux@7.1.33': - resolution: {integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==} - - '@types/react-router-dom@5.3.3': - resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==} - - '@types/react-router@5.1.20': - resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==} - - '@types/react-transition-group@4.4.10': - resolution: {integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==} - - '@types/react@18.0.18': - resolution: {integrity: sha512-6hI08umYs6NaiHFEEGioXnxJ+oEhY3eRz8VCUaudZmGdtvPviCJB8mgaMxaDWAdPSYd4eFavrPk2QIolwbLYrg==} - - '@types/reactcss@1.2.12': - resolution: {integrity: sha512-BrXUQ86/wbbFiZv8h/Q1/Q1XOsaHneYmCb/tHe9+M8XBAAUc2EHfdY0DY22ZZjVSaXr5ix7j+zsqO2eGZub8lQ==} - - '@types/reactour@1.18.5': - resolution: {integrity: sha512-Pl5yh9bXeXaFcioDk6XVmUzdJGZDAKesVmwoh2KvN/1FXSd9saN8pIprLvfspnXANMcgl3AtSlD4zs0cJIhGIw==} - - '@types/redux-mock-store@1.0.6': - resolution: {integrity: sha512-eg5RDfhJTXuoJjOMyXiJbaDb1B8tfTaJixscmu+jOusj6adGC0Krntz09Tf4gJgXeCqCrM5bBMd+B7ez0izcAQ==} - - '@types/resolve@1.17.1': - resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} - - '@types/resolve@1.20.2': - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} - - '@types/resolve@1.20.6': - resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} - - '@types/responselike@1.0.3': - resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} - - '@types/retry@0.12.0': - resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} - - '@types/scheduler@0.23.0': - resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==} - - '@types/semver@7.5.8': - resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} - - '@types/send@0.17.4': - resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} - - '@types/serve-index@1.9.4': - resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} - - '@types/serve-static@1.15.7': - resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} - - '@types/set-cookie-parser@2.4.9': - resolution: {integrity: sha512-bCorlULvl0xTdjj4BPUHX4cqs9I+go2TfW/7Do1nnFYWS0CPP429Qr1AY42kiFhCwLpvAkWFr1XIBHd8j6/MCQ==} - - '@types/sinonjs__fake-timers@8.1.1': - resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} - - '@types/sizzle@2.3.8': - resolution: {integrity: sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==} - - '@types/sockjs@0.3.36': - resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} - - '@types/source-list-map@0.1.6': - resolution: {integrity: sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==} - - '@types/stack-utils@2.0.3': - resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} - - '@types/tapable@1.0.12': - resolution: {integrity: sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==} - - '@types/testing-library__jest-dom@5.14.9': - resolution: {integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==} - - '@types/through@0.0.33': - resolution: {integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==} - - '@types/tough-cookie@4.0.5': - resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} - - '@types/ua-parser-js@0.7.36': - resolution: {integrity: sha512-N1rW+njavs70y2cApeIw1vLMYXRwfBy+7trgavGuuTfOd7j1Yh7QTRc/yqsPl6ncokt72ZXuxEU0PiCp9bSwNQ==} - - '@types/uglify-js@3.17.5': - resolution: {integrity: sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==} - - '@types/unist@2.0.10': - resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} - - '@types/unist@3.0.2': - resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} - - '@types/uuid@9.0.8': - resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==} - - '@types/webappsec-credential-management@0.6.8': - resolution: {integrity: sha512-DES/SkK54U7AG8hmMkGCJkOSlywM3R+TzaWT+rBnX3lQTJ3K57jWr+UccWY8ImkuKekC9BjB+AH4zLJB4JKpvQ==} - - '@types/webpack-env@1.18.5': - resolution: {integrity: sha512-wz7kjjRRj8/Lty4B+Kr0LN6Ypc/3SymeCCGSbaXp2leH0ZVg/PriNiOwNj4bD4uphI7A8NXS4b6Gl373sfO5mA==} - - '@types/webpack-sources@3.2.3': - resolution: {integrity: sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==} - - '@types/webpack@4.41.38': - resolution: {integrity: sha512-oOW7E931XJU1mVfCnxCVgv8GLFL768pDO5u2Gzk82i8yTIgX6i7cntyZOkZYb/JtYM8252SN9bQp9tgkVDSsRw==} - - '@types/ws@8.5.10': - resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} - - '@types/yargs-parser@21.0.3': - resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} - - '@types/yargs@15.0.19': - resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} - - '@types/yargs@17.0.32': - resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} - - '@types/yauzl@2.10.3': - resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} - - '@typescript-eslint/eslint-plugin@4.33.0': - resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - '@typescript-eslint/parser': ^4.0.0 - eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/eslint-plugin@5.62.0': - 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 - - '@typescript-eslint/experimental-utils@4.33.0': - resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - eslint: '*' - - '@typescript-eslint/parser@4.33.0': - resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/parser@5.62.0': - 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 - - '@typescript-eslint/scope-manager@4.33.0': - resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - - '@typescript-eslint/scope-manager@5.62.0': - resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@typescript-eslint/type-utils@5.62.0': - resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '*' - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/types@4.33.0': - resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - - '@typescript-eslint/types@5.62.0': - resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@typescript-eslint/typescript-estree@4.33.0': - resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/typescript-estree@5.62.0': - 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 - - '@typescript-eslint/utils@5.62.0': - resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - - '@typescript-eslint/visitor-keys@4.33.0': - resolution: {integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==} - engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - - '@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} - - '@ungap/structured-clone@1.2.0': - resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} - - '@webassemblyjs/ast@1.12.1': - resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} - - '@webassemblyjs/floating-point-hex-parser@1.11.6': - resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} - - '@webassemblyjs/helper-api-error@1.11.6': - resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} - - '@webassemblyjs/helper-buffer@1.12.1': - resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==} - - '@webassemblyjs/helper-numbers@1.11.6': - resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} - - '@webassemblyjs/helper-wasm-bytecode@1.11.6': - resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} - - '@webassemblyjs/helper-wasm-section@1.12.1': - resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==} - - '@webassemblyjs/ieee754@1.11.6': - resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} - - '@webassemblyjs/leb128@1.11.6': - resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} - - '@webassemblyjs/utf8@1.11.6': - resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} - - '@webassemblyjs/wasm-edit@1.12.1': - resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==} - - '@webassemblyjs/wasm-gen@1.12.1': - resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==} - - '@webassemblyjs/wasm-opt@1.12.1': - resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==} - - '@webassemblyjs/wasm-parser@1.12.1': - resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==} - - '@webassemblyjs/wast-printer@1.12.1': - resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==} - - '@webpack-cli/configtest@1.2.0': - resolution: {integrity: sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==} - peerDependencies: - webpack: 5.84.1 - webpack-cli: 4.x.x - - '@webpack-cli/info@1.5.0': - resolution: {integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==} - peerDependencies: - webpack-cli: 4.x.x - - '@webpack-cli/serve@1.7.0': - resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==} - peerDependencies: - webpack-cli: 4.x.x - webpack-dev-server: '*' - peerDependenciesMeta: - webpack-dev-server: - optional: true - - '@webpack-contrib/schema-utils@1.0.0-beta.0': - resolution: {integrity: sha512-LonryJP+FxQQHsjGBi6W786TQB1Oym+agTpY0c+Kj8alnIw+DLUJb6SI8Y1GHGhLCH1yPRrucjObUmxNICQ1pg==} - engines: {node: '>= 6.9.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 - - '@xmldom/xmldom@0.7.13': - resolution: {integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==} - engines: {node: '>=10.0.0'} - - '@xtuc/ieee754@1.2.0': - resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} - - '@xtuc/long@4.2.2': - resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} - - '@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15': - resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==} - engines: {node: '>=14.15.0'} - peerDependencies: - esbuild: '>=0.10.0' - - '@yarnpkg/fslib@2.10.3': - resolution: {integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==} - engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} - - '@yarnpkg/libzip@2.3.0': - resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==} - engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} - - '@yarnpkg/lockfile@1.1.0': - resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} - - '@yarnpkg/parsers@3.0.0-rc.46': - resolution: {integrity: sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==} - engines: {node: '>=14.15.0'} - - '@zkochan/js-yaml@0.0.6': - resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} - hasBin: true - - JSONStream@1.3.5: - resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} - hasBin: true - - abab@2.0.6: - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} - deprecated: Use your platform's native atob() and btoa() methods instead - - abbrev@1.1.1: - resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} - - abbrev@2.0.0: - resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - - accepts@1.3.8: - resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} - engines: {node: '>= 0.6'} - - acorn-globals@6.0.0: - resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} - - acorn-globals@7.0.1: - resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} - - acorn-import-assertions@1.9.0: - resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} - peerDependencies: - acorn: ^8 - - acorn-jsx@5.3.2: - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - - acorn-walk@7.2.0: - resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} - engines: {node: '>=0.4.0'} - - acorn-walk@8.3.3: - resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==} - engines: {node: '>=0.4.0'} - - acorn@7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: '>=0.4.0'} - hasBin: true - - acorn@8.12.0: - resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==} - engines: {node: '>=0.4.0'} - hasBin: true - - add-stream@1.0.0: - resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} - - address@1.2.2: - resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} - engines: {node: '>= 10.0.0'} - - agent-base@5.1.1: - resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==} - engines: {node: '>= 6.0.0'} - - agent-base@6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} - engines: {node: '>= 6.0.0'} - - agentkeepalive@4.5.0: - resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} - engines: {node: '>= 8.0.0'} - - aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} - - airbnb-js-shims@2.2.1: - resolution: {integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==} - - ajv-errors@1.0.1: - resolution: {integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==} - peerDependencies: - ajv: '>=5.0.0' - - ajv-formats@2.1.1: - resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} - peerDependencies: - ajv: ^8.0.0 - peerDependenciesMeta: - ajv: - optional: true - - ajv-keywords@3.5.2: - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} - peerDependencies: - ajv: ^6.9.1 - - ajv-keywords@5.1.0: - resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} - peerDependencies: - ajv: ^8.8.2 - - ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} - - ajv@8.16.0: - resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==} - - ansi-align@3.0.1: - resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} - - ansi-colors@3.2.4: - resolution: {integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==} - engines: {node: '>=6'} - - ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} - - ansi-escapes@4.3.2: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} - engines: {node: '>=8'} - - ansi-html-community@0.0.8: - resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} - engines: {'0': node >= 0.8.0} - hasBin: true - - ansi-html@0.0.7: - resolution: {integrity: sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA==} - engines: {'0': node >= 0.8.0} - hasBin: true - - ansi-html@0.0.9: - resolution: {integrity: sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==} - engines: {'0': node >= 0.8.0} - hasBin: true - - ansi-red@0.1.1: - resolution: {integrity: sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==} - engines: {node: '>=0.10.0'} - - ansi-regex@2.1.1: - resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} - engines: {node: '>=0.10.0'} - - ansi-regex@3.0.1: - resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} - engines: {node: '>=4'} - - ansi-regex@4.1.1: - resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} - engines: {node: '>=6'} - - ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} - - ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} - engines: {node: '>=12'} - - ansi-styles@2.2.1: - resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} - engines: {node: '>=0.10.0'} - - ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} - - ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} - - ansi-styles@5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} - engines: {node: '>=10'} - - ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} - - ansi-to-html@0.6.15: - resolution: {integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==} - engines: {node: '>=8.0.0'} - hasBin: true - - ansi-wrap@0.1.0: - resolution: {integrity: sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==} - engines: {node: '>=0.10.0'} - - anymatch@2.0.0: - resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==} - - anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} - - app-root-dir@1.0.2: - resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==} - - append-transform@2.0.0: - resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==} - engines: {node: '>=8'} - - aproba@2.0.0: - resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} - - arch@2.2.0: - resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} - - archy@1.0.0: - resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} - - are-we-there-yet@2.0.0: - resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} - engines: {node: '>=10'} - deprecated: This package is no longer supported. - - are-we-there-yet@3.0.1: - resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. - - arg@4.1.3: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} - - argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} - - argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - - aria-query@4.2.2: - resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} - engines: {node: '>=6.0'} - - aria-query@5.1.3: - resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} - - aria-query@5.3.0: - resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} - - arr-diff@4.0.0: - resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} - engines: {node: '>=0.10.0'} - - arr-flatten@1.1.0: - resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} - engines: {node: '>=0.10.0'} - - arr-union@3.1.0: - resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} - engines: {node: '>=0.10.0'} - - array-buffer-byte-length@1.0.1: - resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} - engines: {node: '>= 0.4'} - - array-differ@3.0.0: - resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} - engines: {node: '>=8'} - - array-find-index@1.0.2: - resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} - engines: {node: '>=0.10.0'} - - array-flatten@1.1.1: - resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} - - array-flatten@2.1.2: - resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} - - array-ify@1.0.0: - resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} - - array-includes@3.1.8: - resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} - engines: {node: '>= 0.4'} - - array-union@1.0.2: - resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==} - engines: {node: '>=0.10.0'} - - array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} - - array-union@3.0.1: - resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==} - engines: {node: '>=12'} - - array-uniq@1.0.3: - resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} - engines: {node: '>=0.10.0'} - - array-unique@0.3.2: - resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} - engines: {node: '>=0.10.0'} - - array.prototype.findlast@1.2.5: - resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} - engines: {node: '>= 0.4'} - - array.prototype.findlastindex@1.2.5: - resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} - engines: {node: '>= 0.4'} - - array.prototype.flat@1.3.2: - resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} - engines: {node: '>= 0.4'} - - array.prototype.flatmap@1.3.2: - resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} - engines: {node: '>= 0.4'} - - array.prototype.map@1.0.7: - resolution: {integrity: sha512-XpcFfLoBEAhezrrNw1V+yLXkE7M6uR7xJEsxbG6c/V9v043qurwVJB9r9UTnoSioFDoz1i1VOydpWGmJpfVZbg==} - engines: {node: '>= 0.4'} - - array.prototype.reduce@1.0.7: - resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==} - engines: {node: '>= 0.4'} - - array.prototype.toreversed@1.1.2: - resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==} - - array.prototype.tosorted@1.1.4: - resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} - engines: {node: '>= 0.4'} - - arraybuffer.prototype.slice@1.0.3: - resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} - engines: {node: '>= 0.4'} - - arrify@1.0.1: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: '>=0.10.0'} - - arrify@2.0.1: - resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} - engines: {node: '>=8'} - - asap@2.0.6: - resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} - - asn1@0.2.6: - resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} - - assert-plus@1.0.0: - resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} - engines: {node: '>=0.8'} - - assert@2.1.0: - resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} - - assign-symbols@1.0.0: - resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} - engines: {node: '>=0.10.0'} - - ast-types-flow@0.0.7: - resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} - - ast-types@0.13.3: - resolution: {integrity: sha512-XTZ7xGML849LkQP86sWdQzfhwbt3YwIO6MqbX9mUNYY98VKaaVZP7YNNm70IpwecbkkxmfC5IYAzOQ/2p29zRA==} - engines: {node: '>=4'} - - ast-types@0.14.2: - resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==} - engines: {node: '>=4'} - - ast-types@0.16.1: - resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} - engines: {node: '>=4'} - - astral-regex@2.0.0: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} - engines: {node: '>=8'} - - astring@1.8.6: - resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==} - hasBin: true - - async-each@1.0.6: - resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==} - - async-limiter@1.0.1: - resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} - - async@2.6.4: - resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} - - async@3.2.5: - resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} - - asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} - - at-least-node@1.0.0: - resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} - engines: {node: '>= 4.0.0'} - - atob@2.1.2: - resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} - engines: {node: '>= 4.5.0'} - hasBin: true - - autolinker@0.28.1: - resolution: {integrity: sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==} - - autoprefixer@10.4.13: - resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} - engines: {node: ^10 || ^12 || >=14} - hasBin: true - peerDependencies: - postcss: ^8.1.0 - - autoprefixer@9.8.8: - resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} - hasBin: true - - available-typed-arrays@1.0.7: - resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} - engines: {node: '>= 0.4'} - - await-semaphore@0.1.3: - resolution: {integrity: sha512-d1W2aNSYcz/sxYO4pMGX9vq65qOTu0P800epMud+6cYYX0QcT7zyqcxec3VWzpgvdXo57UWmVbZpLMjX2m1I7Q==} - - aws-sign2@0.7.0: - resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} - - aws4@1.13.0: - resolution: {integrity: sha512-3AungXC4I8kKsS9PuS4JH2nc+0bVY/mjgrephHTIi8fpEeGsTHBUJeosp0Wc1myYMElmD0B3Oc4XL/HVJ4PV2g==} - - axe-core@4.9.1: - resolution: {integrity: sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==} - engines: {node: '>=4'} - - axios@0.19.2: - resolution: {integrity: sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==} - deprecated: Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410 - - axios@0.21.4: - resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} - - axios@0.26.1: - resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==} - - axios@1.7.2: - resolution: {integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==} - - axobject-query@2.2.0: - resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} - - babel-code-frame@6.26.0: - resolution: {integrity: sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==} - - babel-core@7.0.0-bridge.0: - resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - babel-jest@26.6.3: - resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} - engines: {node: '>= 10.14.2'} - peerDependencies: - '@babel/core': ^7.0.0 - - babel-jest@29.7.0: - resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': ^7.8.0 - - babel-loader@8.3.0: - resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} - engines: {node: '>= 8.9'} - peerDependencies: - '@babel/core': ^7.0.0 - webpack: 5.84.1 - - babel-loader@9.1.3: - resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==} - engines: {node: '>= 14.15.0'} - peerDependencies: - '@babel/core': ^7.12.0 - webpack: 5.84.1 - - babel-messages@6.23.0: - resolution: {integrity: sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==} - - babel-plugin-add-react-displayname@0.0.5: - resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} - - babel-plugin-apply-mdx-type-prop@1.6.22: - resolution: {integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==} - peerDependencies: - '@babel/core': ^7.11.6 - - babel-plugin-const-enum@1.2.0: - resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - babel-plugin-extract-import-names@1.6.22: - resolution: {integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==} - - babel-plugin-istanbul@6.1.1: - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} - engines: {node: '>=8'} - - babel-plugin-jest-hoist@26.6.2: - resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==} - engines: {node: '>= 10.14.2'} - - babel-plugin-jest-hoist@29.6.3: - resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - babel-plugin-macros@2.8.0: - resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} - - babel-plugin-macros@3.1.0: - resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} - engines: {node: '>=10', npm: '>=6'} - - babel-plugin-named-exports-order@0.0.2: - resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==} - - babel-plugin-polyfill-corejs2@0.4.11: - resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - babel-plugin-polyfill-corejs3@0.1.7: - resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - babel-plugin-polyfill-corejs3@0.10.4: - resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - babel-plugin-polyfill-regenerator@0.6.2: - resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - babel-plugin-react-docgen@4.2.1: - resolution: {integrity: sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==} - - babel-plugin-rename-jsx-attribute@0.2.4: - resolution: {integrity: sha512-R3kRggMmkXAd465a2q2Y2IceIUJHoyw9q/c0I7i3JdQDHGbUj59OTOR6QjRuB/bII1yH2Xuy/KM5+NNs9NzCGw==} - peerDependencies: - babel-core: ^6.26.3 - - babel-plugin-styled-components@2.1.4: - resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==} - peerDependencies: - styled-components: '>= 2' - - babel-plugin-transform-async-to-promises@0.8.18: - resolution: {integrity: sha512-WpOrF76nUHijnNn10eBGOHZmXQC8JYRME9rOLxStOga7Av2VO53ehVFvVNImMksVtQuL2/7ZNxEgxnx7oo/3Hw==} - - babel-plugin-transform-es2015-modules-commonjs@6.26.2: - resolution: {integrity: sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==} - - babel-plugin-transform-strict-mode@6.24.1: - resolution: {integrity: sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw==} - - babel-plugin-transform-typescript-metadata@0.3.2: - resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} - peerDependencies: - '@babel/core': ^7 - '@babel/traverse': ^7 - peerDependenciesMeta: - '@babel/traverse': - optional: true - - babel-polyfill@6.26.0: - resolution: {integrity: sha512-F2rZGQnAdaHWQ8YAoeRbukc7HS9QgdgeyJ0rQDd485v9opwuPvjpPFcOOT/WmkKTdgy9ESgSPXDcTNpzrGr6iQ==} - - babel-preset-current-node-syntax@1.0.1: - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} - peerDependencies: - '@babel/core': ^7.0.0 - - babel-preset-jest@26.6.2: - resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} - engines: {node: '>= 10.14.2'} - peerDependencies: - '@babel/core': ^7.0.0 - - babel-preset-jest@29.6.3: - resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': ^7.0.0 - - babel-runtime@6.26.0: - resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==} - - babel-template@6.26.0: - resolution: {integrity: sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg==} - - babel-traverse@6.26.0: - resolution: {integrity: sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA==} - - babel-types@6.26.0: - resolution: {integrity: sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==} - - babylon@6.18.0: - resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==} - hasBin: true - - bail@1.0.5: - resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} - - bail@2.0.2: - resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} - - balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - - base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - - base64url@3.0.1: - resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==} - engines: {node: '>=6.0.0'} - - base@0.11.2: - resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} - engines: {node: '>=0.10.0'} - - basic-auth@2.0.1: - resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} - engines: {node: '>= 0.8'} - - batch@0.6.1: - resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} - - bcrypt-pbkdf@1.0.2: - resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} - - before-after-hook@2.2.3: - resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} - - better-opn@2.1.1: - resolution: {integrity: sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==} - engines: {node: '>8.0.0'} - - better-opn@3.0.2: - resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==} - engines: {node: '>=12.0.0'} - - better-path-resolve@1.0.0: - resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} - engines: {node: '>=4'} - - big-integer@1.6.52: - resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} - engines: {node: '>=0.6'} - - big.js@5.2.2: - resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} - - bin-check@4.1.0: - resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==} - engines: {node: '>=4'} - - bin-links@3.0.3: - resolution: {integrity: sha512-zKdnMPWEdh4F5INR07/eBrodC7QrF5JKvqskjz/ZZRXg5YSAZIbn8zGhbhUrElzHBZ2fvEQdOU59RHcTG3GiwA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - bin-version-check@5.1.0: - resolution: {integrity: sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==} - engines: {node: '>=12'} - - bin-version@6.0.0: - resolution: {integrity: sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==} - engines: {node: '>=12'} - - binary-extensions@1.13.1: - resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==} - engines: {node: '>=0.10.0'} - - binary-extensions@2.3.0: - resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} - engines: {node: '>=8'} - - bindings@1.5.0: - resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} - - bl@4.1.0: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} - - blob-util@2.0.2: - resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} - - bluebird@3.7.2: - resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} - - body-parser@1.20.2: - resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - - bonjour-service@1.2.1: - resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==} - - bonjour@3.5.0: - resolution: {integrity: sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==} - - boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - - boxen@5.1.2: - resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} - engines: {node: '>=10'} - - bplist-parser@0.1.1: - resolution: {integrity: sha512-2AEM0FXy8ZxVLBuqX0hqt1gDwcnz2zygEkQ6zaD5Wko/sB9paUNwlpawrFtKeHUAQUOzjVy9AO4oeonqIHKA9Q==} - - bplist-parser@0.2.0: - resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} - engines: {node: '>= 5.10.0'} - - brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} - - brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} - - braces@2.3.2: - resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} - engines: {node: '>=0.10.0'} - - braces@3.0.3: - resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} - engines: {node: '>=8'} - - breakword@1.0.6: - resolution: {integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==} - - browser-assert@1.2.1: - resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==} - - browser-process-hrtime@1.0.0: - resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} - - browserify-zlib@0.1.4: - resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==} - - browserslist@4.23.1: - resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - - bs-logger@0.2.6: - resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} - engines: {node: '>= 6'} - - bser@2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} - - buffer-crc32@0.2.13: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} - - buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - - buffer-indexof@1.1.1: - resolution: {integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==} - - buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} - - buffer@6.0.3: - resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} - - builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: '>=6'} - - builtins@1.0.3: - resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==} - - builtins@5.1.0: - resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==} - - byte-size@7.0.1: - resolution: {integrity: sha512-crQdqyCwhokxwV1UyDzLZanhkugAgft7vt0qbbdt60C6Zf3CAiGmtUCylbtYwrU6loOUw3euGrNtW1J651ot1A==} - engines: {node: '>=10'} - - bytes@3.0.0: - resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} - engines: {node: '>= 0.8'} - - bytes@3.1.2: - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} - engines: {node: '>= 0.8'} - - c8@7.14.0: - resolution: {integrity: sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw==} - engines: {node: '>=10.12.0'} - hasBin: true - - cacache@15.3.0: - resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==} - engines: {node: '>= 10'} - - cacache@16.1.3: - resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - cache-base@1.0.1: - resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} - engines: {node: '>=0.10.0'} - - cacheable-lookup@5.0.4: - resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} - engines: {node: '>=10.6.0'} - - cacheable-request@6.1.0: - resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} - engines: {node: '>=8'} - - cacheable-request@7.0.4: - resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} - engines: {node: '>=8'} - - cachedir@2.4.0: - resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==} - engines: {node: '>=6'} - - caching-transform@4.0.0: - resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==} - engines: {node: '>=8'} - - call-bind@1.0.7: - resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} - engines: {node: '>= 0.4'} - - call-me-maybe@1.0.2: - resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} - - caller-callsite@2.0.0: - resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} - engines: {node: '>=4'} - - caller-path@2.0.0: - resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} - engines: {node: '>=4'} - - callsites@2.0.0: - resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} - engines: {node: '>=4'} - - callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} - - camel-case@4.1.2: - resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} - - camelcase-css@2.0.1: - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: '>= 6'} - - camelcase-keys@2.1.0: - resolution: {integrity: sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==} - engines: {node: '>=0.10.0'} - - camelcase-keys@6.2.2: - resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} - engines: {node: '>=8'} - - camelcase@2.1.1: - resolution: {integrity: sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==} - engines: {node: '>=0.10.0'} - - camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} - - camelcase@6.3.0: - resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} - engines: {node: '>=10'} - - camelize@1.0.1: - resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} - - caniuse-api@3.0.0: - resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} - - caniuse-lite@1.0.30001636: - resolution: {integrity: sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==} - - capture-exit@2.0.0: - resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} - engines: {node: 6.* || 8.* || >= 10.*} - - case-sensitive-paths-webpack-plugin@2.4.0: - resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} - engines: {node: '>=4'} - - caseless@0.12.0: - resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} - - ccount@1.1.0: - resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==} - - ccount@2.0.1: - resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} - - chalk@1.1.3: - resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} - engines: {node: '>=0.10.0'} - - chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} - - chalk@3.0.0: - resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} - engines: {node: '>=8'} - - chalk@4.1.1: - resolution: {integrity: sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==} - engines: {node: '>=10'} - - chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} - - char-regex@1.0.2: - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} - engines: {node: '>=10'} - - character-entities-html4@2.1.0: - resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} - - character-entities-legacy@1.1.4: - resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} - - character-entities-legacy@3.0.0: - resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} - - character-entities@1.2.4: - resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} - - character-entities@2.0.2: - resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} - - character-reference-invalid@1.1.4: - resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} - - character-reference-invalid@2.0.1: - resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} - - chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} - - check-more-types@2.24.0: - resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} - engines: {node: '>= 0.8.0'} - - child_process@1.0.2: - resolution: {integrity: sha512-Wmza/JzL0SiWz7kl6MhIKT5ceIlnFPJX+lwUGj7Clhy5MMldsSoJR0+uvRzOS5Kv45Mq7t1PoE8TsOA9bzvb6g==} - - chokidar@2.1.8: - resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==} - deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies - - chokidar@3.6.0: - resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} - engines: {node: '>= 8.10.0'} - - chownr@1.1.4: - resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} - - chownr@2.0.0: - resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} - engines: {node: '>=10'} - - chrome-trace-event@1.0.4: - resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} - engines: {node: '>=6.0'} - - ci-info@2.0.0: - resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} - - ci-info@3.9.0: - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} - engines: {node: '>=8'} - - citty@0.1.6: - resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} - - cjs-module-lexer@0.6.0: - resolution: {integrity: sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==} - - cjs-module-lexer@1.3.1: - resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==} - - class-utils@0.3.6: - resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} - engines: {node: '>=0.10.0'} - - classcat@5.0.5: - resolution: {integrity: sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==} - - classnames@2.5.1: - resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==} - - clean-css@4.2.4: - resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==} - engines: {node: '>= 4.0'} - - clean-css@5.3.3: - resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} - engines: {node: '>= 10.0'} - - clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} - - cli-boxes@2.2.1: - resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} - engines: {node: '>=6'} - - cli-cursor@3.1.0: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} - engines: {node: '>=8'} - - cli-spinners@2.6.1: - resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} - engines: {node: '>=6'} - - cli-spinners@2.9.2: - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} - engines: {node: '>=6'} - - cli-table3@0.6.5: - resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} - engines: {node: 10.* || >= 12.*} - - cli-truncate@2.1.0: - resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} - engines: {node: '>=8'} - - cli-width@3.0.0: - resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} - engines: {node: '>= 10'} - - cli@1.0.1: - resolution: {integrity: sha512-41U72MB56TfUMGndAKK8vJ78eooOD4Z5NOL4xEfjc0c23s+6EYKXlXsmACBVclLP1yOfWCgEganVzddVrSNoTg==} - engines: {node: '>=0.2.5'} - - client-only@0.0.1: - resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} - - cliui@5.0.0: - resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==} - - cliui@6.0.0: - resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} - - cliui@7.0.4: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} - - cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} - - clone-deep@0.2.4: - resolution: {integrity: sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==} - engines: {node: '>=0.10.0'} - - clone-deep@4.0.1: - resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} - engines: {node: '>=6'} - - clone-response@1.0.3: - resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} - - clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} - - clone@2.1.2: - resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} - engines: {node: '>=0.8'} - - clsx@1.2.1: - resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} - engines: {node: '>=6'} - - clsx@2.1.1: - resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} - engines: {node: '>=6'} - - cmd-shim@5.0.0: - resolution: {integrity: sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - co@4.6.0: - resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} - - coa@2.0.2: - resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} - engines: {node: '>= 4.0'} - - codemirror@5.65.16: - resolution: {integrity: sha512-br21LjYmSlVL0vFCPWPfhzUCT34FM/pAdK7rRIZwa0rrtrIdotvP4Oh4GUHsu2E3IrQMCfRkL/fN3ytMNxVQvg==} - - coffee-script@1.12.7: - resolution: {integrity: sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==} - engines: {node: '>=0.8.0'} - deprecated: CoffeeScript on NPM has moved to "coffeescript" (no hyphen) - hasBin: true - - collapse-white-space@1.0.6: - resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==} - - collect-v8-coverage@1.0.2: - resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} - - collection-visit@1.0.0: - resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} - engines: {node: '>=0.10.0'} - - color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} - - color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} - - color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - - color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - - color-support@1.1.3: - resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} - hasBin: true - - colord@2.9.3: - resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} - - colorette@1.4.0: - resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} - - colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} - - columnify@1.6.0: - resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==} - engines: {node: '>=8.0.0'} - - combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} - - comma-separated-tokens@1.0.8: - resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} - - comma-separated-tokens@2.0.3: - resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} - - commander@10.0.1: - resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} - engines: {node: '>=14'} - - commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} - - commander@4.1.1: - resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} - engines: {node: '>= 6'} - - commander@5.1.0: - resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} - engines: {node: '>= 6'} - - commander@6.2.1: - resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} - engines: {node: '>= 6'} - - commander@7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} - engines: {node: '>= 10'} - - commander@8.3.0: - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} - engines: {node: '>= 12'} - - common-ancestor-path@1.0.1: - resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} - - common-path-prefix@3.0.0: - resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} - - common-tags@1.8.2: - resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} - engines: {node: '>=4.0.0'} - - commondir@1.0.1: - resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} - - compare-func@2.0.0: - resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} - - component-emitter@1.3.1: - resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==} - - compressible@2.0.18: - resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} - engines: {node: '>= 0.6'} - - compression-webpack-plugin@7.1.2: - resolution: {integrity: sha512-9DKNW6ILLjx+bNBoviHDgLx6swBhWWH9ApClC9sTH2NoFfQM47BapQfovCm9zjD9v1uZwInF5a925FB9ErGQeQ==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 - - compression@1.7.4: - resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} - engines: {node: '>= 0.8.0'} - - concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - - concat-stream@1.6.2: - resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} - engines: {'0': node >= 0.8} - - concat-stream@2.0.0: - resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} - engines: {'0': node >= 6.0} - - concat-with-sourcemaps@1.1.0: - resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==} - - confbox@0.1.7: - resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==} - - config-chain@1.1.13: - resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} - - configstore@5.0.1: - resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} - engines: {node: '>=8'} - - confusing-browser-globals@1.0.11: - resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} - - connect-history-api-fallback@1.6.0: - resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==} - engines: {node: '>=0.8'} - - connect-history-api-fallback@2.0.0: - resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} - engines: {node: '>=0.8'} - - consola@3.2.3: - resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} - engines: {node: ^14.18.0 || >=16.10.0} - - console-browserify@1.1.0: - resolution: {integrity: sha512-duS7VP5pvfsNLDvL1O4VOEbw37AI3A4ZUQYemvDlnpGrNu9tprR7BYWpDYwC0Xia0Zxz5ZupdiIrUp0GH1aXfg==} - - console-control-strings@1.1.0: - resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} - - constants-browserify@1.0.0: - resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} - - content-disposition@0.5.4: - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} - engines: {node: '>= 0.6'} - - content-type@1.0.5: - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} - engines: {node: '>= 0.6'} - - conventional-changelog-angular@5.0.13: - resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} - engines: {node: '>=10'} - - conventional-changelog-core@4.2.4: - resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==} - engines: {node: '>=10'} - - conventional-changelog-preset-loader@2.3.4: - resolution: {integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==} - engines: {node: '>=10'} - - conventional-changelog-writer@5.0.1: - resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==} - engines: {node: '>=10'} - hasBin: true - - conventional-commits-filter@2.0.7: - resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==} - engines: {node: '>=10'} - - conventional-commits-parser@3.2.4: - resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} - engines: {node: '>=10'} - hasBin: true - - conventional-recommended-bump@6.1.0: - resolution: {integrity: sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==} - engines: {node: '>=10'} - hasBin: true - - convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} - - convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - - cookie-signature@1.0.6: - resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} - - cookie@0.4.2: - resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} - engines: {node: '>= 0.6'} - - cookie@0.6.0: - resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} - engines: {node: '>= 0.6'} - - copy-anything@2.0.6: - resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} - - copy-descriptor@0.1.1: - resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} - engines: {node: '>=0.10.0'} - - copy-webpack-plugin@10.2.4: - resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==} - engines: {node: '>= 12.20.0'} - peerDependencies: - webpack: 5.84.1 - - copy-webpack-plugin@12.0.2: - resolution: {integrity: sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==} - engines: {node: '>= 18.12.0'} - peerDependencies: - webpack: 5.84.1 - - core-js-compat@3.37.1: - resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==} - - core-js-pure@3.37.1: - resolution: {integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==} - - core-js@2.6.12: - resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} - deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. - - core-js@3.37.1: - resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==} - - core-util-is@1.0.2: - resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} - - core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - - corser@2.0.1: - resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==} - engines: {node: '>= 0.4.0'} - - cosmiconfig@5.2.1: - resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} - engines: {node: '>=4'} - - cosmiconfig@6.0.0: - resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} - engines: {node: '>=8'} - - cosmiconfig@7.1.0: - resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} - engines: {node: '>=10'} - - cosmiconfig@8.3.6: - resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} - engines: {node: '>=14'} - peerDependencies: - typescript: '>=4.9.5' - peerDependenciesMeta: - typescript: - optional: true - - country-language@0.1.7: - resolution: {integrity: sha512-QH8GvZehR0IsFSR8ZPzteaCq/JjsLKk+tHWSQciXVpredI/2Xaf1VAdCuo/XPFWSrRCkSLaZNqnOcot4zceAIw==} - - cp-file@7.0.0: - resolution: {integrity: sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==} - engines: {node: '>=8'} - - cpy@8.1.2: - resolution: {integrity: sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==} - engines: {node: '>=8'} - - create-jest@29.7.0: - resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - - create-require@1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - - cross-spawn@5.1.0: - resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} - - cross-spawn@6.0.5: - resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} - engines: {node: '>=4.8'} - - cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} - - crypto-js@3.3.0: - resolution: {integrity: sha512-DIT51nX0dCfKltpRiXV+/TVZq+Qq2NgF4644+K7Ttnla7zEzqc+kjJyiB96BHNyUTBxyjzRcZYpUdZa+QAqi6Q==} - - crypto-random-string@2.0.0: - resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} - engines: {node: '>=8'} - - css-color-keywords@1.0.0: - resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} - engines: {node: '>=4'} - - css-declaration-sorter@6.4.1: - resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} - engines: {node: ^10 || ^12 || >=14} - peerDependencies: - postcss: ^8.0.9 - - css-declaration-sorter@7.2.0: - resolution: {integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==} - engines: {node: ^14 || ^16 || >=18} - peerDependencies: - postcss: ^8.0.9 - - css-loader@1.0.1: - resolution: {integrity: sha512-+ZHAZm/yqvJ2kDtPne3uX0C+Vr3Zn5jFn2N4HywtS5ujwvsVkyg0VArEXpl3BgczDA8anieki1FIzhchX4yrDw==} - engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 - - css-loader@3.6.0: - resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==} - engines: {node: '>= 8.9.0'} - peerDependencies: - webpack: 5.84.1 - - css-loader@5.2.7: - resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 - - css-loader@6.11.0: - resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==} - engines: {node: '>= 12.13.0'} - peerDependencies: - '@rspack/core': 0.x || 1.x - webpack: 5.84.1 - peerDependenciesMeta: - '@rspack/core': - optional: true - webpack: - optional: true - - css-minimizer-webpack-plugin@5.0.1: - resolution: {integrity: sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==} - engines: {node: '>= 14.15.0'} - peerDependencies: - '@parcel/css': '*' - '@swc/css': '*' - clean-css: '*' - csso: '*' - esbuild: '*' - lightningcss: '*' - webpack: 5.84.1 - peerDependenciesMeta: - '@parcel/css': - optional: true - '@swc/css': - optional: true - clean-css: - optional: true - csso: - optional: true - esbuild: - optional: true - lightningcss: - optional: true - - css-select-base-adapter@0.1.1: - resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} - - css-select@2.1.0: - resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==} - - css-select@4.3.0: - resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} - - css-select@5.1.0: - resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} - - css-selector-tokenizer@0.7.3: - resolution: {integrity: sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==} - - css-to-react-native@2.3.2: - resolution: {integrity: sha512-VOFaeZA053BqvvvqIA8c9n0+9vFppVBAHCp6JgFTtTMU3Mzi+XnelJ9XC9ul3BqFzZyQ5N+H0SnwsWT2Ebchxw==} - - css-tree@1.0.0-alpha.37: - resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} - engines: {node: '>=8.0.0'} - - css-tree@1.1.3: - resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} - engines: {node: '>=8.0.0'} - - css-tree@2.2.1: - resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} - - css-tree@2.3.1: - resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} - - css-what@3.4.2: - resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} - engines: {node: '>= 6'} - - css-what@6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: '>= 6'} - - css.escape@1.5.1: - resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} - - cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} - hasBin: true - - cssnano-preset-default@5.2.14: - resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - cssnano-preset-default@6.1.2: - resolution: {integrity: sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - cssnano-utils@3.1.0: - resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - cssnano-utils@4.0.2: - resolution: {integrity: sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - cssnano@5.1.15: - resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - cssnano@6.1.2: - resolution: {integrity: sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - csso@4.2.0: - resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} - engines: {node: '>=8.0.0'} - - csso@5.0.5: - resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} - - cssom@0.3.8: - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} - - cssom@0.4.4: - resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} - - cssom@0.5.0: - resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} - - cssstyle@2.3.0: - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} - engines: {node: '>=8'} - - csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} - - csv-generate@3.4.3: - resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} - - csv-parse@4.16.3: - resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} - - csv-stringify@5.6.5: - resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} - - csv@5.5.3: - resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} - engines: {node: '>= 0.1.90'} - - currently-unhandled@0.4.1: - resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} - engines: {node: '>=0.10.0'} - - cypress@9.7.0: - resolution: {integrity: sha512-+1EE1nuuuwIt/N1KXRR2iWHU+OiIt7H28jJDyyI4tiUftId/DrXYEwoDa5+kH2pki1zxnA0r6HrUGHV5eLbF5Q==} - engines: {node: '>=12.0.0'} - hasBin: true - - d3-array@3.2.4: - resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} - engines: {node: '>=12'} - - d3-color@3.1.0: - resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} - engines: {node: '>=12'} - - d3-dispatch@3.0.1: - resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} - engines: {node: '>=12'} - - d3-drag@3.0.0: - resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} - engines: {node: '>=12'} - - d3-ease@3.0.1: - resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} - engines: {node: '>=12'} - - d3-format@3.1.0: - resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} - engines: {node: '>=12'} - - d3-interpolate@3.0.1: - resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} - engines: {node: '>=12'} - - d3-path@3.1.0: - resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==} - engines: {node: '>=12'} - - d3-scale@4.0.2: - resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} - engines: {node: '>=12'} - - d3-selection@3.0.0: - resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} - engines: {node: '>=12'} - - d3-shape@3.2.0: - resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==} - engines: {node: '>=12'} - - d3-time-format@4.1.0: - resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} - engines: {node: '>=12'} - - d3-time@3.1.0: - resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} - engines: {node: '>=12'} - - d3-timer@3.0.1: - resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} - engines: {node: '>=12'} - - d3-transition@3.0.1: - resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} - engines: {node: '>=12'} - peerDependencies: - d3-selection: 2 - 3 - - d3-zoom@3.0.0: - resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} - engines: {node: '>=12'} - - d@1.0.2: - resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==} - engines: {node: '>=0.12'} - - damerau-levenshtein@1.0.8: - resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} - - dargs@7.0.0: - resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} - engines: {node: '>=8'} - - dashdash@1.14.1: - resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} - engines: {node: '>=0.10'} - - data-urls@2.0.0: - resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} - engines: {node: '>=10'} - - data-urls@3.0.2: - resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} - engines: {node: '>=12'} - - data-view-buffer@1.0.1: - resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} - engines: {node: '>= 0.4'} - - data-view-byte-length@1.0.1: - resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} - engines: {node: '>= 0.4'} - - data-view-byte-offset@1.0.0: - resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} - engines: {node: '>= 0.4'} - - dataloader@1.4.0: - resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} - - date-format@2.1.0: - resolution: {integrity: sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==} - engines: {node: '>=4.0'} - deprecated: 2.x is no longer supported. Please upgrade to 4.x or higher. - - date-now@0.1.4: - resolution: {integrity: sha512-AsElvov3LoNB7tf5k37H2jYSB+ZZPMT5sG2QjJCcdlV5chIv6htBUBUui2IKRjgtKAKtCBN7Zbwa+MtwLjSeNw==} - - dateformat@3.0.3: - resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} - - dayjs@1.11.11: - resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==} - - debounce@1.2.1: - resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} - - debug@2.6.9: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - debug@3.1.0: - resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - debug@3.2.7: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - debug@4.3.5: - resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - debuglog@1.0.1: - resolution: {integrity: sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. - - decamelize-keys@1.1.1: - resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} - engines: {node: '>=0.10.0'} - - decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} - - decimal.js-light@2.5.1: - resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==} - - decimal.js@10.4.3: - resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} - - decode-named-character-reference@1.0.2: - resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} - - decode-uri-component@0.2.2: - resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} - engines: {node: '>=0.10'} - - decompress-response@3.3.0: - resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} - engines: {node: '>=4'} - - decompress-response@6.0.0: - resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} - engines: {node: '>=10'} - - dedent@0.7.0: - resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} - - dedent@1.5.3: - resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} - peerDependencies: - babel-plugin-macros: ^3.1.0 - peerDependenciesMeta: - babel-plugin-macros: - optional: true - - deep-diff@1.0.2: - resolution: {integrity: sha512-aWS3UIVH+NPGCD1kki+DCU9Dua032iSsO43LqQpcs4R3+dVv7tX0qBGjiVHJHjplsoUM2XRO/KB92glqc68awg==} - - deep-equal@1.1.2: - resolution: {integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==} - engines: {node: '>= 0.4'} - - deep-equal@2.2.3: - resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} - engines: {node: '>= 0.4'} - - deep-extend@0.6.0: - resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} - engines: {node: '>=4.0.0'} - - deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} - - deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: '>=0.10.0'} - - default-browser-id@1.0.4: - resolution: {integrity: sha512-qPy925qewwul9Hifs+3sx1ZYn14obHxpkX+mPD369w4Rzg+YkJBgi3SOvwUq81nWSjqGUegIgEPwD8u+HUnxlw==} - engines: {node: '>=0.10.0'} - hasBin: true - - default-browser-id@3.0.0: - resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} - engines: {node: '>=12'} - - default-gateway@4.2.0: - resolution: {integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==} - engines: {node: '>=6'} - - default-gateway@6.0.3: - resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} - engines: {node: '>= 10'} - - default-require-extensions@3.0.1: - resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==} - engines: {node: '>=8'} - - defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} - - defer-to-connect@1.1.3: - resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} - - defer-to-connect@2.0.1: - resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} - engines: {node: '>=10'} - - define-data-property@1.1.4: - resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} - engines: {node: '>= 0.4'} - - define-lazy-prop@2.0.0: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} - engines: {node: '>=8'} - - define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: '>= 0.4'} - - define-property@0.2.5: - resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} - engines: {node: '>=0.10.0'} - - define-property@1.0.0: - resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} - engines: {node: '>=0.10.0'} - - define-property@2.0.2: - resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} - engines: {node: '>=0.10.0'} - - defu@6.1.4: - resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} - - del@4.1.1: - resolution: {integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==} - engines: {node: '>=6'} - - del@6.1.1: - resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} - engines: {node: '>=10'} - - delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} - - delegates@1.0.0: - resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} - - depd@1.1.2: - resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} - engines: {node: '>= 0.6'} - - depd@2.0.0: - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} - engines: {node: '>= 0.8'} - - deprecation@2.3.1: - resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} - - dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} - - destroy@1.2.0: - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - - detab@2.0.4: - resolution: {integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==} - - detect-indent@5.0.0: - resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==} - engines: {node: '>=4'} - - detect-indent@6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: '>=8'} - - detect-newline@3.1.0: - resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} - engines: {node: '>=8'} - - detect-node@2.1.0: - resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} - - detect-package-manager@2.0.1: - resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==} - engines: {node: '>=12'} - - detect-port@1.6.1: - resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==} - engines: {node: '>= 4.0.0'} - hasBin: true - - devlop@1.1.0: - resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} - - dezalgo@1.0.4: - resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==} - - diacritics-map@0.1.0: - resolution: {integrity: sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==} - engines: {node: '>=0.8.0'} - - diff-sequences@26.6.2: - resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==} - engines: {node: '>= 10.14.2'} - - diff-sequences@29.6.3: - resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - diff@4.0.2: - resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} - engines: {node: '>=0.3.1'} - - dir-glob@2.2.2: - resolution: {integrity: sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==} - engines: {node: '>=4'} - - dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} - - dns-equal@1.0.0: - resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} - - dns-packet@1.3.4: - resolution: {integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==} - - dns-packet@5.6.1: - resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} - engines: {node: '>=6'} - - dns-txt@2.0.2: - resolution: {integrity: sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==} - - doctrine@2.1.0: - resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} - engines: {node: '>=0.10.0'} - - doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} - - dom-accessibility-api@0.5.16: - resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} - - dom-accessibility-api@0.6.3: - resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} - - dom-converter@0.2.0: - resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} - - dom-helpers@5.2.1: - resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} - - dom-serializer@0.2.2: - resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} - - dom-serializer@1.4.1: - resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} - - dom-serializer@2.0.0: - resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} - - dom-walk@0.1.2: - resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==} - - domelementtype@1.3.1: - resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} - - domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} - - domexception@2.0.1: - resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} - engines: {node: '>=8'} - deprecated: Use your platform's native DOMException instead - - domexception@4.0.0: - resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} - engines: {node: '>=12'} - deprecated: Use your platform's native DOMException instead - - domhandler@2.3.0: - resolution: {integrity: sha512-q9bUwjfp7Eif8jWxxxPSykdRZAb6GkguBGSgvvCrhI9wB71W2K/Kvv4E61CF/mcCfnVJDeDWx/Vb/uAqbDj6UQ==} - - domhandler@4.3.1: - resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} - engines: {node: '>= 4'} - - domhandler@5.0.3: - resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} - engines: {node: '>= 4'} - - dompurify@3.1.5: - resolution: {integrity: sha512-lwG+n5h8QNpxtyrJW/gJWckL+1/DQiYMX8f7t8Z2AZTPw1esVrqjI63i7Zc2Gz0aKzLVMYC1V1PL/ky+aY/NgA==} - - domutils@1.5.1: - resolution: {integrity: sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==} - - domutils@1.7.0: - resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} - - domutils@2.8.0: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} - - domutils@3.1.0: - resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} - - dot-case@3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} - - dot-prop@5.3.0: - resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} - engines: {node: '>=8'} - - dot-prop@6.0.1: - resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} - engines: {node: '>=10'} - - dotenv-expand@10.0.0: - resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} - engines: {node: '>=12'} - - dotenv-expand@5.1.0: - resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} - - dotenv@10.0.0: - resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} - engines: {node: '>=10'} - - dotenv@16.3.2: - resolution: {integrity: sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==} - engines: {node: '>=12'} - - dotenv@16.4.5: - resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} - engines: {node: '>=12'} - - dotenv@8.6.0: - resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} - engines: {node: '>=10'} - - duplexer3@0.1.5: - resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} - - duplexer@0.1.2: - resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} - - duplexify@3.7.1: - resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} - - eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - - ecc-jsbn@0.1.2: - resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} - - editorconfig@1.0.4: - resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==} - engines: {node: '>=14'} - hasBin: true - - ee-first@1.1.1: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - - ejs@3.1.10: - resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} - engines: {node: '>=0.10.0'} - hasBin: true - - electron-to-chromium@1.4.810: - resolution: {integrity: sha512-Kaxhu4T7SJGpRQx99tq216gCq2nMxJo+uuT6uzz9l8TVN2stL7M06MIIXAtr9jsrLs2Glflgf2vMQRepxawOdQ==} - - emittery@0.13.1: - resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} - engines: {node: '>=12'} - - emittery@0.7.2: - resolution: {integrity: sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==} - engines: {node: '>=10'} - - emoji-regex@7.0.3: - resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==} - - emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - - emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - - emojis-list@3.0.0: - resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} - engines: {node: '>= 4'} - - encodeurl@1.0.2: - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} - engines: {node: '>= 0.8'} - - encoding@0.1.13: - resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} - - end-of-stream@1.4.4: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} - - endent@2.1.0: - resolution: {integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==} - - enhanced-resolve@4.5.0: - resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==} - engines: {node: '>=6.9.0'} - - enhanced-resolve@5.17.0: - resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==} - engines: {node: '>=10.13.0'} - - enquirer@2.3.6: - resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} - engines: {node: '>=8.6'} - - enquirer@2.4.1: - resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} - engines: {node: '>=8.6'} - - entities@1.0.0: - resolution: {integrity: sha512-LbLqfXgJMmy81t+7c14mnulFHJ170cM6E+0vMXR9k/ZiZwgX8i5pNgjTCX3SO4VeUsFLV+8InixoretwU+MjBQ==} - - entities@2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} - - entities@3.0.1: - resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} - engines: {node: '>=0.12'} - - entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} - - env-paths@2.2.1: - resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} - engines: {node: '>=6'} - - envinfo@7.13.0: - resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==} - engines: {node: '>=4'} - hasBin: true - - err-code@2.0.3: - resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} - - errno@0.1.8: - resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} - hasBin: true - - error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} - - error-stack-parser@2.1.4: - resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} - - es-abstract@1.23.3: - resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} - engines: {node: '>= 0.4'} - - es-array-method-boxes-properly@1.0.0: - resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} - - es-define-property@1.0.0: - resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} - engines: {node: '>= 0.4'} - - es-errors@1.3.0: - resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} - engines: {node: '>= 0.4'} - - es-get-iterator@1.1.3: - resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} - - es-iterator-helpers@1.0.19: - resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==} - engines: {node: '>= 0.4'} - - es-module-lexer@1.5.4: - resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} - - es-object-atoms@1.0.0: - resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} - engines: {node: '>= 0.4'} - - es-set-tostringtag@2.0.3: - resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} - engines: {node: '>= 0.4'} - - es-shim-unscopables@1.0.2: - resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} - - es-to-primitive@1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} - - es5-ext@0.10.64: - resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==} - engines: {node: '>=0.10'} - - es5-shim@4.6.7: - resolution: {integrity: sha512-jg21/dmlrNQI7JyyA2w7n+yifSxBng0ZralnSfVZjoCawgNTCnS+yBCyVM9DL5itm7SUnDGgv7hcq2XCZX4iRQ==} - engines: {node: '>=0.4.0'} - - es6-error@4.1.1: - resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} - - es6-iterator@2.0.3: - resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} - - es6-shim@0.35.8: - resolution: {integrity: sha512-Twf7I2v4/1tLoIXMT8HlqaBSS5H2wQTs2wx3MNYCI8K1R1/clXyCazrcVCPm/FuO9cyV8+leEaZOWD5C253NDg==} - - es6-symbol@3.1.4: - resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==} - engines: {node: '>=0.12'} - - esbuild-plugin-alias@0.2.1: - resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==} - - esbuild-register@3.5.0: - resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==} - peerDependencies: - esbuild: '>=0.12 <1' - - esbuild@0.18.20: - resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} - engines: {node: '>=12'} - hasBin: true - - escalade@3.1.2: - resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} - engines: {node: '>=6'} - - escape-goat@2.1.1: - resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==} - engines: {node: '>=8'} - - escape-html@1.0.3: - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} - - escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} - - escape-string-regexp@2.0.0: - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} - engines: {node: '>=8'} - - escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} - - escape-string-regexp@5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} - engines: {node: '>=12'} - - escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: '>=6.0'} - hasBin: true - - eslint-compat-utils@0.5.1: - resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} - engines: {node: '>=12'} - peerDependencies: - eslint: '>=6.0.0' - - eslint-config-prettier@9.1.0: - resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} - hasBin: true - peerDependencies: - eslint: '>=7.0.0' - - eslint-import-resolver-node@0.3.9: - resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} - - eslint-module-utils@2.8.1: - resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} - 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 - - eslint-plugin-cypress@2.15.2: - resolution: {integrity: sha512-CtcFEQTDKyftpI22FVGpx8bkpKyYXBlNge6zSo0pl5/qJvBAnzaD76Vu2AsP16d6mTj478Ldn2mhgrWV+Xr0vQ==} - peerDependencies: - eslint: '>= 3.2.1' - - eslint-plugin-header@https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3: - resolution: {tarball: https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3} - version: 3.2.0 - peerDependencies: - eslint: '>=7.7.0' - - eslint-plugin-import@2.29.1: - resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - - eslint-plugin-jest-dom@4.0.3: - resolution: {integrity: sha512-9j+n8uj0+V0tmsoS7bYC7fLhQmIvjRqRYEcbDSi+TKPsTThLLXCyj5swMSSf/hTleeMktACnn+HFqXBr5gbcbA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6', yarn: '>=1'} - peerDependencies: - eslint: ^6.8.0 || ^7.0.0 || ^8.0.0 - - eslint-plugin-jsonc@2.16.0: - resolution: {integrity: sha512-Af/ZL5mgfb8FFNleH6KlO4/VdmDuTqmM+SPnWcdoWywTetv7kq+vQe99UyQb9XO3b0OWLVuTH7H0d/PXYCMdSg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '>=6.0.0' - - eslint-plugin-jsx-a11y@6.5.1: - resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==} - engines: {node: '>=4.0'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - - eslint-plugin-react-hooks@4.6.2: - resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} - engines: {node: '>=10'} - peerDependencies: - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 - - eslint-plugin-react@7.31.11: - resolution: {integrity: sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==} - engines: {node: '>=4'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - - eslint-plugin-react@7.34.3: - resolution: {integrity: sha512-aoW4MV891jkUulwDApQbPYTVZmeuSyFrudpbTAQuj5Fv8VL+o6df2xIGpw8B0hPjAaih1/Fb0om9grCdyFYemA==} - engines: {node: '>=4'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - - eslint-plugin-testing-library@5.11.1: - resolution: {integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} - peerDependencies: - eslint: ^7.5.0 || ^8.0.0 - - eslint-plugin-tsdoc@0.2.17: - resolution: {integrity: sha512-xRmVi7Zx44lOBuYqG8vzTXuL6IdGOeF9nHX17bjJ8+VE6fsxpdGem0/SBTmAwgYMKYB1WBkqRJVQ+n8GK041pA==} - - eslint-scope@5.1.1: - resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} - engines: {node: '>=8.0.0'} - - eslint-scope@7.2.2: - resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - eslint-utils@2.1.0: - resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} - engines: {node: '>=6'} - - eslint-utils@3.0.0: - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: '>=5' - - eslint-visitor-keys@1.3.0: - resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} - engines: {node: '>=4'} - - eslint-visitor-keys@2.1.0: - resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} - engines: {node: '>=10'} - - eslint-visitor-keys@3.4.3: - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - eslint-webpack-plugin@2.7.0: - resolution: {integrity: sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - webpack: 5.84.1 - - eslint-webpack-plugin@3.2.0: - resolution: {integrity: sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==} - engines: {node: '>= 12.13.0'} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - webpack: 5.84.1 - - eslint@7.32.0: - resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} - engines: {node: ^10.12.0 || >=12.0.0} - hasBin: true - - eslint@8.46.0: - resolution: {integrity: sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - hasBin: true - - esniff@2.0.1: - resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==} - engines: {node: '>=0.10'} - - espree@7.3.1: - resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} - engines: {node: ^10.12.0 || >=12.0.0} - - espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} - hasBin: true - - esquery@1.6.0: - resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} - engines: {node: '>=0.10'} - - esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} - - estraverse@4.3.0: - resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} - engines: {node: '>=4.0'} - - estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} - - estree-to-babel@3.2.1: - resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} - engines: {node: '>=8.3.0'} - - estree-util-is-identifier-name@3.0.0: - resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} - - estree-walker@0.2.1: - resolution: {integrity: sha512-6/I1dwNKk0N9iGOU3ydzAAurz4NPo/ttxZNCqgIVbWFvWyzWBSNonRrJ5CpjDuyBfmM7ENN7WCzUi9aT/UPXXQ==} - - estree-walker@0.6.1: - resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} - - estree-walker@1.0.1: - resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} - - estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} - - esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} - - etag@1.8.1: - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} - engines: {node: '>= 0.6'} - - event-emitter@0.3.5: - resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} - - eventemitter2@6.4.9: - resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==} - - eventemitter3@4.0.7: - resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} - - events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: '>=0.8.x'} - - eventsource@2.0.2: - resolution: {integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==} - engines: {node: '>=12.0.0'} - - exec-sh@0.2.2: - resolution: {integrity: sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==} - - exec-sh@0.3.6: - resolution: {integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==} - - execa@0.7.0: - resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==} - engines: {node: '>=4'} - - execa@1.0.0: - resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} - engines: {node: '>=6'} - - execa@4.1.0: - resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} - engines: {node: '>=10'} - - execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} - - execa@8.0.1: - resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} - engines: {node: '>=16.17'} - - executable@4.1.1: - resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==} - engines: {node: '>=4'} - - exenv@1.2.2: - resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==} - - exit@0.1.2: - resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} - engines: {node: '>= 0.8.0'} - - expand-brackets@2.1.4: - resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} - engines: {node: '>=0.10.0'} - - expand-range@1.8.2: - resolution: {integrity: sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==} - engines: {node: '>=0.10.0'} - - expect@26.6.2: - resolution: {integrity: sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==} - engines: {node: '>= 10.14.2'} - - expect@29.7.0: - resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - exponential-backoff@3.1.1: - resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} - - express@4.19.2: - resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==} - engines: {node: '>= 0.10.0'} - - ext-list@2.2.2: - resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} - engines: {node: '>=0.10.0'} - - ext-name@5.0.0: - resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==} - engines: {node: '>=4'} - - ext@1.7.0: - resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} - - extend-shallow@2.0.1: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} - engines: {node: '>=0.10.0'} - - extend-shallow@3.0.2: - resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} - engines: {node: '>=0.10.0'} - - extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} - - extendable-error@0.1.7: - resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} - - external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} - - extglob@2.0.4: - resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} - engines: {node: '>=0.10.0'} - - extract-text-webpack-plugin@4.0.0-beta.0: - resolution: {integrity: sha512-Hypkn9jUTnFr0DpekNam53X47tXn3ucY08BQumv7kdGgeVUBLq3DJHJTi6HNxv4jl9W+Skxjz9+RnK0sJyqqjA==} - engines: {node: '>= 6.9.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 - - extract-zip@1.7.0: - resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==} - hasBin: true - - extract-zip@2.0.1: - resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} - engines: {node: '>= 10.17.0'} - hasBin: true - - extsprintf@1.3.0: - resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} - engines: {'0': node >=0.6.0} - - fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - - fast-equals@5.0.1: - resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==} - engines: {node: '>=6.0.0'} - - fast-glob@2.2.7: - resolution: {integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==} - engines: {node: '>=4.0.0'} - - fast-glob@3.2.7: - resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} - engines: {node: '>=8'} - - fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} - engines: {node: '>=8.6.0'} - - fast-json-parse@1.0.3: - resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==} - - fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} - - fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - - fast-sha256@1.3.0: - resolution: {integrity: sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==} - - fast-sort@3.4.0: - resolution: {integrity: sha512-c/cMBGA5mH3OYjaXedtLIM3hQjv+KuZuiD2QEH5GofNOZeQVDIYIN7Okc2AW1KPhk44g5PTZnXp8t2lOMl8qhQ==} - - fast-xml-parser@3.21.1: - resolution: {integrity: sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==} - hasBin: true - - fastest-levenshtein@1.0.16: - resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} - engines: {node: '>= 4.9.1'} - - fastestsmallesttextencoderdecoder@1.0.22: - resolution: {integrity: sha512-Pb8d48e+oIuY4MaM64Cd7OW1gt4nxCHs7/ddPPZ/Ic3sg8yVGM7O9wDvZ7us6ScaUupzM+pfBolwtYhN1IxBIw==} - - fastparse@1.1.2: - resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==} - - fastq@1.17.1: - resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} - - faye-websocket@0.11.4: - resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} - engines: {node: '>=0.8.0'} - - fb-watchman@2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} - - fd-slicer@1.1.0: - resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} - - fetch-retry@5.0.6: - resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==} - - figures@3.2.0: - resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} - engines: {node: '>=8'} - - file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} - - file-loader@2.0.0: - resolution: {integrity: sha512-YCsBfd1ZGCyonOKLxPiKPdu+8ld9HAaMEvJewzz+b2eTF7uL5Zm/HdBF6FjCrpCMRq25Mi0U1gl4pwn2TlH7hQ==} - engines: {node: '>= 6.9.0 < 7.0.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 - - file-loader@6.2.0: - resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 - - file-saver@2.0.5: - resolution: {integrity: sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==} - - file-system-cache@1.1.0: - resolution: {integrity: sha512-IzF5MBq+5CR0jXx5RxPe4BICl/oEhBSXKaL9fLhAXrIfIUS77Hr4vzrYyqYMHN6uTt+BOqi3fDCTjjEBCjERKw==} - - file-system-cache@2.3.0: - resolution: {integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==} - - file-type@17.1.6: - resolution: {integrity: sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - file-uri-to-path@1.0.0: - resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} - - filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} - - filename-reserved-regex@3.0.0: - resolution: {integrity: sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - filenamify@5.1.1: - resolution: {integrity: sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==} - engines: {node: '>=12.20'} - - filesize@3.6.1: - resolution: {integrity: sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==} - engines: {node: '>= 0.4.0'} - - fill-range@2.2.4: - resolution: {integrity: sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==} - engines: {node: '>=0.10.0'} - - fill-range@4.0.0: - resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} - engines: {node: '>=0.10.0'} - - fill-range@7.1.1: - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} - engines: {node: '>=8'} - - filter-obj@1.1.0: - resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} - engines: {node: '>=0.10.0'} - - final-form@4.20.10: - resolution: {integrity: sha512-TL48Pi1oNHeMOHrKv1bCJUrWZDcD3DIG6AGYVNOnyZPr7Bd/pStN0pL+lfzF5BNoj/FclaoiaLenk4XUIFVYng==} - engines: {node: '>=8'} - - finalhandler@1.2.0: - resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} - engines: {node: '>= 0.8'} - - find-cache-dir@2.1.0: - resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} - engines: {node: '>=6'} - - find-cache-dir@3.3.2: - resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} - engines: {node: '>=8'} - - find-cache-dir@4.0.0: - resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==} - engines: {node: '>=14.16'} - - find-root@1.1.0: - resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} - - find-up@1.1.2: - resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==} - engines: {node: '>=0.10.0'} - - find-up@2.1.0: - resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} - engines: {node: '>=4'} - - find-up@3.0.0: - resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} - engines: {node: '>=6'} - - find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} - - find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} - - find-up@6.3.0: - resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - find-versions@5.1.0: - resolution: {integrity: sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==} - engines: {node: '>=12'} - - find-yarn-workspace-root2@1.2.16: - resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} - - flat-cache@3.2.0: - resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} - engines: {node: ^10.12.0 || >=12.0.0} - - flat@5.0.2: - resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} - hasBin: true - - flatted@2.0.2: - resolution: {integrity: sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==} - - flatted@3.3.1: - resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} - - flow-parser@0.238.0: - resolution: {integrity: sha512-VE7XSv1epljsIN2YeBnxCmGJihpNIAnLLu/pPOdA+Gkso7qDltJwUi6vfHjgxdBbjSdAuPGnhuOHJUQG+yYwIg==} - engines: {node: '>=0.4.0'} - - follow-redirects@1.15.6: - resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} - engines: {node: '>=4.0'} - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true - - follow-redirects@1.5.10: - resolution: {integrity: sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==} - engines: {node: '>=4.0'} - - for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} - - for-in@0.1.8: - resolution: {integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==} - engines: {node: '>=0.10.0'} - - for-in@1.0.2: - resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} - engines: {node: '>=0.10.0'} - - for-own@0.1.5: - resolution: {integrity: sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==} - engines: {node: '>=0.10.0'} - - foreground-child@2.0.0: - resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} - engines: {node: '>=8.0.0'} - - foreground-child@3.2.1: - resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==} - engines: {node: '>=14'} - - forever-agent@0.6.1: - resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} - - fork-ts-checker-webpack-plugin@4.1.6: - resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} - engines: {node: '>=6.11.5', yarn: '>=1.0.0'} - peerDependencies: - eslint: '>= 6' - typescript: '>= 2.7' - vue-template-compiler: '*' - webpack: 5.84.1 - peerDependenciesMeta: - eslint: - optional: true - vue-template-compiler: - optional: true - - fork-ts-checker-webpack-plugin@6.5.3: - resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} - engines: {node: '>=10', yarn: '>=1.0.0'} - peerDependencies: - eslint: '>= 6' - typescript: '>= 2.7' - vue-template-compiler: '*' - webpack: 5.84.1 - peerDependenciesMeta: - eslint: - optional: true - vue-template-compiler: - optional: true - - fork-ts-checker-webpack-plugin@7.2.13: - resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==} - engines: {node: '>=12.13.0', yarn: '>=1.0.0'} - peerDependencies: - typescript: '>3.6.0' - vue-template-compiler: '*' - webpack: 5.84.1 - peerDependenciesMeta: - vue-template-compiler: - optional: true - - fork-ts-checker-webpack-plugin@8.0.0: - resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} - engines: {node: '>=12.13.0', yarn: '>=1.0.0'} - peerDependencies: - typescript: '>3.6.0' - webpack: 5.84.1 - - form-data@2.3.3: - resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} - engines: {node: '>= 0.12'} - - form-data@3.0.1: - resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} - engines: {node: '>= 6'} - - form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} - engines: {node: '>= 6'} - - forwarded@0.2.0: - resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} - engines: {node: '>= 0.6'} - - fraction.js@4.3.7: - resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} - - fragment-cache@0.2.1: - resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} - engines: {node: '>=0.10.0'} - - framer-motion@11.2.11: - resolution: {integrity: sha512-n+ozoEzgJu/2h9NoQMokF+CwNqIRVyuRC4RwMPwklfrrTjbVV32k9uBIgqYAwn7Jfpt5LuDVCtT57MWz1FbaLw==} - peerDependencies: - '@emotion/is-prop-valid': '*' - react: ^18.0.0 - react-dom: ^18.0.0 - peerDependenciesMeta: - '@emotion/is-prop-valid': - optional: true - react: - optional: true - react-dom: - optional: true - - fresh@0.5.2: - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} - engines: {node: '>= 0.6'} - - fromentries@1.3.2: - resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==} - - fs-constants@1.0.0: - resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} - - fs-extra@10.1.0: - resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} - engines: {node: '>=12'} - - fs-extra@11.1.1: - resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} - engines: {node: '>=14.14'} - - fs-extra@11.2.0: - resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} - engines: {node: '>=14.14'} - - fs-extra@7.0.1: - resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} - engines: {node: '>=6 <7 || >=8'} - - fs-extra@8.1.0: - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} - engines: {node: '>=6 <7 || >=8'} - - fs-extra@9.1.0: - resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} - engines: {node: '>=10'} - - fs-minipass@2.1.0: - resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} - engines: {node: '>= 8'} - - fs-monkey@1.0.6: - resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==} - - fs-readdir-recursive@1.1.0: - resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==} - - fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - - fsevents@1.2.13: - resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==} - engines: {node: '>= 4.0'} - os: [darwin] - deprecated: The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2 - - fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - - function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - - function.prototype.name@1.1.6: - resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} - engines: {node: '>= 0.4'} - - functional-red-black-tree@1.0.1: - resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} - - functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - - gauge@3.0.2: - resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} - engines: {node: '>=10'} - deprecated: This package is no longer supported. - - gauge@4.0.4: - resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. - - generic-names@4.0.0: - resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} - - gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} - - get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} - - get-intrinsic@1.2.4: - resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} - engines: {node: '>= 0.4'} - - get-npm-tarball-url@2.1.0: - resolution: {integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==} - engines: {node: '>=12.17'} - - get-package-type@0.1.0: - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} - engines: {node: '>=8.0.0'} - - get-pkg-repo@4.2.1: - resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} - engines: {node: '>=6.9.0'} - hasBin: true - - get-port@5.1.1: - resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} - engines: {node: '>=8'} - - get-stdin@4.0.1: - resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==} - engines: {node: '>=0.10.0'} - - get-stream@3.0.0: - resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==} - engines: {node: '>=4'} - - get-stream@4.1.0: - resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} - engines: {node: '>=6'} - - get-stream@5.2.0: - resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} - engines: {node: '>=8'} - - get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} - - get-stream@8.0.1: - resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} - engines: {node: '>=16'} - - get-symbol-description@1.0.2: - resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} - engines: {node: '>= 0.4'} - - get-value@2.0.6: - resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} - engines: {node: '>=0.10.0'} - - getos@3.2.1: - resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} - - getpass@0.1.7: - resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} - - giget@1.2.3: - resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==} - hasBin: true - - git-raw-commits@2.0.11: - resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} - engines: {node: '>=10'} - hasBin: true - - git-remote-origin-url@2.0.0: - resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} - engines: {node: '>=4'} - - git-semver-tags@4.1.1: - resolution: {integrity: sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==} - engines: {node: '>=10'} - hasBin: true - - git-up@7.0.0: - resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} - - git-url-parse@13.1.1: - resolution: {integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==} - - gitconfiglocal@1.0.0: - resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==} - - github-slugger@1.5.0: - resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} - - glob-parent@3.1.0: - resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==} - - glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} - - glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} - - glob-promise@3.4.0: - resolution: {integrity: sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==} - engines: {node: '>=4'} - peerDependencies: - glob: '*' - - glob-to-regexp@0.3.0: - resolution: {integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==} - - glob-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - - glob@10.4.2: - resolution: {integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==} - engines: {node: '>=16 || 14 >=14.18'} - hasBin: true - - glob@7.1.4: - resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} - deprecated: Glob versions prior to v9 are no longer supported - - glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - deprecated: Glob versions prior to v9 are no longer supported - - glob@8.1.0: - resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} - engines: {node: '>=12'} - deprecated: Glob versions prior to v9 are no longer supported - - global-dirs@3.0.1: - resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} - engines: {node: '>=10'} - - global@4.4.0: - resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==} - - globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} - - globals@13.24.0: - resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} - engines: {node: '>=8'} - - globals@9.18.0: - resolution: {integrity: sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==} - engines: {node: '>=0.10.0'} - - globalthis@1.0.4: - resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} - engines: {node: '>= 0.4'} - - globby@10.0.1: - resolution: {integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==} - engines: {node: '>=8'} - - globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} - - globby@12.2.0: - resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - globby@14.0.2: - resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} - engines: {node: '>=18'} - - globby@6.1.0: - resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==} - engines: {node: '>=0.10.0'} - - globby@9.2.0: - resolution: {integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==} - engines: {node: '>=6'} - - gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} - - got@11.8.6: - resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} - engines: {node: '>=10.19.0'} - - got@9.6.0: - resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} - engines: {node: '>=8.6'} - - graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - - grapheme-splitter@1.0.4: - resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} - - graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} - - graphql@15.9.0: - resolution: {integrity: sha512-GCOQdvm7XxV1S4U4CGrsdlEN37245eC8P9zaYCMr6K1BG0IPGy5lUwmJsEOGyl1GD6HXjOtl2keCP9asRBwNvA==} - engines: {node: '>= 10.x'} - - gray-matter@2.1.1: - resolution: {integrity: sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==} - engines: {node: '>=0.10.0'} - - growly@1.3.0: - resolution: {integrity: sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==} - - gulp-header@1.8.12: - resolution: {integrity: sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==} - deprecated: Removed event-stream from gulp-header - - gunzip-maybe@1.4.2: - resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==} - hasBin: true - - gzip-size@6.0.0: - resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} - engines: {node: '>=10'} - - handle-thing@2.0.1: - resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} - - handlebars@4.7.8: - resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} - engines: {node: '>=0.4.7'} - hasBin: true - - hard-rejection@2.1.0: - resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} - engines: {node: '>=6'} - - harmony-reflect@1.6.2: - resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} - - has-ansi@2.0.0: - resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} - engines: {node: '>=0.10.0'} - - has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} - - has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} - - has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} - - has-glob@1.0.0: - resolution: {integrity: sha512-D+8A457fBShSEI3tFCj65PAbT++5sKiFtdCdOam0gnfBgw9D277OERk+HM9qYJXmdVLZ/znez10SqHN0BBQ50g==} - engines: {node: '>=0.10.0'} - - has-property-descriptors@1.0.2: - resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} - - has-proto@1.0.3: - resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} - engines: {node: '>= 0.4'} - - has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} - - has-tostringtag@1.0.2: - resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} - engines: {node: '>= 0.4'} - - has-unicode@2.0.1: - resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} - - has-value@0.3.1: - resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} - engines: {node: '>=0.10.0'} - - has-value@1.0.0: - resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} - engines: {node: '>=0.10.0'} - - has-values@0.1.4: - resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} - engines: {node: '>=0.10.0'} - - has-values@1.0.0: - resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} - engines: {node: '>=0.10.0'} - - has-yarn@2.1.0: - resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==} - engines: {node: '>=8'} - - has@1.0.4: - resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} - engines: {node: '>= 0.4.0'} - - hasha@5.2.2: - resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} - engines: {node: '>=8'} - - hasown@2.0.2: - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} - engines: {node: '>= 0.4'} - - hast-to-hyperscript@9.0.1: - resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==} - - hast-util-from-parse5@6.0.1: - resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==} - - hast-util-parse-selector@2.2.5: - resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==} - - hast-util-raw@6.0.1: - resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==} - - hast-util-to-jsx-runtime@2.3.0: - resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==} - - hast-util-to-parse5@6.0.0: - resolution: {integrity: sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==} - - hast-util-whitespace@3.0.0: - resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} - - hastscript@6.0.0: - resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} - - he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} - hasBin: true - - headers-utils@3.0.2: - resolution: {integrity: sha512-xAxZkM1dRyGV2Ou5bzMxBPNLoRCjcX+ya7KSWybQD2KwLphxsapUVK6x/02o7f4VU6GPSXch9vNY2+gkU8tYWQ==} - - history@4.10.1: - resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==} - - hoist-non-react-statics@2.5.5: - resolution: {integrity: sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==} - - hoist-non-react-statics@3.3.2: - resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} - - hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} - - hosted-git-info@3.0.8: - resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==} - engines: {node: '>=10'} - - hosted-git-info@4.1.0: - resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} - engines: {node: '>=10'} - - hosted-git-info@5.2.1: - resolution: {integrity: sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - hosted-git-info@7.0.2: - resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==} - engines: {node: ^16.14.0 || >=18.0.0} - - hpack.js@2.1.6: - resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} - - html-dom-parser@2.0.0: - resolution: {integrity: sha512-PwVjg12yfWunpH2WjwjaYNKcZyKKm20kclTfMQohiRzfgYiXX0dR7nXIIKnHneghMDvB0rKFZLEAe11ykOfpcg==} - - html-encoding-sniffer@2.0.1: - resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} - engines: {node: '>=10'} - - html-encoding-sniffer@3.0.0: - resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} - engines: {node: '>=12'} - - html-entities@1.4.0: - resolution: {integrity: sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==} - - html-entities@2.5.2: - resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} - - html-escaper@2.0.2: - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} - - html-minifier-terser@5.1.1: - resolution: {integrity: sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==} - engines: {node: '>=6'} - hasBin: true - - html-minifier-terser@6.1.0: - resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} - engines: {node: '>=12'} - hasBin: true - - html-parse-stringify@3.0.1: - resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==} - - html-react-parser@2.0.0: - resolution: {integrity: sha512-AI1lhybWGi8w4QkGtEIS3iSGAjeFGaonxl/+CzqzCeNT3g3z/yx2NKsA93trnv2BLjhe+juGLmLeTSUkyYWk9Q==} - peerDependencies: - react: 0.14 || 15 || 16 || 17 || 18 - - html-tags@3.3.1: - resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} - engines: {node: '>=8'} - - html-url-attributes@3.0.0: - resolution: {integrity: sha512-/sXbVCWayk6GDVg3ctOX6nxaVj7So40FcFAnWlWGNAB1LpYKcV5Cd10APjPjW80O7zYW2MsjBV4zZ7IZO5fVow==} - - html-void-elements@1.0.5: - resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==} - - html-webpack-plugin@4.5.2: - resolution: {integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==} - engines: {node: '>=6.9'} - peerDependencies: - webpack: 5.84.1 - - html-webpack-plugin@5.6.0: - resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==} - engines: {node: '>=10.13.0'} - peerDependencies: - '@rspack/core': 0.x || 1.x - webpack: 5.84.1 - peerDependenciesMeta: - '@rspack/core': - optional: true - webpack: - optional: true - - htmlparser2@3.8.3: - resolution: {integrity: sha512-hBxEg3CYXe+rPIua8ETe7tmG3XDn9B0edOE/e9wH2nLczxzgdu0m0aNHY+5wFZiviLWLdANPJTssa92dMcXQ5Q==} - - htmlparser2@6.1.0: - resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} - - htmlparser2@7.2.0: - resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} - - http-cache-semantics@4.1.1: - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} - - http-deceiver@1.2.7: - resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} - - http-errors@1.6.3: - resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} - engines: {node: '>= 0.6'} - - http-errors@2.0.0: - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: '>= 0.8'} - - http-parser-js@0.5.8: - resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} - - http-proxy-agent@4.0.1: - resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} - engines: {node: '>= 6'} - - http-proxy-agent@5.0.0: - resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} - engines: {node: '>= 6'} - - http-proxy-middleware@0.19.1: - resolution: {integrity: sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==} - engines: {node: '>=4.0.0'} - - http-proxy-middleware@2.0.6: - resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/express': ^4.17.13 - peerDependenciesMeta: - '@types/express': - optional: true - - http-proxy@1.18.1: - resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} - engines: {node: '>=8.0.0'} - - http-server@14.1.1: - resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==} - engines: {node: '>=12'} - hasBin: true - - http-signature@1.3.6: - resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} - engines: {node: '>=0.10'} - - http2-wrapper@1.0.3: - resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} - engines: {node: '>=10.19.0'} - - https-proxy-agent@4.0.0: - resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==} - engines: {node: '>= 6.0.0'} - - https-proxy-agent@5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} - engines: {node: '>= 6'} - - human-id@1.0.2: - resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} - - human-signals@1.1.1: - resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} - engines: {node: '>=8.12.0'} - - human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} - - human-signals@5.0.0: - resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} - engines: {node: '>=16.17.0'} - - humanize-ms@1.2.1: - resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} - - i18next-browser-languagedetector@6.1.8: - resolution: {integrity: sha512-Svm+MduCElO0Meqpj1kJAriTC6OhI41VhlT/A0UPjGoPZBhAHIaGE5EfsHlTpgdH09UVX7rcc72pSDDBeKSQQA==} - - i18next-xhr-backend@3.2.2: - resolution: {integrity: sha512-OtRf2Vo3IqAxsttQbpjYnmMML12IMB5e0fc5B7qKJFLScitYaXa1OhMX0n0X/3vrfFlpHL9Ro/H+ps4Ej2j7QQ==} - deprecated: replaced by i18next-http-backend - - i18next@21.10.0: - resolution: {integrity: sha512-YeuIBmFsGjUfO3qBmMOc0rQaun4mIpGKET5WDwvu8lU7gvwpcariZLNtL0Fzj+zazcHUrlXHiptcFhBMFaxzfg==} - - iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} - - iconv-lite@0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: '>=0.10.0'} - - icss-replace-symbols@1.1.0: - resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} - - icss-utils@2.1.0: - resolution: {integrity: sha512-bsVoyn/1V4R1kYYjLcWLedozAM4FClZUdjE9nIr8uWY7xs78y9DATgwz2wGU7M+7z55KenmmTkN2DVJ7bqzjAA==} - - icss-utils@4.1.1: - resolution: {integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==} - engines: {node: '>= 6'} - - icss-utils@5.1.0: - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - identity-obj-proxy@3.0.0: - resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} - engines: {node: '>=4'} - - ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - - ignore-walk@5.0.1: - resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - ignore@4.0.6: - resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} - engines: {node: '>= 4'} - - ignore@5.3.1: - resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} - engines: {node: '>= 4'} - - image-size@0.5.5: - resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} - engines: {node: '>=0.10.0'} - hasBin: true - - immutable@4.3.6: - resolution: {integrity: sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==} - - import-cwd@2.1.0: - resolution: {integrity: sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==} - engines: {node: '>=4'} - - import-cwd@3.0.0: - resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} - engines: {node: '>=8'} - - import-fresh@2.0.0: - resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} - engines: {node: '>=4'} - - import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} - - import-from@2.1.0: - resolution: {integrity: sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==} - engines: {node: '>=4'} - - import-from@3.0.0: - resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==} - engines: {node: '>=8'} - - import-lazy@2.1.0: - resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==} - engines: {node: '>=4'} - - import-local@2.0.0: - resolution: {integrity: sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==} - engines: {node: '>=6'} - hasBin: true - - import-local@3.1.0: - resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} - engines: {node: '>=8'} - hasBin: true - - imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} - - indent-string@2.1.0: - resolution: {integrity: sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==} - engines: {node: '>=0.10.0'} - - indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} - - infer-owner@1.0.4: - resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} - - inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} - deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. - - inherits@2.0.3: - resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} - - inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - - ini@1.3.8: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - - ini@2.0.0: - resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} - engines: {node: '>=10'} - - init-package-json@3.0.2: - resolution: {integrity: sha512-YhlQPEjNFqlGdzrBfDNRLhvoSgX7iQRgSxgsNknRQ9ITXFT7UMfVMWhBTOh2Y+25lRnGrv5Xz8yZwQ3ACR6T3A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - inline-style-parser@0.1.1: - resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} - - inline-style-parser@0.2.3: - resolution: {integrity: sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==} - - inquirer@8.2.6: - resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} - engines: {node: '>=12.0.0'} - - internal-ip@4.3.0: - resolution: {integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==} - engines: {node: '>=6'} - - internal-slot@1.0.7: - resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} - engines: {node: '>= 0.4'} - - internmap@2.0.3: - resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} - engines: {node: '>=12'} - - interpret@1.4.0: - resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} - engines: {node: '>= 0.10'} - - interpret@2.2.0: - resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==} - engines: {node: '>= 0.10'} - - invariant@2.2.4: - resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} - - ip-address@9.0.5: - resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} - engines: {node: '>= 12'} - - ip-regex@2.1.0: - resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==} - engines: {node: '>=4'} - - ip@1.1.9: - resolution: {integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==} - - ip@2.0.1: - resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==} - - ipaddr.js@1.9.1: - resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} - engines: {node: '>= 0.10'} - - ipaddr.js@2.2.0: - resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==} - engines: {node: '>= 10'} - - is-absolute-url@3.0.3: - resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==} - engines: {node: '>=8'} - - is-accessor-descriptor@1.0.1: - resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==} - engines: {node: '>= 0.10'} - - is-alphabetical@1.0.4: - resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} - - is-alphabetical@2.0.1: - resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} - - is-alphanumerical@1.0.4: - resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} - - is-alphanumerical@2.0.1: - resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} - - is-arguments@1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: '>= 0.4'} - - is-array-buffer@3.0.4: - resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} - engines: {node: '>= 0.4'} - - is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - - is-async-function@2.0.0: - resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} - engines: {node: '>= 0.4'} - - is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} - - is-binary-path@1.0.1: - resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==} - engines: {node: '>=0.10.0'} - - is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} - - is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} - - is-buffer@1.1.6: - resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} - - is-buffer@2.0.5: - resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} - engines: {node: '>=4'} - - is-builtin-module@3.2.1: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} - engines: {node: '>=6'} - - is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} - - is-ci@2.0.0: - resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} - hasBin: true - - is-ci@3.0.1: - resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} - hasBin: true - - is-core-module@2.14.0: - resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==} - engines: {node: '>= 0.4'} - - is-data-descriptor@1.0.1: - resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==} - engines: {node: '>= 0.4'} - - is-data-view@1.0.1: - resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} - engines: {node: '>= 0.4'} - - is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} - - is-decimal@1.0.4: - resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} - - is-decimal@2.0.1: - resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} - - is-deflate@1.0.0: - resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==} - - is-descriptor@0.1.7: - resolution: {integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==} - engines: {node: '>= 0.4'} - - is-descriptor@1.0.3: - resolution: {integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==} - engines: {node: '>= 0.4'} - - is-directory@0.3.1: - resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} - engines: {node: '>=0.10.0'} - - is-docker@2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: '>=8'} - hasBin: true - - is-dom@1.1.0: - resolution: {integrity: sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==} - - is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} - engines: {node: '>=0.10.0'} - - is-extendable@1.0.1: - resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} - engines: {node: '>=0.10.0'} - - is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} - - is-finalizationregistry@1.0.2: - resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} - - is-finite@1.1.0: - resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==} - engines: {node: '>=0.10.0'} - - is-fullwidth-code-point@2.0.0: - resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} - engines: {node: '>=4'} - - is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} - - is-function@1.0.2: - resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==} - - is-generator-fn@2.1.0: - resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} - engines: {node: '>=6'} - - is-generator-function@1.0.10: - resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} - engines: {node: '>= 0.4'} - - is-glob@3.1.0: - resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==} - engines: {node: '>=0.10.0'} - - is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} - - is-gzip@1.0.0: - resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==} - engines: {node: '>=0.10.0'} - - is-hexadecimal@1.0.4: - resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} - - is-hexadecimal@2.0.1: - resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} - - is-installed-globally@0.4.0: - resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} - engines: {node: '>=10'} - - is-interactive@1.0.0: - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} - engines: {node: '>=8'} - - is-lambda@1.0.1: - resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} - - is-lite@0.8.2: - resolution: {integrity: sha512-JZfH47qTsslwaAsqbMI3Q6HNNjUuq6Cmzzww50TdP5Esb6e1y2sK2UAaZZuzfAzpoI2AkxoPQapZdlDuP6Vlsw==} - - is-lite@1.2.1: - resolution: {integrity: sha512-pgF+L5bxC+10hLBgf6R2P4ZZUBOQIIacbdo8YvuCP8/JvsWxG7aZ9p10DYuLtifFci4l3VITphhMlMV4Y+urPw==} - - is-map@2.0.3: - resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} - engines: {node: '>= 0.4'} - - is-module@1.0.0: - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} - - is-nan@1.3.2: - resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} - engines: {node: '>= 0.4'} - - is-negative-zero@2.0.3: - resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} - engines: {node: '>= 0.4'} - - is-node-process@1.2.0: - resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==} - - is-npm@5.0.0: - resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==} - engines: {node: '>=10'} - - is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} - - is-number@2.1.0: - resolution: {integrity: sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==} - engines: {node: '>=0.10.0'} - - is-number@3.0.0: - resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} - engines: {node: '>=0.10.0'} - - is-number@4.0.0: - resolution: {integrity: sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==} - engines: {node: '>=0.10.0'} - - is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} - - is-obj@2.0.0: - resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} - engines: {node: '>=8'} - - is-object@1.0.2: - resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==} - - is-path-cwd@2.2.0: - resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} - engines: {node: '>=6'} - - is-path-in-cwd@2.1.0: - resolution: {integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==} - engines: {node: '>=6'} - - is-path-inside@2.1.0: - resolution: {integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==} - engines: {node: '>=6'} - - is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} - - is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} - - is-plain-obj@2.1.0: - resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} - engines: {node: '>=8'} - - is-plain-obj@3.0.0: - resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} - engines: {node: '>=10'} - - is-plain-obj@4.1.0: - resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} - engines: {node: '>=12'} - - is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: '>=0.10.0'} - - is-plain-object@3.0.1: - resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==} - engines: {node: '>=0.10.0'} - - is-plain-object@5.0.0: - resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} - engines: {node: '>=0.10.0'} - - is-potential-custom-element-name@1.0.1: - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} - - is-promise@2.2.2: - resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} - - is-reference@1.2.1: - resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} - - is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} - - is-set@2.0.3: - resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} - engines: {node: '>= 0.4'} - - is-shared-array-buffer@1.0.3: - resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} - engines: {node: '>= 0.4'} - - is-ssh@1.4.0: - resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} - - is-stream@1.1.0: - resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} - engines: {node: '>=0.10.0'} - - is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} - - is-stream@3.0.0: - resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} - - is-subdir@1.2.0: - resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} - engines: {node: '>=4'} - - is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} - - is-text-path@1.0.1: - resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} - engines: {node: '>=0.10.0'} - - is-typed-array@1.1.13: - resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} - engines: {node: '>= 0.4'} - - is-typedarray@1.0.0: - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} - - is-unicode-supported@0.1.0: - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} - engines: {node: '>=10'} - - is-utf8@0.2.1: - resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} - - is-weakmap@2.0.2: - resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} - engines: {node: '>= 0.4'} - - is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} - - is-weakset@2.0.3: - resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} - engines: {node: '>= 0.4'} - - is-what@3.14.1: - resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} - - is-whitespace-character@1.0.4: - resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==} - - is-window@1.0.2: - resolution: {integrity: sha512-uj00kdXyZb9t9RcAUAwMZAnkBUwdYGhYlt7djMXhfyhUCzwNba50tIiBKR7q0l7tdoBtFVw/3JmLY6fI3rmZmg==} - - is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} - - is-word-character@1.0.4: - resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==} - - is-wsl@1.1.0: - resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} - engines: {node: '>=4'} - - is-wsl@2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: '>=8'} - - is-yarn-global@0.3.0: - resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==} - - isarray@0.0.1: - resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} - - isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} - - isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} - - isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - - isobject@2.1.0: - resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} - engines: {node: '>=0.10.0'} - - isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: '>=0.10.0'} - - isobject@4.0.0: - resolution: {integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==} - engines: {node: '>=0.10.0'} - - isomorphic-unfetch@3.1.0: - resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==} - - isstream@0.1.2: - resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} - - istanbul-lib-coverage@3.2.2: - resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} - engines: {node: '>=8'} - - istanbul-lib-hook@3.0.0: - resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==} - engines: {node: '>=8'} - - istanbul-lib-instrument@4.0.3: - resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} - engines: {node: '>=8'} - - istanbul-lib-instrument@5.2.1: - resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} - engines: {node: '>=8'} - - istanbul-lib-instrument@6.0.3: - resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==} - engines: {node: '>=10'} - - istanbul-lib-processinfo@2.0.3: - resolution: {integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==} - engines: {node: '>=8'} - - istanbul-lib-report@3.0.1: - resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} - engines: {node: '>=10'} - - istanbul-lib-source-maps@4.0.1: - resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} - engines: {node: '>=10'} - - istanbul-reports@3.1.7: - resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} - engines: {node: '>=8'} - - iterate-iterator@1.0.2: - resolution: {integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==} - - iterate-value@1.0.2: - resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==} - - iterator.prototype@1.1.2: - resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} - - jackspeak@3.4.0: - resolution: {integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==} - engines: {node: '>=14'} - - jake@10.9.1: - resolution: {integrity: sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==} - engines: {node: '>=10'} - hasBin: true - - jest-changed-files@26.6.2: - resolution: {integrity: sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==} - engines: {node: '>= 10.14.2'} - - jest-changed-files@29.7.0: - resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-circus@29.7.0: - resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-cli@26.6.3: - resolution: {integrity: sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==} - engines: {node: '>= 10.14.2'} - hasBin: true - - jest-cli@29.7.0: - resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - - jest-config@26.6.3: - resolution: {integrity: sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==} - engines: {node: '>= 10.14.2'} - peerDependencies: - ts-node: '>=9.0.0' - peerDependenciesMeta: - ts-node: - optional: true - - jest-config@29.7.0: - resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true - - jest-diff@26.6.2: - resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==} - engines: {node: '>= 10.14.2'} - - jest-diff@29.7.0: - resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-docblock@26.0.0: - resolution: {integrity: sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==} - engines: {node: '>= 10.14.2'} - - jest-docblock@29.7.0: - resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-each@26.6.2: - resolution: {integrity: sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==} - engines: {node: '>= 10.14.2'} - - jest-each@29.7.0: - resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-environment-jsdom-global@2.0.4: - resolution: {integrity: sha512-1vB8q+PrszXW4Pf7Zgp3eQ4oNVbA7GY6+jmrg1qi6RtYRWDJ60/xdkhjqAbQpX8BRyvqQJYQi66LXER5YNeHXg==} - peerDependencies: - jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x - - jest-environment-jsdom-global@4.0.0: - resolution: {integrity: sha512-qEV8j61oV5XhOBUQbrld2nMYKnp/AGINUaoYTtkwJ9rjvMNRN7ZaZ/dgoPpW83oFtrSiVM1gie6ajdsKFBUlLA==} - engines: {node: '>= 14'} - peerDependencies: - jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x || 27.x || 28.x || 29.x - - jest-environment-jsdom@26.6.2: - resolution: {integrity: sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==} - engines: {node: '>= 10.14.2'} - - jest-environment-jsdom@29.7.0: - resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true - - jest-environment-node@26.6.2: - resolution: {integrity: sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==} - engines: {node: '>= 10.14.2'} - - jest-environment-node@29.7.0: - resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-get-type@26.3.0: - resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==} - engines: {node: '>= 10.14.2'} - - jest-get-type@29.6.3: - resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-haste-map@26.6.2: - resolution: {integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==} - engines: {node: '>= 10.14.2'} - - jest-haste-map@29.7.0: - resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-jasmine2@26.6.3: - resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==} - engines: {node: '>= 10.14.2'} - - jest-leak-detector@26.6.2: - resolution: {integrity: sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==} - engines: {node: '>= 10.14.2'} - - jest-leak-detector@29.7.0: - resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-matcher-utils@26.6.2: - resolution: {integrity: sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==} - engines: {node: '>= 10.14.2'} - - jest-matcher-utils@29.7.0: - resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-message-util@26.6.2: - resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==} - engines: {node: '>= 10.14.2'} - - jest-message-util@29.7.0: - resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-mock@26.6.2: - resolution: {integrity: sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==} - engines: {node: '>= 10.14.2'} - - jest-mock@29.7.0: - resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-pnp-resolver@1.2.3: - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} - engines: {node: '>=6'} - peerDependencies: - jest-resolve: '*' - peerDependenciesMeta: - jest-resolve: - optional: true - - jest-regex-util@26.0.0: - resolution: {integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==} - engines: {node: '>= 10.14.2'} - - jest-regex-util@29.6.3: - resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-resolve-dependencies@26.6.3: - resolution: {integrity: sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==} - engines: {node: '>= 10.14.2'} - - jest-resolve-dependencies@29.7.0: - resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-resolve@26.6.2: - resolution: {integrity: sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==} - engines: {node: '>= 10.14.2'} - - jest-resolve@29.7.0: - resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-runner@26.6.3: - resolution: {integrity: sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==} - engines: {node: '>= 10.14.2'} - - jest-runner@29.7.0: - resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-runtime@26.6.3: - resolution: {integrity: sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==} - engines: {node: '>= 10.14.2'} - hasBin: true - - jest-runtime@29.7.0: - resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-serializer@26.6.2: - resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} - engines: {node: '>= 10.14.2'} - - jest-snapshot@26.6.2: - resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==} - engines: {node: '>= 10.14.2'} - - jest-snapshot@29.7.0: - resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-util@26.6.2: - resolution: {integrity: sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==} - engines: {node: '>= 10.14.2'} - - jest-util@29.7.0: - resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-validate@26.6.2: - resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==} - engines: {node: '>= 10.14.2'} - - jest-validate@29.7.0: - resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-watcher@26.6.2: - resolution: {integrity: sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==} - engines: {node: '>= 10.14.2'} - - jest-watcher@29.7.0: - resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest-worker@26.6.2: - resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} - engines: {node: '>= 10.13.0'} - - jest-worker@27.5.1: - resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} - engines: {node: '>= 10.13.0'} - - jest-worker@28.1.3: - resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - jest-worker@29.7.0: - resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - jest@26.6.3: - resolution: {integrity: sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==} - engines: {node: '>= 10.14.2'} - hasBin: true - - jest@29.4.3: - resolution: {integrity: sha512-XvK65feuEFGZT8OO0fB/QAQS+LGHvQpaadkH5p47/j3Ocqq3xf2pK9R+G0GzgfuhXVxEv76qCOOcMb5efLk6PA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - - jest@29.7.0: - resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - - jju@1.4.0: - resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} - - joi@17.13.3: - resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} - - jose@4.15.7: - resolution: {integrity: sha512-L7ioP+JAuZe8v+T5+zVI9Tx8LtU8BL7NxkyDFVMv+Qr3JW0jSoYDedLtodaXwfqMpeCyx4WXFNyu9tJt4WvC1A==} - - jquery@3.7.1: - resolution: {integrity: sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==} - - js-beautify@1.15.1: - resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==} - engines: {node: '>=14'} - hasBin: true - - js-cookie@3.0.5: - resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} - engines: {node: '>=14'} - - js-levenshtein@1.1.6: - resolution: {integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==} - engines: {node: '>=0.10.0'} - - js-string-escape@1.0.1: - resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} - engines: {node: '>= 0.8'} - - js-tokens@3.0.2: - resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==} - - js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - - js-yaml@3.13.1: - resolution: {integrity: sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==} - hasBin: true - - js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true - - jsbn@0.1.1: - resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} - - jsbn@1.1.0: - resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} - - jscodeshift@0.13.1: - resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==} - hasBin: true - peerDependencies: - '@babel/preset-env': ^7.1.6 - - jscodeshift@0.15.2: - resolution: {integrity: sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==} - hasBin: true - peerDependencies: - '@babel/preset-env': ^7.1.6 - peerDependenciesMeta: - '@babel/preset-env': - optional: true - - jsdom@16.7.0: - resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} - engines: {node: '>=10'} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true - - jsdom@20.0.3: - resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} - engines: {node: '>=14'} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true - - jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} - hasBin: true - - jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} - hasBin: true - - jshint@2.13.6: - resolution: {integrity: sha512-IVdB4G0NTTeQZrBoM8C5JFVLjV2KtZ9APgybDA1MK73xb09qFs0jCXyQLnCOp1cSZZZbvhq/6mfXHUTaDkffuQ==} - hasBin: true - - json-buffer@3.0.0: - resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} - - json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - - json-minimizer-webpack-plugin@4.0.0: - resolution: {integrity: sha512-PJaNiSeZlZStdyLtJo/QOOC7uHRW9qvc//7F8M0ZH1huPSvmX5kR2qrq2Tn1ODYLi128bTkKepqtgYmtEOkPzQ==} - engines: {node: '>= 14.15.0'} - peerDependencies: - webpack: 5.84.1 - - json-minimizer-webpack-plugin@5.0.0: - resolution: {integrity: sha512-GT/SZolN2p405EMGjMTBvAVi2+y035p1tSOuLpWbp5QTMl080OHx4DEGXfUH6vbnGw5Z/QKfBe+KpP9Dj0qLmA==} - engines: {node: '>= 18.12.0'} - peerDependencies: - webpack: 5.84.1 - - json-parse-better-errors@1.0.2: - resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} - - json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - - json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} - - json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} - - json-schema@0.4.0: - resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} - - json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - - json-stringify-nice@1.1.4: - resolution: {integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==} - - json-stringify-safe@5.0.1: - resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} - - json5@1.0.2: - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} - hasBin: true - - json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} - hasBin: true - - jsonc-eslint-parser@2.4.0: - resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - jsonc-parser@3.2.0: - resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} - - jsonfile@4.0.0: - resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} - - jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} - - jsonparse@1.3.1: - resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} - engines: {'0': node >= 0.2.0} - - jsprim@2.0.2: - resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==} - engines: {'0': node >=0.6.0} - - jsrsasign@10.9.0: - resolution: {integrity: sha512-QWLUikj1SBJGuyGK8tjKSx3K7Y69KYJnrs/pQ1KZ6wvZIkHkWjZ1PJDpuvc1/28c1uP0KW9qn1eI1LzHQqDOwQ==} - - jsx-ast-utils@3.3.5: - resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} - engines: {node: '>=4.0'} - - junk@3.1.0: - resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==} - engines: {node: '>=8'} - - just-diff-apply@5.5.0: - resolution: {integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==} - - just-diff@5.2.0: - resolution: {integrity: sha512-6ufhP9SHjb7jibNFrNxyFZ6od3g+An6Ai9mhGRvcYe8UJlH0prseN64M+6ZBBUoKYHZsitDP42gAJ8+eVWr3lw==} - - keyboard-key@1.1.0: - resolution: {integrity: sha512-qkBzPTi3rlAKvX7k0/ub44sqOfXeLc/jcnGGmj5c7BJpU8eDrEVPyhCvNYAaoubbsLm9uGWwQJO1ytQK1a9/dQ==} - - keyv@3.1.0: - resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} - - keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} - - killable@1.0.1: - resolution: {integrity: sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==} - - kind-of@2.0.1: - resolution: {integrity: sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==} - engines: {node: '>=0.10.0'} - - kind-of@3.2.2: - resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} - engines: {node: '>=0.10.0'} - - kind-of@4.0.0: - resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} - engines: {node: '>=0.10.0'} - - kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} - - kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: '>=6'} - - kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} - - klona@2.0.6: - resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} - engines: {node: '>= 8'} - - language-subtag-registry@0.3.23: - resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} - - language-tags@1.0.9: - resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} - engines: {node: '>=0.10'} - - latest-version@5.1.0: - resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==} - engines: {node: '>=8'} - - launch-editor@2.8.0: - resolution: {integrity: sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==} - - lazy-ass@1.6.0: - resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==} - engines: {node: '> 0.8'} - - lazy-cache@0.2.7: - resolution: {integrity: sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==} - engines: {node: '>=0.10.0'} - - lazy-cache@1.0.4: - resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==} - engines: {node: '>=0.10.0'} - - lazy-cache@2.0.2: - resolution: {integrity: sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==} - engines: {node: '>=0.10.0'} - - lazy-universal-dotenv@3.0.1: - resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==} - engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'} - - lazy-universal-dotenv@4.0.0: - resolution: {integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==} - engines: {node: '>=14.0.0'} - - lerna@5.6.2: - resolution: {integrity: sha512-Y0yMPslvnBnTZi7Nrs/gDyYZYauNf61xWNCehISHIORxZmmpoluNkcWTfcyb47is5uJQCv5QJX5xKKubbs+a6w==} - engines: {node: ^14.15.0 || >=16.0.0} - hasBin: true - - less-loader@11.1.0: - resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==} - engines: {node: '>= 14.15.0'} - peerDependencies: - less: ^3.5.0 || ^4.0.0 - webpack: 5.84.1 - - less-loader@5.0.0: - resolution: {integrity: sha512-bquCU89mO/yWLaUq0Clk7qCsKhsF/TZpJUzETRvJa9KSVEL9SO3ovCvdEHISBhrC81OwC8QSVX7E0bzElZj9cg==} - engines: {node: '>= 4.8.0'} - peerDependencies: - less: ^2.3.1 || ^3.0.0 - webpack: 5.84.1 - - less-plugin-inline-urls@1.2.0: - resolution: {integrity: sha512-QS9MLcg8Lo6ZHVS+9kncmHeLypIdnFgG/neqV3RPkXfiiSCJHn/jTQHKnXfDEL/F/JM+z6MQ6ukWr/xsOChHTA==} - engines: {node: '>=0.4.2'} - - less-plugin-npm-import@2.1.0: - resolution: {integrity: sha512-f7pVkEooRq2/jge/M/Y+spoPXj5rRIY30q1as+3kZsDG8Rs+loNJUCVQjzXB9Ao/9FeIJULiq2zrXymv+OMTbw==} - engines: {node: '>=0.4.2'} - - less-plugin-rewrite-import@0.1.1: - resolution: {integrity: sha512-8FnuGhF0rS6P9DkaEH2+6pphx7pJ9hV4mHF2MhsXKSXNvwTVX9YCt5HnX99mhTOyQzc+2hu5JPPoRl/b9DAwuQ==} - - less-plugin-rewrite-variable@0.1.0: - resolution: {integrity: sha512-cpIa1+wHssZRt2aUnoWODfDB0z0QM8ir9ZS/18802bX9S4+6s+/HXaK92C3VznniPjviKhA3u8o4/0K9HK0nEw==} - engines: {node: '>=0.4.2'} - - less-to-json@1.2.0: - resolution: {integrity: sha512-1ItmxVFw76yiQgr2MUTGy7bTHT2tT6CcZ28grgw/gWNy2Q3WwFfSHL88sWUBpTXGFonlKd2yCDhtJFJdGjzqHA==} - hasBin: true - - less-vars-to-js@1.3.0: - resolution: {integrity: sha512-xeiLLn/IMCGtdyCkYQnW8UuzoW2oYMCKg9boZRaGI58fLz5r90bNJDlqGzmVt/1Uqk75/DxIVtQSNCMkE5fRZQ==} - engines: {node: '>=8'} - - less@3.13.1: - resolution: {integrity: sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==} - engines: {node: '>=6'} - hasBin: true - - less@4.1.3: - resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==} - engines: {node: '>=6'} - hasBin: true - - leven@3.1.0: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} - engines: {node: '>=6'} - - levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} - - libnpmaccess@6.0.4: - resolution: {integrity: sha512-qZ3wcfIyUoW0+qSFkMBovcTrSGJ3ZeyvpR7d5N9pEYv/kXs8sHP2wiqEIXBKLFrZlmM0kR0RJD7mtfLngtlLag==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - libnpmpublish@6.0.5: - resolution: {integrity: sha512-LUR08JKSviZiqrYTDfywvtnsnxr+tOvBU0BF8H+9frt7HMvc6Qn6F8Ubm72g5hDTHbq8qupKfDvDAln2TVPvFg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - license-webpack-plugin@4.0.2: - resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==} - peerDependencies: - webpack: '*' - peerDependenciesMeta: - webpack: - optional: true - - lilconfig@2.1.0: - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} - engines: {node: '>=10'} - - lilconfig@3.1.2: - resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} - engines: {node: '>=14'} - - lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - - lines-and-columns@2.0.4: - resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - list-item@1.1.1: - resolution: {integrity: sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==} - engines: {node: '>=0.10.0'} - - listr2@3.14.0: - resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==} - engines: {node: '>=10.0.0'} - peerDependencies: - enquirer: '>= 2.3.0 < 3' - peerDependenciesMeta: - enquirer: - optional: true - - load-json-file@1.1.0: - resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==} - engines: {node: '>=0.10.0'} - - load-json-file@4.0.0: - resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} - engines: {node: '>=4'} - - load-json-file@6.2.0: - resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==} - engines: {node: '>=8'} - - load-yaml-file@0.2.0: - resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} - engines: {node: '>=6'} - - loader-runner@2.4.0: - resolution: {integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==} - engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} - - loader-runner@4.3.0: - resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} - engines: {node: '>=6.11.5'} - - loader-utils@1.4.2: - resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} - engines: {node: '>=4.0.0'} - - loader-utils@2.0.4: - resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} - engines: {node: '>=8.9.0'} - - loader-utils@3.3.1: - resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} - engines: {node: '>= 12.13.0'} - - locate-path@2.0.0: - resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} - engines: {node: '>=4'} - - locate-path@3.0.0: - resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} - engines: {node: '>=6'} - - locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} - - locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} - - locate-path@7.2.0: - resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - lodash-es@4.17.21: - resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} - - lodash._reinterpolate@3.0.0: - resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==} - - lodash.camelcase@4.3.0: - resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} - - lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - - lodash.flattendeep@4.4.0: - resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} - - lodash.ismatch@4.4.0: - resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} - - lodash.isplainobject@4.0.6: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} - - lodash.memoize@4.1.2: - resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} - - lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - - lodash.once@4.1.1: - resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} - - lodash.startcase@4.4.0: - resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} - - lodash.template@4.5.0: - resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==} - - lodash.templatesettings@4.2.0: - resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==} - - lodash.truncate@4.4.2: - resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} - - lodash.uniq@4.5.0: - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} - - lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - - log-symbols@2.2.0: - resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==} - engines: {node: '>=4'} - - log-symbols@4.1.0: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} - engines: {node: '>=10'} - - log-update@4.0.0: - resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} - engines: {node: '>=10'} - - log4js@4.5.1: - resolution: {integrity: sha512-EEEgFcE9bLgaYUKuozyFfytQM2wDHtXn4tAN41pkaxpNjAykv11GVdeI4tHtmPWW4Xrgh9R/2d7XYghDVjbKKw==} - engines: {node: '>=6.0'} - deprecated: 4.x is no longer supported. Please upgrade to 6.x or higher. - - loglevel@1.9.1: - resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==} - engines: {node: '>= 0.6.0'} - - loglevelnext@1.0.5: - resolution: {integrity: sha512-V/73qkPuJmx4BcBF19xPBr+0ZRVBhc4POxvZTZdMeXpJ4NItXSJ/MSwuFT0kQJlCbXvdlZoQQ/418bS1y9Jh6A==} - engines: {node: '>= 6'} - - longest-streak@3.1.0: - resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} - - loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} - hasBin: true - - loud-rejection@1.6.0: - resolution: {integrity: sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==} - engines: {node: '>=0.10.0'} - - lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} - - lowercase-keys@1.0.1: - resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} - engines: {node: '>=0.10.0'} - - lowercase-keys@2.0.0: - resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} - engines: {node: '>=8'} - - lru-cache@10.4.3: - resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} - - lru-cache@4.1.5: - resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} - - lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} - - lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} - - lru-cache@7.18.3: - resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} - engines: {node: '>=12'} - - lz-string@1.5.0: - resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} - hasBin: true - - magic-string@0.25.9: - resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} - - magic-string@0.30.10: - resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} - - make-dir@2.1.0: - resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} - engines: {node: '>=6'} - - make-dir@3.1.0: - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} - engines: {node: '>=8'} - - make-dir@4.0.0: - resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} - engines: {node: '>=10'} - - make-error@1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - - make-fetch-happen@10.2.1: - resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - makeerror@1.0.12: - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} - - map-age-cleaner@0.1.3: - resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==} - engines: {node: '>=6'} - - map-cache@0.2.2: - resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} - engines: {node: '>=0.10.0'} - - map-obj@1.0.1: - resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} - engines: {node: '>=0.10.0'} - - map-obj@4.3.0: - resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} - engines: {node: '>=8'} - - map-or-similar@1.5.0: - resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} - - map-visit@1.0.0: - resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} - engines: {node: '>=0.10.0'} - - markdown-escapes@1.0.4: - resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==} - - markdown-link@0.1.1: - resolution: {integrity: sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==} - engines: {node: '>=0.10.0'} - - markdown-toc@1.2.0: - resolution: {integrity: sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==} - engines: {node: '>=0.10.0'} - hasBin: true - - material-colors@1.2.6: - resolution: {integrity: sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==} - - math-random@1.0.4: - resolution: {integrity: sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==} - - mdast-squeeze-paragraphs@4.0.0: - resolution: {integrity: sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==} - - mdast-util-definitions@4.0.0: - resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==} - - mdast-util-from-markdown@2.0.1: - resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==} - - mdast-util-mdx-expression@2.0.0: - resolution: {integrity: sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==} - - mdast-util-mdx-jsx@3.1.2: - resolution: {integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==} - - mdast-util-mdxjs-esm@2.0.1: - resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==} - - mdast-util-phrasing@4.1.0: - resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} - - mdast-util-to-hast@10.0.1: - resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==} - - mdast-util-to-hast@13.2.0: - resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} - - mdast-util-to-markdown@2.1.0: - resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==} - - mdast-util-to-string@1.1.0: - resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==} - - mdast-util-to-string@4.0.0: - resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} - - mdn-data@2.0.14: - resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} - - mdn-data@2.0.28: - resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} - - mdn-data@2.0.30: - resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} - - mdn-data@2.0.4: - resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} - - mdurl@1.0.1: - resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} - - media-typer@0.3.0: - resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} - engines: {node: '>= 0.6'} - - mem@8.1.1: - resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==} - engines: {node: '>=10'} - - memfs@3.5.3: - resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} - engines: {node: '>= 4.0.0'} - - memoize-one@5.2.1: - resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} - - memoizerific@1.11.3: - resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==} - - memory-fs@0.4.1: - resolution: {integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==} - - memory-fs@0.5.0: - resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==} - engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} - - meow@3.7.0: - resolution: {integrity: sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==} - engines: {node: '>=0.10.0'} - - meow@6.1.1: - resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} - engines: {node: '>=8'} - - meow@8.1.2: - resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} - engines: {node: '>=10'} - - merge-anything@2.4.4: - resolution: {integrity: sha512-l5XlriUDJKQT12bH+rVhAHjwIuXWdAIecGwsYjv2LJo+dA1AeRTmeQS+3QBpO6lEthBMDi2IUMpLC1yyRvGlwQ==} - - merge-deep@3.0.3: - resolution: {integrity: sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==} - engines: {node: '>=0.10.0'} - - merge-descriptors@1.0.1: - resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} - - merge-files@0.1.2: - resolution: {integrity: sha512-WTvtH6ZwVy1/scvp1M+Re6PVni87QTjpSLAwxh0L+PlYIxc4VGFFpLjvP7jdJ43gaJ5n+RUIriJ6wKqmqvVVmg==} - - merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} - - merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} - - merge@1.2.1: - resolution: {integrity: sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==} - - methods@1.1.2: - resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} - engines: {node: '>= 0.6'} - - microevent.ts@0.1.1: - resolution: {integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==} - - micromark-core-commonmark@2.0.1: - resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==} - - micromark-factory-destination@2.0.0: - resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==} - - micromark-factory-label@2.0.0: - resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==} - - micromark-factory-space@2.0.0: - resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==} - - micromark-factory-title@2.0.0: - resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==} - - micromark-factory-whitespace@2.0.0: - resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==} - - micromark-util-character@2.1.0: - resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} - - micromark-util-chunked@2.0.0: - resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==} - - micromark-util-classify-character@2.0.0: - resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==} - - micromark-util-combine-extensions@2.0.0: - resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==} - - micromark-util-decode-numeric-character-reference@2.0.1: - resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==} - - micromark-util-decode-string@2.0.0: - resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==} - - micromark-util-encode@2.0.0: - resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==} - - micromark-util-html-tag-name@2.0.0: - resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==} - - micromark-util-normalize-identifier@2.0.0: - resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==} - - micromark-util-resolve-all@2.0.0: - resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==} - - micromark-util-sanitize-uri@2.0.0: - resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} - - micromark-util-subtokenize@2.0.1: - resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==} - - micromark-util-symbol@2.0.0: - resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==} - - micromark-util-types@2.0.0: - resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==} - - micromark@4.0.0: - resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} - - micromatch@3.1.10: - resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} - engines: {node: '>=0.10.0'} - - micromatch@4.0.7: - resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} - engines: {node: '>=8.6'} - - mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} - - mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} - - mime@1.6.0: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} - engines: {node: '>=4'} - hasBin: true - - mime@2.6.0: - resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} - engines: {node: '>=4.0.0'} - hasBin: true - - mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} - - mimic-fn@3.1.0: - resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} - engines: {node: '>=8'} - - mimic-fn@4.0.0: - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} - engines: {node: '>=12'} - - mimic-response@1.0.1: - resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} - engines: {node: '>=4'} - - mimic-response@3.1.0: - resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} - engines: {node: '>=10'} - - min-document@2.19.0: - resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==} - - min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} - - mini-css-extract-plugin@0.4.5: - resolution: {integrity: sha512-dqBanNfktnp2hwL2YguV9Jh91PFX7gu7nRLs4TGsbAfAG6WOtlynFRYzwDwmmeSb5uIwHo9nx1ta0f7vAZVp2w==} - engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 - - mini-css-extract-plugin@2.4.7: - resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: 5.84.1 - - mini-svg-data-uri@1.4.4: - resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} - hasBin: true - - minimalistic-assert@1.0.1: - resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} - - minimatch@3.0.5: - resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} - - minimatch@3.0.8: - resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==} - - minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} - - minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} - - minimatch@9.0.1: - resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} - engines: {node: '>=16 || 14 >=14.17'} - - minimatch@9.0.5: - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} - engines: {node: '>=16 || 14 >=14.17'} - - minimist-options@4.1.0: - resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} - engines: {node: '>= 6'} - - minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - - minipass-collect@1.0.2: - resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} - engines: {node: '>= 8'} - - minipass-fetch@2.1.2: - resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - minipass-flush@1.0.5: - resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} - engines: {node: '>= 8'} - - minipass-json-stream@1.0.1: - resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==} - - minipass-pipeline@1.2.4: - resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} - engines: {node: '>=8'} - - minipass-sized@1.0.3: - resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} - engines: {node: '>=8'} - - minipass@3.3.6: - resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} - engines: {node: '>=8'} - - minipass@5.0.0: - resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} - engines: {node: '>=8'} - - minipass@7.1.2: - resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} - engines: {node: '>=16 || 14 >=14.17'} - - minizlib@2.1.2: - resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} - engines: {node: '>= 8'} - - mixin-deep@1.3.2: - resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} - engines: {node: '>=0.10.0'} - - mixin-object@2.0.1: - resolution: {integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==} - engines: {node: '>=0.10.0'} - - mixme@0.5.10: - resolution: {integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==} - engines: {node: '>= 8.0.0'} - - mkdirp-classic@0.5.3: - resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} - - mkdirp-infer-owner@2.0.0: - resolution: {integrity: sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==} - engines: {node: '>=10'} - - mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} - hasBin: true - - mkdirp@1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: '>=10'} - hasBin: true - - mlly@1.7.1: - resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==} - - modify-values@1.0.1: - resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} - engines: {node: '>=0.10.0'} - - moment@2.30.1: - resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==} - - monaco-editor@0.50.0: - resolution: {integrity: sha512-8CclLCmrRRh+sul7C08BmPBP3P8wVWfBHomsTcndxg5NRCEPfu/mc2AGU8k37ajjDVXcXFc12ORAMUkmk+lkFA==} - - mrmime@2.0.0: - resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} - engines: {node: '>=10'} - - ms@2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} - - ms@2.1.1: - resolution: {integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==} - - ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} - - ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - - msw@0.36.8: - resolution: {integrity: sha512-K7lOQoYqhGhTSChsmHMQbf/SDCsxh/m0uhN6Ipt206lGoe81fpTmaGD0KLh4jUxCONMOUnwCSj0jtX2CM4pEdw==} - hasBin: true - - multicast-dns-service-types@1.1.0: - resolution: {integrity: sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==} - - multicast-dns@6.2.3: - resolution: {integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==} - hasBin: true - - multicast-dns@7.2.5: - resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} - hasBin: true - - multimatch@5.0.0: - resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} - engines: {node: '>=10'} - - multistream@2.1.1: - resolution: {integrity: sha512-xasv76hl6nr1dEy3lPvy7Ej7K/Lx3O/FCvwge8PeVJpciPPoNCbaANcNiBug3IpdvTveZUcAV0DJzdnUDMesNQ==} - - mustache@4.2.0: - resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} - hasBin: true - - mute-stream@0.0.8: - resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} - - nan@2.20.0: - resolution: {integrity: sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==} - - nanoid@3.3.7: - resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - - nanomatch@1.2.13: - resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} - engines: {node: '>=0.10.0'} - - native-request@1.1.0: - resolution: {integrity: sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==} - - native-url@0.2.6: - resolution: {integrity: sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==} - - natural-compare-lite@1.4.0: - resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} - - natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - - needle@3.3.1: - resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==} - engines: {node: '>= 4.4.x'} - hasBin: true - - negotiator@0.6.3: - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} - engines: {node: '>= 0.6'} - - neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - - nested-error-stacks@2.1.1: - resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==} - - next-tick@1.1.0: - resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} - - nice-try@1.0.5: - resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} - - no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} - - node-abort-controller@3.1.1: - resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} - - node-addon-api@3.2.1: - resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} - - node-dir@0.1.17: - resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} - engines: {node: '>= 0.10.5'} - - node-fetch-native@1.6.4: - resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==} - - node-fetch@2.7.0: - resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true - - node-forge@0.10.0: - resolution: {integrity: sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==} - engines: {node: '>= 6.0.0'} - - node-forge@1.3.1: - resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} - engines: {node: '>= 6.13.0'} - - node-gyp-build@4.8.1: - resolution: {integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==} - hasBin: true - - node-gyp@9.4.1: - resolution: {integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==} - engines: {node: ^12.13 || ^14.13 || >=16} - hasBin: true - - node-int64@0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - - node-machine-id@1.1.12: - resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} - - node-notifier@8.0.2: - resolution: {integrity: sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==} - - node-preload@0.2.1: - resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} - engines: {node: '>=8'} - - node-releases@2.0.14: - resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} - - nopt@5.0.0: - resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} - engines: {node: '>=6'} - hasBin: true - - nopt@6.0.0: - resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true - - nopt@7.2.1: - resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true - - normalize-package-data@2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} - - normalize-package-data@3.0.3: - resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} - engines: {node: '>=10'} - - normalize-package-data@4.0.1: - resolution: {integrity: sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - normalize-path@2.1.1: - resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} - engines: {node: '>=0.10.0'} - - normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} - - normalize-range@0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} - - normalize-url@4.5.1: - resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} - engines: {node: '>=8'} - - normalize-url@6.1.0: - resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} - engines: {node: '>=10'} - - npm-bundled@1.1.2: - resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==} - - npm-bundled@2.0.1: - resolution: {integrity: sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - npm-install-checks@5.0.0: - resolution: {integrity: sha512-65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - npm-normalize-package-bin@1.0.1: - resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} - - npm-normalize-package-bin@2.0.0: - resolution: {integrity: sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - npm-package-arg@11.0.1: - resolution: {integrity: sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==} - engines: {node: ^16.14.0 || >=18.0.0} - - npm-package-arg@8.1.1: - resolution: {integrity: sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==} - engines: {node: '>=10'} - - npm-package-arg@9.1.2: - resolution: {integrity: sha512-pzd9rLEx4TfNJkovvlBSLGhq31gGu2QDexFPWT19yCDh0JgnRhlBLNo5759N0AJmBk+kQ9Y/hXoLnlgFD+ukmg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - npm-packlist@5.1.3: - resolution: {integrity: sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true - - npm-pick-manifest@7.0.2: - resolution: {integrity: sha512-gk37SyRmlIjvTfcYl6RzDbSmS9Y4TOBXfsPnoYqTHARNgWbyDiCSMLUpmALDj4jjcTZpURiEfsSHJj9k7EV4Rw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - npm-registry-fetch@13.3.1: - resolution: {integrity: sha512-eukJPi++DKRTjSBRcDZSDDsGqRK3ehbxfFUcgaRd0Yp6kRwOwh2WVn0r+8rMB4nnuzvAk6rQVzl6K5CkYOmnvw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - npm-run-path@2.0.2: - resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} - engines: {node: '>=4'} - - npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} - - npm-run-path@5.3.0: - resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - npmlog@5.0.1: - resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} - deprecated: This package is no longer supported. - - npmlog@6.0.2: - resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. - - nth-check@1.0.2: - resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} - - nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} - - num2fraction@1.2.2: - resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==} - - nwsapi@2.2.12: - resolution: {integrity: sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==} - - nx@15.9.3: - resolution: {integrity: sha512-GLwbykfTABc7/UZjQEEnV1bQbTVC53W+Zj4xWY640/45I4iZf/TUqKMBCgtLZ9v89gEsKOM4zsx55CqHT3bekA==} - hasBin: true - peerDependencies: - '@swc-node/register': ^1.4.2 - '@swc/core': ^1.2.173 - peerDependenciesMeta: - '@swc-node/register': - optional: true - '@swc/core': - optional: true - - nx@17.0.0: - resolution: {integrity: sha512-FLRcKQyrwauwyeb/biBctKFAOkjjnfXQ2hE7uNuitDxWEdD7mejrrsZYOr++KUyjkbxmq/t3TtBQiZXHosShaA==} - hasBin: true - peerDependencies: - '@swc-node/register': ^1.6.7 - '@swc/core': ^1.3.85 - peerDependenciesMeta: - '@swc-node/register': - optional: true - '@swc/core': - optional: true - - nyc@15.1.0: - resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} - engines: {node: '>=8.9'} - hasBin: true - - nypm@0.3.9: - resolution: {integrity: sha512-BI2SdqqTHg2d4wJh8P9A1W+bslg33vOE9IZDY6eR2QC+Pu1iNBVZUqczrd43rJb+fMzHU7ltAYKsEFY/kHMFcw==} - engines: {node: ^14.16.0 || >=16.10.0} - hasBin: true - - object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} - - object-copy@0.1.0: - resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} - engines: {node: '>=0.10.0'} - - object-inspect@1.13.2: - resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} - engines: {node: '>= 0.4'} - - object-is@1.1.6: - resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} - engines: {node: '>= 0.4'} - - object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} - - object-visit@1.0.1: - resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} - engines: {node: '>=0.10.0'} - - object.assign@4.1.5: - resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} - engines: {node: '>= 0.4'} - - object.entries@1.1.8: - resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} - engines: {node: '>= 0.4'} - - object.fromentries@2.0.8: - resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} - engines: {node: '>= 0.4'} - - object.getownpropertydescriptors@2.1.8: - resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==} - engines: {node: '>= 0.8'} - - object.groupby@1.0.3: - resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} - engines: {node: '>= 0.4'} - - object.hasown@1.1.4: - resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} - engines: {node: '>= 0.4'} - - object.pick@1.3.0: - resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} - engines: {node: '>=0.10.0'} - - object.values@1.2.0: - resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} - engines: {node: '>= 0.4'} - - objectorarray@1.0.5: - resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==} - - obuf@1.1.2: - resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} - - ohash@1.1.3: - resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} - - on-finished@2.4.1: - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} - engines: {node: '>= 0.8'} - - on-headers@1.0.2: - resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} - engines: {node: '>= 0.8'} - - once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} - - onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} - - onetime@6.0.0: - resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} - engines: {node: '>=12'} - - open@7.4.2: - resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} - engines: {node: '>=8'} - - open@8.4.2: - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} - engines: {node: '>=12'} - - opener@1.5.2: - resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} - hasBin: true - - opn@5.5.0: - resolution: {integrity: sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==} - engines: {node: '>=4'} - - optionator@0.9.4: - resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} - engines: {node: '>= 0.8.0'} - - ora@5.3.0: - resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==} - engines: {node: '>=10'} - - ora@5.4.1: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} - engines: {node: '>=10'} - - os-filter-obj@2.0.0: - resolution: {integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==} - engines: {node: '>=4'} - - os-homedir@1.0.2: - resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} - engines: {node: '>=0.10.0'} - - os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} - - ospath@1.2.2: - resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==} - - outdent@0.5.0: - resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} - - outvariant@1.4.2: - resolution: {integrity: sha512-Ou3dJ6bA/UJ5GVHxah4LnqDwZRwAmWxrG3wtrHrbGnP4RnLCtA64A4F+ae7Y8ww660JaddSoArUR5HjipWSHAQ==} - - p-all@2.1.0: - resolution: {integrity: sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==} - engines: {node: '>=6'} - - p-cancelable@1.1.0: - resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} - engines: {node: '>=6'} - - p-cancelable@2.1.1: - resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} - engines: {node: '>=8'} - - p-defer@1.0.0: - resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} - engines: {node: '>=4'} - - p-each-series@2.2.0: - resolution: {integrity: sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==} - engines: {node: '>=8'} - - p-event@4.2.0: - resolution: {integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==} - engines: {node: '>=8'} - - p-filter@2.1.0: - resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} - engines: {node: '>=8'} - - p-finally@1.0.0: - resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} - engines: {node: '>=4'} - - p-limit@1.3.0: - resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} - engines: {node: '>=4'} - - p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} - - p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} - - p-limit@4.0.0: - resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - p-locate@2.0.0: - resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} - engines: {node: '>=4'} - - p-locate@3.0.0: - resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} - engines: {node: '>=6'} - - p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} - - p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} - - p-locate@6.0.0: - resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - p-map-series@2.1.0: - resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==} - engines: {node: '>=8'} - - p-map@2.1.0: - resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} - engines: {node: '>=6'} - - p-map@3.0.0: - resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} - engines: {node: '>=8'} - - p-map@4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} - - p-pipe@3.1.0: - resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==} - engines: {node: '>=8'} - - p-queue@6.6.2: - resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} - engines: {node: '>=8'} - - p-reduce@2.1.0: - resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} - engines: {node: '>=8'} - - p-retry@3.0.1: - resolution: {integrity: sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==} - engines: {node: '>=6'} - - p-retry@4.6.2: - resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} - engines: {node: '>=8'} - - p-timeout@3.2.0: - resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} - engines: {node: '>=8'} - - p-try@1.0.0: - resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} - engines: {node: '>=4'} - - p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} - - p-waterfall@2.1.1: - resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==} - engines: {node: '>=8'} - - package-hash@4.0.0: - resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} - engines: {node: '>=8'} - - package-json-from-dist@1.0.0: - resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} - - package-json@6.5.0: - resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} - engines: {node: '>=8'} - - pacote@13.6.2: - resolution: {integrity: sha512-Gu8fU3GsvOPkak2CkbojR7vjs3k3P9cA6uazKTHdsdV0gpCEQq2opelnEv30KRQWgVzP5Vd/5umjcedma3MKtg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - hasBin: true - - pako@0.2.9: - resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} - - param-case@3.0.4: - resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} - - parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} - - parse-conflict-json@2.0.2: - resolution: {integrity: sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - parse-entities@2.0.0: - resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} - - parse-entities@4.0.1: - resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} - - parse-json@2.2.0: - resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==} - engines: {node: '>=0.10.0'} - - parse-json@4.0.0: - resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} - engines: {node: '>=4'} - - parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} - - parse-node-version@1.0.1: - resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} - engines: {node: '>= 0.10'} - - parse-path@7.0.0: - resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} - - parse-url@8.1.0: - resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} - - parse5@4.0.0: - resolution: {integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==} - - parse5@6.0.1: - resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} - - parse5@7.1.2: - resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} - - parseurl@1.3.3: - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} - engines: {node: '>= 0.8'} - - pascal-case@3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} - - pascalcase@0.1.1: - resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} - engines: {node: '>=0.10.0'} - - path-browserify@1.0.1: - resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} - - path-dirname@1.0.2: - resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==} - - path-exists@2.1.0: - resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==} - engines: {node: '>=0.10.0'} - - path-exists@3.0.0: - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} - engines: {node: '>=4'} - - path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} - - path-exists@5.0.0: - resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} - - path-is-inside@1.0.2: - resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==} - - path-key@2.0.1: - resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} - engines: {node: '>=4'} - - path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} - - path-key@4.0.0: - resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} - engines: {node: '>=12'} - - path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - - path-scurry@1.11.1: - resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} - engines: {node: '>=16 || 14 >=14.18'} - - path-to-regexp@0.1.7: - resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} - - path-to-regexp@1.8.0: - resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==} - - path-to-regexp@6.2.2: - resolution: {integrity: sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==} - - path-type@1.1.0: - resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==} - engines: {node: '>=0.10.0'} - - path-type@3.0.0: - resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} - engines: {node: '>=4'} - - path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} - - path-type@5.0.0: - resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} - engines: {node: '>=12'} - - path@0.12.7: - resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} - - pathe@1.1.2: - resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} - - peek-readable@5.1.1: - resolution: {integrity: sha512-4hEOSH7KeEaZpMDF/xfm1W9fS5rT7Ett3BkXWHqAEzRLLwLaHkwOL+GvvpIEh9UrvX9BDhzfkvteslgraoH69w==} - engines: {node: '>=14.16'} - - peek-stream@1.1.3: - resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==} - - pend@1.2.0: - resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} - - performance-now@2.1.0: - resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} - - picocolors@0.2.1: - resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==} - - picocolors@1.0.1: - resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} - - picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} - - pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} - - pify@3.0.0: - resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} - engines: {node: '>=4'} - - pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} - - pify@5.0.0: - resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} - engines: {node: '>=10'} - - pinkie-promise@2.0.1: - resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==} - engines: {node: '>=0.10.0'} - - pinkie@2.0.4: - resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==} - engines: {node: '>=0.10.0'} - - pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} - engines: {node: '>= 6'} - - pkg-dir@3.0.0: - resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} - engines: {node: '>=6'} - - pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: '>=8'} - - pkg-dir@5.0.0: - resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} - engines: {node: '>=10'} - - pkg-dir@7.0.0: - resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==} - engines: {node: '>=14.16'} - - pkg-types@1.1.3: - resolution: {integrity: sha512-+JrgthZG6m3ckicaOB74TwQ+tBWsFl3qVQg7mN8ulwSOElJ7gBhKzj2VkCPnZ4NlF6kEquYU+RIYNVAvzd54UA==} - - pnp-webpack-plugin@1.6.4: - resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} - engines: {node: '>=6'} - - polished@4.3.1: - resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==} - engines: {node: '>=10'} - - popper.js@1.16.1: - resolution: {integrity: sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==} - deprecated: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1 - - portfinder@1.0.32: - resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} - engines: {node: '>= 0.12.0'} - - posix-character-classes@0.1.1: - resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} - engines: {node: '>=0.10.0'} - - possible-typed-array-names@1.0.0: - resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} - engines: {node: '>= 0.4'} - - postcss-calc@8.2.4: - resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} - peerDependencies: - postcss: ^8.2.2 - - postcss-calc@9.0.1: - resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.2 - - postcss-colormin@5.3.1: - resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-colormin@6.1.0: - resolution: {integrity: sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-convert-values@5.1.3: - resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-convert-values@6.1.0: - resolution: {integrity: sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-discard-comments@5.1.2: - resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-discard-comments@6.0.2: - resolution: {integrity: sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-discard-duplicates@5.1.0: - resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-discard-duplicates@6.0.3: - resolution: {integrity: sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-discard-empty@5.1.1: - resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-discard-empty@6.0.3: - resolution: {integrity: sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-discard-overridden@5.1.0: - resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-discard-overridden@6.0.2: - resolution: {integrity: sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-flexbugs-fixes@4.2.1: - resolution: {integrity: sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==} - - postcss-import-ext-glob@2.1.1: - resolution: {integrity: sha512-qd4ELOx2G0hyjgtmLnf/fSVJXXPhkcxcxhLT1y1mAnk53JYbMLoGg+AFtnJowOSvnv4CvjPAzpLpAcfWeofP5g==} - peerDependencies: - postcss: ^8.2.0 - - postcss-import@14.1.0: - resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} - engines: {node: '>=10.0.0'} - peerDependencies: - postcss: ^8.0.0 - - postcss-load-config@2.1.2: - resolution: {integrity: sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==} - engines: {node: '>= 4'} - - postcss-load-config@3.1.4: - resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} - engines: {node: '>= 10'} - peerDependencies: - postcss: '>=8.0.9' - ts-node: '>=9.0.0' - peerDependenciesMeta: - postcss: - optional: true - ts-node: - optional: true - - postcss-loader@3.0.0: - resolution: {integrity: sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==} - engines: {node: '>= 6'} - - postcss-loader@4.3.0: - resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} - engines: {node: '>= 10.13.0'} - peerDependencies: - postcss: ^7.0.0 || ^8.0.1 - webpack: 5.84.1 - - postcss-loader@6.2.1: - resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} - engines: {node: '>= 12.13.0'} - peerDependencies: - postcss: ^7.0.0 || ^8.0.1 - webpack: 5.84.1 - - postcss-merge-longhand@5.1.7: - resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-merge-longhand@6.0.5: - resolution: {integrity: sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-merge-rules@5.1.4: - resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-merge-rules@6.1.1: - resolution: {integrity: sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-minify-font-values@5.1.0: - resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-minify-font-values@6.1.0: - resolution: {integrity: sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-minify-gradients@5.1.1: - resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-minify-gradients@6.0.3: - resolution: {integrity: sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-minify-params@5.1.4: - resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-minify-params@6.1.0: - resolution: {integrity: sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-minify-selectors@5.2.1: - resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-minify-selectors@6.0.4: - resolution: {integrity: sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-modules-extract-imports@1.2.1: - resolution: {integrity: sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==} - - postcss-modules-extract-imports@2.0.0: - resolution: {integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==} - engines: {node: '>= 6'} - - postcss-modules-extract-imports@3.1.0: - resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-modules-local-by-default@1.2.0: - resolution: {integrity: sha512-X4cquUPIaAd86raVrBwO8fwRfkIdbwFu7CTfEOjiZQHVQwlHRSkTgH5NLDmMm5+1hQO8u6dZ+TOOJDbay1hYpA==} - - postcss-modules-local-by-default@3.0.3: - resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==} - engines: {node: '>= 6'} - - postcss-modules-local-by-default@4.0.5: - resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-modules-scope@1.1.0: - resolution: {integrity: sha512-LTYwnA4C1He1BKZXIx1CYiHixdSe9LWYVKadq9lK5aCCMkoOkFyZ7aigt+srfjlRplJY3gIol6KUNefdMQJdlw==} - - postcss-modules-scope@2.2.0: - resolution: {integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==} - engines: {node: '>= 6'} - - postcss-modules-scope@3.2.0: - resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-modules-values@1.3.0: - resolution: {integrity: sha512-i7IFaR9hlQ6/0UgFuqM6YWaCfA1Ej8WMg8A5DggnH1UGKJvTV/ugqq/KaULixzzOi3T/tF6ClBXcHGCzdd5unA==} - - postcss-modules-values@3.0.0: - resolution: {integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==} - - postcss-modules-values@4.0.0: - resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-modules@4.3.1: - resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==} - peerDependencies: - postcss: ^8.0.0 - - postcss-normalize-charset@5.1.0: - resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-normalize-charset@6.0.2: - resolution: {integrity: sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-display-values@5.1.0: - resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-normalize-display-values@6.0.2: - resolution: {integrity: sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-positions@5.1.1: - resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-normalize-positions@6.0.2: - resolution: {integrity: sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-repeat-style@5.1.1: - resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-normalize-repeat-style@6.0.2: - resolution: {integrity: sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-string@5.1.0: - resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-normalize-string@6.0.2: - resolution: {integrity: sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-timing-functions@5.1.0: - resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-normalize-timing-functions@6.0.2: - resolution: {integrity: sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-unicode@5.1.1: - resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-normalize-unicode@6.1.0: - resolution: {integrity: sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-url@5.1.0: - resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-normalize-url@6.0.2: - resolution: {integrity: sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-whitespace@5.1.1: - resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-normalize-whitespace@6.0.2: - resolution: {integrity: sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-ordered-values@5.1.3: - resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-ordered-values@6.0.2: - resolution: {integrity: sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-reduce-initial@5.1.2: - resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-reduce-initial@6.1.0: - resolution: {integrity: sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-reduce-transforms@5.1.0: - resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-reduce-transforms@6.0.2: - resolution: {integrity: sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-selector-parser@6.1.0: - resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==} - engines: {node: '>=4'} - - postcss-svgo@5.1.0: - resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-svgo@6.0.3: - resolution: {integrity: sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==} - engines: {node: ^14 || ^16 || >= 18} - peerDependencies: - postcss: ^8.4.31 - - postcss-unique-selectors@5.1.1: - resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - postcss-unique-selectors@6.0.4: - resolution: {integrity: sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-value-parser@3.3.1: - resolution: {integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==} - - postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - - postcss@6.0.23: - resolution: {integrity: sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==} - engines: {node: '>=4.0.0'} - - postcss@7.0.39: - resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==} - engines: {node: '>=6.0.0'} - - postcss@8.4.39: - resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==} - engines: {node: ^10 || ^12 || >=14} - - preferred-pm@3.1.4: - resolution: {integrity: sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==} - engines: {node: '>=10'} - - prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} - - prepend-http@2.0.0: - resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} - engines: {node: '>=4'} - - prettier@1.19.1: - resolution: {integrity: sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==} - engines: {node: '>=4'} - hasBin: true - - prettier@2.3.0: - resolution: {integrity: sha512-kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w==} - engines: {node: '>=10.13.0'} - hasBin: true - - prettier@2.8.8: - resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} - engines: {node: '>=10.13.0'} - hasBin: true - - pretty-bytes@5.6.0: - resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} - engines: {node: '>=6'} - - pretty-error@2.1.2: - resolution: {integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==} - - pretty-error@4.0.0: - resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} - - pretty-format@26.6.2: - resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} - engines: {node: '>= 10'} - - pretty-format@27.5.1: - resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - pretty-format@29.7.0: - resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - pretty-hrtime@1.0.3: - resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} - engines: {node: '>= 0.8'} - - private@0.1.8: - resolution: {integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==} - engines: {node: '>= 0.6'} - - proc-log@2.0.1: - resolution: {integrity: sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - proc-log@3.0.0: - resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - - process-nextick-args@2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - - process-on-spawn@1.0.0: - resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==} - engines: {node: '>=8'} - - process@0.11.10: - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} - engines: {node: '>= 0.6.0'} - - progress@2.0.3: - resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} - engines: {node: '>=0.4.0'} - - promise-all-reject-late@1.0.1: - resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==} - - promise-call-limit@1.0.2: - resolution: {integrity: sha512-1vTUnfI2hzui8AEIixbdAJlFY4LFDXqQswy/2eOlThAscXCY4It8FdVuI0fMJGAB2aWGbdQf/gv0skKYXmdrHA==} - - promise-inflight@1.0.1: - resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} - peerDependencies: - bluebird: '*' - peerDependenciesMeta: - bluebird: - optional: true - - promise-retry@2.0.1: - resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} - engines: {node: '>=10'} - - promise.allsettled@1.0.7: - resolution: {integrity: sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==} - engines: {node: '>= 0.4'} - - promise.prototype.finally@3.1.8: - resolution: {integrity: sha512-aVDtsXOml9iuMJzUco9J1je/UrIT3oMYfWkCTiUhkt+AvZw72q4dUZnR/R/eB3h5GeAagQVXvM1ApoYniJiwoA==} - engines: {node: '>= 0.4'} - - promise.series@0.2.0: - resolution: {integrity: sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==} - engines: {node: '>=0.12'} - - promise@7.0.4: - resolution: {integrity: sha512-8z1gTSL9cMgqCx8zvMYhzT0eQURAQNSQqR8B2hGfCYkAzt1vjReVdKBv4YwGw3OXAPaxfm4aR0gLoBUon4VmmA==} - - promise@8.3.0: - resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} - - prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: '>= 6'} - - promzard@0.3.0: - resolution: {integrity: sha512-JZeYqd7UAcHCwI+sTOeUDYkvEU+1bQ7iE0UT1MgB/tERkAPkesW46MrpIySzODi+owTjZtiF8Ay5j9m60KmMBw==} - - prop-types@15.8.1: - resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} - - property-information@5.6.0: - resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} - - property-information@6.5.0: - resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} - - proto-list@1.2.4: - resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} - - protocols@2.0.1: - resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} - - proxy-addr@2.0.7: - resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} - engines: {node: '>= 0.10'} - - proxy-from-env@1.0.0: - resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==} - - proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} - - prr@1.0.1: - resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} - - pseudomap@1.0.2: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} - - psl@1.9.0: - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} - - pump@2.0.1: - resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} - - pump@3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} - - pumpify@1.5.1: - resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} - - punycode@1.4.1: - resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} - - punycode@2.3.1: - resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} - engines: {node: '>=6'} - - pupa@2.1.1: - resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==} - engines: {node: '>=8'} - - puppeteer-core@2.1.1: - resolution: {integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==} - engines: {node: '>=8.16.0'} - - pure-rand@6.1.0: - resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} - - q@1.5.1: - resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} - engines: {node: '>=0.6.0', teleport: '>=0.2.0'} - deprecated: |- - You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. - - (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) - - qr.js@0.0.0: - resolution: {integrity: sha512-c4iYnWb+k2E+vYpRimHqSu575b1/wKl4XFeJGpFmrJQz5I88v9aY2czh7s0w36srfCM1sXgC/xpoJz5dJfq+OQ==} - - qrcode.react@1.0.1: - resolution: {integrity: sha512-8d3Tackk8IRLXTo67Y+c1rpaiXjoz/Dd2HpcMdW//62/x8J1Nbho14Kh8x974t9prsLHN6XqVgcnRiBGFptQmg==} - peerDependencies: - react: ^15.5.3 || ^16.0.0 || ^17.0.0 - - qs@6.10.4: - resolution: {integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==} - engines: {node: '>=0.6'} - - qs@6.11.0: - resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} - engines: {node: '>=0.6'} - - qs@6.12.3: - resolution: {integrity: sha512-AWJm14H1vVaO/iNZ4/hO+HyaTehuy9nRqVdkTqlJt0HWvBiBIEXFmb4C0DGeYo3Xes9rrEW+TxHsaigCbN5ICQ==} - engines: {node: '>=0.6'} - - query-string@7.1.3: - resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} - engines: {node: '>=6'} - - querystring@0.2.1: - resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} - engines: {node: '>=0.4.x'} - deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. - - querystringify@2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} - - queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - - quick-lru@4.0.1: - resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} - engines: {node: '>=8'} - - quick-lru@5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: '>=10'} - - raf@3.4.1: - resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} - - ramda@0.28.0: - resolution: {integrity: sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA==} - - ramda@0.29.0: - resolution: {integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==} - - randomatic@3.1.1: - resolution: {integrity: sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==} - engines: {node: '>= 0.10.0'} - - randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} - - range-parser@1.2.1: - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} - engines: {node: '>= 0.6'} - - raw-body@2.5.2: - resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} - engines: {node: '>= 0.8'} - - raw-loader@4.0.2: - resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 - - rc-motion@2.9.2: - resolution: {integrity: sha512-fUAhHKLDdkAXIDLH0GYwof3raS58dtNUmzLF2MeiR8o6n4thNpSDQhOqQzWE4WfFZDCi9VEN8n7tiB7czREcyw==} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' - - rc-resize-observer@1.4.0: - resolution: {integrity: sha512-PnMVyRid9JLxFavTjeDXEXo65HCRqbmLBw9xX9gfC4BZiSzbLXKzW3jPz+J0P71pLbD5tBMTT+mkstV5gD0c9Q==} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' - - rc-tree@4.2.2: - resolution: {integrity: sha512-V1hkJt092VrOVjNyfj5IYbZKRMHxWihZarvA5hPL/eqm7o2+0SNkeidFYm7LVVBrAKBpOpa0l8xt04uiqOd+6w==} - engines: {node: '>=10.x'} - peerDependencies: - react: '*' - react-dom: '*' - - rc-util@5.43.0: - resolution: {integrity: sha512-AzC7KKOXFqAdIBqdGWepL9Xn7cm3vnAmjlHqUnoQaTMZYhM4VlXGLkkHHxj/BZ7Td0+SOPKB4RGPboBVKT9htw==} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' - - rc-virtual-list@3.14.3: - resolution: {integrity: sha512-6+6wiEhdqakNBnbRJymgMlh+90qpkgqherTRo1l1cX7mK6F9hWsazPczmP0lA+64yhC9/t+M9Dh5pjvDWimn8A==} - engines: {node: '>=8.x'} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' - - rc@1.2.8: - resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} - hasBin: true - - react-app-polyfill@1.0.6: - resolution: {integrity: sha512-OfBnObtnGgLGfweORmdZbyEz+3dgVePQBb3zipiaDsMHV1NpWm0rDFYIVXFV/AK+x4VIIfWHhrdMIeoTLyRr2g==} - engines: {node: '>=6'} - - react-codemirror2@6.0.1: - resolution: {integrity: sha512-rutEKVgvFhWcy/GeVA1hFbqrO89qLqgqdhUr7YhYgIzdyICdlRQv+ztuNvOFQMXrO0fLt0VkaYOdMdYdQgsSUA==} - peerDependencies: - codemirror: 5.x - react: '>=15.5 <=16.x' - - react-color@2.19.3: - resolution: {integrity: sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==} - peerDependencies: - react: '*' - - react-docgen-typescript-loader@3.7.2: - resolution: {integrity: sha512-fNzUayyUGzSyoOl7E89VaPKJk9dpvdSgyXg81cUkwy0u+NBvkzQG3FC5WBIlXda0k/iaxS+PWi+OC+tUiGxzPA==} - peerDependencies: - typescript: '*' - - react-docgen-typescript@1.22.0: - resolution: {integrity: sha512-MPLbF8vzRwAG3GcjdL+OHQlhgtWsLTXs+7uJiHfEeT3Ur7IsZaNYqRTLQ9sj2nB6M6jylcPCeCmH7qbszJmecg==} - peerDependencies: - typescript: '>= 3.x' - - react-docgen-typescript@2.2.2: - resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} - peerDependencies: - typescript: '>= 4.3.x' - - react-docgen@5.4.3: - resolution: {integrity: sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA==} - engines: {node: '>=8.10.0'} - hasBin: true - - react-docgen@7.0.3: - resolution: {integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==} - engines: {node: '>=16.14.0'} - - react-dom@18.3.1: - resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} - peerDependencies: - react: ^18.3.1 - - react-draggable@4.4.6: - resolution: {integrity: sha512-LtY5Xw1zTPqHkVmtM3X8MUOxNDOUhv/khTgBgrUvwaS064bwVvxT+q5El0uUFNx5IEPKXuRejr7UqLwBIg5pdw==} - peerDependencies: - react: '>= 16.3.0' - react-dom: '>= 16.3.0' - - react-element-to-jsx-string@14.3.4: - resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} - peerDependencies: - react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 - react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 - - react-element-to-jsx-string@15.0.0: - resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==} - peerDependencies: - react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 - react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 - - react-fast-compare@2.0.4: - resolution: {integrity: sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==} - - react-fast-compare@3.2.2: - resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} - - react-final-form@6.5.9: - resolution: {integrity: sha512-x3XYvozolECp3nIjly+4QqxdjSSWfcnpGEL5K8OBT6xmGrq5kBqbA6+/tOqoom9NwqIPPbxPNsOViFlbKgowbA==} - peerDependencies: - final-form: ^4.20.4 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - - react-floater@0.7.9: - resolution: {integrity: sha512-NXqyp9o8FAXOATOEo0ZpyaQ2KPb4cmPMXGWkx377QtJkIXHlHRAGer7ai0r0C1kG5gf+KJ6Gy+gdNIiosvSicg==} - peerDependencies: - react: 15 - 18 - react-dom: 15 - 18 - - react-head@3.4.2: - resolution: {integrity: sha512-mnl6u7E0SSzY9w+mExKGVz8vW/oObUTnj+vpRaZF6jcdjFcCGs0vl8MRwlRws56dye3f1CpzU7C/hz3b3S2BBA==} - peerDependencies: - react: '>=16.3' - react-dom: '>=16.3' - - react-helmet@5.2.1: - resolution: {integrity: sha512-CnwD822LU8NDBnjCpZ4ySh8L6HYyngViTZLfBBb3NjtrpN8m49clH8hidHouq20I51Y6TpCTISCBbqiY5GamwA==} - peerDependencies: - react: '>=15.0.0' - - react-hot-loader@4.13.1: - resolution: {integrity: sha512-ZlqCfVRqDJmMXTulUGic4lN7Ic1SXgHAFw7y/Jb7t25GBgTR0fYAJ8uY4mrpxjRyWGWmqw77qJQGnYbzCvBU7g==} - engines: {node: '>= 6'} - peerDependencies: - '@types/react': 18.0.18 - react: ^15.0.0 || ^16.0.0 || ^17.0.0 - react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - - react-i18next@11.18.6: - resolution: {integrity: sha512-yHb2F9BiT0lqoQDt8loZ5gWP331GwctHz9tYQ8A2EIEUu+CcEdjBLQWli1USG3RdWQt3W+jqQLg/d4rrQR96LA==} - peerDependencies: - i18next: '>= 19.0.0' - react: '>= 16.8.0' - react-dom: '*' - react-native: '*' - peerDependenciesMeta: - react-dom: - optional: true - react-native: - optional: true - - react-innertext@1.1.5: - resolution: {integrity: sha512-PWAqdqhxhHIv80dT9znP2KvS+hfkbRovFp4zFYHFFlOoQLRiawIic81gKb3U1wEyJZgMwgs3JoLtwryASRWP3Q==} - peerDependencies: - '@types/react': 18.0.18 - react: '>=0.0.0 <=99' - - react-inspector@5.1.1: - resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==} - peerDependencies: - react: ^16.8.4 || ^17.0.0 - - react-is@16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} - - react-is@17.0.2: - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} - - react-is@18.1.0: - resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==} - - react-is@18.3.1: - resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} - - react-joyride@2.8.2: - resolution: {integrity: sha512-2QY8HB1G0I2OT0PKMUz7gg2HAjdkG2Bqi13r0Bb1V16PAwfb9khn4wWBTOJsGsjulbAWiQ3/0YrgNUHGFmuifw==} - peerDependencies: - react: 15 - 18 - react-dom: 15 - 18 - - react-lifecycles-compat@3.0.4: - resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} - - react-markdown@9.0.1: - resolution: {integrity: sha512-186Gw/vF1uRkydbsOIkcGXw7aHq0sZOCRFFjGrr7b9+nVZg4UfA4enXCaxm4fUzecU38sWfrNDitGhshuU7rdg==} - peerDependencies: - '@types/react': 18.0.18 - react: '>=18' - - react-notification-system@0.4.0: - resolution: {integrity: sha512-5WhXnjkYC07zqXruCiUXDU9iHjVxZlL1zgHpNgXk91A5ghV1AHrWVrJYo1XM4SnwlKy5NLdftkaTl+pTuVFAqw==} - peerDependencies: - react: "0.14.x || ^15.0.0 ||\_^16.0.0" - react-dom: 0.14.x || ^15.0.0 || ^16.0.0 - - react-popper@2.3.0: - resolution: {integrity: sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==} - peerDependencies: - '@popperjs/core': ^2.0.0 - react: ^16.8.0 || ^17 || ^18 - react-dom: ^16.8.0 || ^17 || ^18 - - react-property@2.0.0: - resolution: {integrity: sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw==} - - react-redux@7.2.9: - resolution: {integrity: sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==} - peerDependencies: - react: ^16.8.3 || ^17 || ^18 - react-dom: '*' - react-native: '*' - peerDependenciesMeta: - react-dom: - optional: true - react-native: - optional: true - - react-refresh@0.10.0: - resolution: {integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==} - engines: {node: '>=0.10.0'} - - react-refresh@0.11.0: - resolution: {integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==} - engines: {node: '>=0.10.0'} - - react-refresh@0.14.2: - resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} - engines: {node: '>=0.10.0'} - - react-refresh@0.9.0: - resolution: {integrity: sha512-Gvzk7OZpiqKSkxsQvO/mbTN1poglhmAV7gR/DdIrRrSMXraRQQlfikRJOr3Nb9GTMPC5kof948Zy6jJZIFtDvQ==} - engines: {node: '>=0.10.0'} - - react-router-dom@4.3.1: - resolution: {integrity: sha512-c/MlywfxDdCp7EnB7YfPMOfMD3tOtIjrQlj/CKfNMBxdmpJP8xcz5P/UAFn3JbnQCNUxsHyVVqllF9LhgVyFCA==} - peerDependencies: - react: '>=15' - - react-router-dom@6.24.1: - resolution: {integrity: sha512-U19KtXqooqw967Vw0Qcn5cOvrX5Ejo9ORmOtJMzYWtCT4/WOfFLIZGGsVLxcd9UkBO0mSTZtXqhZBsWlHr7+Sg==} - engines: {node: '>=14.0.0'} - peerDependencies: - react: '>=16.8' - react-dom: '>=16.8' - - react-router@4.3.1: - resolution: {integrity: sha512-yrvL8AogDh2X42Dt9iknk4wF4V8bWREPirFfS9gLU1huk6qK41sg7Z/1S81jjTrGHxa3B8R3J6xIkDAA6CVarg==} - peerDependencies: - react: '>=15' - - react-router@6.24.1: - resolution: {integrity: sha512-PTXFXGK2pyXpHzVo3rR9H7ip4lSPZZc0bHG5CARmj65fTT6qG7sTngmb6lcYu1gf3y/8KxORoy9yn59pGpCnpg==} - engines: {node: '>=14.0.0'} - peerDependencies: - react: '>=16.8' - - react-side-effect@1.2.0: - resolution: {integrity: sha512-v1ht1aHg5k/thv56DRcjw+WtojuuDHFUgGfc+bFHOWsF4ZK6C2V57DO0Or0GPsg6+LSTE0M6Ry/gfzhzSwbc5w==} - peerDependencies: - react: ^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0 - - react-smooth@4.0.1: - resolution: {integrity: sha512-OE4hm7XqR0jNOq3Qmk9mFLyd6p2+j6bvbPJ7qlB7+oo0eNcL2l7WQzG6MBnT3EXY6xzkLMUBec3AfewJdA0J8w==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - react-top-loading-bar@1.2.0: - resolution: {integrity: sha512-5oNdy+DfD5JK06bcc/gsnnXHmml+d8eaBe3C8KQ3eLiH/BD8+FcwsgbAwqgOaRjuSeVQXdYN2JC2G1uVFtCLfA==} - engines: {node: '>=8', npm: '>=5'} - peerDependencies: - prop-types: ^15.5.4 - react: ^15.0.0 || ^16.0.0 - react-dom: ^15.0.0 || ^16.0.0 - - react-transition-group@4.4.5: - resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} - peerDependencies: - react: '>=16.6.0' - react-dom: '>=16.6.0' - - react-world-flags@1.6.0: - resolution: {integrity: sha512-eutSeAy5YKoVh14js/JUCSlA6EBk1n4k+bDaV+NkNB50VhnG+f4QDTpYycnTUTsZ5cqw/saPmk0Z4Fa0VVZ1Iw==} - peerDependencies: - react: '>=0.14' - - react@18.3.1: - resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} - engines: {node: '>=0.10.0'} - - reactcss@1.2.3: - resolution: {integrity: sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==} - peerDependencies: - react: '*' - - reactflow@11.7.2: - resolution: {integrity: sha512-HBudD8BwZacOMqX8fbkiXbeBQs3nRezWVLCDurfc+tTeHsA7988uyaIOhrnKgYCcKtlpJaspsnxDZk+5JmmHxA==} - peerDependencies: - react: '>=17' - react-dom: '>=17' - - read-cache@1.0.0: - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} - - read-cmd-shim@3.0.1: - resolution: {integrity: sha512-kEmDUoYf/CDy8yZbLTmhB1X9kkjf9Q80PCNsDMb7ufrGd6zZSQA1+UyjrO+pZm5K/S4OXCWJeiIt1JA8kAsa6g==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - read-package-json-fast@2.0.3: - resolution: {integrity: sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==} - engines: {node: '>=10'} - - read-package-json@5.0.2: - resolution: {integrity: sha512-BSzugrt4kQ/Z0krro8zhTwV1Kd79ue25IhNN/VtHFy1mG/6Tluyi+msc0UpwaoQzxSHa28mntAjIZY6kEgfR9Q==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This package is no longer supported. Please use @npmcli/package-json instead. - - read-pkg-up@1.0.1: - resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==} - engines: {node: '>=0.10.0'} - - read-pkg-up@3.0.0: - resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} - engines: {node: '>=4'} - - read-pkg-up@7.0.1: - resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} - engines: {node: '>=8'} - - read-pkg@1.1.0: - resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==} - engines: {node: '>=0.10.0'} - - read-pkg@3.0.0: - resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} - engines: {node: '>=4'} - - read-pkg@5.2.0: - resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} - engines: {node: '>=8'} - - read-yaml-file@1.1.0: - resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} - engines: {node: '>=6'} - - read@1.0.7: - resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} - engines: {node: '>=0.8'} - - readable-stream@1.1.14: - resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==} - - readable-stream@2.3.8: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} - - readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} - - readable-web-to-node-stream@3.0.2: - resolution: {integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==} - engines: {node: '>=8'} - - readdir-scoped-modules@1.1.0: - resolution: {integrity: sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==} - deprecated: This functionality has been moved to @npmcli/fs - - readdirp@2.2.1: - resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==} - engines: {node: '>=0.10'} - - readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} - - recast@0.19.1: - resolution: {integrity: sha512-8FCjrBxjeEU2O6I+2hyHyBFH1siJbMBLwIRvVr1T3FD2cL754sOaJDsJ/8h3xYltasbJ8jqWRIhMuDGBSiSbjw==} - engines: {node: '>= 4'} - - recast@0.20.5: - resolution: {integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==} - engines: {node: '>= 4'} - - recast@0.23.9: - resolution: {integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==} - engines: {node: '>= 4'} - - recharts-scale@0.4.5: - resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==} - - recharts@2.12.7: - resolution: {integrity: sha512-hlLJMhPQfv4/3NBSAyq3gzGg4h2v69RJh6KU7b3pXYNNAELs9kEoXOjbkxdXpALqKBoVmVptGfLpxdaVYqjmXQ==} - engines: {node: '>=14'} - peerDependencies: - react: ^16.0.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 - - rechoir@0.6.2: - resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} - engines: {node: '>= 0.10'} - - rechoir@0.7.1: - resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==} - engines: {node: '>= 0.10'} - - redent@1.0.0: - resolution: {integrity: sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==} - engines: {node: '>=0.10.0'} - - redent@3.0.0: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: '>=8'} - - reduce-reducers@1.0.4: - resolution: {integrity: sha512-Mb2WZ2bJF597exiqX7owBzrqJ74DHLK3yOQjCyPAaNifRncE8OD0wFIuoMhXxTnHK07+8zZ2SJEKy/qtiyR7vw==} - - redux-devtools-extension@2.13.9: - resolution: {integrity: sha512-cNJ8Q/EtjhQaZ71c8I9+BPySIBVEKssbPpskBfsXqb8HJ002A3KRVHfeRzwRo6mGPqsm7XuHTqNSNeS1Khig0A==} - deprecated: Package moved to @redux-devtools/extension. - peerDependencies: - redux: ^3.1.0 || ^4.0.0 - - redux-form@8.3.10: - resolution: {integrity: sha512-Eeog8dJYUxCSZI/oBoy7VkprvMjj1lpUnHa3LwjVNZvYDNeiRZMoZoaAT+6nlK2YQ4aiBopKUMiLe4ihUOHCGg==} - engines: {node: '>=8.10'} - peerDependencies: - immutable: ^3.8.2 || ^4.0.0 - react: ^16.4.2 || ^17.0.0 || ^18.0.0 - react-redux: ^6.0.1 || ^7.0.0 || ^8.0.0 - redux: ^3.7.2 || ^4.0.0 - peerDependenciesMeta: - immutable: - optional: true - - redux-mock-store@1.5.4: - resolution: {integrity: sha512-xmcA0O/tjCLXhh9Fuiq6pMrJCwFRaouA8436zcikdIpYWWCjU76CRk+i2bHx8EeiSiMGnB85/lZdU3wIJVXHTA==} - - redux-thunk@2.4.2: - resolution: {integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==} - peerDependencies: - redux: ^4 - - redux@4.2.1: - resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} - - reflect.getprototypeof@1.0.6: - resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} - engines: {node: '>= 0.4'} - - regenerate-unicode-properties@10.1.1: - resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} - engines: {node: '>=4'} - - regenerate@1.4.2: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} - - regenerator-runtime@0.10.5: - resolution: {integrity: sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==} - - regenerator-runtime@0.11.1: - resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} - - regenerator-runtime@0.13.11: - resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} - - regenerator-runtime@0.14.1: - resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} - - regenerator-transform@0.15.2: - resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} - - regex-not@1.0.2: - resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} - engines: {node: '>=0.10.0'} - - regexp.prototype.flags@1.5.2: - resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} - engines: {node: '>= 0.4'} - - regexpp@3.2.0: - resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} - engines: {node: '>=8'} - - regexpu-core@5.3.2: - resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} - engines: {node: '>=4'} - - registry-auth-token@4.2.2: - resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==} - engines: {node: '>=6.0.0'} - - registry-url@5.1.0: - resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} - engines: {node: '>=8'} - - regjsparser@0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} - hasBin: true - - rehype-attr@3.0.3: - resolution: {integrity: sha512-Up50Xfra8tyxnkJdCzLBIBtxOcB2M1xdeKe1324U06RAvSjYm7ULSeoM+b/nYPQPVd7jsXJ9+39IG1WAJPXONw==} - engines: {node: '>=16'} - - relateurl@0.2.7: - resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} - engines: {node: '>= 0.10'} - - release-zalgo@1.0.0: - resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==} - engines: {node: '>=4'} - - remark-external-links@8.0.0: - resolution: {integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==} - - remark-footnotes@2.0.0: - resolution: {integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==} - - remark-mdx@1.6.22: - resolution: {integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==} - - remark-parse@11.0.0: - resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} - - remark-parse@8.0.3: - resolution: {integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==} - - remark-rehype@11.1.0: - resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==} - - remark-slug@6.1.0: - resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==} - - remark-squeeze-paragraphs@4.0.0: - resolution: {integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==} - - remarkable@1.7.4: - resolution: {integrity: sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==} - engines: {node: '>= 0.10.0'} - hasBin: true - - remove-trailing-separator@1.1.0: - resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} - - renderkid@2.0.7: - resolution: {integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==} - - renderkid@3.0.0: - resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} - - repeat-element@1.1.4: - resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} - engines: {node: '>=0.10.0'} - - repeat-string@1.6.1: - resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} - engines: {node: '>=0.10'} - - repeating@2.0.1: - resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==} - engines: {node: '>=0.10.0'} - - replace@1.2.2: - resolution: {integrity: sha512-C4EDifm22XZM2b2JOYe6Mhn+lBsLBAvLbK8drfUQLTfD1KYl/n3VaW/CDju0Ny4w3xTtegBpg8YNSpFJPUDSjA==} - engines: {node: '>= 6'} - hasBin: true - - request-progress@3.0.0: - resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==} - - require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} - - require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} - - require-main-filename@2.0.0: - resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} - - requireindex@1.2.0: - resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==} - engines: {node: '>=0.10.5'} - - requires-port@1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} - - reselect@4.1.8: - resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==} - - resize-observer-polyfill@1.5.1: - resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==} - - resolve-alpn@1.2.1: - resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} - - resolve-cwd@2.0.0: - resolution: {integrity: sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==} - engines: {node: '>=4'} - - resolve-cwd@3.0.0: - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} - engines: {node: '>=8'} - - resolve-from@3.0.0: - resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} - engines: {node: '>=4'} - - resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} - - resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} - - resolve-pathname@3.0.0: - resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==} - - resolve-url@0.2.1: - resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} - deprecated: https://github.com/lydell/resolve-url#deprecated - - resolve.exports@1.1.0: - resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} - engines: {node: '>=10'} - - resolve.exports@2.0.2: - resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} - engines: {node: '>=10'} - - resolve@1.1.7: - resolution: {integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==} - - resolve@1.19.0: - resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==} - - resolve@1.22.8: - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} - hasBin: true - - resolve@2.0.0-next.5: - resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} - hasBin: true - - responselike@1.0.2: - resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} - - responselike@2.0.1: - resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} - - restore-cursor@3.1.0: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} - engines: {node: '>=8'} - - ret@0.1.15: - resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} - engines: {node: '>=0.12'} - - retry@0.12.0: - resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} - engines: {node: '>= 4'} - - retry@0.13.1: - resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} - engines: {node: '>= 4'} - - reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - - rfdc@1.4.1: - resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} - - rimraf@2.6.3: - resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true - - rimraf@2.7.1: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true - - rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true - - rollup-plugin-copy@3.5.0: - resolution: {integrity: sha512-wI8D5dvYovRMx/YYKtUNt3Yxaw4ORC9xo6Gt9t22kveWz1enG9QrhVlagzwrxSC455xD1dHMKhIJkbsQ7d48BA==} - engines: {node: '>=8.3'} - - rollup-plugin-dts@6.1.1: - resolution: {integrity: sha512-aSHRcJ6KG2IHIioYlvAOcEq6U99sVtqDDKVhnwt70rW6tsz3tv5OSjEiWcgzfsHdLyGXZ/3b/7b/+Za3Y6r1XA==} - engines: {node: '>=16'} - peerDependencies: - rollup: ^3.29.4 || ^4 - typescript: ^4.5 || ^5.0 - - rollup-plugin-generate-package-json@3.2.0: - resolution: {integrity: sha512-+Kq1kFVr+maxW/mZB+E+XuaieCXVZqjl2tNU9k3TtAMs3NOaeREa5sRHy67qKDmcnFtZZukIQ3dFCcnV+r0xyw==} - engines: {node: '>=8.3'} - peerDependencies: - rollup: '>=1.0.0' - - rollup-plugin-peer-deps-external@2.2.4: - resolution: {integrity: sha512-AWdukIM1+k5JDdAqV/Cxd+nejvno2FVLVeZ74NKggm3Q5s9cbbcOgUPGdbxPi4BXu7xGaZ8HG12F+thImYu/0g==} - peerDependencies: - rollup: '*' - - rollup-plugin-polyfill-node@0.13.0: - resolution: {integrity: sha512-FYEvpCaD5jGtyBuBFcQImEGmTxDTPbiHjJdrYIp+mFIwgXiXabxvKUK7ZT9P31ozu2Tqm9llYQMRWsfvTMTAOw==} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 - - rollup-plugin-postcss@4.0.2: - resolution: {integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==} - engines: {node: '>=10'} - peerDependencies: - postcss: 8.x - - rollup-plugin-scss@4.0.0: - resolution: {integrity: sha512-wxasNXDYC2m+fDxCMgK00WebVWYmeFvShyNABmjvSJZ6D1/SepwqFeaMFMQromveI79gfvb64yJjiZZxSZxEIA==} - - rollup-plugin-styles@4.0.0: - resolution: {integrity: sha512-A2K2sao84OsTmDxXG83JTCdXWrmgvQkkI38XDat46rdtpGMRm9tSYqeCdlwwGDJF4kKIafhV1mUidqu8MxUGig==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - peerDependencies: - rollup: ^2.63.0 - - rollup-plugin-svg@2.0.0: - resolution: {integrity: sha512-DmE7dSQHo1SC5L2uH2qul3Mjyd5oV6U1aVVkyvTLX/mUsRink7f1b1zaIm+32GEBA6EHu8H/JJi3DdWqM53ySQ==} - - rollup-plugin-typescript2@0.34.1: - resolution: {integrity: sha512-P4cHLtGikESmqi1CA+tdMDUv8WbQV48mzPYt77TSTOPJpERyZ9TXdDgjSDix8Fkqce6soYz3+fa4lrC93IEkcw==} - peerDependencies: - rollup: '>=1.26.3' - typescript: '>=2.4.0' - - rollup-pluginutils@1.5.2: - resolution: {integrity: sha512-SjdWWWO/CUoMpDy8RUbZ/pSpG68YHmhk5ROKNIoi2En9bJ8bTt3IhYi254RWiTclQmL7Awmrq+rZFOhZkJAHmQ==} - - rollup-pluginutils@2.8.2: - resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} - - rollup@2.79.1: - resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} - engines: {node: '>=10.0.0'} - hasBin: true - - rollup@4.18.1: - resolution: {integrity: sha512-Elx2UT8lzxxOXMpy5HWQGZqkrQOtrVDDa/bm9l10+U4rQnVzbL/LgZ4NOM1MPIDyHk69W4InuYDF5dzRh4Kw1A==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true - - rsvp@4.8.5: - resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==} - engines: {node: 6.* || >= 7.*} - - run-async@2.4.1: - resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} - engines: {node: '>=0.12.0'} - - run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} - - rxjs@7.8.1: - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} - - safe-array-concat@1.1.2: - resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} - engines: {node: '>=0.4'} - - safe-buffer@5.1.1: - resolution: {integrity: sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==} - - safe-buffer@5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} - - safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - - safe-identifier@0.4.2: - resolution: {integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==} - - safe-regex-test@1.0.3: - resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} - engines: {node: '>= 0.4'} - - safe-regex@1.1.0: - resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} - - safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - - sane@4.1.0: - resolution: {integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==} - engines: {node: 6.* || 8.* || >= 10.*} - deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added - hasBin: true - - sass-loader@12.6.0: - resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} - engines: {node: '>= 12.13.0'} - peerDependencies: - fibers: '>= 3.1.0' - node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 - sass: ^1.3.0 - sass-embedded: '*' - webpack: 5.84.1 - peerDependenciesMeta: - fibers: - optional: true - node-sass: - optional: true - sass: - optional: true - sass-embedded: - optional: true - - sass@1.77.6: - resolution: {integrity: sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==} - engines: {node: '>=14.0.0'} - hasBin: true - - sax@1.2.4: - resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} - - sax@1.4.1: - resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} - - saxes@5.0.1: - resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} - engines: {node: '>=10'} - - saxes@6.0.0: - resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} - engines: {node: '>=v12.22.7'} - - scheduler@0.23.2: - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} - - schema-utils@0.4.7: - resolution: {integrity: sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==} - engines: {node: '>= 4'} - - schema-utils@1.0.0: - resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==} - engines: {node: '>= 4'} - - schema-utils@2.7.0: - resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} - engines: {node: '>= 8.9.0'} - - schema-utils@2.7.1: - resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} - engines: {node: '>= 8.9.0'} - - schema-utils@3.3.0: - resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} - engines: {node: '>= 10.13.0'} - - schema-utils@4.2.0: - resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} - engines: {node: '>= 12.13.0'} - - scroll@3.0.1: - resolution: {integrity: sha512-pz7y517OVls1maEzlirKO5nPYle9AXsFzTMNJrRGmT951mzpIBy7sNHOg5o/0MQd/NqliCiWnAi0kZneMPFLcg==} - - scrollparent@2.1.0: - resolution: {integrity: sha512-bnnvJL28/Rtz/kz2+4wpBjHzWoEzXhVg/TE8BeVGJHUqE8THNIRnDxDWMktwM+qahvlRdvlLdsQfYe+cuqfZeA==} - - secure-compare@3.0.1: - resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==} - - select-hose@2.0.0: - resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} - - selfsigned@1.10.14: - resolution: {integrity: sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==} - - selfsigned@2.4.1: - resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} - engines: {node: '>=10'} - - semantic-ui-css@2.5.0: - resolution: {integrity: sha512-jIWn3WXXE2uSaWCcB+gVJVRG3masIKtTMNEP2X8Aw909H2rHpXGneYOxzO3hT8TpyvB5/dEEo9mBFCitGwoj1A==} - - semantic-ui-less@2.5.0: - resolution: {integrity: sha512-Nlp8iR0otCQB74Yqob2Dxpsm5H9YAp3NvQ3sWDediwFjrd/l3Leu9md2O82UU5n5hOSqu95xnTok55eIAhlTjg==} - - semantic-ui-react@2.1.5: - resolution: {integrity: sha512-nIqmmUNpFHfovEb+RI2w3E2/maZQutd8UIWyRjf1SLse+XF51hI559xbz/sLN3O6RpLjr/echLOOXwKCirPy3Q==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - - semver-diff@3.1.1: - resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==} - engines: {node: '>=8'} - - semver-regex@4.0.5: - resolution: {integrity: sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==} - engines: {node: '>=12'} - - semver-truncate@3.0.0: - resolution: {integrity: sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==} - engines: {node: '>=12'} - - semver@5.7.2: - resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} - hasBin: true - - semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true - - semver@7.3.4: - resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} - engines: {node: '>=10'} - hasBin: true - - semver@7.5.3: - resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} - engines: {node: '>=10'} - hasBin: true - - semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} - engines: {node: '>=10'} - hasBin: true - - semver@7.6.2: - resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} - engines: {node: '>=10'} - hasBin: true - - send@0.18.0: - resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} - engines: {node: '>= 0.8.0'} - - serialize-javascript@5.0.1: - resolution: {integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==} - - serialize-javascript@6.0.2: - resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} - - serve-favicon@2.5.0: - resolution: {integrity: sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==} - engines: {node: '>= 0.8.0'} - - serve-index@1.9.1: - resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} - engines: {node: '>= 0.8.0'} - - serve-static@1.15.0: - resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} - engines: {node: '>= 0.8.0'} - - set-blocking@2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} - - set-cookie-parser@2.6.0: - resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==} - - set-function-length@1.2.2: - resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} - engines: {node: '>= 0.4'} - - set-function-name@2.0.2: - resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} - engines: {node: '>= 0.4'} - - set-getter@0.1.1: - resolution: {integrity: sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==} - engines: {node: '>=0.10.0'} - - set-value@2.0.1: - resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} - engines: {node: '>=0.10.0'} - - setprototypeof@1.1.0: - resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} - - setprototypeof@1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} - - shallow-clone@0.1.2: - resolution: {integrity: sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==} - engines: {node: '>=0.10.0'} - - shallow-clone@3.0.1: - resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} - engines: {node: '>=8'} - - shallowequal@1.1.0: - resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} - - shebang-command@1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} - engines: {node: '>=0.10.0'} - - shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} - - shebang-regex@1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} - engines: {node: '>=0.10.0'} - - shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} - - shell-quote@1.8.1: - resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} - - shelljs@0.8.5: - resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} - engines: {node: '>=4'} - hasBin: true - - shellwords@0.1.1: - resolution: {integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==} - - side-channel@1.0.6: - resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} - engines: {node: '>= 0.4'} - - signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - - signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} - - simple-git@1.132.0: - resolution: {integrity: sha512-xauHm1YqCTom1sC9eOjfq3/9RKiUA9iPnxBbrY2DdL8l4ADMu0jjM5l5lphQP5YWNqAL2aXC/OeuQ76vHtW5fg==} - - sirv@2.0.4: - resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} - engines: {node: '>= 10'} - - sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - - slash@2.0.0: - resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==} - engines: {node: '>=6'} - - slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} - - slash@4.0.0: - resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} - engines: {node: '>=12'} - - slash@5.1.0: - resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} - engines: {node: '>=14.16'} - - slashes@2.0.2: - resolution: {integrity: sha512-68p+QkFAQQRetIUzNXAdktNJr8AYLxJukjBegYQz8F7VATsBJG621UYtY/vS2j9jerxdJ1k6Tc25K4DXEw1d5w==} - - slice-ansi@3.0.0: - resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} - engines: {node: '>=8'} - - slice-ansi@4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: '>=10'} - - smart-buffer@4.2.0: - resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} - engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} - - smartwrap@2.0.2: - resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} - engines: {node: '>=6'} - hasBin: true - - snake-case@3.0.4: - resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} - - snapdragon-node@2.1.1: - resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} - engines: {node: '>=0.10.0'} - - snapdragon-util@3.0.1: - resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} - engines: {node: '>=0.10.0'} - - snapdragon@0.8.2: - resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} - engines: {node: '>=0.10.0'} - - sockjs-client@1.6.1: - resolution: {integrity: sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==} - engines: {node: '>=12'} - - sockjs@0.3.24: - resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} - - socks-proxy-agent@7.0.0: - resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} - engines: {node: '>= 10'} - - socks@2.8.3: - resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} - engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} - - sort-keys-length@1.0.1: - resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==} - engines: {node: '>=0.10.0'} - - sort-keys@1.1.2: - resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==} - engines: {node: '>=0.10.0'} - - sort-keys@2.0.0: - resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} - engines: {node: '>=4'} - - sort-keys@4.2.0: - resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==} - engines: {node: '>=8'} - - source-list-map@2.0.1: - resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==} - - source-map-js@1.2.0: - resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} - engines: {node: '>=0.10.0'} - - source-map-loader@0.2.4: - resolution: {integrity: sha512-OU6UJUty+i2JDpTItnizPrlpOIBLmQbWMuBg9q5bVtnHACqw1tn9nNwqJLbv0/00JjnJb/Ee5g5WS5vrRv7zIQ==} - engines: {node: '>= 6'} - - source-map-loader@3.0.2: - resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: 5.84.1 - - source-map-resolve@0.5.3: - resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} - deprecated: See https://github.com/lydell/source-map-resolve#deprecated - - source-map-support@0.5.13: - resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} - - source-map-support@0.5.19: - resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} - - source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} - - source-map-url@0.4.1: - resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} - deprecated: See https://github.com/lydell/source-map-url#deprecated - - source-map@0.5.7: - resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} - engines: {node: '>=0.10.0'} - - source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} - - source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} - - sourcemap-codec@1.4.8: - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} - deprecated: Please use @jridgewell/sourcemap-codec instead - - space-separated-tokens@1.1.5: - resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} - - space-separated-tokens@2.0.2: - resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} - - spawn-wrap@2.0.0: - resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==} - engines: {node: '>=8'} - - spawndamnit@2.0.0: - resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} - - spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} - - spdx-exceptions@2.5.0: - resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} - - spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} - - spdx-license-ids@3.0.18: - resolution: {integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==} - - spdy-transport@3.0.0: - resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} - - spdy@4.0.2: - resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} - engines: {node: '>=6.0.0'} - - split-on-first@1.1.0: - resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} - engines: {node: '>=6'} - - split-string@3.1.0: - resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} - engines: {node: '>=0.10.0'} - - split2@3.2.2: - resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} - - split@1.0.1: - resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} - - sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - - sprintf-js@1.1.3: - resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} - - sshpk@1.18.0: - resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} - engines: {node: '>=0.10.0'} - hasBin: true - - ssri@8.0.1: - resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} - engines: {node: '>= 8'} - - ssri@9.0.1: - resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - stable@0.1.8: - resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} - deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' - - stack-utils@2.0.6: - resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} - engines: {node: '>=10'} - - stackframe@1.3.4: - resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} - - state-local@1.0.7: - resolution: {integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==} - - state-toggle@1.0.3: - resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==} - - static-extend@0.1.2: - resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} - engines: {node: '>=0.10.0'} - - statuses@1.5.0: - resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} - engines: {node: '>= 0.6'} - - statuses@2.0.1: - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: '>= 0.8'} - - stop-iteration-iterator@1.0.0: - resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} - engines: {node: '>= 0.4'} - - store2@2.14.3: - resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==} - - storybook@6.5.16: - resolution: {integrity: sha512-+Ychak5QtcTx8EuQzu7eilw+65sk6q1LdI68vb1VOIYD29PEEC7MsZGKPi6AKYNbdhGp0cGu0j3Bf1TxGOBFEA==} - hasBin: true - - storybook@7.6.9: - resolution: {integrity: sha512-zsPLvhbEfheqt9bN7X38vgrhLcxSyn7HdWbjZC+02hgNQ0U1jZ4VfrzNbJSqFxzxU+B5gdDZSFMui7OUx9A9Ew==} - hasBin: true - - stream-shift@1.0.3: - resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==} - - stream-transform@2.1.3: - resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} - - streamroller@1.0.6: - resolution: {integrity: sha512-3QC47Mhv3/aZNFpDDVO44qQb9gwB9QggMEE0sQmkTAwBVYdBRWISdsywlkfm5II1Q5y/pmrHflti/IgmIzdDBg==} - engines: {node: '>=6.0'} - deprecated: 1.x is no longer supported. Please upgrade to 3.x or higher. - - strict-event-emitter@0.2.8: - resolution: {integrity: sha512-KDf/ujU8Zud3YaLtMCcTI4xkZlZVIYxTLr+XIULexP+77EEVWixeXroLUXQXiVtH4XH2W7jr/3PT1v3zBuvc3A==} - - strict-uri-encode@2.0.0: - resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} - engines: {node: '>=4'} - - string-hash@1.1.3: - resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} - - string-length@4.0.2: - resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} - engines: {node: '>=10'} - - string-width@3.1.0: - resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==} - engines: {node: '>=6'} - - string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} - - string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} - - string.prototype.matchall@4.0.11: - resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} - engines: {node: '>= 0.4'} - - string.prototype.padend@3.1.6: - resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==} - engines: {node: '>= 0.4'} - - string.prototype.padstart@3.1.6: - resolution: {integrity: sha512-1y15lz7otgfRTAVK5qbp3eHIga+w8j7+jIH+7HpUrOfnLVl6n0hbspi4EXf4tR+PNOpBjPstltemkx0SvViOCg==} - engines: {node: '>= 0.4'} - - string.prototype.trim@1.2.9: - resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} - engines: {node: '>= 0.4'} - - string.prototype.trimend@1.0.8: - resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} - - string.prototype.trimstart@1.0.8: - resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} - engines: {node: '>= 0.4'} - - string_decoder@0.10.31: - resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} - - string_decoder@1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} - - string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} - - stringify-entities@4.0.4: - resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} - - strip-ansi@3.0.1: - resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} - engines: {node: '>=0.10.0'} - - strip-ansi@4.0.0: - resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==} - engines: {node: '>=4'} - - strip-ansi@5.2.0: - resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} - engines: {node: '>=6'} - - strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} - - strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} - - strip-bom@2.0.0: - resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} - engines: {node: '>=0.10.0'} - - strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} - - strip-bom@4.0.0: - resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} - engines: {node: '>=8'} - - strip-color@0.1.0: - resolution: {integrity: sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==} - engines: {node: '>=0.10.0'} - - strip-eof@1.0.0: - resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} - engines: {node: '>=0.10.0'} - - strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} - - strip-final-newline@3.0.0: - resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} - engines: {node: '>=12'} - - strip-indent@1.0.1: - resolution: {integrity: sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==} - engines: {node: '>=0.10.0'} - hasBin: true - - strip-indent@3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} - - strip-indent@4.0.0: - resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==} - engines: {node: '>=12'} - - strip-json-comments@1.0.4: - resolution: {integrity: sha512-AOPG8EBc5wAikaG1/7uFCNFJwnKOuQwFTpYBdTW6OvWHeZBQBrAA/amefHGrEiOnCPcLFZK6FUPtWVKpQVIRgg==} - engines: {node: '>=0.8.0'} - hasBin: true - - strip-json-comments@2.0.1: - resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} - engines: {node: '>=0.10.0'} - - strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} - - strip-outer@2.0.0: - resolution: {integrity: sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - strnum@1.0.5: - resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} - - strong-log-transformer@2.1.0: - resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} - engines: {node: '>=4'} - hasBin: true - - strtok3@7.1.0: - resolution: {integrity: sha512-19dQEwG6Jd+VabjPRyBhymIF069vZiqWSZa2jJBoKJTsqGKnTxowGoQaLnz+yLARfDI041IUQekyPUMWElOgsQ==} - engines: {node: '>=14.16'} - - style-inject@0.3.0: - resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==} - - style-loader@0.23.1: - resolution: {integrity: sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==} - engines: {node: '>= 0.12.0'} - - style-loader@1.3.0: - resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==} - engines: {node: '>= 8.9.0'} - peerDependencies: - webpack: 5.84.1 - - style-loader@2.0.0: - resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 - - style-loader@3.3.4: - resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: 5.84.1 - - style-to-js@1.1.1: - resolution: {integrity: sha512-RJ18Z9t2B02sYhZtfWKQq5uplVctgvjTfLWT7+Eb1zjUjIrWzX5SdlkwLGQozrqarTmEzJJ/YmdNJCUNI47elg==} - - style-to-object@0.3.0: - resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==} - - style-to-object@1.0.6: - resolution: {integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==} - - styled-components@4.4.1: - resolution: {integrity: sha512-RNqj14kYzw++6Sr38n7197xG33ipEOktGElty4I70IKzQF1jzaD1U4xQ+Ny/i03UUhHlC5NWEO+d8olRCDji6g==} - peerDependencies: - react: '>= 16.3.0' - react-dom: '>= 16.3.0' - - stylehacks@5.1.1: - resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - - stylehacks@6.1.1: - resolution: {integrity: sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.4.31 - - stylis-rule-sheet@0.0.10: - resolution: {integrity: sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==} - peerDependencies: - stylis: ^3.5.0 - - stylis@3.5.4: - resolution: {integrity: sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==} - - stylis@4.2.0: - resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} - - stylus-loader@7.1.3: - resolution: {integrity: sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==} - engines: {node: '>= 14.15.0'} - peerDependencies: - stylus: '>=0.52.4' - webpack: 5.84.1 - - stylus@0.59.0: - resolution: {integrity: sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==} - hasBin: true - - supports-color@2.0.0: - resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} - engines: {node: '>=0.8.0'} - - supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} - - supports-color@6.1.0: - resolution: {integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==} - engines: {node: '>=6'} - - supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} - - supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} - - supports-hyperlinks@2.3.0: - resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} - engines: {node: '>=8'} - - supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} - - svg-country-flags@1.2.10: - resolution: {integrity: sha512-xrqwo0TYf/h2cfPvGpjdSuSguUbri4vNNizBnwzoZnX0xGo3O5nGJMlbYEp7NOYcnPGBm6LE2axqDWSB847bLw==} - - svg-parser@2.0.4: - resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} - - svgo@1.3.2: - resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} - engines: {node: '>=4.0.0'} - deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. - hasBin: true - - svgo@2.8.0: - resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} - engines: {node: '>=10.13.0'} - hasBin: true - - svgo@3.3.2: - resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} - engines: {node: '>=14.0.0'} - hasBin: true - - swc-loader@0.2.6: - resolution: {integrity: sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg==} - peerDependencies: - '@swc/core': ^1.2.147 - webpack: 5.84.1 - - swr@2.2.5: - resolution: {integrity: sha512-QtxqyclFeAsxEUeZIYmsaQ0UjimSq1RZ9Un7I68/0ClKK/U3LoyQunwkQfJZr2fc22DfIXLNDc2wFyTEikCUpg==} - peerDependencies: - react: ^16.11.0 || ^17.0.0 || ^18.0.0 - - symbol-tree@3.2.4: - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} - - symbol.prototype.description@1.0.6: - resolution: {integrity: sha512-VgVgtEabORsQtmuindtO7v8fF+bsKxUkvEMFj+ecBK6bomrwv5JUSWdMoC3ypa9+Jaqp/wOzkWk4f6I+p5GzyA==} - engines: {node: '>= 0.4'} - - synchronous-promise@2.0.17: - resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==} - - synckit@0.6.2: - resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==} - engines: {node: '>=12.20'} - - table@6.8.2: - resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==} - engines: {node: '>=10.0.0'} - - tapable@1.1.3: - resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} - engines: {node: '>=6'} - - tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} - - tar-fs@2.1.1: - resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} - - tar-stream@2.2.0: - resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} - engines: {node: '>=6'} - - tar@6.2.1: - resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} - engines: {node: '>=10'} - - telejson@6.0.8: - resolution: {integrity: sha512-nerNXi+j8NK1QEfBHtZUN/aLdDcyupA//9kAboYLrtzZlPLpUfqbVGWb9zz91f/mIjRbAYhbgtnJHY8I1b5MBg==} - - telejson@7.2.0: - resolution: {integrity: sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==} - - temp-dir@1.0.0: - resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==} - engines: {node: '>=4'} - - temp-dir@2.0.0: - resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} - engines: {node: '>=8'} - - temp@0.8.4: - resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} - engines: {node: '>=6.0.0'} - - tempy@1.0.1: - resolution: {integrity: sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==} - engines: {node: '>=10'} - - term-size@2.2.1: - resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} - engines: {node: '>=8'} - - terminal-link@2.1.1: - resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} - engines: {node: '>=8'} - - terser-webpack-plugin@4.2.3: - resolution: {integrity: sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: 5.84.1 - - terser-webpack-plugin@5.3.10: - resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: 5.84.1 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - - terser@4.8.1: - resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} - engines: {node: '>=6.0.0'} - hasBin: true - - terser@5.31.1: - resolution: {integrity: sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==} - engines: {node: '>=10'} - hasBin: true - - test-exclude@6.0.0: - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} - engines: {node: '>=8'} - - text-extensions@1.9.0: - resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} - engines: {node: '>=0.10'} - - text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - - thread-loader@2.1.3: - resolution: {integrity: sha512-wNrVKH2Lcf8ZrWxDF/khdlLlsTMczdcwPA9VEK4c2exlEPynYWxi9op3nPTo5lAnDIkE0rQEB3VBP+4Zncc9Hg==} - engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 - - throat@5.0.0: - resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} - - throttleit@1.0.1: - resolution: {integrity: sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==} - - through2@2.0.5: - resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} - - through2@4.0.2: - resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} - - through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - - thunky@1.1.0: - resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} - - tiny-invariant@1.3.3: - resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} - - tiny-warning@1.0.3: - resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} - - tinycolor2@1.6.0: - resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} - - tinycolor@0.0.1: - resolution: {integrity: sha512-+CorETse1kl98xg0WAzii8DTT4ABF4R3nquhrkIbVGcw1T8JYs5Gfx9xEfGINPUZGDj9C4BmOtuKeaTtuuRolg==} - engines: {node: '>=0.4.0'} - - tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} - - tmp@0.2.3: - resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} - engines: {node: '>=14.14'} - - tmpl@1.0.5: - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} - - to-fast-properties@1.0.3: - resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==} - engines: {node: '>=0.10.0'} - - to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} - - to-object-path@0.3.0: - resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} - engines: {node: '>=0.10.0'} - - to-readable-stream@1.0.0: - resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} - engines: {node: '>=6'} - - to-regex-range@2.1.1: - resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} - engines: {node: '>=0.10.0'} - - to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} - - to-regex@3.0.2: - resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} - engines: {node: '>=0.10.0'} - - toidentifier@1.0.1: - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} - engines: {node: '>=0.6'} - - token-types@5.0.1: - resolution: {integrity: sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==} - engines: {node: '>=14.16'} - - toml@2.3.6: - resolution: {integrity: sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==} - - totalist@3.0.1: - resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} - engines: {node: '>=6'} - - tough-cookie@4.1.4: - resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} - engines: {node: '>=6'} - - tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - - tr46@2.1.0: - resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} - engines: {node: '>=8'} - - tr46@3.0.0: - resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} - engines: {node: '>=12'} - - tree-changes@0.11.2: - resolution: {integrity: sha512-4gXlUthrl+RabZw6lLvcCDl6KfJOCmrC16BC5CRdut1EAH509Omgg0BfKLY+ViRlzrvYOTWR0FMS2SQTwzumrw==} - - tree-changes@0.9.3: - resolution: {integrity: sha512-vvvS+O6kEeGRzMglTKbc19ltLWNtmNt1cpBoSYLj/iEcPVvpJasemKOlxBrmZaCtDJoF+4bwv3m01UKYi8mukQ==} - - treeverse@2.0.0: - resolution: {integrity: sha512-N5gJCkLu1aXccpOTtqV6ddSEi6ZmGkh3hjmbu1IjcavJK4qyOVQmi0myQKM7z5jVGmD68SJoliaVrMmVObhj6A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - trim-lines@3.0.1: - resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} - - trim-newlines@1.0.0: - resolution: {integrity: sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==} - engines: {node: '>=0.10.0'} - - trim-newlines@3.0.1: - resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} - engines: {node: '>=8'} - - trim-repeated@2.0.0: - resolution: {integrity: sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==} - engines: {node: '>=12'} - - trim-trailing-lines@1.1.4: - resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==} - - trim@0.0.1: - resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==} - deprecated: Use String.prototype.trim() instead - - trough@1.0.5: - resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} - - trough@2.2.0: - resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} - - ts-dedent@2.2.0: - resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} - engines: {node: '>=6.10'} - - ts-jest@26.5.6: - resolution: {integrity: sha512-rua+rCP8DxpA8b4DQD/6X2HQS8Zy/xzViVYfEs2OQu68tkCuKLV0Md8pmX55+W24uRIyAsf/BajRfxOs+R2MKA==} - engines: {node: '>= 10'} - hasBin: true - peerDependencies: - jest: '>=26 <27' - typescript: '>=3.8 <5.0' - - ts-jest@29.1.5: - resolution: {integrity: sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg==} - engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@jest/transform': ^29.0.0 - '@jest/types': ^29.0.0 - babel-jest: ^29.0.0 - esbuild: '*' - jest: ^29.0.0 - typescript: '>=4.3 <6' - peerDependenciesMeta: - '@babel/core': - optional: true - '@jest/transform': - optional: true - '@jest/types': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - - ts-loader@6.2.2: - resolution: {integrity: sha512-HDo5kXZCBml3EUPcc7RlZOV/JGlLHwppTLEHb3SHnr5V7NXD4klMEkrhJe5wgRbaWsSXi+Y1SIBN/K9B6zWGWQ==} - engines: {node: '>=8.6'} - peerDependencies: - typescript: '*' - - ts-loader@9.5.1: - resolution: {integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==} - engines: {node: '>=12.0.0'} - peerDependencies: - typescript: '*' - webpack: 5.84.1 - - ts-node@10.9.1: - resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true - - ts-node@8.10.2: - resolution: {integrity: sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA==} - engines: {node: '>=6.0.0'} - hasBin: true - peerDependencies: - typescript: '>=2.7' - - ts-pnp@1.2.0: - resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} - engines: {node: '>=6'} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - tsconfig-paths-webpack-plugin@3.5.2: - resolution: {integrity: sha512-EhnfjHbzm5IYI9YPNVIxx1moxMI4bpHD2e0zTXeDNQcwjjRaGepP7IhTHJkyDBG0CAOoxRfe7jCG630Ou+C6Pw==} - - tsconfig-paths-webpack-plugin@4.0.0: - resolution: {integrity: sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==} - engines: {node: '>=10.13.0'} - - tsconfig-paths@3.15.0: - resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} - - tsconfig-paths@4.2.0: - resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} - engines: {node: '>=6'} - - tslib@1.14.1: - resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - - tslib@2.6.3: - resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} - - tsutils@3.21.0: - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} - peerDependencies: - typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' - - tty-table@4.2.3: - resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==} - engines: {node: '>=8.0.0'} - hasBin: true - - tunnel-agent@0.6.0: - resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} - - tweetnacl@0.14.5: - resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} - - type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} - - type-detect@4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: '>=4'} - - type-fest@0.13.1: - resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} - engines: {node: '>=10'} - - type-fest@0.16.0: - resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} - engines: {node: '>=10'} - - type-fest@0.18.1: - resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} - engines: {node: '>=10'} - - type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} - - type-fest@0.21.3: - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} - engines: {node: '>=10'} - - type-fest@0.4.1: - resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==} - engines: {node: '>=6'} - - type-fest@0.6.0: - resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} - engines: {node: '>=8'} - - type-fest@0.8.1: - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} - engines: {node: '>=8'} - - type-fest@1.4.0: - resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} - engines: {node: '>=10'} - - type-fest@2.19.0: - resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} - engines: {node: '>=12.20'} - - type-fest@4.20.1: - resolution: {integrity: sha512-R6wDsVsoS9xYOpy8vgeBlqpdOyzJ12HNfQhC/aAKWM3YoCV9TtunJzh/QpkMgeDhkoynDcw5f1y+qF9yc/HHyg==} - engines: {node: '>=16'} - - type-is@1.6.18: - resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} - engines: {node: '>= 0.6'} - - type@2.7.3: - resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==} - - typed-array-buffer@1.0.2: - resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} - engines: {node: '>= 0.4'} - - typed-array-byte-length@1.0.1: - resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} - engines: {node: '>= 0.4'} - - typed-array-byte-offset@1.0.2: - resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} - engines: {node: '>= 0.4'} - - typed-array-length@1.0.6: - resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} - engines: {node: '>= 0.4'} - - typed-assert@1.0.9: - resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==} - - typedarray-to-buffer@3.1.5: - resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} - - typedarray@0.0.6: - resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - - typescript@4.9.5: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} - engines: {node: '>=4.2.0'} - hasBin: true - - typescript@5.1.6: - resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==} - engines: {node: '>=14.17'} - hasBin: true - - ua-parser-js@0.7.28: - resolution: {integrity: sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g==} - - ufo@1.5.3: - resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==} - - uglify-js@3.18.0: - resolution: {integrity: sha512-SyVVbcNBCk0dzr9XL/R/ySrmYf0s372K6/hFklzgcp2lBFyXtw4I7BOdDjlLhE1aVqaI/SHWXWmYdlZxuyF38A==} - engines: {node: '>=0.8.0'} - hasBin: true - - unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} - - underscore.deep@0.5.3: - resolution: {integrity: sha512-4OuSOlFNkiVFVc3khkeG112Pdu1gbitMj7t9B9ENb61uFmN70Jq7Iluhi3oflcSgexkKfDdJ5XAJET2gEq6ikA==} - engines: {node: '>=0.10.x'} - peerDependencies: - underscore: 1.x - - underscore@1.7.0: - resolution: {integrity: sha512-cp0oQQyZhUM1kpJDLdGO1jPZHgS/MpzoWYfe9+CM2h/QGDZlqwT2T3YGukuBdaNJ/CAPoeyAZRRHz8JFo176vA==} - - unfetch@4.2.0: - resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==} - - unherit@1.1.3: - resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==} - - unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} - engines: {node: '>=4'} - - unicode-match-property-ecmascript@2.0.0: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} - engines: {node: '>=4'} - - unicode-match-property-value-ecmascript@2.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} - engines: {node: '>=4'} - - unicode-property-aliases-ecmascript@2.1.0: - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} - engines: {node: '>=4'} - - unicorn-magic@0.1.0: - resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} - engines: {node: '>=18'} - - unified@11.0.5: - resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} - - unified@9.2.0: - resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==} - - union-value@1.0.1: - resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} - engines: {node: '>=0.10.0'} - - union@0.5.0: - resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} - engines: {node: '>= 0.8.0'} - - unique-filename@1.1.1: - resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} - - unique-filename@2.0.1: - resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - unique-slug@2.0.2: - resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} - - unique-slug@3.0.0: - resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - unique-string@2.0.0: - resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} - engines: {node: '>=8'} - - unist-builder@2.0.3: - resolution: {integrity: sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==} - - unist-util-generated@1.1.6: - resolution: {integrity: sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==} - - unist-util-is@4.1.0: - resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} - - unist-util-is@6.0.0: - resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} - - unist-util-position@3.1.0: - resolution: {integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==} - - unist-util-position@5.0.0: - resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} - - unist-util-remove-position@2.0.1: - resolution: {integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==} - - unist-util-remove-position@5.0.0: - resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} - - unist-util-remove@2.1.0: - resolution: {integrity: sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==} - - unist-util-stringify-position@2.0.3: - resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} - - unist-util-stringify-position@4.0.0: - resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} - - unist-util-visit-parents@3.1.1: - resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} - - unist-util-visit-parents@6.0.1: - resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} - - unist-util-visit@2.0.3: - resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} - - unist-util-visit@5.0.0: - resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} - - universal-user-agent@6.0.1: - resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} - - universalify@0.1.2: - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} - engines: {node: '>= 4.0.0'} - - universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} - - universalify@2.0.1: - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} - engines: {node: '>= 10.0.0'} - - unpipe@1.0.0: - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} - engines: {node: '>= 0.8'} - - unquote@1.1.1: - resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} - - unset-value@1.0.0: - resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} - engines: {node: '>=0.10.0'} - - untildify@2.1.0: - resolution: {integrity: sha512-sJjbDp2GodvkB0FZZcn7k6afVisqX5BZD7Yq3xp4nN2O15BBK0cLm3Vwn2vQaF7UDS0UUsrQMkkplmDI5fskig==} - engines: {node: '>=0.10.0'} - - untildify@4.0.0: - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} - engines: {node: '>=8'} - - upath@1.2.0: - resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} - engines: {node: '>=4'} - - upath@2.0.1: - resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} - engines: {node: '>=4'} - - update-browserslist-db@1.0.16: - resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - - update-notifier@5.1.0: - resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==} - engines: {node: '>=10'} - - uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} - - urix@0.1.0: - resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} - deprecated: Please see https://github.com/lydell/urix#deprecated - - url-join@4.0.1: - resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} - - url-loader@4.1.1: - resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - file-loader: '*' - webpack: 5.84.1 - peerDependenciesMeta: - file-loader: - optional: true - - url-parse-lax@3.0.0: - resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} - engines: {node: '>=4'} - - url-parse@1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} - - url@0.11.3: - resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==} - - use-sync-external-store@1.2.0: - resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - - use-sync-external-store@1.2.2: - resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - - use@3.1.1: - resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} - engines: {node: '>=0.10.0'} - - util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - - util.promisify@1.0.0: - resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==} - - util.promisify@1.0.1: - resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} - - util@0.10.4: - resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} - - util@0.12.5: - resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} - - utila@0.4.0: - resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} - - utils-merge@1.0.1: - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} - engines: {node: '>= 0.4.0'} - - uuid-browser@3.1.0: - resolution: {integrity: sha512-dsNgbLaTrd6l3MMxTtouOCFw4CBFc/3a+GgYA2YyrJvyQ1u6q4pcu3ktLoUZ/VN/Aw9WsauazbgsgdfVWgAKQg==} - deprecated: Package no longer supported and required. Use the uuid package or crypto.randomUUID instead - - uuid@3.4.0: - resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} - deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. - hasBin: true - - uuid@8.3.2: - resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} - hasBin: true - - v8-compile-cache-lib@3.0.1: - resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - - v8-compile-cache@2.3.0: - resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} - - v8-compile-cache@2.4.0: - resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} - - v8-to-istanbul@7.1.2: - resolution: {integrity: sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==} - engines: {node: '>=10.10.0'} - - v8-to-istanbul@9.3.0: - resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} - engines: {node: '>=10.12.0'} - - validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} - - validate-npm-package-name@3.0.0: - resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==} - - validate-npm-package-name@4.0.0: - resolution: {integrity: sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - validate-npm-package-name@5.0.1: - resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - - value-equal@1.0.1: - resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==} - - vary@1.1.2: - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} - engines: {node: '>= 0.8'} - - verror@1.10.0: - resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} - engines: {'0': node >=0.6.0} - - vfile-location@3.2.0: - resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==} - - vfile-message@2.0.4: - resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==} - - vfile-message@4.0.2: - resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} - - vfile@4.2.1: - resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==} - - vfile@6.0.1: - resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==} - - victory-vendor@36.9.2: - resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==} - - void-elements@3.1.0: - resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} - engines: {node: '>=0.10.0'} - - w3c-hr-time@1.0.2: - resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} - deprecated: Use your platform's native performance.now() and performance.timeOrigin. - - w3c-xmlserializer@2.0.0: - resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} - engines: {node: '>=10'} - - w3c-xmlserializer@4.0.0: - resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} - engines: {node: '>=14'} - - walk-up-path@1.0.0: - resolution: {integrity: sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg==} - - walker@1.0.8: - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} - - warning@4.0.3: - resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==} - - watch@1.0.2: - resolution: {integrity: sha512-1u+Z5n9Jc1E2c7qDO8SinPoZuHj7FgbgU1olSFoyaklduDvvtX7GMMtlE6OC9FTXq4KvNAOfj6Zu4vI1e9bAKA==} - engines: {node: '>=0.1.95'} - hasBin: true - - watchpack@2.4.1: - resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==} - engines: {node: '>=10.13.0'} - - wbuf@1.7.3: - resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} - - wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} - - web-namespaces@1.1.4: - resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==} - - webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} - - webidl-conversions@5.0.0: - resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} - engines: {node: '>=8'} - - webidl-conversions@6.1.0: - resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} - engines: {node: '>=10.4'} - - webidl-conversions@7.0.0: - resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} - engines: {node: '>=12'} - - webpack-bundle-analyzer@4.10.2: - resolution: {integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==} - engines: {node: '>= 10.13.0'} - hasBin: true - - webpack-cli@4.10.0: - resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - '@webpack-cli/generators': '*' - '@webpack-cli/migrate': '*' - webpack: 5.84.1 - webpack-bundle-analyzer: '*' - webpack-dev-server: '*' - peerDependenciesMeta: - '@webpack-cli/generators': - optional: true - '@webpack-cli/migrate': - optional: true - webpack-bundle-analyzer: - optional: true - webpack-dev-server: - optional: true - - webpack-dev-middleware@3.7.3: - resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==} - engines: {node: '>= 6'} - peerDependencies: - webpack: 5.84.1 - - webpack-dev-middleware@4.3.0: - resolution: {integrity: sha512-PjwyVY95/bhBh6VUqt6z4THplYcsvQ8YNNBTBM873xLVmw8FLeALn0qurHbs9EmcfhzQis/eoqypSnZeuUz26w==} - engines: {node: '>= v10.23.3'} - peerDependencies: - webpack: 5.84.1 - - webpack-dev-middleware@5.3.4: - resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: 5.84.1 - - webpack-dev-middleware@6.1.3: - resolution: {integrity: sha512-A4ChP0Qj8oGociTs6UdlRUGANIGrCDL3y+pmQMc+dSsraXHCatFpmMey4mYELA+juqwUqwQsUgJJISXl1KWmiw==} - engines: {node: '>= 14.15.0'} - peerDependencies: - webpack: 5.84.1 - peerDependenciesMeta: - webpack: - optional: true - - webpack-dev-server@3.11.3: - resolution: {integrity: sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==} - engines: {node: '>= 6.11.5'} - hasBin: true - peerDependencies: - webpack: 5.84.1 - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - - webpack-dev-server@4.15.2: - resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==} - engines: {node: '>= 12.13.0'} - hasBin: true - peerDependencies: - webpack: 5.84.1 - webpack-cli: '*' - peerDependenciesMeta: - webpack: - optional: true - webpack-cli: - optional: true - - webpack-filter-warnings-plugin@1.2.1: - resolution: {integrity: sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==} - engines: {node: '>= 4.3 < 5.0.0 || >= 5.10'} - peerDependencies: - webpack: 5.84.1 - - webpack-hot-middleware@2.26.1: - resolution: {integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==} - - webpack-log@1.2.0: - resolution: {integrity: sha512-U9AnICnu50HXtiqiDxuli5gLB5PGBo7VvcHx36jRZHwK4vzOYLbImqT4lwWwoMHdQWwEKw736fCHEekokTEKHA==} - engines: {node: '>=6'} - - webpack-log@2.0.0: - resolution: {integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==} - engines: {node: '>= 6'} - - webpack-merge@5.10.0: - resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} - engines: {node: '>=10.0.0'} - - webpack-node-externals@3.0.0: - resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==} - engines: {node: '>=6'} - - webpack-sources@1.4.3: - resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==} - - webpack-sources@3.2.3: - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} - engines: {node: '>=10.13.0'} - - webpack-subresource-integrity@5.1.0: - resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==} - engines: {node: '>= 12'} - peerDependencies: - html-webpack-plugin: '>= 5.0.0-beta.1 < 6' - webpack: 5.84.1 - peerDependenciesMeta: - html-webpack-plugin: - optional: true - - webpack-virtual-modules@0.2.2: - resolution: {integrity: sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==} - - webpack-virtual-modules@0.4.6: - resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==} - - webpack-virtual-modules@0.5.0: - resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==} - - webpack@5.84.1: - resolution: {integrity: sha512-ZP4qaZ7vVn/K8WN/p990SGATmrL1qg4heP/MrVneczYtpDGJWlrgZv55vxaV2ul885Kz+25MP2kSXkPe3LZfmg==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - - websocket-driver@0.7.4: - resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} - engines: {node: '>=0.8.0'} - - websocket-extensions@0.1.4: - resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} - engines: {node: '>=0.8.0'} - - whatwg-encoding@1.0.5: - resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} - - whatwg-encoding@2.0.0: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} - engines: {node: '>=12'} - - whatwg-fetch@3.6.20: - resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} - - whatwg-mimetype@2.3.0: - resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} - - whatwg-mimetype@3.0.0: - resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} - engines: {node: '>=12'} - - whatwg-url@11.0.0: - resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} - engines: {node: '>=12'} - - whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} - - whatwg-url@8.7.0: - resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} - engines: {node: '>=10'} - - which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} - - which-builtin-type@1.1.3: - resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} - engines: {node: '>= 0.4'} - - which-collection@1.0.2: - resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} - engines: {node: '>= 0.4'} - - which-module@2.0.1: - resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} - - which-pm@2.2.0: - resolution: {integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==} - engines: {node: '>=8.15'} - - which-typed-array@1.1.15: - resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} - engines: {node: '>= 0.4'} - - which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true - - which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} - hasBin: true - - wide-align@1.1.5: - resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} - - widest-line@3.1.0: - resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} - engines: {node: '>=8'} - - wildcard@2.0.1: - resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} - - word-wrap@1.2.5: - resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} - engines: {node: '>=0.10.0'} - - wordwrap@1.0.0: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} - - worker-loader@2.0.0: - resolution: {integrity: sha512-tnvNp4K3KQOpfRnD20m8xltE3eWh89Ye+5oj7wXEEHKac1P4oZ6p9oTj8/8ExqoSBnk9nu5Pr4nKfQ1hn2APJw==} - engines: {node: '>= 6.9.0 || >= 8.9.0'} - peerDependencies: - webpack: 5.84.1 - - worker-rpc@0.1.1: - resolution: {integrity: sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==} - - world-countries@5.0.0: - resolution: {integrity: sha512-wAfOT9Y5i/xnxNOdKJKXdOCw9Q3yQLahBUeuRol+s+o20F6h2a4tLEbJ1lBCYwEQ30Sf9Meqeipk1gib3YwF5w==} - - wrap-ansi@5.1.0: - resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==} - engines: {node: '>=6'} - - wrap-ansi@6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: '>=8'} - - wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} - - wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} - - wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - - write-file-atomic@2.4.3: - resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} - - write-file-atomic@3.0.3: - resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} - - write-file-atomic@4.0.2: - resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - - write-file-webpack-plugin@4.5.1: - resolution: {integrity: sha512-AZ7qJUvhTCBiOtG21aFJUcNuLVo2FFM6JMGKvaUGAH+QDqQAp2iG0nq3GcuXmJOFQR2JjpjhyYkyPrbFKhdjNQ==} - engines: {node: '>=4'} - - write-json-file@3.2.0: - resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==} - engines: {node: '>=6'} - - write-json-file@4.3.0: - resolution: {integrity: sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ==} - engines: {node: '>=8.3'} - - write-pkg@4.0.0: - resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==} - engines: {node: '>=8'} - - ws@6.2.3: - resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - - ws@7.5.10: - resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} - engines: {node: '>=8.3.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - - ws@8.17.1: - resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - - x-default-browser@0.4.0: - resolution: {integrity: sha512-7LKo7RtWfoFN/rHx1UELv/2zHGMx8MkZKDq1xENmOCTkfIqZJ0zZ26NEJX8czhnPXVcqS0ARjjfJB+eJ0/5Cvw==} - hasBin: true - - xdg-basedir@4.0.0: - resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} - engines: {node: '>=8'} - - xml-name-validator@3.0.0: - resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} - - xml-name-validator@4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} - engines: {node: '>=12'} - - xmlchars@2.2.0: - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} - - xtend@4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: '>=0.4'} - - y18n@4.0.3: - resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} - - y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} - - yallist@2.1.2: - resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} - - yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - - yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - - yaml@1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} - - yargs-parser@13.1.2: - resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==} - - yargs-parser@18.1.3: - resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} - engines: {node: '>=6'} - - yargs-parser@20.2.4: - resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} - engines: {node: '>=10'} - - yargs-parser@20.2.9: - resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} - engines: {node: '>=10'} - - yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} - - yargs@13.3.2: - resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==} - - yargs@15.4.1: - resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} - engines: {node: '>=8'} - - yargs@16.2.0: - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} - engines: {node: '>=10'} - - yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} - - yauzl@2.10.0: - resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} - - yn@3.1.1: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} - engines: {node: '>=6'} - - yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} - - yocto-queue@1.1.1: - resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} - engines: {node: '>=12.20'} - - zustand@4.5.4: - resolution: {integrity: sha512-/BPMyLKJPtFEvVL0E9E9BTUM63MNyhPGlvxk1XjrfWTUlV+BR8jufjsovHzrtR6YNcBEcL7cMHovL1n9xHawEg==} - engines: {node: '>=12.7.0'} - peerDependencies: - '@types/react': 18.0.18 - immer: '>=9.0.6' - react: '>=16.8' - peerDependenciesMeta: - '@types/react': - optional: true - immer: - optional: true - react: - optional: true - - zwitch@1.0.5: - resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==} - - zwitch@2.0.4: - resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} - -snapshots: - - '@adobe/css-tools@4.4.0': {} - - '@ampproject/remapping@2.3.0': - dependencies: - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - - '@artsy/fresnel@6.2.1(react@18.3.1)': - dependencies: - react: 18.3.1 - - '@asgardeo/auth-js@5.0.1': {} - - '@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@4.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@asgardeo/auth-spa': 3.0.3 - '@babel/runtime-corejs3': 7.24.7 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-router-dom: 4.3.1(react@18.3.1) - transitivePeerDependencies: - - debug - - '@asgardeo/auth-react@4.0.4(@babel/runtime-corejs3@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.24.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': - dependencies: - '@asgardeo/auth-spa': 3.0.3 - '@babel/runtime-corejs3': 7.24.7 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-router-dom: 6.24.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - transitivePeerDependencies: - - debug - - '@asgardeo/auth-spa@3.0.3': - dependencies: - '@asgardeo/auth-js': 5.0.1 - await-semaphore: 0.1.3 - axios: 0.26.1 - base64url: 3.0.1 - buffer: 6.0.3 - fast-sha256: 1.3.0 - jose: 4.15.7 - randombytes: 2.1.0 - transitivePeerDependencies: - - debug - - '@aw-web-design/x-default-browser@1.4.126': - dependencies: - default-browser-id: 3.0.0 - - '@babel/cli@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@jridgewell/trace-mapping': 0.3.25 - commander: 6.2.1 - convert-source-map: 2.0.0 - fs-readdir-recursive: 1.1.0 - glob: 7.2.3 - make-dir: 2.1.0 - slash: 2.0.0 - optionalDependencies: - '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3 - chokidar: 3.6.0 - - '@babel/code-frame@7.12.11': - dependencies: - '@babel/highlight': 7.24.7 - - '@babel/code-frame@7.24.7': - dependencies: - '@babel/highlight': 7.24.7 - picocolors: 1.0.1 - - '@babel/compat-data@7.24.7': {} - - '@babel/core@7.12.9': - dependencies: - '@babel/code-frame': 7.24.7 - '@babel/generator': 7.24.7 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.12.9) - '@babel/helpers': 7.24.7 - '@babel/parser': 7.24.7 - '@babel/template': 7.24.7 - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - convert-source-map: 1.9.0 - debug: 4.3.5(supports-color@8.1.1) - gensync: 1.0.0-beta.2 - json5: 2.2.3 - lodash: 4.17.21 - resolve: 1.22.8 - semver: 5.7.2 - source-map: 0.5.7 - transitivePeerDependencies: - - supports-color - - '@babel/core@7.24.7': - dependencies: - '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.24.7 - '@babel/generator': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) - '@babel/helpers': 7.24.7 - '@babel/parser': 7.24.7 - '@babel/template': 7.24.7 - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - convert-source-map: 2.0.0 - debug: 4.3.5(supports-color@8.1.1) - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/generator@7.24.7': - dependencies: - '@babel/types': 7.24.7 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 2.5.2 - - '@babel/helper-annotate-as-pure@7.24.7': - dependencies: - '@babel/types': 7.24.7 - - '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7': - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-compilation-targets@7.24.7': - dependencies: - '@babel/compat-data': 7.24.7 - '@babel/helper-validator-option': 7.24.7 - browserslist: 4.23.1 - lru-cache: 5.1.1 - semver: 6.3.1 - - '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.24.7 - '@babel/helper-optimise-call-expression': 7.24.7 - '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7) - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - regexpu-core: 5.3.2 - semver: 6.3.1 - - '@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/traverse': 7.24.7 - debug: 4.3.5(supports-color@8.1.1) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - debug: 4.3.5(supports-color@8.1.1) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - - '@babel/helper-environment-visitor@7.24.7': - dependencies: - '@babel/types': 7.24.7 - - '@babel/helper-function-name@7.24.7': - dependencies: - '@babel/template': 7.24.7 - '@babel/types': 7.24.7 - - '@babel/helper-hoist-variables@7.24.7': - dependencies: - '@babel/types': 7.24.7 - - '@babel/helper-member-expression-to-functions@7.24.7': - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-module-imports@7.24.7': - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-module-imports@7.24.7(supports-color@5.5.0)': - dependencies: - '@babel/traverse': 7.24.7(supports-color@5.5.0) - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-module-transforms@7.24.7(@babel/core@7.12.9)': - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-simple-access': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/helper-validator-identifier': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-simple-access': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/helper-validator-identifier': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-optimise-call-expression@7.24.7': - dependencies: - '@babel/types': 7.24.7 - - '@babel/helper-plugin-utils@7.10.4': {} - - '@babel/helper-plugin-utils@7.24.7': {} - - '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-wrap-function': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.24.7 - '@babel/helper-optimise-call-expression': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-simple-access@7.24.7': - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-skip-transparent-expression-wrappers@7.24.7': - dependencies: - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-split-export-declaration@7.24.7': - dependencies: - '@babel/types': 7.24.7 - - '@babel/helper-string-parser@7.24.7': {} - - '@babel/helper-validator-identifier@7.24.7': {} - - '@babel/helper-validator-option@7.24.7': {} - - '@babel/helper-wrap-function@7.24.7': - dependencies: - '@babel/helper-function-name': 7.24.7 - '@babel/template': 7.24.7 - '@babel/traverse': 7.24.7 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/helpers@7.24.7': - dependencies: - '@babel/template': 7.24.7 - '@babel/types': 7.24.7 - - '@babel/highlight@7.24.7': - dependencies: - '@babel/helper-validator-identifier': 7.24.7 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.0.1 - - '@babel/parser@7.24.7': - dependencies: - '@babel/types': 7.24.7 - - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-proposal-export-default-from@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.24.7) - - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) - - '@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9)': dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.12.9) - '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.7)': + /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.7): + resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} + 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-object-rest-spread instead. + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.24.7 '@babel/core': 7.24.7 @@ -34589,7 +20544,12 @@ snapshots: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7) '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.7)': + /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.7): + resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} + 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-optional-chaining instead. + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -34598,7 +20558,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.24.7)': + /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.24.7): + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + 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-private-methods instead. + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) @@ -34606,11 +20571,20 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7)': + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7): + resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 - '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.24.7)': + /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.24.7): + resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} + 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-private-property-in-object instead. + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 @@ -34620,143 +20594,240 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7)': + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7): + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.7)': + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.7): + resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.7)': + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.7): + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.7)': + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.7): + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.7)': + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.7): + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-export-default-from@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-syntax-export-default-from@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-bTPz4/635WQ9WhwsyPdxUJDVpsi/X9BMmy/8Rf/UAlOO4jSql4CxUCjWI5PiM+jG+c4LVPTScoTw80geFj9+Bw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.7)': + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.7): + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-syntax-flow@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7)': + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7): + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7)': + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7): + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9)': + /@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9): + resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.7)': + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.7): + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7)': + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7): + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7)': + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7): + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9)': + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9): + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7)': + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7): + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7)': + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7): + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7)': + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7): + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.7)': + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.7): + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7)': + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7): + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.7)': + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.7): + resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-environment-visitor': 7.24.7 @@ -34766,7 +20837,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-module-imports': 7.24.7 @@ -34775,17 +20850,29 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) @@ -34793,7 +20880,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) @@ -34802,7 +20893,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-classes@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-classes@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 @@ -34816,35 +20911,59 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/template': 7.24.7 - '@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7 @@ -34852,19 +20971,31 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-flow-strip-types@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-flow-strip-types@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-cjRKJ7FobOH2eakx7Ja+KpJRj8+y+/SiB3ooYm/n2UJfxu0oEaOoxOinitkJcPqv9KxS0kxTGPUaR7L2XcXDXA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -34872,36 +21003,60 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-compilation-targets': 7.24.7 '@babel/helper-function-name': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7) - '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) @@ -34909,7 +21064,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) @@ -34918,7 +21077,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-hoist-variables': 7.24.7 @@ -34928,7 +21091,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7) @@ -34936,30 +21103,50 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7) - '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-compilation-targets': 7.24.7 @@ -34967,7 +21154,11 @@ snapshots: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7) '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -34975,13 +21166,21 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -34990,17 +21189,29 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.12.9)': + /@babel/plugin-transform-parameters@7.24.7(@babel/core@7.12.9): + resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7) @@ -35008,7 +21219,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 @@ -35018,29 +21233,49 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-react-constant-elements@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-react-constant-elements@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-7LidzZfUXyfZ8/buRW6qIIHBY8wAZ1OrY9c/wTr8YhZ6vMPo+Uc/CVFLYY1spZrEQlD4w5u8wjqk5NQ3OVqQKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 @@ -35051,24 +21286,40 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 regenerator-transform: 0.15.2 - '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-runtime@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-runtime@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-module-imports': 7.24.7 @@ -35079,13 +21330,22 @@ snapshots: semver: 6.3.1 transitivePeerDependencies: - supports-color + dev: true - '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -35093,22 +21353,38 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-annotate-as-pure': 7.24.7 @@ -35118,35 +21394,57 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.7)': + /@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.24.7 '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7) '@babel/helper-plugin-utils': 7.24.7 - '@babel/polyfill@7.12.1': + /@babel/polyfill@7.12.1: + resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==} + deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information. dependencies: core-js: 2.6.12 regenerator-runtime: 0.13.11 - '@babel/preset-env@7.24.7(@babel/core@7.24.7)': + /@babel/preset-env@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.24.7 '@babel/core': 7.24.7 @@ -35233,21 +21531,32 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/preset-flow@7.24.7(@babel/core@7.24.7)': + /@babel/preset-flow@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/helper-validator-option': 7.24.7 '@babel/plugin-transform-flow-strip-types': 7.24.7(@babel/core@7.24.7) - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.7)': + /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.7): + resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 '@babel/types': 7.24.7 esutils: 2.0.3 - '@babel/preset-react@7.24.7(@babel/core@7.24.7)': + /@babel/preset-react@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -35259,7 +21568,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/preset-typescript@7.24.7(@babel/core@7.24.7)': + /@babel/preset-typescript@7.24.7(@babel/core@7.24.7): + resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -35270,7 +21583,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/register@7.24.6(@babel/core@7.24.7)': + /@babel/register@7.24.6(@babel/core@7.24.7): + resolution: {integrity: sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 clone-deep: 4.0.1 @@ -35279,24 +21596,33 @@ snapshots: pirates: 4.0.6 source-map-support: 0.5.21 - '@babel/regjsgen@0.8.0': {} + /@babel/regjsgen@0.8.0: + resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} - '@babel/runtime-corejs3@7.24.7': + /@babel/runtime-corejs3@7.24.7: + resolution: {integrity: sha512-eytSX6JLBY6PVAeQa2bFlDx/7Mmln/gaEpsit5a3WEvjGfiIytEsgAwuIXCPM0xvw0v0cJn3ilq0/TvXrW0kgA==} + engines: {node: '>=6.9.0'} dependencies: core-js-pure: 3.37.1 regenerator-runtime: 0.14.1 - '@babel/runtime@7.24.7': + /@babel/runtime@7.24.7: + resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==} + engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.14.1 - '@babel/template@7.24.7': + /@babel/template@7.24.7: + resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==} + engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.24.7 '@babel/parser': 7.24.7 '@babel/types': 7.24.7 - '@babel/traverse@7.24.7': + /@babel/traverse@7.24.7: + resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==} + engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.24.7 '@babel/generator': 7.24.7 @@ -35306,12 +21632,14 @@ snapshots: '@babel/helper-split-export-declaration': 7.24.7 '@babel/parser': 7.24.7 '@babel/types': 7.24.7 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/traverse@7.24.7(supports-color@5.5.0)': + /@babel/traverse@7.24.7(supports-color@5.5.0): + resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==} + engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.24.7 '@babel/generator': 7.24.7 @@ -35325,20 +21653,29 @@ snapshots: globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: false - '@babel/types@7.24.7': + /@babel/types@7.24.7: + resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==} + engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.24.7 '@babel/helper-validator-identifier': 7.24.7 to-fast-properties: 2.0.0 - '@base2/pretty-print-object@1.0.1': {} + /@base2/pretty-print-object@1.0.1: + resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} - '@bcoe/v8-coverage@0.2.3': {} + /@bcoe/v8-coverage@0.2.3: + resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} - '@braintree/sanitize-url@5.0.2': {} + /@braintree/sanitize-url@5.0.2: + resolution: {integrity: sha512-NBEJlHWrhQucLhZGHtSxM2loSaNUMajC7KOYJLyfcdW/6goVoff2HoYI3bz8YCDN0wKGbxtUL0gx2dvHpvnWlw==} + deprecated: Potential XSS vulnerability patched in v6.0.0. + dev: false - '@changesets/apply-release-plan@7.0.3': + /@changesets/apply-release-plan@7.0.3: + resolution: {integrity: sha512-klL6LCdmfbEe9oyfLxnidIf/stFXmrbFO/3gT5LU5pcyoZytzJe4gWpTBx3BPmyNPl16dZ1xrkcW7b98e3tYkA==} dependencies: '@babel/runtime': 7.24.7 '@changesets/config': 3.0.1 @@ -35354,8 +21691,10 @@ snapshots: prettier: 2.8.8 resolve-from: 5.0.0 semver: 7.6.2 + dev: true - '@changesets/assemble-release-plan@6.0.2': + /@changesets/assemble-release-plan@6.0.2: + resolution: {integrity: sha512-n9/Tdq+ze+iUtjmq0mZO3pEhJTKkku9hUxtUadW30jlN7kONqJG3O6ALeXrmc6gsi/nvoCuKjqEJ68Hk8RbMTQ==} dependencies: '@babel/runtime': 7.24.7 '@changesets/errors': 0.2.0 @@ -35364,20 +21703,27 @@ snapshots: '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 semver: 7.6.2 + dev: true - '@changesets/changelog-git@0.2.0': + /@changesets/changelog-git@0.2.0: + resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} dependencies: '@changesets/types': 6.0.0 + dev: true - '@changesets/changelog-github@0.4.8(encoding@0.1.13)': + /@changesets/changelog-github@0.4.8: + resolution: {integrity: sha512-jR1DHibkMAb5v/8ym77E4AMNWZKB5NPzw5a5Wtqm1JepAuIF+hrKp2u04NKM14oBZhHglkCfrla9uq8ORnK/dw==} dependencies: - '@changesets/get-github-info': 0.5.2(encoding@0.1.13) + '@changesets/get-github-info': 0.5.2 '@changesets/types': 5.2.1 dotenv: 8.6.0 transitivePeerDependencies: - encoding + dev: true - '@changesets/cli@2.27.5': + /@changesets/cli@2.27.5: + resolution: {integrity: sha512-UVppOvzCjjylBenFcwcZNG5IaZ8jsIaEVraV/pbXgukYNb0Oqa0d8UWb0LkYzA1Bf1HmUrOfccFcRLheRuA7pA==} + hasBin: true dependencies: '@babel/runtime': 7.24.7 '@changesets/apply-release-plan': 7.0.3 @@ -35404,6 +21750,7 @@ snapshots: fs-extra: 7.0.1 human-id: 1.0.2 meow: 6.1.1 + mri: 1.2.0 outdent: 0.5.0 p-limit: 2.3.0 preferred-pm: 3.1.4 @@ -35412,8 +21759,10 @@ snapshots: spawndamnit: 2.0.0 term-size: 2.2.1 tty-table: 4.2.3 + dev: true - '@changesets/config@3.0.1': + /@changesets/config@3.0.1: + resolution: {integrity: sha512-nCr8pOemUjvGJ8aUu8TYVjqnUL+++bFOQHBVmtNbLvKzIDkN/uiP/Z4RKmr7NNaiujIURHySDEGFPftR4GbTUA==} dependencies: '@changesets/errors': 0.2.0 '@changesets/get-dependents-graph': 2.1.0 @@ -35422,27 +21771,35 @@ snapshots: '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 micromatch: 4.0.7 + dev: true - '@changesets/errors@0.2.0': + /@changesets/errors@0.2.0: + resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} dependencies: extendable-error: 0.1.7 + dev: true - '@changesets/get-dependents-graph@2.1.0': + /@changesets/get-dependents-graph@2.1.0: + resolution: {integrity: sha512-QOt6pQq9RVXKGHPVvyKimJDYJumx7p4DO5MO9AhRJYgAPgv0emhNqAqqysSVKHBm4sxKlGN4S1zXOIb5yCFuhQ==} dependencies: '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 chalk: 2.4.2 fs-extra: 7.0.1 semver: 7.6.2 + dev: true - '@changesets/get-github-info@0.5.2(encoding@0.1.13)': + /@changesets/get-github-info@0.5.2: + resolution: {integrity: sha512-JppheLu7S114aEs157fOZDjFqUDpm7eHdq5E8SSR0gUBTEK0cNSHsrSR5a66xs0z3RWuo46QvA3vawp8BxDHvg==} dependencies: dataloader: 1.4.0 - node-fetch: 2.7.0(encoding@0.1.13) + node-fetch: 2.7.0 transitivePeerDependencies: - encoding + dev: true - '@changesets/get-release-plan@4.0.2': + /@changesets/get-release-plan@4.0.2: + resolution: {integrity: sha512-rOalz7nMuMV2vyeP7KBeAhqEB7FM2GFPO5RQSoOoUKKH9L6wW3QyPA2K+/rG9kBrWl2HckPVES73/AuwPvbH3w==} dependencies: '@babel/runtime': 7.24.7 '@changesets/assemble-release-plan': 6.0.2 @@ -35451,10 +21808,14 @@ snapshots: '@changesets/read': 0.6.0 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 + dev: true - '@changesets/get-version-range-type@0.4.0': {} + /@changesets/get-version-range-type@0.4.0: + resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} + dev: true - '@changesets/git@3.0.0': + /@changesets/git@3.0.0: + resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} dependencies: '@babel/runtime': 7.24.7 '@changesets/errors': 0.2.0 @@ -35463,25 +21824,33 @@ snapshots: is-subdir: 1.2.0 micromatch: 4.0.7 spawndamnit: 2.0.0 + dev: true - '@changesets/logger@0.1.0': + /@changesets/logger@0.1.0: + resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} dependencies: chalk: 2.4.2 + dev: true - '@changesets/parse@0.4.0': + /@changesets/parse@0.4.0: + resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} dependencies: '@changesets/types': 6.0.0 js-yaml: 3.13.1 + dev: true - '@changesets/pre@2.0.0': + /@changesets/pre@2.0.0: + resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} dependencies: '@babel/runtime': 7.24.7 '@changesets/errors': 0.2.0 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 + dev: true - '@changesets/read@0.6.0': + /@changesets/read@0.6.0: + resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} dependencies: '@babel/runtime': 7.24.7 '@changesets/git': 3.0.0 @@ -35491,40 +21860,62 @@ snapshots: chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 + dev: true - '@changesets/should-skip-package@0.1.0': + /@changesets/should-skip-package@0.1.0: + resolution: {integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==} dependencies: '@babel/runtime': 7.24.7 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 + dev: true - '@changesets/types@4.1.0': {} + /@changesets/types@4.1.0: + resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} + dev: true - '@changesets/types@5.2.1': {} + /@changesets/types@5.2.1: + resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==} + dev: true - '@changesets/types@6.0.0': {} + /@changesets/types@6.0.0: + resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} + dev: true - '@changesets/write@0.3.1': + /@changesets/write@0.3.1: + resolution: {integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==} dependencies: '@babel/runtime': 7.24.7 '@changesets/types': 6.0.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 2.8.8 + dev: true - '@cnakazawa/watch@1.0.4': + /@cnakazawa/watch@1.0.4: + resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==} + engines: {node: '>=0.1.95'} + hasBin: true dependencies: exec-sh: 0.3.6 minimist: 1.2.8 - '@colors/colors@1.5.0': + /@colors/colors@1.5.0: + resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} + engines: {node: '>=0.1.90'} + requiresBuild: true optional: true - '@cspotcode/source-map-support@0.8.1': + /@cspotcode/source-map-support@0.8.1: + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} dependencies: '@jridgewell/trace-mapping': 0.3.9 + dev: true - '@cypress/request@2.88.12': + /@cypress/request@2.88.12: + resolution: {integrity: sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==} + engines: {node: '>= 6'} dependencies: aws-sign2: 0.7.0 aws4: 1.13.0 @@ -35544,17 +21935,23 @@ snapshots: tough-cookie: 4.1.4 tunnel-agent: 0.6.0 uuid: 8.3.2 + dev: true - '@cypress/xvfb@1.2.4(supports-color@8.1.1)': + /@cypress/xvfb@1.2.4(supports-color@8.1.1): + resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} dependencies: debug: 3.2.7(supports-color@8.1.1) lodash.once: 4.1.1 transitivePeerDependencies: - supports-color + dev: true - '@discoveryjs/json-ext@0.5.7': {} + /@discoveryjs/json-ext@0.5.7: + resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} + engines: {node: '>=10.0.0'} - '@emotion/babel-plugin@11.11.0': + /@emotion/babel-plugin@11.11.0: + resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} dependencies: '@babel/helper-module-imports': 7.24.7 '@babel/runtime': 7.24.7 @@ -35569,30 +21966,50 @@ snapshots: stylis: 4.2.0 transitivePeerDependencies: - supports-color + dev: false - '@emotion/cache@11.11.0': + /@emotion/cache@11.11.0: + resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==} dependencies: '@emotion/memoize': 0.8.1 '@emotion/sheet': 1.2.2 '@emotion/utils': 1.2.1 '@emotion/weak-memoize': 0.3.1 stylis: 4.2.0 + dev: false - '@emotion/hash@0.9.1': {} + /@emotion/hash@0.9.1: + resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==} + dev: false - '@emotion/is-prop-valid@0.8.8': + /@emotion/is-prop-valid@0.8.8: + resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} dependencies: '@emotion/memoize': 0.7.4 + dev: false - '@emotion/is-prop-valid@1.2.2': + /@emotion/is-prop-valid@1.2.2: + resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==} dependencies: '@emotion/memoize': 0.8.1 + dev: false - '@emotion/memoize@0.7.4': {} + /@emotion/memoize@0.7.4: + resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} + dev: false - '@emotion/memoize@0.8.1': {} + /@emotion/memoize@0.8.1: + resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} + dev: false - '@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1)': + /@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1): + resolution: {integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==} + peerDependencies: + '@types/react': '*' + react: '>=16.8.0' + peerDependenciesMeta: + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 '@emotion/babel-plugin': 11.11.0 @@ -35601,24 +22018,36 @@ snapshots: '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@emotion/utils': 1.2.1 '@emotion/weak-memoize': 0.3.1 + '@types/react': 18.0.18 hoist-non-react-statics: 3.3.2 react: 18.3.1 - optionalDependencies: - '@types/react': 18.0.18 transitivePeerDependencies: - supports-color + dev: false - '@emotion/serialize@1.1.4': + /@emotion/serialize@1.1.4: + resolution: {integrity: sha512-RIN04MBT8g+FnDwgvIUi8czvr1LU1alUMI05LekWB5DGyTm8cCBMCRpq3GqaiyEDRptEXOyXnvZ58GZYu4kBxQ==} dependencies: '@emotion/hash': 0.9.1 '@emotion/memoize': 0.8.1 '@emotion/unitless': 0.8.1 '@emotion/utils': 1.2.1 csstype: 3.1.3 + dev: false - '@emotion/sheet@1.2.2': {} + /@emotion/sheet@1.2.2: + resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} + dev: false - '@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1)': + /@emotion/styled@11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1): + resolution: {integrity: sha512-/ZjjnaNKvuMPxcIiUkf/9SHoG4Q196DRl1w82hQ3WCsjo1IUR8uaGWrC6a87CrYAW0Kb/pK7hk8BnLgLRi9KoQ==} + peerDependencies: + '@emotion/react': ^11.0.0-rc.0 + '@types/react': '*' + react: '>=16.8.0' + peerDependenciesMeta: + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 '@emotion/babel-plugin': 11.11.0 @@ -35627,106 +22056,233 @@ snapshots: '@emotion/serialize': 1.1.4 '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@emotion/utils': 1.2.1 - react: 18.3.1 - optionalDependencies: '@types/react': 18.0.18 + react: 18.3.1 transitivePeerDependencies: - supports-color + dev: false - '@emotion/unitless@0.7.5': {} + /@emotion/unitless@0.7.5: + resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==} + dev: false - '@emotion/unitless@0.8.1': {} + /@emotion/unitless@0.8.1: + resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} + dev: false - '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1)': + /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1): + resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} + peerDependencies: + react: '>=16.8.0' dependencies: react: 18.3.1 + dev: false - '@emotion/utils@1.2.1': {} + /@emotion/utils@1.2.1: + resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} + dev: false - '@emotion/weak-memoize@0.3.1': {} + /@emotion/weak-memoize@0.3.1: + resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==} + dev: false - '@esbuild/android-arm64@0.18.20': + /@esbuild/android-arm64@0.18.20: + resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true optional: true - '@esbuild/android-arm@0.18.20': + /@esbuild/android-arm@0.18.20: + resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true optional: true - '@esbuild/android-x64@0.18.20': + /@esbuild/android-x64@0.18.20: + resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true optional: true - '@esbuild/darwin-arm64@0.18.20': + /@esbuild/darwin-arm64@0.18.20: + resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true optional: true - '@esbuild/darwin-x64@0.18.20': + /@esbuild/darwin-x64@0.18.20: + resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true optional: true - '@esbuild/freebsd-arm64@0.18.20': + /@esbuild/freebsd-arm64@0.18.20: + resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true optional: true - '@esbuild/freebsd-x64@0.18.20': + /@esbuild/freebsd-x64@0.18.20: + resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true optional: true - '@esbuild/linux-arm64@0.18.20': + /@esbuild/linux-arm64@0.18.20: + resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true optional: true - '@esbuild/linux-arm@0.18.20': + /@esbuild/linux-arm@0.18.20: + resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true optional: true - '@esbuild/linux-ia32@0.18.20': + /@esbuild/linux-ia32@0.18.20: + resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true optional: true - '@esbuild/linux-loong64@0.18.20': + /@esbuild/linux-loong64@0.18.20: + resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true optional: true - '@esbuild/linux-mips64el@0.18.20': + /@esbuild/linux-mips64el@0.18.20: + resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true optional: true - '@esbuild/linux-ppc64@0.18.20': + /@esbuild/linux-ppc64@0.18.20: + resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true optional: true - '@esbuild/linux-riscv64@0.18.20': + /@esbuild/linux-riscv64@0.18.20: + resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true optional: true - '@esbuild/linux-s390x@0.18.20': + /@esbuild/linux-s390x@0.18.20: + resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true optional: true - '@esbuild/linux-x64@0.18.20': + /@esbuild/linux-x64@0.18.20: + resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true optional: true - '@esbuild/netbsd-x64@0.18.20': + /@esbuild/netbsd-x64@0.18.20: + resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true optional: true - '@esbuild/openbsd-x64@0.18.20': + /@esbuild/openbsd-x64@0.18.20: + resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true optional: true - '@esbuild/sunos-x64@0.18.20': + /@esbuild/sunos-x64@0.18.20: + resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true optional: true - '@esbuild/win32-arm64@0.18.20': + /@esbuild/win32-arm64@0.18.20: + resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true optional: true - '@esbuild/win32-ia32@0.18.20': + /@esbuild/win32-ia32@0.18.20: + resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true optional: true - '@esbuild/win32-x64@0.18.20': + /@esbuild/win32-x64@0.18.20: + resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true optional: true - '@eslint-community/eslint-utils@4.4.0(eslint@7.32.0)': + /@eslint-community/eslint-utils@4.4.0(eslint@7.32.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: 7.32.0 eslint-visitor-keys: 3.4.3 + dev: true - '@eslint-community/eslint-utils@4.4.0(eslint@8.46.0)': - dependencies: - eslint: 8.46.0 - eslint-visitor-keys: 3.4.3 - - '@eslint-community/regexpp@4.11.0': {} + /@eslint-community/regexpp@4.11.0: + resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + dev: true - '@eslint/eslintrc@0.4.3': + /@eslint/eslintrc@0.4.3: + resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} + engines: {node: ^10.12.0 || >=12.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) espree: 7.3.1 globals: 13.24.0 ignore: 4.0.6 @@ -35737,89 +22293,100 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/eslintrc@2.1.4': - dependencies: - ajv: 6.12.6 - debug: 4.3.5(supports-color@8.1.1) - espree: 9.6.1 - globals: 13.24.0 - ignore: 5.3.1 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - - '@eslint/js@8.57.0': {} - - '@fal-works/esbuild-plugin-global-externals@2.1.2': {} + /@fal-works/esbuild-plugin-global-externals@2.1.2: + resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} + dev: true - '@fluentui/react-component-event-listener@0.63.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@fluentui/react-component-event-listener@0.63.1(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-gSMdOh6tI3IJKZFqxfQwbTpskpME0CvxdxGM2tdglmf6ZPVDi0L4+KKIm+2dN8nzb8Ya1A8ZT+Ddq0KmZtwVQg==} + peerDependencies: + react: ^16.8.0 || ^17 || ^18 + react-dom: ^16.8.0 || ^17 || ^18 dependencies: '@babel/runtime': 7.24.7 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + dev: false - '@fluentui/react-component-ref@0.63.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@fluentui/react-component-ref@0.63.1(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-8MkXX4+R3i80msdbD4rFpEB4WWq2UDvGwG386g3ckIWbekdvN9z2kWAd9OXhRGqB7QeOsoAGWocp6gAMCivRlw==} + peerDependencies: + react: ^16.8.0 || ^17 || ^18 + react-dom: ^16.8.0 || ^17 || ^18 dependencies: '@babel/runtime': 7.24.7 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 16.13.1 + dev: false - '@gar/promisify@1.1.3': {} + /@gar/promisify@1.1.3: + resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} - '@gilbarbara/deep-equal@0.1.2': {} + /@gilbarbara/deep-equal@0.1.2: + resolution: {integrity: sha512-jk+qzItoEb0D0xSSmrKDDzf9sheQj/BAPxlgNxgmOaA3mxpUa6ndJLYGZKsJnIVEQSD8zcTbyILz7I0HcnBCRA==} + dev: false - '@gilbarbara/deep-equal@0.3.1': {} + /@gilbarbara/deep-equal@0.3.1: + resolution: {integrity: sha512-I7xWjLs2YSVMc5gGx1Z3ZG1lgFpITPndpi8Ku55GeEIKpACCPQNS/OTqQbxgTCfq0Ncvcc+CrFov96itVh6Qvw==} + dev: false - '@hapi/hoek@9.3.0': {} + /@hapi/hoek@9.3.0: + resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} + dev: false - '@hapi/topo@5.1.0': + /@hapi/topo@5.1.0: + resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} dependencies: '@hapi/hoek': 9.3.0 + dev: false - '@humanwhocodes/config-array@0.11.14': - dependencies: - '@humanwhocodes/object-schema': 2.0.3 - debug: 4.3.5(supports-color@8.1.1) - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color - - '@humanwhocodes/config-array@0.5.0': + /@humanwhocodes/config-array@0.5.0: + resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} + engines: {node: '>=10.10.0'} + deprecated: Use @eslint/config-array instead dependencies: '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) minimatch: 3.1.2 transitivePeerDependencies: - supports-color - '@humanwhocodes/module-importer@1.0.1': {} - - '@humanwhocodes/object-schema@1.2.1': {} - - '@humanwhocodes/object-schema@2.0.3': {} + /@humanwhocodes/object-schema@1.2.1: + resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + deprecated: Use @eslint/object-schema instead - '@hutson/parse-repository-url@3.0.2': {} + /@hutson/parse-repository-url@3.0.2: + resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} + engines: {node: '>=6.9.0'} + dev: true - '@icons/material@0.2.4(react@18.3.1)': + /@icons/material@0.2.4(react@18.3.1): + resolution: {integrity: sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==} + peerDependencies: + react: '*' dependencies: react: 18.3.1 + dev: false - '@isaacs/cliui@8.0.2': + /@isaacs/cliui@8.0.2: + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} dependencies: string-width: 5.1.2 - string-width-cjs: string-width@4.2.3 + string-width-cjs: /string-width@4.2.3 strip-ansi: 7.1.0 - strip-ansi-cjs: strip-ansi@6.0.1 + strip-ansi-cjs: /strip-ansi@6.0.1 wrap-ansi: 8.1.0 - wrap-ansi-cjs: wrap-ansi@7.0.0 + wrap-ansi-cjs: /wrap-ansi@7.0.0 - '@isaacs/string-locale-compare@1.1.0': {} + /@isaacs/string-locale-compare@1.1.0: + resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==} + dev: true - '@istanbuljs/load-nyc-config@1.1.0': + /@istanbuljs/load-nyc-config@1.1.0: + resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} + engines: {node: '>=8'} dependencies: camelcase: 5.3.1 find-up: 4.1.0 @@ -35827,9 +22394,13 @@ snapshots: js-yaml: 3.13.1 resolve-from: 5.0.0 - '@istanbuljs/schema@0.1.3': {} + /@istanbuljs/schema@0.1.3: + resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + engines: {node: '>=8'} - '@jest/console@26.6.2': + /@jest/console@26.6.2: + resolution: {integrity: sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 '@types/node': 13.13.52 @@ -35837,8 +22408,11 @@ snapshots: jest-message-util: 26.6.2 jest-util: 26.6.2 slash: 3.0.0 + dev: true - '@jest/console@29.7.0': + /@jest/console@29.7.0: + resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 '@types/node': 13.13.52 @@ -35847,7 +22421,9 @@ snapshots: jest-util: 29.7.0 slash: 3.0.0 - '@jest/core@26.6.3(ts-node@8.10.2(typescript@4.9.5))': + /@jest/core@26.6.3: + resolution: {integrity: sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/console': 26.6.2 '@jest/reporters': 26.6.2 @@ -35860,14 +22436,14 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 26.6.2 - jest-config: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-config: 26.6.3 jest-haste-map: 26.6.2 jest-message-util: 26.6.2 jest-regex-util: 26.0.0 jest-resolve: 26.6.2 jest-resolve-dependencies: 26.6.3 - jest-runner: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) - jest-runtime: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-runner: 26.6.3 + jest-runtime: 26.6.3 jest-snapshot: 26.6.2 jest-util: 26.6.2 jest-validate: 26.6.2 @@ -35883,48 +22459,19 @@ snapshots: - supports-color - ts-node - utf-8-validate + dev: true - '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5))': - dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0(node-notifier@8.0.2) - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 13.13.52 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - ci-info: 3.9.0 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)) - jest-haste-map: 29.7.0 - jest-message-util: 29.7.0 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-resolve-dependencies: 29.7.0 - jest-runner: 29.7.0 - jest-runtime: 29.7.0 - jest-snapshot: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - jest-watcher: 29.7.0 - micromatch: 4.0.7 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-ansi: 6.0.1 - optionalDependencies: - node-notifier: 8.0.2 - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - ts-node - - '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6))': + /@jest/core@29.7.0(ts-node@8.10.2): + resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true dependencies: '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0(node-notifier@8.0.2) + '@jest/reporters': 29.7.0 '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 @@ -35935,7 +22482,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)) + jest-config: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -35951,39 +22498,48 @@ snapshots: pretty-format: 29.7.0 slash: 3.0.0 strip-ansi: 6.0.1 - optionalDependencies: - node-notifier: 8.0.2 transitivePeerDependencies: - babel-plugin-macros - supports-color - ts-node - '@jest/environment@26.6.2': + /@jest/environment@26.6.2: + resolution: {integrity: sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/fake-timers': 26.6.2 '@jest/types': 26.6.2 '@types/node': 13.13.52 jest-mock: 26.6.2 + dev: true - '@jest/environment@29.7.0': + /@jest/environment@29.7.0: + resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 '@types/node': 13.13.52 jest-mock: 29.7.0 - '@jest/expect-utils@29.7.0': + /@jest/expect-utils@29.7.0: + resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: jest-get-type: 29.6.3 - '@jest/expect@29.7.0': + /@jest/expect@29.7.0: + resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: expect: 29.7.0 jest-snapshot: 29.7.0 transitivePeerDependencies: - supports-color - '@jest/fake-timers@26.6.2': + /@jest/fake-timers@26.6.2: + resolution: {integrity: sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 '@sinonjs/fake-timers': 6.0.1 @@ -35991,8 +22547,11 @@ snapshots: jest-message-util: 26.6.2 jest-mock: 26.6.2 jest-util: 26.6.2 + dev: true - '@jest/fake-timers@29.7.0': + /@jest/fake-timers@29.7.0: + resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 @@ -36001,13 +22560,18 @@ snapshots: jest-mock: 29.7.0 jest-util: 29.7.0 - '@jest/globals@26.6.2': + /@jest/globals@26.6.2: + resolution: {integrity: sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/environment': 26.6.2 '@jest/types': 26.6.2 expect: 26.6.2 + dev: true - '@jest/globals@29.7.0': + /@jest/globals@29.7.0: + resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/environment': 29.7.0 '@jest/expect': 29.7.0 @@ -36016,7 +22580,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@jest/reporters@26.6.2': + /@jest/reporters@26.6.2: + resolution: {integrity: sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==} + engines: {node: '>= 10.14.2'} dependencies: '@bcoe/v8-coverage': 0.2.3 '@jest/console': 26.6.2 @@ -36046,8 +22612,16 @@ snapshots: node-notifier: 8.0.2 transitivePeerDependencies: - supports-color + dev: true - '@jest/reporters@29.7.0(node-notifier@8.0.2)': + /@jest/reporters@29.7.0: + resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true dependencies: '@bcoe/v8-coverage': 0.2.3 '@jest/console': 29.7.0 @@ -36073,63 +22647,80 @@ snapshots: string-length: 4.0.2 strip-ansi: 6.0.1 v8-to-istanbul: 9.3.0 - optionalDependencies: - node-notifier: 8.0.2 transitivePeerDependencies: - supports-color - '@jest/schemas@29.6.3': + /@jest/schemas@29.6.3: + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@sinclair/typebox': 0.27.8 - '@jest/source-map@26.6.2': + /@jest/source-map@26.6.2: + resolution: {integrity: sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==} + engines: {node: '>= 10.14.2'} dependencies: callsites: 3.1.0 graceful-fs: 4.2.11 source-map: 0.6.1 + dev: true - '@jest/source-map@29.6.3': + /@jest/source-map@29.6.3: + resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jridgewell/trace-mapping': 0.3.25 callsites: 3.1.0 graceful-fs: 4.2.11 - '@jest/test-result@26.6.2': + /@jest/test-result@26.6.2: + resolution: {integrity: sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/console': 26.6.2 '@jest/types': 26.6.2 '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 + dev: true - '@jest/test-result@29.7.0': + /@jest/test-result@29.7.0: + resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/console': 29.7.0 '@jest/types': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - '@jest/test-sequencer@26.6.3(ts-node@8.10.2(typescript@4.9.5))': + /@jest/test-sequencer@26.6.3: + resolution: {integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/test-result': 26.6.2 graceful-fs: 4.2.11 jest-haste-map: 26.6.2 - jest-runner: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) - jest-runtime: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-runner: 26.6.3 + jest-runtime: 26.6.3 transitivePeerDependencies: - bufferutil - canvas - supports-color - ts-node - utf-8-validate + dev: true - '@jest/test-sequencer@29.7.0': + /@jest/test-sequencer@29.7.0: + resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/test-result': 29.7.0 graceful-fs: 4.2.11 jest-haste-map: 29.7.0 slash: 3.0.0 - '@jest/transform@26.6.2': + /@jest/transform@26.6.2: + resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} + engines: {node: '>= 10.14.2'} dependencies: '@babel/core': 7.24.7 '@jest/types': 26.6.2 @@ -36149,7 +22740,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@jest/transform@29.7.0': + /@jest/transform@29.7.0: + resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/core': 7.24.7 '@jest/types': 29.6.3 @@ -36169,7 +22762,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@jest/types@26.6.2': + /@jest/types@26.6.2: + resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} + engines: {node: '>= 10.14.2'} dependencies: '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 @@ -36177,7 +22772,9 @@ snapshots: '@types/yargs': 15.0.19 chalk: 4.1.2 - '@jest/types@29.6.3': + /@jest/types@29.6.3: + resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 @@ -36186,36 +22783,52 @@ snapshots: '@types/yargs': 17.0.32 chalk: 4.1.2 - '@jridgewell/gen-mapping@0.3.5': + /@jridgewell/gen-mapping@0.3.5: + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} + engines: {node: '>=6.0.0'} dependencies: '@jridgewell/set-array': 1.2.1 '@jridgewell/sourcemap-codec': 1.5.0 '@jridgewell/trace-mapping': 0.3.25 - '@jridgewell/resolve-uri@3.1.2': {} + /@jridgewell/resolve-uri@3.1.2: + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} - '@jridgewell/set-array@1.2.1': {} + /@jridgewell/set-array@1.2.1: + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} - '@jridgewell/source-map@0.3.6': + /@jridgewell/source-map@0.3.6: + resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} dependencies: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 - '@jridgewell/sourcemap-codec@1.5.0': {} + /@jridgewell/sourcemap-codec@1.5.0: + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} - '@jridgewell/trace-mapping@0.3.25': + /@jridgewell/trace-mapping@0.3.25: + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} dependencies: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 - '@jridgewell/trace-mapping@0.3.9': + /@jridgewell/trace-mapping@0.3.9: + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} dependencies: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 + dev: true - '@leichtgewicht/ip-codec@2.0.5': {} + /@leichtgewicht/ip-codec@2.0.5: + resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} + dev: true - '@lerna/add@5.6.2': + /@lerna/add@5.6.2: + resolution: {integrity: sha512-NHrm7kYiqP+EviguY7/NltJ3G9vGmJW6v2BASUOhP9FZDhYbq3O+rCDlFdoVRNtcyrSg90rZFMOWHph4KOoCQQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/bootstrap': 5.6.2 '@lerna/command': 5.6.2 @@ -36230,8 +22843,12 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@lerna/bootstrap@5.6.2': + /@lerna/bootstrap@5.6.2: + resolution: {integrity: sha512-S2fMOEXbef7nrybQhzBywIGSLhuiQ5huPp1sU+v9Y6XEBsy/2IA+lb0gsZosvPqlRfMtiaFstL+QunaBhlWECA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/command': 5.6.2 '@lerna/filter-options': 5.6.2 @@ -36258,27 +22875,42 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@lerna/changed@5.6.2': + /@lerna/changed@5.6.2: + resolution: {integrity: sha512-uUgrkdj1eYJHQGsXXlpH5oEAfu3x0qzeTjgvpdNrxHEdQWi7zWiW59hRadmiImc14uJJYIwVK5q/QLugrsdGFQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/collect-updates': 5.6.2 '@lerna/command': 5.6.2 '@lerna/listable': 5.6.2 '@lerna/output': 5.6.2 + dev: true - '@lerna/check-working-tree@5.6.2': + /@lerna/check-working-tree@5.6.2: + resolution: {integrity: sha512-6Vf3IB6p+iNIubwVgr8A/KOmGh5xb4SyRmhFtAVqe33yWl2p3yc+mU5nGoz4ET3JLF1T9MhsePj0hNt6qyOTLQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/collect-uncommitted': 5.6.2 '@lerna/describe-ref': 5.6.2 '@lerna/validation-error': 5.6.2 + dev: true - '@lerna/child-process@5.6.2': + /@lerna/child-process@5.6.2: + resolution: {integrity: sha512-QIOQ3jIbWdduHd5892fbo3u7/dQgbhzEBB7cvf+Ys/iCPP8UQrBECi1lfRgA4kcTKC2MyMz0SoyXZz/lFcXc3A==} + engines: {node: ^14.15.0 || >=16.0.0} dependencies: chalk: 4.1.2 execa: 5.1.1 strong-log-transformer: 2.1.0 + dev: true - '@lerna/clean@5.6.2': + /@lerna/clean@5.6.2: + resolution: {integrity: sha512-A7j8r0Hk2pGyLUyaCmx4keNHen1L/KdcOjb4nR6X8GtTJR5AeA47a8rRKOCz9wwdyMPlo2Dau7d3RV9viv7a5g==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/command': 5.6.2 '@lerna/filter-options': 5.6.2 @@ -36288,29 +22920,45 @@ snapshots: p-map: 4.0.0 p-map-series: 2.1.0 p-waterfall: 2.1.1 + dev: true - '@lerna/cli@5.6.2': + /@lerna/cli@5.6.2: + resolution: {integrity: sha512-w0NRIEqDOmYKlA5t0iyqx0hbY7zcozvApmfvwF0lhkuhf3k6LRAFSamtimGQWicC779a7J2NXw4ASuBV47Fs1Q==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/global-options': 5.6.2 dedent: 0.7.0 npmlog: 6.0.2 yargs: 16.2.0 + dev: true - '@lerna/collect-uncommitted@5.6.2': + /@lerna/collect-uncommitted@5.6.2: + resolution: {integrity: sha512-i0jhxpypyOsW2PpPwIw4xg6EPh7/N3YuiI6P2yL7PynZ8nOv8DkIdoyMkhUP4gALjBfckH8Bj94eIaKMviqW4w==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 chalk: 4.1.2 npmlog: 6.0.2 + dev: true - '@lerna/collect-updates@5.6.2': + /@lerna/collect-updates@5.6.2: + resolution: {integrity: sha512-DdTK13X6PIsh9HINiMniFeiivAizR/1FBB+hDVe6tOhsXFBfjHMw1xZhXlE+mYIoFmDm1UFK7zvQSexoaxRqFA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 '@lerna/describe-ref': 5.6.2 minimatch: 3.1.2 npmlog: 6.0.2 slash: 3.0.0 + dev: true - '@lerna/command@5.6.2': + /@lerna/command@5.6.2: + resolution: {integrity: sha512-eLVGI9TmxcaGt1M7TXGhhBZoeWOtOedMiH7NuCGHtL6TMJ9k+SCExyx+KpNmE6ImyNOzws6EvYLPLjftiqmoaA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 '@lerna/package-graph': 5.6.2 @@ -36322,8 +22970,12 @@ snapshots: execa: 5.1.1 is-ci: 2.0.0 npmlog: 6.0.2 + dev: true - '@lerna/conventional-commits@5.6.2': + /@lerna/conventional-commits@5.6.2: + resolution: {integrity: sha512-fPrJpYJhxCgY2uyOCTcAAC6+T6lUAtpEGxLbjWHWTb13oKKEygp9THoFpe6SbAD0fYMb3jeZCZCqNofM62rmuA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/validation-error': 5.6.2 conventional-changelog-angular: 5.0.13 @@ -36335,14 +22987,21 @@ snapshots: npmlog: 6.0.2 pify: 5.0.0 semver: 7.6.2 + dev: true - '@lerna/create-symlink@5.6.2': + /@lerna/create-symlink@5.6.2: + resolution: {integrity: sha512-0WIs3P6ohPVh2+t5axrLZDE5Dt7fe3Kv0Auj0sBiBd6MmKZ2oS76apIl0Bspdbv8jX8+TRKGv6ib0280D0dtEw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: cmd-shim: 5.0.0 fs-extra: 9.1.0 npmlog: 6.0.2 + dev: true - '@lerna/create@5.6.2': + /@lerna/create@5.6.2: + resolution: {integrity: sha512-+Y5cMUxMNXjTTU9IHpgRYIwKo39w+blui1P+s+qYlZUSCUAew0xNpOBG8iN0Nc5X9op4U094oIdHxv7Dyz6tWQ==} + engines: {node: ^14.15.0 || >=16.0.0} dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 @@ -36363,20 +23022,32 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@lerna/describe-ref@5.6.2': + /@lerna/describe-ref@5.6.2: + resolution: {integrity: sha512-UqU0N77aT1W8duYGir7R+Sk3jsY/c4lhcCEcnayMpFScMbAp0ETGsW04cYsHK29sgg+ZCc5zEwebBqabWhMhnA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 npmlog: 6.0.2 + dev: true - '@lerna/diff@5.6.2': + /@lerna/diff@5.6.2: + resolution: {integrity: sha512-aHKzKvUvUI8vOcshC2Za/bdz+plM3r/ycqUrPqaERzp+kc1pYHyPeXezydVdEmgmmwmyKI5hx4+2QNnzOnun2A==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 '@lerna/validation-error': 5.6.2 npmlog: 6.0.2 + dev: true - '@lerna/exec@5.6.2': + /@lerna/exec@5.6.2: + resolution: {integrity: sha512-meZozok5stK7S0oAVn+kdbTmU+kHj9GTXjW7V8kgwG9ld+JJMTH3nKK1L3mEKyk9TFu9vFWyEOF7HNK6yEOoVg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 @@ -36385,55 +23056,91 @@ snapshots: '@lerna/run-topologically': 5.6.2 '@lerna/validation-error': 5.6.2 p-map: 4.0.0 + dev: true - '@lerna/filter-options@5.6.2': + /@lerna/filter-options@5.6.2: + resolution: {integrity: sha512-4Z0HIhPak2TabTsUqEBQaQeOqgqEt0qyskvsY0oviYvqP/nrJfJBZh4H93jIiNQF59LJCn5Ce3KJJrLExxjlzw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/collect-updates': 5.6.2 '@lerna/filter-packages': 5.6.2 dedent: 0.7.0 npmlog: 6.0.2 + dev: true - '@lerna/filter-packages@5.6.2': + /@lerna/filter-packages@5.6.2: + resolution: {integrity: sha512-el9V2lTEG0Bbz+Omo45hATkRVnChCTJhcTpth19cMJ6mQ4M5H4IgbWCJdFMBi/RpTnOhz9BhJxDbj95kuIvvzw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/validation-error': 5.6.2 multimatch: 5.0.0 npmlog: 6.0.2 + dev: true - '@lerna/get-npm-exec-opts@5.6.2': + /@lerna/get-npm-exec-opts@5.6.2: + resolution: {integrity: sha512-0RbSDJ+QC9D5UWZJh3DN7mBIU1NhBmdHOE289oHSkjDY+uEjdzMPkEUy+wZ8fCzMLFnnNQkAEqNaOAzZ7dmFLA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: npmlog: 6.0.2 + dev: true - '@lerna/get-packed@5.6.2': + /@lerna/get-packed@5.6.2: + resolution: {integrity: sha512-pp5nNDmtrtd21aKHjwwOY5CS7XNIHxINzGa+Jholn1jMDYUtdskpN++ZqYbATGpW831++NJuiuBVyqAWi9xbXg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: fs-extra: 9.1.0 ssri: 9.0.1 tar: 6.2.1 + dev: true - '@lerna/github-client@5.6.2(encoding@0.1.13)': + /@lerna/github-client@5.6.2: + resolution: {integrity: sha512-pjALazZoRZtKqfwLBwmW3HPptVhQm54PvA8s3qhCQ+3JkqrZiIFwkkxNZxs3jwzr+aaSOzfhSzCndg0urb0GXA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 '@octokit/plugin-enterprise-rest': 6.0.1 - '@octokit/rest': 19.0.13(encoding@0.1.13) + '@octokit/rest': 19.0.13 git-url-parse: 13.1.1 npmlog: 6.0.2 transitivePeerDependencies: - encoding + dev: true - '@lerna/gitlab-client@5.6.2(encoding@0.1.13)': + /@lerna/gitlab-client@5.6.2: + resolution: {integrity: sha512-TInJmbrsmYIwUyrRxytjO82KjJbRwm67F7LoZs1shAq6rMvNqi4NxSY9j+hT/939alFmEq1zssoy/caeLXHRfQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: - node-fetch: 2.7.0(encoding@0.1.13) + node-fetch: 2.7.0 npmlog: 6.0.2 transitivePeerDependencies: - encoding + dev: true - '@lerna/global-options@5.6.2': {} + /@lerna/global-options@5.6.2: + resolution: {integrity: sha512-kaKELURXTlczthNJskdOvh6GGMyt24qat0xMoJZ8plYMdofJfhz24h1OFcvB/EwCUwP/XV1+ohE5P+vdktbrEg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + dev: true - '@lerna/has-npm-version@5.6.2': + /@lerna/has-npm-version@5.6.2: + resolution: {integrity: sha512-kXCnSzffmTWsaK0ol30coyCfO8WH26HFbmJjRBzKv7VGkuAIcB6gX2gqRRgNLLlvI+Yrp+JSlpVNVnu15SEH2g==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 semver: 7.6.2 + dev: true - '@lerna/import@5.6.2': + /@lerna/import@5.6.2: + resolution: {integrity: sha512-xQUE49mtcP0z3KUdXBsyvp8rGDz6phuYUoQbhcFRJ7WPcQKzMvtm0XYrER6c2YWEX7QOuDac6tU82P8zTrTBaA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 @@ -36443,14 +23150,22 @@ snapshots: dedent: 0.7.0 fs-extra: 9.1.0 p-map-series: 2.1.0 + dev: true - '@lerna/info@5.6.2': + /@lerna/info@5.6.2: + resolution: {integrity: sha512-MPjY5Olj+fiZHgfEdwXUFRKamdEuLr9Ob/qut8JsB/oQSQ4ALdQfnrOcMT8lJIcC2R67EA5yav2lHPBIkezm8A==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/command': 5.6.2 '@lerna/output': 5.6.2 envinfo: 7.13.0 + dev: true - '@lerna/init@5.6.2': + /@lerna/init@5.6.2: + resolution: {integrity: sha512-ahU3/lgF+J8kdJAQysihFJROHthkIDXfHmvhw7AYnzf94HjxGNXj7nz6i3At1/dM/1nQhR+4/uNR1/OU4tTYYQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 '@lerna/command': 5.6.2 @@ -36458,8 +23173,12 @@ snapshots: fs-extra: 9.1.0 p-map: 4.0.0 write-json-file: 4.3.0 + dev: true - '@lerna/link@5.6.2': + /@lerna/link@5.6.2: + resolution: {integrity: sha512-hXxQ4R3z6rUF1v2x62oIzLyeHL96u7ZBhxqYMJrm763D1VMSDcHKF9CjJfc6J9vH5Z2ZbL6CQg50Hw5mUpJbjg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/command': 5.6.2 '@lerna/package-graph': 5.6.2 @@ -36467,33 +23186,53 @@ snapshots: '@lerna/validation-error': 5.6.2 p-map: 4.0.0 slash: 3.0.0 + dev: true - '@lerna/list@5.6.2': + /@lerna/list@5.6.2: + resolution: {integrity: sha512-WjE5O2tQ3TcS+8LqXUaxi0YdldhxUhNihT5+Gg4vzGdIlrPDioO50Zjo9d8jOU7i3LMIk6EzCma0sZr2CVfEGg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/command': 5.6.2 '@lerna/filter-options': 5.6.2 '@lerna/listable': 5.6.2 '@lerna/output': 5.6.2 + dev: true - '@lerna/listable@5.6.2': + /@lerna/listable@5.6.2: + resolution: {integrity: sha512-8Yp49BwkY/5XqVru38Zko+6Wj/sgbwzJfIGEPy3Qu575r1NA/b9eI1gX22aMsEeXUeGOybR7nWT5ewnPQHjqvA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/query-graph': 5.6.2 chalk: 4.1.2 columnify: 1.6.0 + dev: true - '@lerna/log-packed@5.6.2': + /@lerna/log-packed@5.6.2: + resolution: {integrity: sha512-O9GODG7tMtWk+2fufn2MOkIDBYMRoKBhYMHshO5Aw/VIsH76DIxpX1koMzWfUngM/C70R4uNAKcVWineX4qzIw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: byte-size: 7.0.1 columnify: 1.6.0 has-unicode: 2.0.1 npmlog: 6.0.2 + dev: true - '@lerna/npm-conf@5.6.2': + /@lerna/npm-conf@5.6.2: + resolution: {integrity: sha512-gWDPhw1wjXYXphk/PAghTLexO5T6abVFhXb+KOMCeem366mY0F5bM88PiorL73aErTNUoR8n+V4X29NTZzDZpQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: config-chain: 1.1.13 pify: 5.0.0 + dev: true - '@lerna/npm-dist-tag@5.6.2': + /@lerna/npm-dist-tag@5.6.2: + resolution: {integrity: sha512-t2RmxV6Eog4acXkUI+EzWuYVbeVVY139pANIWS9qtdajfgp4GVXZi1S8mAIb70yeHdNpCp1mhK0xpCrFH9LvGQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/otplease': 5.6.2 npm-package-arg: 8.1.1 @@ -36502,8 +23241,12 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@lerna/npm-install@5.6.2': + /@lerna/npm-install@5.6.2: + resolution: {integrity: sha512-AT226zdEo+uGENd37jwYgdALKJAIJK4pNOfmXWZWzVb9oMOr8I2YSjPYvSYUNG7gOo2YJQU8x5Zd7OShv2924Q==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 '@lerna/get-npm-exec-opts': 5.6.2 @@ -36512,8 +23255,12 @@ snapshots: npmlog: 6.0.2 signal-exit: 3.0.7 write-pkg: 4.0.0 + dev: true - '@lerna/npm-publish@5.6.2': + /@lerna/npm-publish@5.6.2: + resolution: {integrity: sha512-ldSyewCfv9fAeC5xNjL0HKGSUxcC048EJoe/B+KRUmd+IPidvZxMEzRu08lSC/q3V9YeUv9ZvRnxATXOM8CffA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/otplease': 5.6.2 '@lerna/run-lifecycle': 5.6.2 @@ -36526,22 +23273,38 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@lerna/npm-run-script@5.6.2': + /@lerna/npm-run-script@5.6.2: + resolution: {integrity: sha512-MOQoWNcAyJivM8SYp0zELM7vg/Dj07j4YMdxZkey+S1UO0T4/vKBxb575o16hH4WeNzC3Pd7WBlb7C8dLOfNwQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 '@lerna/get-npm-exec-opts': 5.6.2 npmlog: 6.0.2 + dev: true - '@lerna/otplease@5.6.2': + /@lerna/otplease@5.6.2: + resolution: {integrity: sha512-dGS4lzkEQVTMAgji82jp8RK6UK32wlzrBAO4P4iiVHCUTuwNLsY9oeBXvVXSMrosJnl6Hbe0NOvi43mqSucGoA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/prompt': 5.6.2 + dev: true - '@lerna/output@5.6.2': + /@lerna/output@5.6.2: + resolution: {integrity: sha512-++d+bfOQwY66yo7q1XuAvRcqtRHCG45e/awP5xQomTZ6R1rhWiZ3whWdc9Z6lF7+UtBB9toSYYffKU/xc3L0yQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: npmlog: 6.0.2 + dev: true - '@lerna/pack-directory@5.6.2': + /@lerna/pack-directory@5.6.2: + resolution: {integrity: sha512-w5Jk5fo+HkN4Le7WMOudTcmAymcf0xPd302TqAQncjXpk0cb8tZbj+5bbNHsGb58GRjOIm5icQbHXooQUxbHhA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/get-packed': 5.6.2 '@lerna/package': 5.6.2 @@ -36553,32 +23316,52 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@lerna/package-graph@5.6.2': + /@lerna/package-graph@5.6.2: + resolution: {integrity: sha512-TmL61qBBvA3Tc4qICDirZzdFFwWOA6qicIXUruLiE2PblRowRmCO1bKrrP6XbDOspzwrkPef6N2F2/5gHQAnkQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/prerelease-id-from-version': 5.6.2 '@lerna/validation-error': 5.6.2 npm-package-arg: 8.1.1 npmlog: 6.0.2 semver: 7.6.2 + dev: true - '@lerna/package@5.6.2': + /@lerna/package@5.6.2: + resolution: {integrity: sha512-LaOC8moyM5J9WnRiWZkedjOninSclBOJyPqhif6mHb2kCFX6jAroNYzE8KM4cphu8CunHuhI6Ixzswtv+Dultw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: load-json-file: 6.2.0 npm-package-arg: 8.1.1 write-pkg: 4.0.0 + dev: true - '@lerna/prerelease-id-from-version@5.6.2': + /@lerna/prerelease-id-from-version@5.6.2: + resolution: {integrity: sha512-7gIm9fecWFVNy2kpj/KbH11bRcpyANAwpsft3X5m6J7y7A6FTUscCbEvl3ZNdpQKHNuvnHgCtkm3A5PMSCEgkA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: semver: 7.6.2 + dev: true - '@lerna/profiler@5.6.2': + /@lerna/profiler@5.6.2: + resolution: {integrity: sha512-okwkagP5zyRIOYTceu/9/esW7UZFt7lyL6q6ZgpSG3TYC5Ay+FXLtS6Xiha/FQdVdumFqKULDWTGovzUlxcwaw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: fs-extra: 9.1.0 npmlog: 6.0.2 upath: 2.0.1 + dev: true - '@lerna/project@5.6.2': + /@lerna/project@5.6.2: + resolution: {integrity: sha512-kPIMcIy/0DVWM91FPMMFmXyAnCuuLm3NdhnA8NusE//VuY9wC6QC/3OwuCY39b2dbko/fPZheqKeAZkkMH6sGg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/package': 5.6.2 '@lerna/validation-error': 5.6.2 @@ -36593,13 +23376,21 @@ snapshots: p-map: 4.0.0 resolve-from: 5.0.0 write-json-file: 4.3.0 + dev: true - '@lerna/prompt@5.6.2': + /@lerna/prompt@5.6.2: + resolution: {integrity: sha512-4hTNmVYADEr0GJTMegWV+GW6n+dzKx1vN9v2ISqyle283Myv930WxuyO0PeYGqTrkneJsyPreCMovuEGCvZ0iQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: inquirer: 8.2.6 npmlog: 6.0.2 + dev: true - '@lerna/publish@5.6.2(encoding@0.1.13)(nx@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))': + /@lerna/publish@5.6.2(nx@15.9.3): + resolution: {integrity: sha512-QaW0GjMJMuWlRNjeDCjmY/vjriGSWgkLS23yu8VKNtV5U3dt5yIKA3DNGV3HgZACuu45kQxzMDsfLzgzbGNtYA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/check-working-tree': 5.6.2 '@lerna/child-process': 5.6.2 @@ -36619,7 +23410,7 @@ snapshots: '@lerna/run-lifecycle': 5.6.2 '@lerna/run-topologically': 5.6.2 '@lerna/validation-error': 5.6.2 - '@lerna/version': 5.6.2(encoding@0.1.13)(nx@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@lerna/version': 5.6.2(nx@15.9.3) fs-extra: 9.1.0 libnpmaccess: 6.0.4 npm-package-arg: 8.1.1 @@ -36634,29 +23425,49 @@ snapshots: - encoding - nx - supports-color + dev: true - '@lerna/pulse-till-done@5.6.2': + /@lerna/pulse-till-done@5.6.2: + resolution: {integrity: sha512-eA/X1RCxU5YGMNZmbgPi+Kyfx1Q3bn4P9jo/LZy+/NRRr1po3ASXP2GJZ1auBh/9A2ELDvvKTOXCVHqczKC6rA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: npmlog: 6.0.2 + dev: true - '@lerna/query-graph@5.6.2': + /@lerna/query-graph@5.6.2: + resolution: {integrity: sha512-KRngr96yBP8XYDi9/U62fnGO+ZXqm04Qk6a2HtoTr/ha8QvO1s7Tgm0xs/G7qWXDQHZgunWIbmK/LhxM7eFQrw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/package-graph': 5.6.2 + dev: true - '@lerna/resolve-symlink@5.6.2': + /@lerna/resolve-symlink@5.6.2: + resolution: {integrity: sha512-PDQy+7M8JEFtwIVHJgWvSxHkxJf9zXCENkvIWDB+SsoDPhw9+caewt46bTeP5iGm9pOMu3oZukaWo/TvF7sNjg==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: fs-extra: 9.1.0 npmlog: 6.0.2 read-cmd-shim: 3.0.1 + dev: true - '@lerna/rimraf-dir@5.6.2': + /@lerna/rimraf-dir@5.6.2: + resolution: {integrity: sha512-jgEfzz7uBUiQKteq3G8MtJiA2D2VoKmZSSY3VSiW/tPOSXYxxSHxEsClQdCeNa6+sYrDNDT8fP6MJ3lPLjDeLA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/child-process': 5.6.2 npmlog: 6.0.2 path-exists: 4.0.0 rimraf: 3.0.2 + dev: true - '@lerna/run-lifecycle@5.6.2': + /@lerna/run-lifecycle@5.6.2: + resolution: {integrity: sha512-u9gGgq/50Fm8dvfcc/TSHOCAQvzLD7poVanDMhHYWOAqRDnellJEEmA1K/Yka4vZmySrzluahkry9G6jcREt+g==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/npm-conf': 5.6.2 '@npmcli/run-script': 4.2.1 @@ -36665,13 +23476,21 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@lerna/run-topologically@5.6.2': + /@lerna/run-topologically@5.6.2: + resolution: {integrity: sha512-QQ/jGOIsVvUg3izShWsd67RlWYh9UOH2yw97Ol1zySX9+JspCMVQrn9eKq1Pk8twQOFhT87LpT/aaxbTBgREPw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/query-graph': 5.6.2 p-queue: 6.6.2 + dev: true - '@lerna/run@5.6.2': + /@lerna/run@5.6.2: + resolution: {integrity: sha512-c2kJxdFrNg5KOkrhmgwKKUOsfSrGNlFCe26EttufOJ3xfY0VnXlEw9rHOkTgwtu7969rfCdyaVP1qckMrF1Dgw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/command': 5.6.2 '@lerna/filter-options': 5.6.2 @@ -36683,15 +23502,23 @@ snapshots: '@lerna/validation-error': 5.6.2 fs-extra: 9.1.0 p-map: 4.0.0 + dev: true - '@lerna/symlink-binary@5.6.2': + /@lerna/symlink-binary@5.6.2: + resolution: {integrity: sha512-Cth+miwYyO81WAmrQbPBrLHuF+F0UUc0el5kRXLH6j5zzaRS3kMM68r40M7MmfH8m3GPi7691UARoWFEotW5jw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/create-symlink': 5.6.2 '@lerna/package': 5.6.2 fs-extra: 9.1.0 p-map: 4.0.0 + dev: true - '@lerna/symlink-dependencies@5.6.2': + /@lerna/symlink-dependencies@5.6.2: + resolution: {integrity: sha512-dUVNQLEcjVOIQiT9OlSAKt0ykjyJPy8l9i4NJDe2/0XYaUjo8PWsxJ0vrutz27jzi2aZUy07ASmowQZEmnLHAw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/create-symlink': 5.6.2 '@lerna/resolve-symlink': 5.6.2 @@ -36699,30 +23526,45 @@ snapshots: fs-extra: 9.1.0 p-map: 4.0.0 p-map-series: 2.1.0 + dev: true - '@lerna/temp-write@5.6.2': + /@lerna/temp-write@5.6.2: + resolution: {integrity: sha512-S5ZNVTurSwWBmc9kh5alfSjmO3+BnRT6shYtOlmVIUYqWeYVYA5C1Htj322bbU4CSNCMFK6NQl4qGKL17HMuig==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: graceful-fs: 4.2.11 is-stream: 2.0.1 make-dir: 3.1.0 temp-dir: 1.0.0 uuid: 8.3.2 + dev: true - '@lerna/timer@5.6.2': {} + /@lerna/timer@5.6.2: + resolution: {integrity: sha512-AjMOiLc2B+5Nzdd9hNORetAdZ/WK8YNGX/+2ypzM68TMAPfIT5C40hMlSva9Yg4RsBz22REopXgM5s2zQd5ZQA==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + dev: true - '@lerna/validation-error@5.6.2': + /@lerna/validation-error@5.6.2: + resolution: {integrity: sha512-4WlDUHaa+RSJNyJRtX3gVIAPVzjZD2tle8AJ0ZYBfdZnZmG0VlB2pD1FIbOQPK8sY2h5m0cHLRvfLoLncqHvdQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: npmlog: 6.0.2 + dev: true - '@lerna/version@5.6.2(encoding@0.1.13)(nx@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))': + /@lerna/version@5.6.2(nx@15.9.3): + resolution: {integrity: sha512-odNSR2rTbHW++xMZSQKu/F6Syrd/sUvwDLPaMKktoOSPKmycHt/eWcuQQyACdtc43Iqeu4uQd7PCLsniqOVFrw==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: '@lerna/check-working-tree': 5.6.2 '@lerna/child-process': 5.6.2 '@lerna/collect-updates': 5.6.2 '@lerna/command': 5.6.2 '@lerna/conventional-commits': 5.6.2 - '@lerna/github-client': 5.6.2(encoding@0.1.13) - '@lerna/gitlab-client': 5.6.2(encoding@0.1.13) + '@lerna/github-client': 5.6.2 + '@lerna/gitlab-client': 5.6.2 '@lerna/output': 5.6.2 '@lerna/prerelease-id-from-version': 5.6.2 '@lerna/prompt': 5.6.2 @@ -36730,7 +23572,7 @@ snapshots: '@lerna/run-topologically': 5.6.2 '@lerna/temp-write': 5.6.2 '@lerna/validation-error': 5.6.2 - '@nrwl/devkit': 15.9.7(nx@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nrwl/devkit': 15.9.7(nx@15.9.3) chalk: 4.1.2 dedent: 0.7.0 load-json-file: 6.2.0 @@ -36748,20 +23590,28 @@ snapshots: - encoding - nx - supports-color + dev: true - '@lerna/write-log-file@5.6.2': + /@lerna/write-log-file@5.6.2: + resolution: {integrity: sha512-J09l18QnWQ3sXIRwuJkjXY3+KwPR2uO5NgbZGE3GXJK1V/LzOBRMvjGAIbuQHXw25uqe7vpLUpB8drtnFrubCQ==} + engines: {node: ^14.15.0 || >=16.0.0} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: npmlog: 6.0.2 write-file-atomic: 4.0.2 + dev: true - '@manypkg/find-root@1.1.0': + /@manypkg/find-root@1.1.0: + resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} dependencies: '@babel/runtime': 7.24.7 '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 + dev: true - '@manypkg/get-packages@1.1.3': + /@manypkg/get-packages@1.1.3: + resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} dependencies: '@babel/runtime': 7.24.7 '@changesets/types': 4.1.0 @@ -36769,8 +23619,10 @@ snapshots: fs-extra: 8.1.0 globby: 11.1.0 read-yaml-file: 1.1.0 + dev: true - '@mdx-js/mdx@1.6.22': + /@mdx-js/mdx@1.6.22: + resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==} dependencies: '@babel/core': 7.12.9 '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9) @@ -36794,13 +23646,21 @@ snapshots: transitivePeerDependencies: - supports-color - '@mdx-js/react@1.6.22(react@18.3.1)': + /@mdx-js/react@1.6.22(react@18.3.1): + resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} + peerDependencies: + react: ^16.13.1 || ^17.0.0 dependencies: react: 18.3.1 + dev: true - '@mdx-js/util@1.6.22': {} + /@mdx-js/util@1.6.22: + resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==} - '@microsoft/applicationinsights-analytics-js@3.2.1(tslib@2.6.3)': + /@microsoft/applicationinsights-analytics-js@3.2.1(tslib@2.6.3): + resolution: {integrity: sha512-BDFnV0WwLcUIqgPmC3Sl8Z35ybf4898WSbrfCC80BNbxi2zztyJSLlxWXKSw9j+DCkKZMYIJIsWnpKQfEtqA7g==} + peerDependencies: + tslib: '*' dependencies: '@microsoft/applicationinsights-common': 3.2.1(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 3.2.1(tslib@2.6.3) @@ -36808,8 +23668,12 @@ snapshots: '@microsoft/dynamicproto-js': 2.0.3 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 + dev: false - '@microsoft/applicationinsights-cfgsync-js@3.2.1(tslib@2.6.3)': + /@microsoft/applicationinsights-cfgsync-js@3.2.1(tslib@2.6.3): + resolution: {integrity: sha512-a0gf3czbRycOXwIRO/dYqmTThYkGRS26TVETRpSnW12IcAuLE82FJfWHlHRmSNX9xY/F+wWc0N7BqHcWjFIbeQ==} + peerDependencies: + tslib: '*' dependencies: '@microsoft/applicationinsights-common': 3.2.1(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 3.2.1(tslib@2.6.3) @@ -36818,8 +23682,12 @@ snapshots: '@nevware21/ts-async': 0.5.2 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 + dev: false - '@microsoft/applicationinsights-channel-js@3.2.1(tslib@2.6.3)': + /@microsoft/applicationinsights-channel-js@3.2.1(tslib@2.6.3): + resolution: {integrity: sha512-+aWBBbIW4/Tf4sLGZmWhd5chktBpKQpnCbkuoTHGe+AWO8Q8fsDa4w2Y89OGuEg9OJ3kr2VKTUU7LgILKFz/cg==} + peerDependencies: + tslib: '*' dependencies: '@microsoft/applicationinsights-common': 3.2.1(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 3.2.1(tslib@2.6.3) @@ -36828,37 +23696,57 @@ snapshots: '@nevware21/ts-async': 0.5.2 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 + dev: false - '@microsoft/applicationinsights-common@2.8.18(tslib@2.6.3)': + /@microsoft/applicationinsights-common@2.8.18(tslib@2.6.3): + resolution: {integrity: sha512-/PBRmRL6rFCoO3vWpIEHuFnu+TinEYRKWOj+I+XVUH5myZpv+nYvaRdwryVTkmCYxLyL9kxtNn7hQx8DBlhdSw==} + peerDependencies: + tslib: '*' dependencies: '@microsoft/applicationinsights-core-js': 2.8.18(tslib@2.6.3) '@microsoft/applicationinsights-shims': 2.0.2 '@microsoft/dynamicproto-js': 1.1.11 tslib: 2.6.3 + dev: false - '@microsoft/applicationinsights-common@3.2.1(tslib@2.6.3)': + /@microsoft/applicationinsights-common@3.2.1(tslib@2.6.3): + resolution: {integrity: sha512-vRYQ1SIZJEz1eFbs2AQiLtev5L+zmjZ1Jkj3BWfIxJLd6n0cVR4NZETBSyMuk11KH7MIOrDLvh1CzjBIJIpDAg==} + peerDependencies: + tslib: '*' dependencies: '@microsoft/applicationinsights-core-js': 3.2.1(tslib@2.6.3) '@microsoft/applicationinsights-shims': 3.0.1 '@microsoft/dynamicproto-js': 2.0.3 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 + dev: false - '@microsoft/applicationinsights-core-js@2.8.18(tslib@2.6.3)': + /@microsoft/applicationinsights-core-js@2.8.18(tslib@2.6.3): + resolution: {integrity: sha512-yPHRZFLpnEO0uSgFPM1BLMRRwjoten9YBbn4pJRbCT4PigLnj748knmWsMwXIdcehtkRTYz78kPYa/LWP7nvmA==} + peerDependencies: + tslib: '*' dependencies: '@microsoft/applicationinsights-shims': 2.0.2 '@microsoft/dynamicproto-js': 1.1.11 tslib: 2.6.3 + dev: false - '@microsoft/applicationinsights-core-js@3.2.1(tslib@2.6.3)': + /@microsoft/applicationinsights-core-js@3.2.1(tslib@2.6.3): + resolution: {integrity: sha512-euxkDrF5BroAY7wgviaTVZdMvRAENQtUW4pDTsIjJK26shi1m5fPCc5l+vMn7kO2wQEaEgAOVw+/kSQgXDHN+Q==} + peerDependencies: + tslib: '*' dependencies: '@microsoft/applicationinsights-shims': 3.0.1 '@microsoft/dynamicproto-js': 2.0.3 '@nevware21/ts-async': 0.5.2 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 + dev: false - '@microsoft/applicationinsights-dependencies-js@3.2.1(tslib@2.6.3)': + /@microsoft/applicationinsights-dependencies-js@3.2.1(tslib@2.6.3): + resolution: {integrity: sha512-NZ7OY/7KYmJ6/TFsDZojsr9mA4uNv4ZTrNNXfWqtPxx0ClYalSm6Xyjna0N1d1wktrfecHe8K/ZrWJgxI2bfRw==} + peerDependencies: + tslib: '*' dependencies: '@microsoft/applicationinsights-common': 3.2.1(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 3.2.1(tslib@2.6.3) @@ -36867,8 +23755,12 @@ snapshots: '@nevware21/ts-async': 0.5.2 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 + dev: false - '@microsoft/applicationinsights-properties-js@3.2.1(tslib@2.6.3)': + /@microsoft/applicationinsights-properties-js@3.2.1(tslib@2.6.3): + resolution: {integrity: sha512-GO96t7tQ1eEHPENVXjOlf91h/Iz8p4I0XayALTSshHMc+eDfsi1a/b2JYrfNDC4fanPU44Kmx3QZkXrBb1ri5A==} + peerDependencies: + tslib: '*' dependencies: '@microsoft/applicationinsights-common': 3.2.1(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 3.2.1(tslib@2.6.3) @@ -36876,8 +23768,14 @@ snapshots: '@microsoft/dynamicproto-js': 2.0.3 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 + dev: false - '@microsoft/applicationinsights-react-js@3.4.3(history@4.10.1)(react@18.3.1)(tslib@2.6.3)': + /@microsoft/applicationinsights-react-js@3.4.3(history@4.10.1)(react@18.3.1)(tslib@2.6.3): + resolution: {integrity: sha512-+IIPDYU7DKBwByN7lK/mkMGrnWMGdyIsEZfDzBh/fKDZgGGGgH9B3WHej+vIpdwBcVaPbYx++lonTshn56C9/A==} + peerDependencies: + history: '>= 4.10.1' + react: '>= 17.0.1' + tslib: '*' dependencies: '@microsoft/applicationinsights-common': 2.8.18(tslib@2.6.3) '@microsoft/applicationinsights-core-js': 2.8.18(tslib@2.6.3) @@ -36886,14 +23784,22 @@ snapshots: history: 4.10.1 react: 18.3.1 tslib: 2.6.3 + dev: false - '@microsoft/applicationinsights-shims@2.0.2': {} + /@microsoft/applicationinsights-shims@2.0.2: + resolution: {integrity: sha512-PoHEgsnmcqruLNHZ/amACqdJ6YYQpED0KSRe6J7gIJTtpZC1FfFU9b1fmDKDKtFoUSrPzEh1qzO3kmRZP0betg==} + dev: false - '@microsoft/applicationinsights-shims@3.0.1': + /@microsoft/applicationinsights-shims@3.0.1: + resolution: {integrity: sha512-DKwboF47H1nb33rSUfjqI6ryX29v+2QWcTrRvcQDA32AZr5Ilkr7whOOSsD1aBzwqX0RJEIP1Z81jfE3NBm/Lg==} dependencies: '@nevware21/ts-utils': 0.11.3 + dev: false - '@microsoft/applicationinsights-web@3.2.1(tslib@2.6.3)': + /@microsoft/applicationinsights-web@3.2.1(tslib@2.6.3): + resolution: {integrity: sha512-+U0wsifFEmvdT2hckmsoNcMx/SQrAA8qBBM7y0zefT03wHbFh0jCL/kd2MFOyKZ39v9C4uIO5L8Ftu4hBpnYWA==} + peerDependencies: + tslib: '*' dependencies: '@microsoft/applicationinsights-analytics-js': 3.2.1(tslib@2.6.3) '@microsoft/applicationinsights-cfgsync-js': 3.2.1(tslib@2.6.3) @@ -36907,23 +23813,34 @@ snapshots: '@nevware21/ts-async': 0.5.2 '@nevware21/ts-utils': 0.11.3 tslib: 2.6.3 + dev: false - '@microsoft/dynamicproto-js@1.1.11': {} + /@microsoft/dynamicproto-js@1.1.11: + resolution: {integrity: sha512-gNw9z9LbqLV+WadZ6/MMrWwO3e0LuoUH1wve/1iPsBNbgqeVCiB0EZFNNj2lysxS2gkqoF9hmyVaG3MoM1BkxA==} + dev: false - '@microsoft/dynamicproto-js@2.0.3': + /@microsoft/dynamicproto-js@2.0.3: + resolution: {integrity: sha512-JTWTU80rMy3mdxOjjpaiDQsTLZ6YSGGqsjURsY6AUQtIj0udlF/jYmhdLZu8693ZIC0T1IwYnFa0+QeiMnziBA==} dependencies: '@nevware21/ts-utils': 0.11.3 + dev: false - '@microsoft/tsdoc-config@0.16.2': + /@microsoft/tsdoc-config@0.16.2: + resolution: {integrity: sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==} dependencies: '@microsoft/tsdoc': 0.14.2 ajv: 6.12.6 jju: 1.4.0 resolve: 1.19.0 + dev: true - '@microsoft/tsdoc@0.14.2': {} + /@microsoft/tsdoc@0.14.2: + resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==} + dev: true - '@mole-inc/bin-wrapper@8.0.1': + /@mole-inc/bin-wrapper@8.0.1: + resolution: {integrity: sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: bin-check: 4.1.0 bin-version-check: 5.1.0 @@ -36933,106 +23850,245 @@ snapshots: filenamify: 5.1.1 got: 11.8.6 os-filter-obj: 2.0.0 + dev: true - '@monaco-editor/loader@1.4.0(monaco-editor@0.50.0)': + /@monaco-editor/loader@1.4.0(monaco-editor@0.50.0): + resolution: {integrity: sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==} + peerDependencies: + monaco-editor: '>= 0.21.0 < 1' dependencies: monaco-editor: 0.50.0 state-local: 1.0.7 + dev: false - '@monaco-editor/react@4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@monaco-editor/react@4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-RFkU9/i7cN2bsq/iTkurMWOEErmYcY6JiQI3Jn+WeR/FGISH8JbHERjpS9oRuSOPvDMJI0Z8nJeKkbOs9sBYQw==} + peerDependencies: + monaco-editor: '>= 0.25.0 < 1' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@monaco-editor/loader': 1.4.0(monaco-editor@0.50.0) monaco-editor: 0.50.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + dev: false - '@mrmlnc/readdir-enhanced@2.2.1': + /@mrmlnc/readdir-enhanced@2.2.1: + resolution: {integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==} + engines: {node: '>=4'} dependencies: call-me-maybe: 1.0.2 glob-to-regexp: 0.3.0 + dev: false - '@mswjs/cookies@0.1.7': + /@mswjs/cookies@0.1.7: + resolution: {integrity: sha512-bDg1ReMBx+PYDB4Pk7y1Q07Zz1iKIEUWQpkEXiA2lEWg9gvOZ8UBmGXilCEUvyYoRFlmr/9iXTRR69TrgSwX/Q==} dependencies: '@types/set-cookie-parser': 2.4.9 set-cookie-parser: 2.6.0 + dev: true - '@mswjs/interceptors@0.12.7': + /@mswjs/interceptors@0.12.7: + resolution: {integrity: sha512-eGjZ3JRAt0Fzi5FgXiV/P3bJGj0NqsN7vBS0J0FO2AQRQ0jCKQS4lEFm4wvlSgKQNfeuc/Vz6d81VtU3Gkx/zg==} dependencies: '@open-draft/until': 1.0.3 '@xmldom/xmldom': 0.7.13 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) headers-utils: 3.0.2 outvariant: 1.4.2 strict-event-emitter: 0.2.8 transitivePeerDependencies: - supports-color + dev: true - '@mui/base@5.0.0-alpha.128(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@mui/base@5.0.0-alpha.108(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-KjzRUts2i/ODlMfywhFTqTzQl+Cr9nlDSZxJcnYjrbOV/iRyQNBTDoiFJt+XEdRi0fZBHnk74AFbnP56ehybsA==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 '@emotion/is-prop-valid': 1.2.2 '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) '@popperjs/core': 2.11.8 + '@types/react': 18.0.18 clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - optionalDependencies: - '@types/react': 18.0.18 + dev: false - '@mui/base@5.0.0-beta.0(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@mui/base@5.0.0-alpha.128(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-wub3wxNN+hUp8hzilMlXX3sZrPo75vsy1cXEQpqdTfIFlE9HprP1jlulFiPg5tfPst2OKmygXr2hhmgvAKRrzQ==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 '@emotion/is-prop-valid': 1.2.2 '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) '@popperjs/core': 2.11.8 + '@types/react': 18.0.18 clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - optionalDependencies: + dev: false + + /@mui/base@5.0.0-beta.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-ap+juKvt8R8n3cBqd/pGtZydQ4v2I/hgJKnvJRGjpSh3RvsvnDHO4rXov8MHQlH6VqpOekwgilFLGxMZjNTucA==} + engines: {node: '>=12.0.0'} + peerDependencies: '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.24.7 + '@emotion/is-prop-valid': 1.2.2 + '@mui/types': 7.2.14(@types/react@18.0.18) + '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) + '@popperjs/core': 2.11.8 + '@types/react': 18.0.18 + clsx: 1.2.1 + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-is: 18.3.1 + dev: false - '@mui/core-downloads-tracker@5.15.20': {} + /@mui/core-downloads-tracker@5.15.20: + resolution: {integrity: sha512-DoL2ppgldL16utL8nNyj/P12f8mCNdx/Hb/AJnX9rLY4b52hCMIx1kH83pbXQ6uMy6n54M3StmEbvSGoj2OFuA==} + dev: false - '@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1)': + /@mui/icons-material@5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1): + resolution: {integrity: sha512-oGcKmCuHaYbAAoLN67WKSXtHmEgyWcJToT1uRtmPyxMj9N5uqwc/mRtEnst4Wj/eGr+zYH2FiZQ79v9k7kSk1Q==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@mui/material': 5.13.0 + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 - '@mui/material': 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react: 18.3.1 - optionalDependencies: + '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@types/react': 18.0.18 + react: 18.3.1 + dev: false - '@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@mui/lab@5.0.0-alpha.110(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-SkX5QNbaWouO7BXvb8zpFzDizLt7UzgaebqKSvFJLF28OXiNDfPVCle6IIB4g7hAyb/o19Kbhxs9V+LwK5gQzA==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@emotion/react': ^11.5.0 + '@emotion/styled': ^11.3.0 + '@mui/material': 5.13.0 + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 - '@mui/base': 5.0.0-alpha.128(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/material': 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/system': 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + '@mui/base': 5.0.0-alpha.108(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) + '@types/react': 18.0.18 clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - optionalDependencies: + dev: false + + /@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-niv2mFgSTgdrRJXbWoX9pIivhe80BaFXfdWajXe1bS8VYH3Y5WyJpk8KiU3rbHyJswbFEGd8N6EBBrq11X8yMA==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@emotion/react': ^11.5.0 + '@emotion/styled': ^11.3.0 + '@mui/material': 5.13.0 + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.24.7 '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + '@mui/base': 5.0.0-alpha.128(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + '@mui/types': 7.2.14(@types/react@18.0.18) + '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) '@types/react': 18.0.18 + clsx: 1.2.1 + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-is: 18.3.1 + dev: false - '@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@mui/material@5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-ckS+9tCpAzpdJdaTF+btF0b6mF9wbXg/EVKtnoAWYi0UKXoXBAVvEUMNpLGA5xdpCdf+A6fPbVUEHs9TsfU+Yw==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@emotion/react': ^11.5.0 + '@emotion/styled': ^11.3.0 + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 - '@mui/base': 5.0.0-beta.0(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + '@mui/base': 5.0.0-beta.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@mui/core-downloads-tracker': 5.15.20 - '@mui/system': 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) + '@types/react': 18.0.18 '@types/react-transition-group': 4.4.10 clsx: 1.2.1 csstype: 3.1.3 @@ -37040,67 +24096,119 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - optionalDependencies: - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) - '@types/react': 18.0.18 + react-transition-group: 4.4.5(react-dom@18.3.1)(react@18.3.1) + dev: false - '@mui/private-theming@5.15.20(@types/react@18.0.18)(react@18.3.1)': + /@mui/private-theming@5.15.20(@types/react@18.0.18)(react@18.3.1): + resolution: {integrity: sha512-BK8F94AIqSrnaPYXf2KAOjGZJgWfvqAVQ2gVR3EryvQFtuBnG6RwodxrCvd3B48VuMy6Wsk897+lQMUxJyk+6g==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) + '@types/react': 18.0.18 prop-types: 15.8.1 react: 18.3.1 - optionalDependencies: - '@types/react': 18.0.18 + dev: false - '@mui/styled-engine@5.15.14(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(react@18.3.1)': + /@mui/styled-engine@5.15.14(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.3.1): + resolution: {integrity: sha512-RILkuVD8gY6PvjZjqnWhz8fu68dVkqhM5+jYWfB5yhlSQKg+2rHkmEwm75XIeAqI3qwOndK6zELK5H6Zxn4NHw==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@emotion/react': ^11.4.1 + '@emotion/styled': ^11.3.0 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true dependencies: '@babel/runtime': 7.24.7 '@emotion/cache': 11.11.0 + '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) csstype: 3.1.3 prop-types: 15.8.1 react: 18.3.1 - optionalDependencies: - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + dev: false - '@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1)': + /@mui/system@5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1): + resolution: {integrity: sha512-LoMq4IlAAhxzL2VNUDBTQxAb4chnBe8JvRINVNDiMtHE2PiPOoHlhOPutSxEbaL5mkECPVWSv6p8JEV+uykwIA==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@emotion/react': ^11.5.0 + '@emotion/styled': ^11.3.0 + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@emotion/react': + optional: true + '@emotion/styled': + optional: true + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 + '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) '@mui/private-theming': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@mui/styled-engine': 5.15.14(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(react@18.3.1) + '@mui/styled-engine': 5.15.14(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.3.1) '@mui/types': 7.2.14(@types/react@18.0.18) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) + '@types/react': 18.0.18 clsx: 2.1.1 csstype: 3.1.3 prop-types: 15.8.1 react: 18.3.1 - optionalDependencies: - '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) - '@types/react': 18.0.18 + dev: false - '@mui/types@7.2.14(@types/react@18.0.18)': - optionalDependencies: + /@mui/types@7.2.14(@types/react@18.0.18): + resolution: {integrity: sha512-MZsBZ4q4HfzBsywtXgM1Ksj6HDThtiwmOKUXH1pKYISI9gAVXCNHNpo7TlGoGrBaYWZTdNoirIN7JsQcQUjmQQ==} + peerDependencies: + '@types/react': 18.0.18 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: '@types/react': 18.0.18 + dev: false - '@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1)': + /@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1): + resolution: {integrity: sha512-mAbYx0sovrnpAu1zHc3MDIhPqL8RPVC5W5xcO1b7PiSCJPtckIZmBkp8hefamAvUiAV8gpfMOM6Zb+eSisbI2A==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/react': 18.0.18 + react: ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true dependencies: '@babel/runtime': 7.24.7 '@types/prop-types': 15.7.12 + '@types/react': 18.0.18 prop-types: 15.8.1 react: 18.3.1 react-is: 18.3.1 - optionalDependencies: - '@types/react': 18.0.18 + dev: false - '@mui/x-data-grid@6.20.1(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@mui/x-data-grid@6.20.1(@mui/material@5.13.0)(@mui/system@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-x1muWWIG9otkk4FuvoTxH3I4foyA1caFu8ZC9TvMQ+7NSBKcfy/JeLQfKkZk8ACUUosvENdrRIkhqU2xdIqIVg==} + engines: {node: '>=14.0.0'} + peerDependencies: + '@mui/material': 5.13.0 + '@mui/system': ^5.4.1 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 dependencies: '@babel/runtime': 7.24.7 - '@mui/material': 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/system': 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) clsx: 2.1.1 prop-types: 15.8.1 @@ -37109,37 +24217,59 @@ snapshots: reselect: 4.1.8 transitivePeerDependencies: - '@types/react' + dev: false - '@ndelangen/get-tarball@3.0.9': + /@ndelangen/get-tarball@3.0.9: + resolution: {integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==} dependencies: gunzip-maybe: 1.4.2 pump: 3.0.0 tar-fs: 2.1.1 + dev: true - '@nevware21/ts-async@0.5.2': + /@nevware21/ts-async@0.5.2: + resolution: {integrity: sha512-Zf2vUNjCw2vJsiVKhWXA9hCNHsn59AOSGa5jGP4tWrp/vTH9XrI4eG/65khuoAgrS83migj0Xv5/j6fUAz69Zw==} dependencies: '@nevware21/ts-utils': 0.11.3 + dev: false - '@nevware21/ts-utils@0.11.3': {} + /@nevware21/ts-utils@0.11.3: + resolution: {integrity: sha512-oipW+tyKN68bREjoESYAzOZiatM+1LF+ez1TX3BaeinhCkI18xsLgmpH9tvwHaVgKf1Tsth25sdbXVtYmgRYvQ==} + dev: false - '@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3': + /@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3: + resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==} + requiresBuild: true + dev: true optional: true - '@nodelib/fs.scandir@2.1.5': + /@nodelib/fs.scandir@2.1.5: + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} dependencies: '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 - '@nodelib/fs.stat@1.1.3': {} + /@nodelib/fs.stat@1.1.3: + resolution: {integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==} + engines: {node: '>= 6'} + dev: false - '@nodelib/fs.stat@2.0.5': {} + /@nodelib/fs.stat@2.0.5: + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} - '@nodelib/fs.walk@1.2.8': + /@nodelib/fs.walk@1.2.8: + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} dependencies: '@nodelib/fs.scandir': 2.1.5 fastq: 1.17.1 - '@npmcli/arborist@5.3.0': + /@npmcli/arborist@5.3.0: + resolution: {integrity: sha512-+rZ9zgL1lnbl8Xbb1NQdMjveOMwj4lIYfcDtyJHHi5x4X8jtR6m8SXooJMZy5vmFVZ8w7A2Bnd/oX9eTuU8w5A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true dependencies: '@isaacs/string-locale-compare': 1.1.0 '@npmcli/installed-package-contents': 1.0.7 @@ -37178,18 +24308,26 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@npmcli/fs@1.1.1': + /@npmcli/fs@1.1.1: + resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} dependencies: '@gar/promisify': 1.1.3 semver: 7.6.2 + dev: false - '@npmcli/fs@2.1.2': + /@npmcli/fs@2.1.2: + resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: '@gar/promisify': 1.1.3 semver: 7.6.2 + dev: true - '@npmcli/git@3.0.2': + /@npmcli/git@3.0.2: + resolution: {integrity: sha512-CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: '@npmcli/promise-spawn': 3.0.0 lru-cache: 7.18.3 @@ -37202,20 +24340,30 @@ snapshots: which: 2.0.2 transitivePeerDependencies: - bluebird + dev: true - '@npmcli/installed-package-contents@1.0.7': + /@npmcli/installed-package-contents@1.0.7: + resolution: {integrity: sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==} + engines: {node: '>= 10'} + hasBin: true dependencies: npm-bundled: 1.1.2 npm-normalize-package-bin: 1.0.1 + dev: true - '@npmcli/map-workspaces@2.0.4': + /@npmcli/map-workspaces@2.0.4: + resolution: {integrity: sha512-bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: '@npmcli/name-from-folder': 1.0.1 glob: 8.1.0 minimatch: 5.1.6 read-package-json-fast: 2.0.3 + dev: true - '@npmcli/metavuln-calculator@3.1.1': + /@npmcli/metavuln-calculator@3.1.1: + resolution: {integrity: sha512-n69ygIaqAedecLeVH3KnO39M6ZHiJ2dEv5A7DGvcqCB8q17BGUgW8QaanIkbWUo2aYGZqJaOORTLAlIvKjNDKA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: cacache: 16.1.3 json-parse-even-better-errors: 2.3.1 @@ -37224,30 +24372,52 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@npmcli/move-file@1.1.2': + /@npmcli/move-file@1.1.2: + resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} + engines: {node: '>=10'} + deprecated: This functionality has been moved to @npmcli/fs dependencies: mkdirp: 1.0.4 rimraf: 3.0.2 + dev: false - '@npmcli/move-file@2.0.1': + /@npmcli/move-file@2.0.1: + resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This functionality has been moved to @npmcli/fs dependencies: mkdirp: 1.0.4 rimraf: 3.0.2 + dev: true - '@npmcli/name-from-folder@1.0.1': {} + /@npmcli/name-from-folder@1.0.1: + resolution: {integrity: sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA==} + dev: true - '@npmcli/node-gyp@2.0.0': {} + /@npmcli/node-gyp@2.0.0: + resolution: {integrity: sha512-doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dev: true - '@npmcli/package-json@2.0.0': + /@npmcli/package-json@2.0.0: + resolution: {integrity: sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: json-parse-even-better-errors: 2.3.1 + dev: true - '@npmcli/promise-spawn@3.0.0': + /@npmcli/promise-spawn@3.0.0: + resolution: {integrity: sha512-s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: infer-owner: 1.0.4 + dev: true - '@npmcli/run-script@4.2.1': + /@npmcli/run-script@4.2.1: + resolution: {integrity: sha512-7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: '@npmcli/node-gyp': 2.0.0 '@npmcli/promise-spawn': 3.0.0 @@ -37257,18 +24427,22 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - '@nrwl/cli@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))': + /@nrwl/cli@15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99): + resolution: {integrity: sha512-qiAKHkov3iBx6hroPTitUrkRSUZFQqVgNJiF9gXRFC6pNJe9RS4rlmcIaoUFOboi9CnH5jwblNJVcz8YSVYOvA==} dependencies: - nx: 15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) + nx: 15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug + dev: true - '@nrwl/cypress@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': + /@nrwl/cypress@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6): + resolution: {integrity: sha512-p7LcNa6q1yZXSp1BOlMrn79QB4BEioAwWzAyqbtsrOd+5JkgQwAetwI7VFktjXohbH0SmVASqXhVJgXacoPgOA==} dependencies: - '@nx/cypress': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nx/cypress': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -37282,25 +24456,33 @@ snapshots: - supports-color - typescript - verdaccio + dev: true - '@nrwl/devkit@15.9.7(nx@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))': + /@nrwl/devkit@15.9.7(nx@15.9.3): + resolution: {integrity: sha512-Sb7Am2TMT8AVq8e+vxOlk3AtOA2M0qCmhBzoM1OJbdHaPKc0g0UgSnWRml1kPGg5qfPk72tWclLoZJ5/ut0vTg==} + peerDependencies: + nx: '>= 14.1 <= 16' dependencies: ejs: 3.1.10 ignore: 5.3.1 - nx: 15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) + nx: 15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) semver: 7.5.4 tmp: 0.2.3 tslib: 2.6.3 + dev: true - '@nrwl/devkit@17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))': + /@nrwl/devkit@17.0.0(nx@17.0.0): + resolution: {integrity: sha512-HvV4GrohNxmN5niRu+XRWuy/gNXFkCLJTNqS3eeZ1h96BnVIiGQL6qHkXvwt0HShcse+Bn55BijKNO7JSo7oIQ==} dependencies: - '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nx/devkit': 17.0.0(nx@17.0.0) transitivePeerDependencies: - nx + dev: true - '@nrwl/eslint-plugin-nx@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint-config-prettier@9.1.0(eslint@8.46.0))(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': + /@nrwl/eslint-plugin-nx@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0)(eslint-config-prettier@9.1.0)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6): + resolution: {integrity: sha512-kOYPAQMdS9qDkOG5CyAjerBN4UwxUipqZjjahVyA3GS5JwRe9DQUZ0vrFtMp5DSfJ+Cs9fNd4voHvZQEKanq2Q==} dependencies: - '@nx/eslint-plugin': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint-config-prettier@9.1.0(eslint@8.46.0))(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nx/eslint-plugin': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0)(eslint-config-prettier@9.1.0)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -37315,10 +24497,12 @@ snapshots: - supports-color - typescript - verdaccio + dev: true - '@nrwl/jest@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6)': + /@nrwl/jest@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6): + resolution: {integrity: sha512-j+7SM/y63c5zET9YQ6TAt8W6bxxagu3e3zIV68ccEq3pF1jdGnmx9r9RMaiFRo5LWA5gsIayDQDtJ8vpdH2M2g==} dependencies: - '@nx/jest': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) + '@nx/jest': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -37333,10 +24517,12 @@ snapshots: - ts-node - typescript - verdaccio + dev: true - '@nrwl/js@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': + /@nrwl/js@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6): + resolution: {integrity: sha512-Qjl21rnmwOzDmqAzBOLOQHgggGNpNXzRLTuV9fNGWSH/hMmYxC7oFqViaUVf53aTHpXgD5a/G6aj3hxThZWbdA==} dependencies: - '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -37348,31 +24534,75 @@ snapshots: - supports-color - typescript - verdaccio + dev: true - '@nrwl/nx-darwin-arm64@15.9.3': + /@nrwl/nx-darwin-arm64@15.9.3: + resolution: {integrity: sha512-2htJzVa+S/uLg5tj4nbO/tRz2SRMQIpT6EeWMgDGuEKQdpuRLVj2ez9hMpkRn9tl1tBUwR05hbV28DnOLRESVA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true optional: true - '@nrwl/nx-darwin-x64@15.9.3': + /@nrwl/nx-darwin-x64@15.9.3: + resolution: {integrity: sha512-p+8UkfC6KTLOX4XRt7NSP8DoTzEgs73+SN0csoXT9VsNO35+F0Z5zMZxpEc7RVo5Wen/4PGh2OWA+8gtgntsJQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true optional: true - '@nrwl/nx-linux-arm-gnueabihf@15.9.3': + /@nrwl/nx-linux-arm-gnueabihf@15.9.3: + resolution: {integrity: sha512-xwW7bZtggrxhFbYvvWWArtcSWwoxWzi/4wNgP3wPbcZFNZiraahVQSpIyJXrS9aajGbdvuDBM8cbDsMj9v7mwg==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true optional: true - '@nrwl/nx-linux-arm64-gnu@15.9.3': + /@nrwl/nx-linux-arm64-gnu@15.9.3: + resolution: {integrity: sha512-KNxDL2OAHxhFqztEjv2mNwXD6xrzoUury7NsYZYqlxJUNc3YYBfRSLEatnw491crvMBndbxfGVTWEO9S4YmRuw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true optional: true - '@nrwl/nx-linux-arm64-musl@15.9.3': + /@nrwl/nx-linux-arm64-musl@15.9.3: + resolution: {integrity: sha512-AxoZzfsXH7ZqDE+WrQtRumufIcSIBw4U/LikiDLaWWoGtNpAfKLkD/PHirZiNxHIeGy1Toi4ccMUolXbafLVFw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true optional: true - '@nrwl/nx-linux-x64-gnu@15.9.3': + /@nrwl/nx-linux-x64-gnu@15.9.3: + resolution: {integrity: sha512-P8AOPRufvV4a5cSczNsw84zFAI7NgAiEBTybYcyymdNJmo0iArJXEmvj/G4mB20O8VCsCkwqMYAu6nQEnES1Kw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true optional: true - '@nrwl/nx-linux-x64-musl@15.9.3': + /@nrwl/nx-linux-x64-musl@15.9.3: + resolution: {integrity: sha512-4ZYDp7T319+xbw7Z7KVtRefzaXJipZfgrM49r+Y1FAfYDc8y18zvKz3slK26wfWz+EUZwKsa/DfA2KmyRG3DvQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true optional: true - '@nrwl/nx-plugin@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(eslint@8.46.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6)': + /@nrwl/nx-plugin@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6): + resolution: {integrity: sha512-lVX/ec/reLrS2tb+9/2MbiEg4rEmKeNPTu1jpa24Sz7yCttMjEU+C8wjQnVZmMRre2xiQmFflZUR/tJ9f5/Jpw==} dependencies: - '@nx/plugin': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(eslint@8.46.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) + '@nx/plugin': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -37388,16 +24618,30 @@ snapshots: - ts-node - typescript - verdaccio + dev: true - '@nrwl/nx-win32-arm64-msvc@15.9.3': + /@nrwl/nx-win32-arm64-msvc@15.9.3: + resolution: {integrity: sha512-UhgxIPgTZBKN1oxlLPSklkSzVL3hA4lAiVc9A0Utumpbp0ob/Xx+2vHzg3cnmNH3jWkZ+9OsC2dKyeMB6gAbSw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true optional: true - '@nrwl/nx-win32-x64-msvc@15.9.3': + /@nrwl/nx-win32-x64-msvc@15.9.3: + resolution: {integrity: sha512-gdnvqURKnu0EQGOFJ6NUKq6wSB+viNb7Z8qtKhzSmFwVjT8akOnLWn7ZhL9v28TAjLM7/s1Mwvmz/IMj1PGlcQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true optional: true - '@nrwl/react@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@nrwl/react@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6)(webpack@5.84.1): + resolution: {integrity: sha512-YXm5of00b2wa/y4lRsddORtW5yRkG9tn7G2NRwcPUqvCfSOlZsr6iPXa45nW8/EcPjAhl73nA+rjsnTLDouUdA==} dependencies: - '@nx/react': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@nx/react': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6)(webpack@5.84.1) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -37411,10 +24655,12 @@ snapshots: - typescript - verdaccio - webpack + dev: true - '@nrwl/rollup@17.0.0(@babel/core@7.24.7)(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/babel__core@7.20.5)(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6)': + /@nrwl/rollup@17.0.0(@babel/core@7.24.7)(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6): + resolution: {integrity: sha512-WBTfMWZ2cH8QgC1EezbS3chPpwUmpE51Iv/GHM7Igkb7/BIPPHVnk1p1AUM+VUDqnrbkvF0y5MfCIQvhBcc6Mg==} dependencies: - '@nx/rollup': 17.0.0(@babel/core@7.24.7)(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/babel__core@7.20.5)(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) + '@nx/rollup': 17.0.0(@babel/core@7.24.7)(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) transitivePeerDependencies: - '@babel/core' - '@babel/traverse' @@ -37429,10 +24675,12 @@ snapshots: - ts-node - typescript - verdaccio + dev: true - '@nrwl/storybook@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': + /@nrwl/storybook@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6): + resolution: {integrity: sha512-h/E47WNElhqvFInrCld8EBpOZqCo1P3taUu77nlwdmuOfe7hy/IYhGlPRt1c114Nc9DVZoVZ52xOhT6Xk2b74Q==} dependencies: - '@nx/storybook': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nx/storybook': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -37446,27 +24694,35 @@ snapshots: - supports-color - typescript - verdaccio + dev: true - '@nrwl/tao@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))': + /@nrwl/tao@15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99): + resolution: {integrity: sha512-NcjFCbuMa53C3fBrK7qLUImUBySyr9EVwmiZuAv9sZZtm4eILK8w3qihjrB4FFUuLjPU/SViriYXi+hF2tbP4w==} + hasBin: true dependencies: - nx: 15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) + nx: 15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug + dev: true - '@nrwl/tao@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))': + /@nrwl/tao@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99): + resolution: {integrity: sha512-ujvXd8yde1faH0zHKWWnZUhSym/+5SJT6NctBKNQTe8FVm0yBErsbxv8kdvVg/bizsRv+fbOkLdII0xX0aMkKQ==} + hasBin: true dependencies: - nx: 17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) + nx: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) tslib: 2.6.3 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug + dev: true - '@nrwl/web@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': + /@nrwl/web@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6): + resolution: {integrity: sha512-Kj6S5M9KA5/UVgAf0E/AqQXyDDpbNxdZeXsWoT1CDD7w3GewWOMh/BxDZyMKQ/GIZfX1yFCbPj5+zCtpQCk3jQ==} dependencies: - '@nx/web': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nx/web': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -37478,10 +24734,12 @@ snapshots: - supports-color - typescript - verdaccio + dev: true - '@nrwl/webpack@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': + /@nrwl/webpack@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0)(nx@17.0.0)(typescript@5.1.6)(webpack-cli@4.10.0): + resolution: {integrity: sha512-RiYfqKrfb+xb3/jsi8sRn19hqF6nQPWYzlLIw0Y5kX8h7N7ZQjBFpLkJuZwEUhGPEb+VC9BBzC9cXuMgWwwiSQ==} dependencies: - '@nx/webpack': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@nx/webpack': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0)(nx@17.0.0)(typescript@5.1.6)(webpack-cli@4.10.0) transitivePeerDependencies: - '@babel/traverse' - '@parcel/css' @@ -37509,27 +24767,35 @@ snapshots: - verdaccio - vue-template-compiler - webpack-cli + dev: true - '@nrwl/workspace@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))': + /@nrwl/workspace@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99): + resolution: {integrity: sha512-kh30WXFmrKnrFYuk/zo7yByDjo9JWwJ3SbgdXf1S4RtZXtiDcDpat2UQ2oOe8bB6fYLrGjudsVTIWmnNKTjmNw==} dependencies: - '@nx/workspace': 17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) + '@nx/workspace': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug + dev: true - '@nx/cypress@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': + /@nx/cypress@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6): + resolution: {integrity: sha512-HDNMG/IazDaftBRRAsAVpaXo3QN6F8FjbdpWmx2vcbaG0fS0teHcQxPpHJqaT5jg/V17VEailepGOA+BoI4PWg==} + peerDependencies: + cypress: '>= 3 < 14' + peerDependenciesMeta: + cypress: + optional: true dependencies: - '@nrwl/cypress': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) - '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) - '@nx/eslint': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) - '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nrwl/cypress': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6) + '@nx/devkit': 17.0.0(nx@17.0.0) + '@nx/eslint': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0) + '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.1.6) + cypress: 9.7.0 detect-port: 1.6.1 semver: 7.5.3 tslib: 2.6.3 - optionalDependencies: - cypress: 9.7.0 transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -37542,33 +24808,44 @@ snapshots: - supports-color - typescript - verdaccio + dev: true - '@nx/devkit@17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))': + /@nx/devkit@17.0.0(nx@17.0.0): + resolution: {integrity: sha512-NqN+I3R+Gxuy+gf04cdMg1Wo29CyhT2F87Yvu2JU355BfB3MOAFfOrQpPQt5sPlZRloZCrz0K3c2uftNkGSMUg==} + peerDependencies: + nx: '>= 16 <= 18' dependencies: - '@nrwl/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nrwl/devkit': 17.0.0(nx@17.0.0) ejs: 3.1.10 enquirer: 2.3.6 ignore: 5.3.1 - nx: 17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) + nx: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) semver: 7.5.3 tmp: 0.2.3 tslib: 2.6.3 + dev: true - '@nx/eslint-plugin@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint-config-prettier@9.1.0(eslint@8.46.0))(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': + /@nx/eslint-plugin@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0)(eslint-config-prettier@9.1.0)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6): + resolution: {integrity: sha512-q1kUSPRGHhbaXwJq+JthprIDVjL9mVaPeB/2mFmMFdsU6RPZsud8oJoQCamMKkGMMcN/VrtAm3L680EYv/abQw==} + peerDependencies: + '@typescript-eslint/parser': ^5.60.1 + eslint-config-prettier: ^9.0.0 + peerDependenciesMeta: + eslint-config-prettier: + optional: true dependencies: - '@nrwl/eslint-plugin-nx': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint-config-prettier@9.1.0(eslint@8.46.0))(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) - '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) - '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) - '@typescript-eslint/parser': 5.62.0(eslint@8.46.0)(typescript@5.1.6) - '@typescript-eslint/type-utils': 5.62.0(eslint@8.46.0)(typescript@5.1.6) - '@typescript-eslint/utils': 5.62.0(eslint@8.46.0)(typescript@5.1.6) + '@nrwl/eslint-plugin-nx': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(@typescript-eslint/parser@5.62.0)(eslint-config-prettier@9.1.0)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6) + '@nx/devkit': 17.0.0(nx@17.0.0) + '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.1.6) + '@typescript-eslint/type-utils': 5.62.0(eslint@7.32.0)(typescript@5.1.6) + '@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@5.1.6) chalk: 4.1.2 confusing-browser-globals: 1.0.11 + eslint-config-prettier: 9.1.0(eslint@7.32.0) jsonc-eslint-parser: 2.4.0 semver: 7.5.3 tslib: 2.6.3 - optionalDependencies: - eslint-config-prettier: 9.1.0(eslint@8.46.0) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -37581,16 +24858,22 @@ snapshots: - supports-color - typescript - verdaccio + dev: true - '@nx/eslint@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))': + /@nx/eslint@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0): + resolution: {integrity: sha512-GWoEoxKgKrjwIB38a8JPhE6MM6wacaZfYZCAb5N2F8+7GPQUJxNW8gyhaCbLIrUglSJL+SLFtE91txOwHnDsBQ==} + peerDependencies: + eslint: ^8.0.0 + peerDependenciesMeta: + eslint: + optional: true dependencies: - '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) - '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) - '@nx/linter': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nx/devkit': 17.0.0(nx@17.0.0) + '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nx/linter': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0) + eslint: 7.32.0 tslib: 2.6.3 typescript: 5.1.6 - optionalDependencies: - eslint: 8.46.0 transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -37601,18 +24884,20 @@ snapshots: - nx - supports-color - verdaccio + dev: true - '@nx/jest@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6)': + /@nx/jest@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6): + resolution: {integrity: sha512-ITl074j0tdDkPxMtwFQWWC+Zp23wklxlHjLfhf0CUbPqzQnofEToUd7MiuKkjzvVjXJxD/zYX9sMl6iXmFpGiA==} dependencies: - '@jest/reporters': 29.7.0(node-notifier@8.0.2) + '@jest/reporters': 29.7.0 '@jest/test-result': 29.7.0 - '@nrwl/jest': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) - '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) - '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nrwl/jest': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nx/devkit': 17.0.0(nx@17.0.0) + '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.1.6) chalk: 4.1.2 identity-obj-proxy: 3.0.0 - jest-config: 29.7.0(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)) + jest-config: 29.7.0(@types/node@18.11.9) jest-resolve: 29.7.0 jest-util: 29.7.0 resolve.exports: 1.1.0 @@ -37631,8 +24916,15 @@ snapshots: - ts-node - typescript - verdaccio + dev: true - '@nx/js@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': + /@nx/js@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6): + resolution: {integrity: sha512-j0YzvINQWH7OseoJp6zlbIioOKRDQ746MKROCDBx50uRkkJ2FlpHPYkLwv0M721JHJqf0dM0sBDa+HTxFHPcIg==} + peerDependencies: + verdaccio: ^5.0.4 + peerDependenciesMeta: + verdaccio: + optional: true dependencies: '@babel/core': 7.24.7 '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.24.7) @@ -37640,13 +24932,13 @@ snapshots: '@babel/preset-env': 7.24.7(@babel/core@7.24.7) '@babel/preset-typescript': 7.24.7(@babel/core@7.24.7) '@babel/runtime': 7.24.7 - '@nrwl/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) - '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) - '@nx/workspace': 17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) + '@nrwl/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nx/devkit': 17.0.0(nx@17.0.0) + '@nx/workspace': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.1.6) babel-plugin-const-enum: 1.2.0(@babel/core@7.24.7) babel-plugin-macros: 2.8.0 - babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.24.7)(@babel/traverse@7.24.7) + babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.24.7) chalk: 4.1.2 columnify: 1.6.0 detect-port: 1.6.1 @@ -37660,7 +24952,7 @@ snapshots: ora: 5.3.0 semver: 7.5.3 source-map-support: 0.5.19 - ts-node: 10.9.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(typescript@5.1.6) + ts-node: 10.9.1(@swc/core@1.3.99)(@types/node@18.11.9)(typescript@5.1.6) tsconfig-paths: 4.2.0 tslib: 2.6.3 transitivePeerDependencies: @@ -37673,10 +24965,12 @@ snapshots: - nx - supports-color - typescript + dev: true - '@nx/linter@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))': + /@nx/linter@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0): + resolution: {integrity: sha512-4rDylew15CAlAsFxYvXzY6EvmGqG7uE7qWtBlkGFoDnGCNfVakzTpU6b4GJGLE1QMToKFgehrxOHL1SVzdkogg==} dependencies: - '@nx/eslint': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nx/eslint': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -37688,44 +24982,106 @@ snapshots: - nx - supports-color - verdaccio + dev: true - '@nx/nx-darwin-arm64@17.0.0': + /@nx/nx-darwin-arm64@17.0.0: + resolution: {integrity: sha512-ZPW6uTVskpIbNJrH3I60lmYgXBnbszsmIX6haEhb4NKCwgPdZzMdbPqNNjIxKn6eL1A6FGKZYFh519OM8+z91A==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true optional: true - '@nx/nx-darwin-x64@17.0.0': + /@nx/nx-darwin-x64@17.0.0: + resolution: {integrity: sha512-pAPqfyfhSIogaUfsp5P3rbha5Xa4yZ3bHG5agi6AE9P62N/Om4r8utdZpHPKyXbWywsJZM0lL5llSfiruuO+fg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true optional: true - '@nx/nx-freebsd-x64@17.0.0': + /@nx/nx-freebsd-x64@17.0.0: + resolution: {integrity: sha512-DbbsthLTE+cKVUP6HDE6sza/8wRey2vy/6HfNuVnu7A/ZQaxWJUudkKviQidh7QEhHWiJoyEkjskExYTow6OoQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true optional: true - '@nx/nx-linux-arm-gnueabihf@17.0.0': + /@nx/nx-linux-arm-gnueabihf@17.0.0: + resolution: {integrity: sha512-ZYgYLscl4Zj/Ux7N5DJ0it9sTODEiqZjfx80w05q18GjXUWAcozFp/CZgXdT7AxONtESl/ZKDdqM+p8Hv0rI2Q==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true optional: true - '@nx/nx-linux-arm64-gnu@17.0.0': + /@nx/nx-linux-arm64-gnu@17.0.0: + resolution: {integrity: sha512-Mb0ffRV3X43OQtY5sY9wuAxFZ8VUQGM5LPwX908M2gAJH8FYtnWl06rfJAGhFAMf1Dt3bWsNebMC5iJprtF3SQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true optional: true - '@nx/nx-linux-arm64-musl@17.0.0': + /@nx/nx-linux-arm64-musl@17.0.0: + resolution: {integrity: sha512-Xwzy3QysngtXVCJ3YRJ9rl8JL13yqluknftwxiHsMaYD7BMlh2YXdyt5D7g4yvLywq+6SezKS6cB+X4/OQlQUA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true optional: true - '@nx/nx-linux-x64-gnu@17.0.0': + /@nx/nx-linux-x64-gnu@17.0.0: + resolution: {integrity: sha512-KNbLZCNhFK/cRMavh5b7ruWX2J6KA1rR1LV5rF/liDM0scyARkJzy5PcwwhXqxaUPQD+EXWWiRkKKRYk+mwVLA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true optional: true - '@nx/nx-linux-x64-musl@17.0.0': + /@nx/nx-linux-x64-musl@17.0.0: + resolution: {integrity: sha512-T8xJTO+kac3l8528YxpAjOeke3QbRYmdSY09E6f0OrSL43D3sfJcWB8NNatx3k5q0bJ9TVl7VVJG/3Rwux/99A==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true optional: true - '@nx/nx-win32-arm64-msvc@17.0.0': + /@nx/nx-win32-arm64-msvc@17.0.0: + resolution: {integrity: sha512-Y/g9w6lLWMKvr9htS3ZD3jbVzMVWPq01+Bw440E5gBexAp1mvrv1cih0lKkduuIAlVppyjJu+htpEdp2wxUv9Q==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true optional: true - '@nx/nx-win32-x64-msvc@17.0.0': + /@nx/nx-win32-x64-msvc@17.0.0: + resolution: {integrity: sha512-VIF01yfR2jSMQi/1x04TqJxhbKCzrdRG6QBjPCXTl6ZLnb7eGolKVPxDJd3blhYtRsS3pp20u2ra6i7C1oRrMQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true optional: true - '@nx/plugin@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(eslint@8.46.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6)': + /@nx/plugin@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6): + resolution: {integrity: sha512-47evs4zB6DtpRzYhRednjZXdCA0XS6uhkLddz7DZveaBHGJds7qMAgZ3YDkbsTf7VoBtI7uYuWYt/Z9IoVfHjA==} dependencies: - '@nrwl/nx-plugin': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(eslint@8.46.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) - '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) - '@nx/eslint': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) - '@nx/jest': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) - '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nrwl/nx-plugin': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6) + '@nx/devkit': 17.0.0(nx@17.0.0) + '@nx/eslint': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0) + '@nx/jest': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.1.6) fs-extra: 11.2.0 tslib: 2.6.3 @@ -37744,18 +25100,20 @@ snapshots: - ts-node - typescript - verdaccio + dev: true - '@nx/react@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@nx/react@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6)(webpack@5.84.1): + resolution: {integrity: sha512-YHYyM0RA5+SEDgT5gSBv+a2hOBcRVrzEuRiLaOY+Za3ACxrOoO3Z0ZV0QdWLBc2hI+aYIiZkHVp9F9ro8Lx8SQ==} dependencies: - '@nrwl/react': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) - '@nx/eslint': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) - '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) - '@nx/web': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nrwl/react': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6)(webpack@5.84.1) + '@nx/devkit': 17.0.0(nx@17.0.0) + '@nx/eslint': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0) + '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nx/web': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.1.6) '@svgr/webpack': 8.1.0(typescript@5.1.6) chalk: 4.1.2 - file-loader: 6.2.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + file-loader: 6.2.0(webpack@5.84.1) minimatch: 3.0.5 tslib: 2.6.3 transitivePeerDependencies: @@ -37771,13 +25129,15 @@ snapshots: - typescript - verdaccio - webpack + dev: true - '@nx/rollup@17.0.0(@babel/core@7.24.7)(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/babel__core@7.20.5)(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6)': + /@nx/rollup@17.0.0(@babel/core@7.24.7)(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6): + resolution: {integrity: sha512-cGTrhZRXd+0m2R8xS/rlxNiGh2mqxPp0T/bNT9FarwNKEDeWwqNBx51d27kfEBC1pSWbf7AFFmXvZzR/sSrjJA==} dependencies: - '@nrwl/rollup': 17.0.0(@babel/core@7.24.7)(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/babel__core@7.20.5)(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(ts-node@8.10.2(typescript@5.1.6))(typescript@5.1.6) - '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) - '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) - '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.7)(@types/babel__core@7.20.5)(rollup@2.79.1) + '@nrwl/rollup': 17.0.0(@babel/core@7.24.7)(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nx/devkit': 17.0.0(nx@17.0.0) + '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.7)(rollup@2.79.1) '@rollup/plugin-commonjs': 20.0.0(rollup@2.79.1) '@rollup/plugin-image': 2.1.1(rollup@2.79.1) '@rollup/plugin-json': 4.1.0(rollup@2.79.1) @@ -37790,7 +25150,7 @@ snapshots: rollup: 2.79.1 rollup-plugin-copy: 3.5.0 rollup-plugin-peer-deps-external: 2.2.4(rollup@2.79.1) - rollup-plugin-postcss: 4.0.2(postcss@8.4.39)(ts-node@8.10.2(typescript@5.1.6)) + rollup-plugin-postcss: 4.0.2(postcss@8.4.39) rollup-plugin-typescript2: 0.34.1(rollup@2.79.1)(typescript@5.1.6) rxjs: 7.8.1 tslib: 2.6.3 @@ -37808,14 +25168,16 @@ snapshots: - ts-node - typescript - verdaccio + dev: true - '@nx/storybook@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': + /@nx/storybook@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6): + resolution: {integrity: sha512-LpxUVrt/LdO39sTPDHWVfNuxxbukmmfxyIFk/XtWoi0rFn7Ut/Zc3SdD9+7lEhIklnXu90ob5aALl4YG9OtY9A==} dependencies: - '@nrwl/storybook': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) - '@nx/cypress': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(cypress@9.7.0)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) - '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) - '@nx/eslint': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(eslint@8.46.0)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) - '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nrwl/storybook': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6) + '@nx/cypress': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(cypress@9.7.0)(eslint@7.32.0)(nx@17.0.0)(typescript@5.1.6) + '@nx/devkit': 17.0.0(nx@17.0.0) + '@nx/eslint': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(eslint@7.32.0)(nx@17.0.0) + '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.1.6) semver: 7.5.3 tslib: 2.6.3 @@ -37832,12 +25194,14 @@ snapshots: - supports-color - typescript - verdaccio + dev: true - '@nx/web@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)': + /@nx/web@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6): + resolution: {integrity: sha512-H8R3QRs7nBKFei+KBvn4D8h9b4YEH8v4vfigFFD2Px1WCi0S8fWUqr9mF/EUUt6pUAf7Qgq3qp+EHArQ19X8MA==} dependencies: - '@nrwl/web': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) - '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) - '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nrwl/web': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) + '@nx/devkit': 17.0.0(nx@17.0.0) + '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) chalk: 4.1.2 detect-port: 1.6.1 http-server: 14.1.1 @@ -37853,43 +25217,45 @@ snapshots: - supports-color - typescript - verdaccio + dev: true - '@nx/webpack@17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': + /@nx/webpack@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0)(nx@17.0.0)(typescript@5.1.6)(webpack-cli@4.10.0): + resolution: {integrity: sha512-/qDyFGMCVvNPUW7T/qCh1CvRIcLDgCWcAz7KCeM5v90jRajSnfZDM0z7oQ4h/IClNQ3c57JJ8Mdm6rpY0XoMgw==} dependencies: '@babel/core': 7.24.7 - '@nrwl/webpack': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) - '@nx/js': 17.0.0(@babel/traverse@7.24.7)(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)))(typescript@5.1.6) + '@nrwl/webpack': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(esbuild@0.18.20)(html-webpack-plugin@5.6.0)(nx@17.0.0)(typescript@5.1.6)(webpack-cli@4.10.0) + '@nx/devkit': 17.0.0(nx@17.0.0) + '@nx/js': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@18.11.9)(nx@17.0.0)(typescript@5.1.6) autoprefixer: 10.4.13(postcss@8.4.39) - babel-loader: 9.1.3(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + babel-loader: 9.1.3(@babel/core@7.24.7)(webpack@5.84.1) browserslist: 4.23.1 chalk: 4.1.2 - copy-webpack-plugin: 10.2.4(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - css-loader: 6.11.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - css-minimizer-webpack-plugin: 5.0.1(esbuild@0.18.20)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + copy-webpack-plugin: 10.2.4(webpack@5.84.1) + css-loader: 6.11.0(webpack@5.84.1) + css-minimizer-webpack-plugin: 5.0.1(esbuild@0.18.20)(webpack@5.84.1) + fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.1.6)(webpack@5.84.1) less: 4.1.3 - less-loader: 11.1.0(less@4.1.3)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - license-webpack-plugin: 4.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + less-loader: 11.1.0(less@4.1.3)(webpack@5.84.1) + license-webpack-plugin: 4.0.2(webpack@5.84.1) loader-utils: 2.0.4 - mini-css-extract-plugin: 2.4.7(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + mini-css-extract-plugin: 2.4.7(webpack@5.84.1) parse5: 4.0.0 postcss: 8.4.39 postcss-import: 14.1.0(postcss@8.4.39) - postcss-loader: 6.2.1(postcss@8.4.39)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + postcss-loader: 6.2.1(postcss@8.4.39)(webpack@5.84.1) rxjs: 7.8.1 sass: 1.77.6 - sass-loader: 12.6.0(sass@1.77.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - source-map-loader: 3.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - style-loader: 3.3.4(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - terser-webpack-plugin: 5.3.10(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - ts-loader: 9.5.1(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + sass-loader: 12.6.0(sass@1.77.6)(webpack@5.84.1) + source-map-loader: 3.0.2(webpack@5.84.1) + style-loader: 3.3.4(webpack@5.84.1) + terser-webpack-plugin: 5.3.10(@swc/core@1.3.99)(esbuild@0.18.20)(webpack@5.84.1) + ts-loader: 9.5.1(typescript@5.1.6)(webpack@5.84.1) tsconfig-paths-webpack-plugin: 4.0.0 tslib: 2.6.3 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - webpack-dev-server: 4.15.2(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack-dev-server: 4.15.2(webpack-cli@4.10.0)(webpack@5.84.1) webpack-node-externals: 3.0.0 - webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0)(webpack@5.84.1) transitivePeerDependencies: - '@babel/traverse' - '@parcel/css' @@ -37917,152 +25283,300 @@ snapshots: - verdaccio - vue-template-compiler - webpack-cli + dev: true - '@nx/workspace@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))': + /@nx/workspace@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99): + resolution: {integrity: sha512-7rG+7S7f6CyxrvLSduSyvJZ4DYfpCO1WZkEfZDpp9cuQVJudeZqrXqolupkmQqymTTWyNSRASvLbL1GBRLtU3w==} dependencies: - '@nrwl/workspace': 17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) - '@nx/devkit': 17.0.0(nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@nrwl/workspace': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) + '@nx/devkit': 17.0.0(nx@17.0.0) chalk: 4.1.2 enquirer: 2.3.6 - nx: 17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) + nx: 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) tslib: 2.6.3 yargs-parser: 21.1.1 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug + dev: true - '@octokit/auth-token@3.0.4': {} + /@octokit/auth-token@3.0.4: + resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==} + engines: {node: '>= 14'} + dev: true - '@octokit/core@4.2.4(encoding@0.1.13)': + /@octokit/core@4.2.4: + resolution: {integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==} + engines: {node: '>= 14'} dependencies: '@octokit/auth-token': 3.0.4 - '@octokit/graphql': 5.0.6(encoding@0.1.13) - '@octokit/request': 6.2.8(encoding@0.1.13) + '@octokit/graphql': 5.0.6 + '@octokit/request': 6.2.8 '@octokit/request-error': 3.0.3 '@octokit/types': 9.3.2 before-after-hook: 2.2.3 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding + dev: true - '@octokit/endpoint@7.0.6': + /@octokit/endpoint@7.0.6: + resolution: {integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==} + engines: {node: '>= 14'} dependencies: '@octokit/types': 9.3.2 is-plain-object: 5.0.0 universal-user-agent: 6.0.1 + dev: true - '@octokit/graphql@5.0.6(encoding@0.1.13)': + /@octokit/graphql@5.0.6: + resolution: {integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==} + engines: {node: '>= 14'} dependencies: - '@octokit/request': 6.2.8(encoding@0.1.13) + '@octokit/request': 6.2.8 '@octokit/types': 9.3.2 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding + dev: true - '@octokit/openapi-types@18.1.1': {} + /@octokit/openapi-types@18.1.1: + resolution: {integrity: sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==} + dev: true - '@octokit/plugin-enterprise-rest@6.0.1': {} + /@octokit/plugin-enterprise-rest@6.0.1: + resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==} + dev: true - '@octokit/plugin-paginate-rest@6.1.2(@octokit/core@4.2.4(encoding@0.1.13))': + /@octokit/plugin-paginate-rest@6.1.2(@octokit/core@4.2.4): + resolution: {integrity: sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==} + engines: {node: '>= 14'} + peerDependencies: + '@octokit/core': '>=4' dependencies: - '@octokit/core': 4.2.4(encoding@0.1.13) + '@octokit/core': 4.2.4 '@octokit/tsconfig': 1.0.2 '@octokit/types': 9.3.2 + dev: true - '@octokit/plugin-request-log@1.0.4(@octokit/core@4.2.4(encoding@0.1.13))': + /@octokit/plugin-request-log@1.0.4(@octokit/core@4.2.4): + resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} + peerDependencies: + '@octokit/core': '>=3' dependencies: - '@octokit/core': 4.2.4(encoding@0.1.13) + '@octokit/core': 4.2.4 + dev: true - '@octokit/plugin-rest-endpoint-methods@7.2.3(@octokit/core@4.2.4(encoding@0.1.13))': + /@octokit/plugin-rest-endpoint-methods@7.2.3(@octokit/core@4.2.4): + resolution: {integrity: sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==} + engines: {node: '>= 14'} + peerDependencies: + '@octokit/core': '>=3' dependencies: - '@octokit/core': 4.2.4(encoding@0.1.13) + '@octokit/core': 4.2.4 '@octokit/types': 10.0.0 + dev: true - '@octokit/request-error@3.0.3': + /@octokit/request-error@3.0.3: + resolution: {integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==} + engines: {node: '>= 14'} dependencies: '@octokit/types': 9.3.2 deprecation: 2.3.1 once: 1.4.0 + dev: true - '@octokit/request@6.2.8(encoding@0.1.13)': + /@octokit/request@6.2.8: + resolution: {integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==} + engines: {node: '>= 14'} dependencies: '@octokit/endpoint': 7.0.6 '@octokit/request-error': 3.0.3 '@octokit/types': 9.3.2 is-plain-object: 5.0.0 - node-fetch: 2.7.0(encoding@0.1.13) + node-fetch: 2.7.0 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding + dev: true - '@octokit/rest@19.0.13(encoding@0.1.13)': + /@octokit/rest@19.0.13: + resolution: {integrity: sha512-/EzVox5V9gYGdbAI+ovYj3nXQT1TtTHRT+0eZPcuC05UFSWO3mdO9UY1C0i2eLF9Un1ONJkAk+IEtYGAC+TahA==} + engines: {node: '>= 14'} dependencies: - '@octokit/core': 4.2.4(encoding@0.1.13) - '@octokit/plugin-paginate-rest': 6.1.2(@octokit/core@4.2.4(encoding@0.1.13)) - '@octokit/plugin-request-log': 1.0.4(@octokit/core@4.2.4(encoding@0.1.13)) - '@octokit/plugin-rest-endpoint-methods': 7.2.3(@octokit/core@4.2.4(encoding@0.1.13)) + '@octokit/core': 4.2.4 + '@octokit/plugin-paginate-rest': 6.1.2(@octokit/core@4.2.4) + '@octokit/plugin-request-log': 1.0.4(@octokit/core@4.2.4) + '@octokit/plugin-rest-endpoint-methods': 7.2.3(@octokit/core@4.2.4) transitivePeerDependencies: - encoding + dev: true - '@octokit/tsconfig@1.0.2': {} + /@octokit/tsconfig@1.0.2: + resolution: {integrity: sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==} + dev: true - '@octokit/types@10.0.0': + /@octokit/types@10.0.0: + resolution: {integrity: sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==} dependencies: '@octokit/openapi-types': 18.1.1 + dev: true - '@octokit/types@9.3.2': + /@octokit/types@9.3.2: + resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==} dependencies: '@octokit/openapi-types': 18.1.1 + dev: true + + /@one-ini/wasm@0.1.1: + resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} + dev: false - '@one-ini/wasm@0.1.1': {} + /@open-draft/until@1.0.3: + resolution: {integrity: sha512-Aq58f5HiWdyDlFffbbSjAlv596h/cOnt2DO1w3DOC7OJ5EHs0hd/nycJfiu9RJbT6Yk6F1knnRRXNSpxoIVZ9Q==} + dev: true - '@open-draft/until@1.0.3': {} + /@oxygen-ui/primitives@1.11.0: + resolution: {integrity: sha512-z1d75MVfkYYrLiBRFPJJNvcMc1/j5qd9eZZGMXH04Ipg1VbVHj3DGl6BvqRGIHeBdNtm3NgjBwx8VfqHQ/i6HA==} + dev: false - '@oxygen-ui/primitives@1.11.0': {} + /@oxygen-ui/react-icons@1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5): + resolution: {integrity: sha512-qb1bCzC6c0xecRHneQy6T0LlGNLMvqomw1kuExubstn1kcebF7Y+TH8hjlrr4F3tp+upTBRXNEsVAUeq24Xnpw==} + peerDependencies: + react: '>=18.0.0' + react-dom: '>=18.0.0' + typescript: '>=4.0.0' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + typescript: 4.9.5 + dev: false - '@oxygen-ui/react-icons@1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)': + /@oxygen-ui/react@1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.110)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5): + resolution: {integrity: sha512-Ij9E3CvX/fNGQkWbH6ic9LNsldFHeuy/2adksNsJLQgVsbvPct/coXyPYF8duH17dPEu6nksEHJwIfxoz9ekww==} + peerDependencies: + '@emotion/react': ^11.10.5 + '@emotion/styled': ^11.10.5 + '@mui/icons-material': ^5.10.16 + '@mui/lab': 5.0.0-alpha.110 + '@mui/material': 5.13.0 + '@mui/system': ^5.10.16 + '@mui/utils': ^5.10.16 + react: '>=18.0.0' + react-dom: '>=18.0.0' + typescript: '>=4.0.0' + peerDependenciesMeta: + typescript: + optional: true dependencies: + '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + '@mui/icons-material': 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + '@mui/lab': 5.0.0-alpha.110(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) + '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) + '@mui/x-data-grid': 6.20.1(@mui/material@5.13.0)(@mui/system@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@oxygen-ui/primitives': 1.11.0 + '@oxygen-ui/react-icons': 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) + clsx: 1.2.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - optionalDependencies: + react-world-flags: 1.6.0(react@18.3.1) typescript: 4.9.5 + transitivePeerDependencies: + - '@types/react' + dev: false - ? '@oxygen-ui/react@1.11.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/icons-material@5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/lab@5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/utils@5.15.20(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)' - : dependencies: + /@oxygen-ui/react@1.11.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/icons-material@5.15.20)(@mui/lab@5.0.0-alpha.129)(@mui/material@5.13.0)(@mui/system@5.15.20)(@mui/utils@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5): + resolution: {integrity: sha512-Ij9E3CvX/fNGQkWbH6ic9LNsldFHeuy/2adksNsJLQgVsbvPct/coXyPYF8duH17dPEu6nksEHJwIfxoz9ekww==} + peerDependencies: + '@emotion/react': ^11.10.5 + '@emotion/styled': ^11.10.5 + '@mui/icons-material': ^5.10.16 + '@mui/lab': 5.0.0-alpha.110 + '@mui/material': 5.13.0 + '@mui/system': ^5.10.16 + '@mui/utils': ^5.10.16 + react: '>=18.0.0' + react-dom: '>=18.0.0' + typescript: '>=4.0.0' + peerDependenciesMeta: + typescript: + optional: true + dependencies: '@emotion/react': 11.11.4(@types/react@18.0.18)(react@18.3.1) - '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) - '@mui/icons-material': 5.15.20(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) - '@mui/lab': 5.0.0-alpha.129(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/material': 5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mui/system': 5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.0.18)(react@18.3.1) + '@mui/icons-material': 5.15.20(@mui/material@5.13.0)(@types/react@18.0.18)(react@18.3.1) + '@mui/lab': 5.0.0-alpha.129(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@mui/material@5.13.0)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/material': 5.13.0(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@mui/system': 5.15.20(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.0.18)(react@18.3.1) '@mui/utils': 5.15.20(@types/react@18.0.18)(react@18.3.1) - '@mui/x-data-grid': 6.20.1(@mui/material@5.13.0(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.15.20(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react@18.3.1))(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/x-data-grid': 6.20.1(@mui/material@5.13.0)(@mui/system@5.15.20)(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@oxygen-ui/primitives': 1.11.0 - '@oxygen-ui/react-icons': 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) + '@oxygen-ui/react-icons': 1.11.0(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5) clsx: 1.2.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-world-flags: 1.6.0(react@18.3.1) - optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - '@types/react' + dev: false - '@parcel/watcher@2.0.4': + /@parcel/watcher@2.0.4: + resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==} + engines: {node: '>= 10.0.0'} + requiresBuild: true dependencies: node-addon-api: 3.2.1 node-gyp-build: 4.8.1 + dev: true - '@phenomnomnominal/tsquery@5.0.1(typescript@5.1.6)': + /@phenomnomnominal/tsquery@5.0.1(typescript@5.1.6): + resolution: {integrity: sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==} + peerDependencies: + typescript: ^3 || ^4 || ^5 dependencies: esquery: 1.6.0 typescript: 5.1.6 + dev: true - '@pkgjs/parseargs@0.11.0': + /@pkgjs/parseargs@0.11.0: + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + requiresBuild: true optional: true - '@pmmmwh/react-refresh-webpack-plugin@0.4.3(@types/webpack@4.41.38)(react-refresh@0.9.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@pmmmwh/react-refresh-webpack-plugin@0.4.3(react-refresh@0.9.0)(webpack-dev-server@3.11.3)(webpack@5.84.1): + resolution: {integrity: sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==} + engines: {node: '>= 10.x'} + peerDependencies: + '@types/webpack': 4.x + react-refresh: '>=0.8.3 <0.10.0' + sockjs-client: ^1.4.0 + type-fest: ^0.13.1 + webpack: 5.84.1 + webpack-dev-server: 3.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + '@types/webpack': + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true dependencies: ansi-html: 0.0.7 error-stack-parser: 2.1.4 @@ -38071,15 +25585,35 @@ snapshots: react-refresh: 0.9.0 schema-utils: 2.7.1 source-map: 0.7.4 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: - '@types/webpack': 4.41.38 - sockjs-client: 1.6.1 - type-fest: 4.20.1 - webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - webpack-hot-middleware: 2.26.1 + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) + dev: true - '@pmmmwh/react-refresh-webpack-plugin@0.5.15(@types/webpack@4.41.38)(react-refresh@0.10.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.10.0)(webpack-dev-server@3.11.3)(webpack@5.84.1): + resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==} + engines: {node: '>= 10.13'} + peerDependencies: + '@types/webpack': 4.x || 5.x + react-refresh: '>=0.10.0 <1.0.0' + sockjs-client: ^1.4.0 + type-fest: '>=0.17.0 <5.0.0' + webpack: 5.84.1 + webpack-dev-server: 3.x || 4.x || 5.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + '@types/webpack': + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true dependencies: ansi-html: 0.0.9 core-js-pure: 3.37.1 @@ -38089,15 +25623,35 @@ snapshots: react-refresh: 0.10.0 schema-utils: 4.2.0 source-map: 0.7.4 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: - '@types/webpack': 4.41.38 - sockjs-client: 1.6.1 - type-fest: 4.20.1 - webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - webpack-hot-middleware: 2.26.1 + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) + dev: true - '@pmmmwh/react-refresh-webpack-plugin@0.5.15(@types/webpack@4.41.38)(react-refresh@0.11.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.11.0)(webpack-dev-server@3.11.3)(webpack@5.84.1): + resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==} + engines: {node: '>= 10.13'} + peerDependencies: + '@types/webpack': 4.x || 5.x + react-refresh: '>=0.10.0 <1.0.0' + sockjs-client: ^1.4.0 + type-fest: '>=0.17.0 <5.0.0' + webpack: 5.84.1 + webpack-dev-server: 3.x || 4.x || 5.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + '@types/webpack': + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true dependencies: ansi-html: 0.0.9 core-js-pure: 3.37.1 @@ -38107,15 +25661,35 @@ snapshots: react-refresh: 0.11.0 schema-utils: 4.2.0 source-map: 0.7.4 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: - '@types/webpack': 4.41.38 - sockjs-client: 1.6.1 - type-fest: 4.20.1 - webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - webpack-hot-middleware: 2.26.1 + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) + dev: false - '@pmmmwh/react-refresh-webpack-plugin@0.5.15(@types/webpack@4.41.38)(react-refresh@0.14.2)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.2)(webpack-dev-server@3.11.3)(webpack@5.84.1): + resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==} + engines: {node: '>= 10.13'} + peerDependencies: + '@types/webpack': 4.x || 5.x + react-refresh: '>=0.10.0 <1.0.0' + sockjs-client: ^1.4.0 + type-fest: '>=0.17.0 <5.0.0' + webpack: 5.84.1 + webpack-dev-server: 3.x || 4.x || 5.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + '@types/webpack': + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true dependencies: ansi-html: 0.0.9 core-js-pure: 3.37.1 @@ -38125,21 +25699,24 @@ snapshots: react-refresh: 0.14.2 schema-utils: 4.2.0 source-map: 0.7.4 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: - '@types/webpack': 4.41.38 - sockjs-client: 1.6.1 - type-fest: 4.20.1 - webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - webpack-hot-middleware: 2.26.1 + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) + dev: true - '@polka/url@1.0.0-next.25': {} + /@polka/url@1.0.0-next.25: + resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} - '@popperjs/core@2.11.8': {} + /@popperjs/core@2.11.8: + resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} + dev: false - '@reactflow/background@11.2.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@reactflow/background@11.2.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-gOtae79Zx1zOs9tD4tmKfuiQQOyG0O81BWBCHqlAQgemKlYExElFKOC67lgTDZ4GGFK+4sXrgrWQ5h14hzaFgg==} + peerDependencies: + react: '>=17' + react-dom: '>=17' dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) classcat: 5.0.5 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -38147,10 +25724,15 @@ snapshots: transitivePeerDependencies: - '@types/react' - immer + dev: false - '@reactflow/controls@11.1.13(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@reactflow/controls@11.1.13(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-rA74+mbt2bnz9Fba6JL1JsKHNNEK6Nl70+ssfOLKMpRFIg512IroayBWufgPJB82X9dgMIzZfx/UcEFFUFJQ8Q==} + peerDependencies: + react: '>=17' + react-dom: '>=17' dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) classcat: 5.0.5 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -38158,8 +25740,13 @@ snapshots: transitivePeerDependencies: - '@types/react' - immer + dev: false - '@reactflow/core@11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@reactflow/core@11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-AhszxILp1RNk3SwrnC/eYh1XsOil5yzthYG5k+oTpvLH5H3BtIWIVkeLEJwmL611lPKL3JuScfjliUxBm9128w==} + peerDependencies: + react: '>=17' + react-dom: '>=17' dependencies: '@types/d3': 7.4.3 '@types/d3-drag': 3.0.7 @@ -38175,10 +25762,15 @@ snapshots: transitivePeerDependencies: - '@types/react' - immer + dev: false - '@reactflow/minimap@11.5.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@reactflow/minimap@11.5.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-564gP/GMZKaJjVRGIrVLv2gIjgc89+qvNwuZzHnQLXjBw5+nS/QkW57Qx/M33MxVAaM+Z5rJ8gKknMSnxekwvQ==} + peerDependencies: + react: '>=17' + react-dom: '>=17' dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) '@types/d3-selection': 3.0.10 '@types/d3-zoom': 3.0.8 classcat: 5.0.5 @@ -38190,10 +25782,15 @@ snapshots: transitivePeerDependencies: - '@types/react' - immer + dev: false - '@reactflow/node-resizer@2.1.0(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@reactflow/node-resizer@2.1.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-DVL8nnWsltP8/iANadAcTaDB4wsEkx2mOLlBEPNE3yc5loSm3u9l5m4enXRcBym61MiMuTtDPzZMyYYQUjuYIg==} + peerDependencies: + react: '>=17' + react-dom: '>=17' dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) classcat: 5.0.5 d3-drag: 3.0.0 d3-selection: 3.0.0 @@ -38203,10 +25800,15 @@ snapshots: transitivePeerDependencies: - '@types/react' - immer + dev: false - '@reactflow/node-toolbar@1.2.1(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@reactflow/node-toolbar@1.2.1(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-EcMUMzJGAACYQTiUaBm3zxeiiKCPwU2MaoDeZdnEMbvq+2SfohKOur6JklANjv30kL+Pf3xj8QopEtyKTS4XrA==} + peerDependencies: + react: '>=17' + react-dom: '>=17' dependencies: - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) classcat: 5.0.5 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -38214,21 +25816,36 @@ snapshots: transitivePeerDependencies: - '@types/react' - immer + dev: false - '@remix-run/router@1.17.1': {} + /@remix-run/router@1.17.1: + resolution: {integrity: sha512-mCOMec4BKd6BRGBZeSnGiIgwsbLGp3yhVqAD8H+PxiRNEHgDpZb8J1TnrSDlg97t0ySKMQJTHCWBCmBpSmkF6Q==} + engines: {node: '>=14.0.0'} - '@rollup/plugin-babel@5.3.1(@babel/core@7.24.7)(@types/babel__core@7.20.5)(rollup@2.79.1)': + /@rollup/plugin-babel@5.3.1(@babel/core@7.24.7)(rollup@2.79.1): + resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} + engines: {node: '>= 10.0.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@types/babel__core': ^7.1.9 + rollup: ^1.20.0||^2.0.0 + peerDependenciesMeta: + '@types/babel__core': + optional: true dependencies: '@babel/core': 7.24.7 '@babel/helper-module-imports': 7.24.7 '@rollup/pluginutils': 3.1.0(rollup@2.79.1) rollup: 2.79.1 - optionalDependencies: - '@types/babel__core': 7.20.5 transitivePeerDependencies: - supports-color + dev: true - '@rollup/plugin-commonjs@20.0.0(rollup@2.79.1)': + /@rollup/plugin-commonjs@20.0.0(rollup@2.79.1): + resolution: {integrity: sha512-5K0g5W2Ol8hAcTHqcTBHiA7M58tfmYi1o9KxeJuuRNpGaTa5iLjcyemBitCBcKXaHamOBBEH2dGom6v6Unmqjg==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^2.38.3 dependencies: '@rollup/pluginutils': 3.1.0(rollup@2.79.1) commondir: 1.0.1 @@ -38238,8 +25855,16 @@ snapshots: magic-string: 0.25.9 resolve: 1.22.8 rollup: 2.79.1 + dev: true - '@rollup/plugin-commonjs@25.0.8(rollup@4.18.1)': + /@rollup/plugin-commonjs@25.0.8(rollup@4.18.1): + resolution: {integrity: sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.68.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.1) commondir: 1.0.1 @@ -38247,52 +25872,93 @@ snapshots: glob: 8.1.0 is-reference: 1.2.1 magic-string: 0.30.10 - optionalDependencies: rollup: 4.18.1 + dev: true - '@rollup/plugin-dynamic-import-vars@2.1.2(rollup@4.18.1)': + /@rollup/plugin-dynamic-import-vars@2.1.2(rollup@4.18.1): + resolution: {integrity: sha512-4lr2oXxs9hcxtGGaK8s0i9evfjzDrAs7ngw28TqruWKTEm0+U4Eljb+F6HXGYdFv8xRojQlrQwV7M/yxeh3yzQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.1) astring: 1.8.6 estree-walker: 2.0.2 fast-glob: 3.3.2 magic-string: 0.30.10 - optionalDependencies: rollup: 4.18.1 + dev: true - '@rollup/plugin-image@2.1.1(rollup@2.79.1)': + /@rollup/plugin-image@2.1.1(rollup@2.79.1): + resolution: {integrity: sha512-AgP4U85zuQJdUopLUCM+hTf45RepgXeTb8EJsleExVy99dIoYpt3ZlDYJdKmAc2KLkNntCDg6BPJvgJU3uGF+g==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 dependencies: '@rollup/pluginutils': 3.1.0(rollup@2.79.1) mini-svg-data-uri: 1.4.4 rollup: 2.79.1 + dev: true - '@rollup/plugin-image@3.0.3(rollup@4.18.1)': + /@rollup/plugin-image@3.0.3(rollup@4.18.1): + resolution: {integrity: sha512-qXWQwsXpvD4trSb8PeFPFajp8JLpRtqqOeNYRUKnEQNHm7e5UP7fuSRcbjQAJ7wDZBbnJvSdY5ujNBQd9B1iFg==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.1) mini-svg-data-uri: 1.4.4 - optionalDependencies: rollup: 4.18.1 + dev: true - '@rollup/plugin-inject@5.0.5(rollup@4.18.1)': + /@rollup/plugin-inject@5.0.5(rollup@4.18.1): + resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.1) estree-walker: 2.0.2 magic-string: 0.30.10 - optionalDependencies: rollup: 4.18.1 + dev: true - '@rollup/plugin-json@4.1.0(rollup@2.79.1)': + /@rollup/plugin-json@4.1.0(rollup@2.79.1): + resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 dependencies: '@rollup/pluginutils': 3.1.0(rollup@2.79.1) rollup: 2.79.1 + dev: true - '@rollup/plugin-json@6.1.0(rollup@4.18.1)': + /@rollup/plugin-json@6.1.0(rollup@4.18.1): + resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.1) - optionalDependencies: rollup: 4.18.1 + dev: true - '@rollup/plugin-node-resolve@13.3.0(rollup@2.79.1)': + /@rollup/plugin-node-resolve@13.3.0(rollup@2.79.1): + resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} + engines: {node: '>= 10.0.0'} + peerDependencies: + rollup: ^2.42.0 dependencies: '@rollup/pluginutils': 3.1.0(rollup@2.79.1) '@types/resolve': 1.17.1 @@ -38301,8 +25967,16 @@ snapshots: is-module: 1.0.0 resolve: 1.22.8 rollup: 2.79.1 + dev: true - '@rollup/plugin-node-resolve@15.2.3(rollup@4.18.1)': + /@rollup/plugin-node-resolve@15.2.3(rollup@4.18.1): + resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.78.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.1) '@types/resolve': 1.20.2 @@ -38310,202 +25984,357 @@ snapshots: is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.8 - optionalDependencies: - rollup: 4.18.1 - - '@rollup/plugin-typescript@11.1.6(rollup@4.18.1)(tslib@2.6.3)(typescript@4.9.5)': - dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.18.1) - resolve: 1.22.8 - typescript: 4.9.5 - optionalDependencies: rollup: 4.18.1 - tslib: 2.6.3 + dev: true - '@rollup/plugin-typescript@11.1.6(rollup@4.18.1)(tslib@2.6.3)(typescript@5.1.6)': + /@rollup/plugin-typescript@11.1.6(rollup@4.18.1)(tslib@2.6.3)(typescript@4.9.5): + resolution: {integrity: sha512-R92yOmIACgYdJ7dJ97p4K69I8gg6IEHt8M7dUBxN3W6nrO8uUxX5ixl0yU/N3aZTi8WhPuICvOHXQvF6FaykAA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.14.0||^3.0.0||^4.0.0 + tslib: '*' + typescript: '>=3.7.0' + peerDependenciesMeta: + rollup: + optional: true + tslib: + optional: true dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.18.1) resolve: 1.22.8 - typescript: 5.1.6 - optionalDependencies: rollup: 4.18.1 tslib: 2.6.3 + typescript: 4.9.5 + dev: true - '@rollup/plugin-url@7.0.0(rollup@4.18.1)': + /@rollup/plugin-url@7.0.0(rollup@2.79.1): + resolution: {integrity: sha512-cIWcEObrmEPAU8q8NluGWlCPlQDuoSKvkyI3eOFO4fx6W02mLNj4ZEiUT0X2mKMIvQzoWL1feEK9d1yr1ICgrw==} + engines: {node: '>=10.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 dependencies: '@rollup/pluginutils': 4.2.1 make-dir: 3.1.0 mime: 2.6.0 - rollup: 4.18.1 + rollup: 2.79.1 + dev: true - '@rollup/pluginutils@3.1.0(rollup@2.79.1)': + /@rollup/pluginutils@3.1.0(rollup@2.79.1): + resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 dependencies: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.3.1 rollup: 2.79.1 + dev: true - '@rollup/pluginutils@4.2.1': + /@rollup/pluginutils@4.2.1: + resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} + engines: {node: '>= 8.0.0'} dependencies: estree-walker: 2.0.2 picomatch: 2.3.1 + dev: true - '@rollup/pluginutils@5.1.0(rollup@4.18.1)': + /@rollup/pluginutils@5.1.0(rollup@4.18.1): + resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true dependencies: '@types/estree': 1.0.5 estree-walker: 2.0.2 picomatch: 2.3.1 - optionalDependencies: rollup: 4.18.1 + dev: true - '@rollup/rollup-android-arm-eabi@4.18.1': + /@rollup/rollup-android-arm-eabi@4.18.1: + resolution: {integrity: sha512-lncuC4aHicncmbORnx+dUaAgzee9cm/PbIqgWz1PpXuwc+sa1Ct83tnqUDy/GFKleLiN7ZIeytM6KJ4cAn1SxA==} + cpu: [arm] + os: [android] + requiresBuild: true + dev: true optional: true - '@rollup/rollup-android-arm64@4.18.1': + /@rollup/rollup-android-arm64@4.18.1: + resolution: {integrity: sha512-F/tkdw0WSs4ojqz5Ovrw5r9odqzFjb5LIgHdHZG65dFI1lWTWRVy32KDJLKRISHgJvqUeUhdIvy43fX41znyDg==} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true optional: true - '@rollup/rollup-darwin-arm64@4.18.1': + /@rollup/rollup-darwin-arm64@4.18.1: + resolution: {integrity: sha512-vk+ma8iC1ebje/ahpxpnrfVQJibTMyHdWpOGZ3JpQ7Mgn/3QNHmPq7YwjZbIE7km73dH5M1e6MRRsnEBW7v5CQ==} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true optional: true - '@rollup/rollup-darwin-x64@4.18.1': + /@rollup/rollup-darwin-x64@4.18.1: + resolution: {integrity: sha512-IgpzXKauRe1Tafcej9STjSSuG0Ghu/xGYH+qG6JwsAUxXrnkvNHcq/NL6nz1+jzvWAnQkuAJ4uIwGB48K9OCGA==} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.18.1': + /@rollup/rollup-linux-arm-gnueabihf@4.18.1: + resolution: {integrity: sha512-P9bSiAUnSSM7EmyRK+e5wgpqai86QOSv8BwvkGjLwYuOpaeomiZWifEos517CwbG+aZl1T4clSE1YqqH2JRs+g==} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true optional: true - '@rollup/rollup-linux-arm-musleabihf@4.18.1': + /@rollup/rollup-linux-arm-musleabihf@4.18.1: + resolution: {integrity: sha512-5RnjpACoxtS+aWOI1dURKno11d7krfpGDEn19jI8BuWmSBbUC4ytIADfROM1FZrFhQPSoP+KEa3NlEScznBTyQ==} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true optional: true - '@rollup/rollup-linux-arm64-gnu@4.18.1': + /@rollup/rollup-linux-arm64-gnu@4.18.1: + resolution: {integrity: sha512-8mwmGD668m8WaGbthrEYZ9CBmPug2QPGWxhJxh/vCgBjro5o96gL04WLlg5BA233OCWLqERy4YUzX3bJGXaJgQ==} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true optional: true - '@rollup/rollup-linux-arm64-musl@4.18.1': + /@rollup/rollup-linux-arm64-musl@4.18.1: + resolution: {integrity: sha512-dJX9u4r4bqInMGOAQoGYdwDP8lQiisWb9et+T84l2WXk41yEej8v2iGKodmdKimT8cTAYt0jFb+UEBxnPkbXEQ==} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.18.1': + /@rollup/rollup-linux-powerpc64le-gnu@4.18.1: + resolution: {integrity: sha512-V72cXdTl4EI0x6FNmho4D502sy7ed+LuVW6Ym8aI6DRQ9hQZdp5sj0a2usYOlqvFBNKQnLQGwmYnujo2HvjCxQ==} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true optional: true - '@rollup/rollup-linux-riscv64-gnu@4.18.1': + /@rollup/rollup-linux-riscv64-gnu@4.18.1: + resolution: {integrity: sha512-f+pJih7sxoKmbjghrM2RkWo2WHUW8UbfxIQiWo5yeCaCM0TveMEuAzKJte4QskBp1TIinpnRcxkquY+4WuY/tg==} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true optional: true - '@rollup/rollup-linux-s390x-gnu@4.18.1': + /@rollup/rollup-linux-s390x-gnu@4.18.1: + resolution: {integrity: sha512-qb1hMMT3Fr/Qz1OKovCuUM11MUNLUuHeBC2DPPAWUYYUAOFWaxInaTwTQmc7Fl5La7DShTEpmYwgdt2hG+4TEg==} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true optional: true - '@rollup/rollup-linux-x64-gnu@4.18.1': + /@rollup/rollup-linux-x64-gnu@4.18.1: + resolution: {integrity: sha512-7O5u/p6oKUFYjRbZkL2FLbwsyoJAjyeXHCU3O4ndvzg2OFO2GinFPSJFGbiwFDaCFc+k7gs9CF243PwdPQFh5g==} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true optional: true - '@rollup/rollup-linux-x64-musl@4.18.1': + /@rollup/rollup-linux-x64-musl@4.18.1: + resolution: {integrity: sha512-pDLkYITdYrH/9Cv/Vlj8HppDuLMDUBmgsM0+N+xLtFd18aXgM9Nyqupb/Uw+HeidhfYg2lD6CXvz6CjoVOaKjQ==} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true optional: true - '@rollup/rollup-win32-arm64-msvc@4.18.1': + /@rollup/rollup-win32-arm64-msvc@4.18.1: + resolution: {integrity: sha512-W2ZNI323O/8pJdBGil1oCauuCzmVd9lDmWBBqxYZcOqWD6aWqJtVBQ1dFrF4dYpZPks6F+xCZHfzG5hYlSHZ6g==} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true optional: true - '@rollup/rollup-win32-ia32-msvc@4.18.1': + /@rollup/rollup-win32-ia32-msvc@4.18.1: + resolution: {integrity: sha512-ELfEX1/+eGZYMaCIbK4jqLxO1gyTSOIlZr6pbC4SRYFaSIDVKOnZNMdoZ+ON0mrFDp4+H5MhwNC1H/AhE3zQLg==} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true optional: true - '@rollup/rollup-win32-x64-msvc@4.18.1': + /@rollup/rollup-win32-x64-msvc@4.18.1: + resolution: {integrity: sha512-yjk2MAkQmoaPYCSu35RLJ62+dz358nE83VfTePJRp8CG7aMg25mEJYpXFiD+NcevhX8LxD5OP5tktPXnXN7GDw==} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true optional: true - '@semantic-ui-react/event-stack@3.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@semantic-ui-react/event-stack@3.1.3(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-FdTmJyWvJaYinHrKRsMLDrz4tTMGdFfds299Qory53hBugiDvGC0tEJf+cHsi5igDwWb/CLOgOiChInHwq8URQ==} + peerDependencies: + react: ^16.0.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 dependencies: exenv: 1.2.2 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + dev: false - '@sideway/address@4.1.5': + /@sideway/address@4.1.5: + resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} dependencies: '@hapi/hoek': 9.3.0 + dev: false - '@sideway/formula@3.0.1': {} + /@sideway/formula@3.0.1: + resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} + dev: false - '@sideway/pinpoint@2.0.0': {} + /@sideway/pinpoint@2.0.0: + resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} + dev: false - '@sinclair/typebox@0.27.8': {} + /@sinclair/typebox@0.27.8: + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} - '@sindresorhus/is@0.14.0': {} + /@sindresorhus/is@0.14.0: + resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} + engines: {node: '>=6'} + dev: false - '@sindresorhus/is@4.6.0': {} + /@sindresorhus/is@4.6.0: + resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} + engines: {node: '>=10'} + dev: true - '@sindresorhus/merge-streams@2.3.0': {} + /@sindresorhus/merge-streams@2.3.0: + resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} + engines: {node: '>=18'} + dev: true - '@sinonjs/commons@1.8.6': + /@sinonjs/commons@1.8.6: + resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} dependencies: type-detect: 4.0.8 + dev: true - '@sinonjs/commons@3.0.1': + /@sinonjs/commons@3.0.1: + resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} dependencies: type-detect: 4.0.8 - '@sinonjs/fake-timers@10.3.0': + /@sinonjs/fake-timers@10.3.0: + resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} dependencies: '@sinonjs/commons': 3.0.1 - '@sinonjs/fake-timers@6.0.1': + /@sinonjs/fake-timers@6.0.1: + resolution: {integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==} dependencies: '@sinonjs/commons': 1.8.6 + dev: true - '@storybook/addon-actions@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/addon-actions@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-aADjilFmuD6TNGz2CRPSupnyiA/IGkPJHDBTqMpsDXTUr8xnuD122xkIhg6UxmCM2y1c+ncwYXy3WPK2xXK57g==} + 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/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) core-js: 3.37.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 polished: 4.3.1 prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-inspector: 5.1.1(react@18.3.1) regenerator-runtime: 0.13.11 telejson: 6.0.8 ts-dedent: 2.2.0 util-deprecate: 1.0.2 uuid-browser: 3.1.0 - optionalDependencies: - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + dev: true - '@storybook/addon-backgrounds@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/addon-backgrounds@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-t7qooZ892BruhilFmzYPbysFwpULt/q4zYXNSmKVbAYta8UVvitjcU4F18p8FpWd9WvhiTr0SDlyhNZuzvDfug==} + 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/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) core-js: 3.37.1 global: 4.4.0 memoizerific: 1.11.3 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - optionalDependencies: - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + dev: true - '@storybook/addon-controls@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': + /@storybook/addon-controls@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): + resolution: {integrity: sha512-kShSGjq1MjmmyL3l8i+uPz6yddtf82mzys0l82VKtcuyjrr5944wYFJ5NTXMfZxrO/U6FeFsfuFZE/k6ex3EMg==} + 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/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/node-logger': 6.5.16 - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) core-js: 3.37.1 lodash: 4.17.21 - ts-dedent: 2.2.0 - optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + ts-dedent: 2.2.0 transitivePeerDependencies: - '@swc/core' - esbuild @@ -38515,40 +26344,52 @@ snapshots: - uglify-js - vue-template-compiler - webpack-cli + dev: true - '@storybook/addon-docs@6.5.16(@babel/core@7.24.7)(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@storybook/addon-docs@6.5.16(@babel/core@7.24.7)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1): + resolution: {integrity: sha512-QM9WDZG9P02UvbzLu947a8ZngOrQeAKAT8jCibQFM/+RJ39xBlfm8rm+cQy3dm94wgtjmVkA3mKGOV/yrrsddg==} + peerDependencies: + '@storybook/mdx2-csf': ^0.0.3 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@storybook/mdx2-csf': + optional: true + react: + optional: true + react-dom: + optional: true dependencies: '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.7) '@babel/preset-env': 7.24.7(@babel/core@7.24.7) '@jest/transform': 26.6.2 '@mdx-js/react': 1.6.22(react@18.3.1) - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/docs-tools': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/docs-tools': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/mdx1-csf': 0.0.1(@babel/core@7.24.7) '@storybook/node-logger': 6.5.16 '@storybook/postinstall': 6.5.16 - '@storybook/preview-web': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/source-loader': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/preview-web': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/source-loader': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) core-js: 3.37.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 remark-external-links: 8.0.0 remark-slug: 6.1.0 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - optionalDependencies: - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@babel/core' - '@swc/core' @@ -38560,94 +26401,144 @@ snapshots: - vue-template-compiler - webpack - webpack-cli + dev: true - '@storybook/addon-links@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/addon-links@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-P/mmqK57NGXnR0i3d/T5B0rIt0Lg8Yq+qionRr3LK3AwG/4yGnYt4GNomLEknn/eEwABYq1Q/Z1aOpgIhNdq5A==} + 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/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@types/qs': 6.9.15 core-js: 3.37.1 global: 4.4.0 prop-types: 15.8.1 qs: 6.12.3 - regenerator-runtime: 0.13.11 - ts-dedent: 2.2.0 - optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + regenerator-runtime: 0.13.11 + ts-dedent: 2.2.0 + dev: true - '@storybook/addon-measure@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/addon-measure@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-DMwnXkmM2L6POTh4KaOWvOAtQ2p9Tr1UUNxz6VXiN5cKFohpCs6x0txdLU5WN8eWIq0VFsO7u5ZX34CGCc6gCg==} + 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/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.37.1 global: 4.4.0 - optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + dev: true - '@storybook/addon-outline@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/addon-outline@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-0du96nha4qltexO0Xq1xB7LeRSbqjC9XqtZLflXG7/X3ABoPD2cXgOV97eeaXUodIyb2qYBbHUfftBeA75x0+w==} + 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/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.37.1 global: 4.4.0 - regenerator-runtime: 0.13.11 - ts-dedent: 2.2.0 - optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + regenerator-runtime: 0.13.11 + ts-dedent: 2.2.0 + dev: true - '@storybook/addon-toolbars@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/addon-toolbars@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-y3PuUKiwOWrAvqx1YdUvArg0UaAwmboXFeR2bkrowk1xcT+xnRO3rML4npFeUl26OQ1FzwxX/cw6nknREBBLEA==} + 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/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) core-js: 3.37.1 - regenerator-runtime: 0.13.11 - optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + regenerator-runtime: 0.13.11 + dev: true - '@storybook/addon-viewport@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/addon-viewport@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-1Vyqf1U6Qng6TXlf4SdqUKyizlw1Wn6+qW8YeA2q1lbkJqn3UlnHXIp8Q0t/5q1dK5BFtREox3+jkGwbJrzkmA==} + 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/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/core-events': 6.5.16 - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) core-js: 3.37.1 global: 4.4.0 memoizerific: 1.11.3 prop-types: 15.8.1 - regenerator-runtime: 0.13.11 - optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + regenerator-runtime: 0.13.11 + dev: true - '@storybook/addons@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/addons@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-p3DqQi+8QRL5k7jXhXmJZLsE/GqHqyY6PcoA1oNTJr0try48uhTGUOYkgzmqtDaa/qPFO5LP+xCPzZXckGtquQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@types/webpack-env': 1.18.5 core-js: 3.37.1 global: 4.4.0 @@ -38655,15 +26546,19 @@ snapshots: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 - '@storybook/api@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/api@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-HOsuT8iomqeTMQJrRx5U8nsC7lJTwRr1DhdD0SzlqL4c80S/7uuCy4IZvOt4sYQjOzW5fOo/kamcoBXyLproTA==} + 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': 6.5.16 '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) core-js: 3.37.1 fast-deep-equal: 3.1.3 global: 4.4.0 @@ -38677,10 +26572,11 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - '@storybook/builder-manager@7.6.9(encoding@0.1.13)': + /@storybook/builder-manager@7.6.9: + resolution: {integrity: sha512-F9Fujde0G4g7Df6mYu6VQy26c3B1hcAC0KLbjKrrp1v9+E5mE12hSq/y+mYQUGmCe86YBVuQiazO4W3Mm/HRsw==} dependencies: '@fal-works/esbuild-plugin-global-externals': 2.1.2 - '@storybook/core-common': 7.6.9(encoding@0.1.13) + '@storybook/core-common': 7.6.9 '@storybook/manager': 7.6.9 '@storybook/node-logger': 7.6.9 '@types/ejs': 3.1.5 @@ -38698,60 +26594,68 @@ snapshots: transitivePeerDependencies: - encoding - supports-color + dev: true - '@storybook/builder-webpack4@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': + /@storybook/builder-webpack4@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): + resolution: {integrity: sha512-YqDIrVNsUo8r9xc6AxsYDLxVYtMgl5Bxk+8/h1adsOko+jAFhdg6hOcAVxEmoSI0TMASOOVMFlT2hr23ppN2rQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true dependencies: '@babel/core': 7.24.7 - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/channels': 6.5.16 - '@storybook/client-api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/client-api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/core-events': 6.5.16 '@storybook/node-logger': 6.5.16 - '@storybook/preview-web': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/preview-web': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/ui': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/ui': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@types/node': 16.18.101 '@types/webpack': 4.41.38 autoprefixer: 9.8.8 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.37.1 - css-loader: 3.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - file-loader: 6.2.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + css-loader: 3.6.0(webpack@5.84.1) + file-loader: 6.2.0(webpack@5.84.1) find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + fork-ts-checker-webpack-plugin: 4.1.6(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) glob: 7.2.3 glob-promise: 3.4.0(glob@7.2.3) global: 4.4.0 - html-webpack-plugin: 4.5.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + html-webpack-plugin: 4.5.2(webpack@5.84.1) pnp-webpack-plugin: 1.6.4(typescript@4.9.5) postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 - postcss-loader: 4.3.0(postcss@7.0.39)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - raw-loader: 4.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + postcss-loader: 4.3.0(postcss@7.0.39)(webpack@5.84.1) + raw-loader: 4.0.2(webpack@5.84.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) stable: 0.1.8 - style-loader: 1.3.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - terser-webpack-plugin: 4.2.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + style-loader: 1.3.0(webpack@5.84.1) + terser-webpack-plugin: 4.2.3(webpack@5.84.1) ts-dedent: 2.2.0 - url-loader: 4.1.1(file-loader@6.2.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + typescript: 4.9.5 + url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.84.1) util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - webpack-dev-middleware: 3.7.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - webpack-filter-warnings-plugin: 1.2.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack-dev-middleware: 3.7.3(webpack@5.84.1) + webpack-filter-warnings-plugin: 1.2.1(webpack@5.84.1) webpack-hot-middleware: 2.26.1 webpack-virtual-modules: 0.2.2 - optionalDependencies: - typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - bluebird @@ -38761,51 +26665,59 @@ snapshots: - uglify-js - vue-template-compiler - webpack-cli + dev: false - '@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': + /@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): + resolution: {integrity: sha512-kh8Sofm1sbijaHDWtm0sXabqACHVFjikU/fIkkW786kpjoPIPIec1a+hrLgDsZxMU3I7XapSOaCFzWt6FjVXjg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true dependencies: '@babel/core': 7.24.7 - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/channels': 6.5.16 - '@storybook/client-api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/client-api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/core-events': 6.5.16 '@storybook/node-logger': 6.5.16 - '@storybook/preview-web': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/preview-web': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@types/node': 16.18.101 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) babel-plugin-named-exports-order: 0.0.2 browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.37.1 - css-loader: 5.2.7(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + css-loader: 5.2.7(webpack@5.84.1) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) glob: 7.2.3 glob-promise: 3.4.0(glob@7.2.3) - html-webpack-plugin: 5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + html-webpack-plugin: 5.6.0(webpack@5.84.1) path-browserify: 1.0.1 process: 0.11.10 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) stable: 0.1.8 - style-loader: 2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - terser-webpack-plugin: 5.3.10(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + style-loader: 2.0.0(webpack@5.84.1) + terser-webpack-plugin: 5.3.10(@swc/core@1.3.99)(esbuild@0.18.20)(webpack@5.84.1) ts-dedent: 2.2.0 + typescript: 4.9.5 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - webpack-dev-middleware: 4.3.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack-dev-middleware: 4.3.0(webpack@5.84.1) webpack-hot-middleware: 2.26.1 webpack-virtual-modules: 0.4.6 - optionalDependencies: - typescript: 4.9.5 transitivePeerDependencies: - '@rspack/core' - '@swc/core' @@ -38815,49 +26727,55 @@ snapshots: - uglify-js - vue-template-compiler - webpack-cli + dev: false - '@storybook/builder-webpack5@7.6.9(@swc/helpers@0.5.9)(encoding@0.1.13)(esbuild@0.18.20)(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': + /@storybook/builder-webpack5@7.6.9(@swc/helpers@0.5.9)(esbuild@0.18.20)(typescript@5.1.6)(webpack-cli@4.10.0): + resolution: {integrity: sha512-LDwD1chjTVRKxJebkN4GkMl/aR7jzVYIx+0VuFKjDM/6er341ixE5GMIlvXKdYb8JWI8bI7suknSjbsd3LeBoA==} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true dependencies: '@babel/core': 7.24.7 '@storybook/channels': 7.6.9 '@storybook/client-logger': 7.6.9 - '@storybook/core-common': 7.6.9(encoding@0.1.13) + '@storybook/core-common': 7.6.9 '@storybook/core-events': 7.6.9 - '@storybook/core-webpack': 7.6.9(encoding@0.1.13) + '@storybook/core-webpack': 7.6.9 '@storybook/node-logger': 7.6.9 '@storybook/preview': 7.6.9 '@storybook/preview-api': 7.6.9 '@swc/core': 1.3.99(@swc/helpers@0.5.9) '@types/node': 18.11.9 '@types/semver': 7.5.8 - babel-loader: 9.1.3(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + babel-loader: 9.1.3(@babel/core@7.24.7)(webpack@5.84.1) browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 cjs-module-lexer: 1.3.1 constants-browserify: 1.0.0 - css-loader: 6.11.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + css-loader: 6.11.0(webpack@5.84.1) es-module-lexer: 1.5.4 express: 4.19.2(supports-color@6.1.0) - fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.1.6)(webpack@5.84.1) fs-extra: 11.2.0 - html-webpack-plugin: 5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + html-webpack-plugin: 5.6.0(webpack@5.84.1) magic-string: 0.30.10 path-browserify: 1.0.1 process: 0.11.10 semver: 7.6.2 - style-loader: 3.3.4(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - swc-loader: 0.2.6(@swc/core@1.3.99(@swc/helpers@0.5.9))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - terser-webpack-plugin: 5.3.10(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + style-loader: 3.3.4(webpack@5.84.1) + swc-loader: 0.2.6(@swc/core@1.3.99)(webpack@5.84.1) + terser-webpack-plugin: 5.3.10(@swc/core@1.3.99)(esbuild@0.18.20)(webpack@5.84.1) ts-dedent: 2.2.0 + typescript: 5.1.6 url: 0.11.3 util: 0.12.5 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - webpack-dev-middleware: 6.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack-dev-middleware: 6.1.3(webpack@5.84.1) webpack-hot-middleware: 2.26.1 webpack-virtual-modules: 0.5.0 - optionalDependencies: - typescript: 5.1.6 transitivePeerDependencies: - '@rspack/core' - '@swc/helpers' @@ -38866,8 +26784,10 @@ snapshots: - supports-color - uglify-js - webpack-cli + dev: true - '@storybook/channel-postmessage@6.5.16': + /@storybook/channel-postmessage@6.5.16: + resolution: {integrity: sha512-fZZSN29dsUArWOx7e7lTdMA9+7zijVwCwbvi2Fo4fqhRLh1DsTb/VXfz1FKMCWAjNlcX7QQvV25tnxbqsD6lyw==} dependencies: '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 @@ -38877,21 +26797,25 @@ snapshots: qs: 6.12.3 telejson: 6.0.8 - '@storybook/channel-websocket@6.5.16': + /@storybook/channel-websocket@6.5.16: + resolution: {integrity: sha512-wJg2lpBjmRC2GJFzmhB9kxlh109VE58r/0WhFtLbwKvPqsvGf82xkBEl6BtBCvIQ4stzYnj/XijjA8qSi2zpOg==} dependencies: '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 core-js: 3.37.1 global: 4.4.0 telejson: 6.0.8 + dev: false - '@storybook/channels@6.5.16': + /@storybook/channels@6.5.16: + resolution: {integrity: sha512-VylzaWQZaMozEwZPJdyJoz+0jpDa8GRyaqu9TGG6QGv+KU5POoZaGLDkRE7TzWkyyP0KQLo80K99MssZCpgSeg==} dependencies: core-js: 3.37.1 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - '@storybook/channels@7.6.9': + /@storybook/channels@7.6.9: + resolution: {integrity: sha512-goGGZPT294CS1QDF65Fs+PCauvM/nTMseU913ZVSZbFTk4uvqIXOaOraqhQze8A/C8a0yls4qu2Wp00tCnyaTA==} dependencies: '@storybook/client-logger': 7.6.9 '@storybook/core-events': 7.6.9 @@ -38899,17 +26823,20 @@ snapshots: qs: 6.12.3 telejson: 7.2.0 tiny-invariant: 1.3.3 + dev: true - '@storybook/cli@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': + /@storybook/cli@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): + resolution: {integrity: sha512-6hcIUvoQxmK9OZ/dmt2eXMbdeCJseRjLwIk4y2SdWd3chpjMDUVhIMJHU4qc2+6rbK+iwL7JAsOUEu/ywkgEow==} + hasBin: true dependencies: '@babel/core': 7.24.7 '@babel/preset-env': 7.24.7(@babel/core@7.24.7) - '@storybook/codemod': 6.5.16(@babel/preset-env@7.24.7(@babel/core@7.24.7)) - '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/codemod': 6.5.16(@babel/preset-env@7.24.7) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/csf-tools': 6.5.16 '@storybook/node-logger': 6.5.16 '@storybook/semver': 7.3.2 - '@storybook/telemetry': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/telemetry': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) boxen: 5.1.2 chalk: 4.1.2 commander: 6.2.1 @@ -38921,7 +26848,7 @@ snapshots: fs-extra: 9.1.0 get-port: 5.1.1 globby: 11.1.0 - jscodeshift: 0.13.1(@babel/preset-env@7.24.7(@babel/core@7.24.7)) + jscodeshift: 0.13.1(@babel/preset-env@7.24.7) json5: 2.2.3 leven: 3.1.0 prompts: 2.4.2 @@ -38946,20 +26873,23 @@ snapshots: - utf-8-validate - vue-template-compiler - webpack-cli + dev: false - '@storybook/cli@7.6.9(encoding@0.1.13)': + /@storybook/cli@7.6.9: + resolution: {integrity: sha512-HXxr8m1S9wsCtVZ/iQy/bHIUcGlNZ6bMo8jBcFh2V5EgDi350LGQ8q1w/zbwNMD0z0OhmPiv84okksBrOMW6pw==} + hasBin: true dependencies: '@babel/core': 7.24.7 '@babel/preset-env': 7.24.7(@babel/core@7.24.7) '@babel/types': 7.24.7 '@ndelangen/get-tarball': 3.0.9 '@storybook/codemod': 7.6.9 - '@storybook/core-common': 7.6.9(encoding@0.1.13) + '@storybook/core-common': 7.6.9 '@storybook/core-events': 7.6.9 - '@storybook/core-server': 7.6.9(encoding@0.1.13) + '@storybook/core-server': 7.6.9 '@storybook/csf-tools': 7.6.9 '@storybook/node-logger': 7.6.9 - '@storybook/telemetry': 7.6.9(encoding@0.1.13) + '@storybook/telemetry': 7.6.9 '@storybook/types': 7.6.9 '@types/semver': 7.5.8 '@yarnpkg/fslib': 2.10.3 @@ -38977,7 +26907,7 @@ snapshots: get-port: 5.1.1 giget: 1.2.3 globby: 11.1.0 - jscodeshift: 0.15.2(@babel/preset-env@7.24.7(@babel/core@7.24.7)) + jscodeshift: 0.15.2(@babel/preset-env@7.24.7) leven: 3.1.0 ora: 5.4.1 prettier: 2.8.8 @@ -38994,16 +26924,21 @@ snapshots: - encoding - supports-color - utf-8-validate + dev: true - '@storybook/client-api@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/client-api@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-i3UwkzzUFw8I+E6fOcgB5sc4oU2fhvaKnqC1mpd9IYGJ9JN9MnGIaVl3Ko28DtFItu/QabC9JsLIJVripFLktQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@types/qs': 6.9.15 '@types/webpack-env': 1.18.5 core-js: 3.37.1 @@ -39019,17 +26954,22 @@ snapshots: synchronous-promise: 2.0.17 ts-dedent: 2.2.0 util-deprecate: 1.0.2 + dev: false - '@storybook/client-logger@6.5.16': + /@storybook/client-logger@6.5.16: + resolution: {integrity: sha512-pxcNaCj3ItDdicPTXTtmYJE3YC1SjxFrBmHcyrN+nffeNyiMuViJdOOZzzzucTUG0wcOOX8jaSyak+nnHg5H1Q==} dependencies: core-js: 3.37.1 global: 4.4.0 - '@storybook/client-logger@7.6.9': + /@storybook/client-logger@7.6.9: + resolution: {integrity: sha512-Xm6fa6AR3cjxabauMldBv/66OOp5IhDiUEpp4D/a7hXfvCWqwmjVJ6EPz9WzkMhcPbMJr8vWJBaS3glkFqsRng==} dependencies: '@storybook/global': 5.0.0 + dev: true - '@storybook/codemod@6.5.16(@babel/preset-env@7.24.7(@babel/core@7.24.7))': + /@storybook/codemod@6.5.16(@babel/preset-env@7.24.7): + resolution: {integrity: sha512-bYu0QzkWpgILFdQnbIsnICfL08Z4xmLSmL0Rq9WWGRnSnNnGzX5P57gz+fW7+NHFGxdCTCuHJPvwAXGuJQApPQ==} dependencies: '@babel/types': 7.24.7 '@mdx-js/mdx': 1.6.22 @@ -39039,7 +26979,7 @@ snapshots: core-js: 3.37.1 cross-spawn: 7.0.3 globby: 11.1.0 - jscodeshift: 0.13.1(@babel/preset-env@7.24.7(@babel/core@7.24.7)) + jscodeshift: 0.13.1(@babel/preset-env@7.24.7) lodash: 4.17.21 prettier: 2.3.0 recast: 0.19.1 @@ -39048,8 +26988,10 @@ snapshots: - '@babel/preset-env' - '@storybook/mdx2-csf' - supports-color + dev: false - '@storybook/codemod@7.6.9': + /@storybook/codemod@7.6.9: + resolution: {integrity: sha512-7vj5zVu4GmBpY6fxrRsJby5ttN/tN5Z8RFil06PhTy8SI8JxFoJCWBaPwtOvICObdBAqDx9idGVzbcVpdVdJEg==} dependencies: '@babel/core': 7.24.7 '@babel/preset-env': 7.24.7(@babel/core@7.24.7) @@ -39061,18 +27003,23 @@ snapshots: '@types/cross-spawn': 6.0.6 cross-spawn: 7.0.3 globby: 11.1.0 - jscodeshift: 0.15.2(@babel/preset-env@7.24.7(@babel/core@7.24.7)) + jscodeshift: 0.15.2(@babel/preset-env@7.24.7) lodash: 4.17.21 prettier: 2.8.8 recast: 0.23.9 transitivePeerDependencies: - supports-color + dev: true - '@storybook/components@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/components@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-LzBOFJKITLtDcbW9jXl0/PaG+4xAz25PK8JxPZpIALbmOpYWOAPcO6V9C2heX6e6NgWFMUxjplkULEk9RCQMNA==} + 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': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) core-js: 3.37.1 memoizerific: 1.11.3 qs: 6.12.3 @@ -39081,18 +27028,27 @@ snapshots: regenerator-runtime: 0.13.11 util-deprecate: 1.0.2 - '@storybook/core-client@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@storybook/core-client@6.5.16(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1): + resolution: {integrity: sha512-14IRaDrVtKrQ+gNWC0wPwkCNfkZOKghYV/swCUnQX3rP99defsZK8Hc7xHIYoAiOP5+sc3sweRAxgmFiJeQ1Ig==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + webpack: 5.84.1 + peerDependenciesMeta: + typescript: + optional: true dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/channel-websocket': 6.5.16 - '@storybook/client-api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/client-api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/preview-web': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/ui': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/preview-web': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/ui': 6.5.16(react-dom@18.3.1)(react@18.3.1) airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 core-js: 3.37.1 @@ -39103,18 +27059,28 @@ snapshots: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 + typescript: 4.9.5 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: - typescript: 4.9.5 + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: false - '@storybook/core-client@7.6.9': + /@storybook/core-client@7.6.9: + resolution: {integrity: sha512-a94YHpRilFhhfPLmCsnEuGQld7ZY7VfQPtzKL/a8MjNEYiJTghquLx20ZPAeO/CjKZmtTfLVhO95InkNtKz33A==} dependencies: '@storybook/client-logger': 7.6.9 '@storybook/preview-api': 7.6.9 + dev: true - '@storybook/core-common@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': + /@storybook/core-common@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): + resolution: {integrity: sha512-2qtnKP3TTOzt2cp6LXKRTh7XrI9z5VanMnMTgeoFcA5ebnndD4V6BExQUdYPClE/QooLx6blUWNgS9dFEpjSqQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true dependencies: '@babel/core': 7.24.7 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.7) @@ -39142,7 +27108,7 @@ snapshots: '@storybook/semver': 7.3.2 '@types/node': 16.18.101 '@types/pretty-hrtime': 1.0.3 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) babel-plugin-macros: 3.1.0 babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.24.7) chalk: 4.1.2 @@ -39150,7 +27116,7 @@ snapshots: express: 4.19.2(supports-color@6.1.0) file-system-cache: 1.1.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1) fs-extra: 9.1.0 glob: 7.2.3 handlebars: 4.7.8 @@ -39166,10 +27132,9 @@ snapshots: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 - util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: typescript: 4.9.5 + util-deprecate: 1.0.2 + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) transitivePeerDependencies: - '@swc/core' - esbuild @@ -39179,7 +27144,8 @@ snapshots: - vue-template-compiler - webpack-cli - '@storybook/core-common@7.6.9(encoding@0.1.13)': + /@storybook/core-common@7.6.9: + resolution: {integrity: sha512-K3xHn2wvyTRXv+boAei5mVqO6P+5EGdGAILF+iSINrdNfz899HAovlnj68dBZguiHqFibhYyFIv1PyGuPgVn6g==} dependencies: '@storybook/core-events': 7.6.9 '@storybook/node-logger': 7.6.9 @@ -39198,7 +27164,7 @@ snapshots: glob: 10.4.2 handlebars: 4.7.8 lazy-universal-dotenv: 4.0.0 - node-fetch: 2.7.0(encoding@0.1.13) + node-fetch: 2.7.0 picomatch: 2.3.1 pkg-dir: 5.0.0 pretty-hrtime: 1.0.3 @@ -39207,29 +27173,49 @@ snapshots: transitivePeerDependencies: - encoding - supports-color + dev: true - '@storybook/core-events@6.5.16': + /@storybook/core-events@6.5.16: + resolution: {integrity: sha512-qMZQwmvzpH5F2uwNUllTPg6eZXr2OaYZQRRN8VZJiuorZzDNdAFmiVWMWdkThwmyLEJuQKXxqCL8lMj/7PPM+g==} dependencies: core-js: 3.37.1 - '@storybook/core-events@7.6.9': + /@storybook/core-events@7.6.9: + resolution: {integrity: sha512-YCds7AA6sbnnZ2qq5l+AIxhQqYlXB8eVTkjj6phgczsLjkqKapYFxAFc3ppRnE0FcsL2iji17ikHzZ8+eHYznA==} dependencies: ts-dedent: 2.2.0 + dev: true - '@storybook/core-server@6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': + /@storybook/core-server@6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): + resolution: {integrity: sha512-/3NPfmNyply395Dm0zaVZ8P9aruwO+tPx4D6/jpw8aqrRSwvAMndPMpoMCm0NXcpSm5rdX+Je4S3JW6JcggFkA==} + peerDependencies: + '@storybook/builder-webpack5': '*' + '@storybook/manager-webpack5': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + '@storybook/builder-webpack5': + optional: true + '@storybook/manager-webpack5': + optional: true + typescript: + optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - '@storybook/core-client': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/builder-webpack4': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/builder-webpack5': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/core-client': 6.5.16(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/csf-tools': 6.5.16 - '@storybook/manager-webpack4': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/manager-webpack4': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/manager-webpack5': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/node-logger': 6.5.16 '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/telemetry': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/telemetry': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@types/node': 16.18.101 '@types/node-fetch': 2.6.11 '@types/pretty-hrtime': 1.0.3 @@ -39249,7 +27235,7 @@ snapshots: globby: 11.1.0 ip: 2.0.1 lodash: 4.17.21 - node-fetch: 2.7.0(encoding@0.1.13) + node-fetch: 2.7.0 open: 8.4.2 pretty-hrtime: 1.0.3 prompts: 2.4.2 @@ -39260,15 +27246,12 @@ snapshots: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 + typescript: 4.9.5 util-deprecate: 1.0.2 watchpack: 2.4.1 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) ws: 8.17.1 x-default-browser: 0.4.0 - optionalDependencies: - '@storybook/builder-webpack5': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - '@storybook/manager-webpack5': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - typescript: 4.9.5 transitivePeerDependencies: - '@storybook/mdx2-csf' - '@swc/core' @@ -39282,14 +27265,16 @@ snapshots: - utf-8-validate - vue-template-compiler - webpack-cli + dev: false - '@storybook/core-server@7.6.9(encoding@0.1.13)': + /@storybook/core-server@7.6.9: + resolution: {integrity: sha512-zRzKmdYhDiIxX+K3i/Ri6v3uuWzwFcdNaKkWnUSDsIR40kI5vCQB6aad/4Lrf/qMVvjWCOkLNFxOD2X4cXMM6w==} dependencies: '@aw-web-design/x-default-browser': 1.4.126 '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-manager': 7.6.9(encoding@0.1.13) + '@storybook/builder-manager': 7.6.9 '@storybook/channels': 7.6.9 - '@storybook/core-common': 7.6.9(encoding@0.1.13) + '@storybook/core-common': 7.6.9 '@storybook/core-events': 7.6.9 '@storybook/csf': 0.1.11 '@storybook/csf-tools': 7.6.9 @@ -39298,7 +27283,7 @@ snapshots: '@storybook/manager': 7.6.9 '@storybook/node-logger': 7.6.9 '@storybook/preview-api': 7.6.9 - '@storybook/telemetry': 7.6.9(encoding@0.1.13) + '@storybook/telemetry': 7.6.9 '@storybook/types': 7.6.9 '@types/detect-port': 1.3.5 '@types/node': 18.11.9 @@ -39331,10 +27316,12 @@ snapshots: - encoding - supports-color - utf-8-validate + dev: true - '@storybook/core-webpack@7.6.9(encoding@0.1.13)': + /@storybook/core-webpack@7.6.9: + resolution: {integrity: sha512-2nDHBFY4fxSsESL0bhnWapfRHMZyIYsW9dQvtjkPLKf2v8d7iF8NNM7Rn8j862s2HoMWd8otRW4r3UrG5+FNKw==} dependencies: - '@storybook/core-common': 7.6.9(encoding@0.1.13) + '@storybook/core-common': 7.6.9 '@storybook/node-logger': 7.6.9 '@storybook/types': 7.6.9 '@types/node': 18.11.9 @@ -39342,18 +27329,33 @@ snapshots: transitivePeerDependencies: - encoding - supports-color + dev: true - '@storybook/core@6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@storybook/core@6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1): + resolution: {integrity: sha512-CEF3QFTsm/VMnMKtRNr4rRdLeIkIG0g1t26WcmxTdSThNPBd8CsWzQJ7Jqu7CKiut+MU4A1LMOwbwCE5F2gmyA==} + peerDependencies: + '@storybook/builder-webpack5': '*' + '@storybook/manager-webpack5': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + webpack: 5.84.1 + peerDependenciesMeta: + '@storybook/builder-webpack5': + optional: true + '@storybook/manager-webpack5': + optional: true + typescript: + optional: true dependencies: - '@storybook/core-client': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - '@storybook/core-server': 6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/builder-webpack5': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/core-client': 6.5.16(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1) + '@storybook/core-server': 6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) + '@storybook/manager-webpack5': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: - '@storybook/builder-webpack5': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - '@storybook/manager-webpack5': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) typescript: 4.9.5 + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) transitivePeerDependencies: - '@storybook/mdx2-csf' - '@swc/core' @@ -39367,8 +27369,15 @@ snapshots: - utf-8-validate - vue-template-compiler - webpack-cli + dev: false - '@storybook/csf-tools@6.5.16': + /@storybook/csf-tools@6.5.16: + resolution: {integrity: sha512-+WD4sH/OwAfXZX3IN6/LOZ9D9iGEFcN+Vvgv9wOsLRgsAZ10DG/NK6c1unXKDM/ogJtJYccNI8Hd+qNE/GFV6A==} + peerDependencies: + '@storybook/mdx2-csf': ^0.0.3 + peerDependenciesMeta: + '@storybook/mdx2-csf': + optional: true dependencies: '@babel/core': 7.24.7 '@babel/generator': 7.24.7 @@ -39386,8 +27395,10 @@ snapshots: ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color + dev: false - '@storybook/csf-tools@7.6.9': + /@storybook/csf-tools@7.6.9: + resolution: {integrity: sha512-1Lfq+d3NBhmCq07Tz3Fc5Y2szpXKFtQ8Xx9/Ht0NC/dihn8ZgRlFa8uak9BKNWh5kTQb4EP7e0PMmwyowR1JWQ==} dependencies: '@babel/generator': 7.24.7 '@babel/parser': 7.24.7 @@ -39400,22 +27411,29 @@ snapshots: ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color + dev: true - '@storybook/csf@0.0.2--canary.4566f4d.1': + /@storybook/csf@0.0.2--canary.4566f4d.1: + resolution: {integrity: sha512-9OVvMVh3t9znYZwb0Svf/YQoxX2gVOeQTGe2bses2yj+a3+OJnCrUF3/hGv6Em7KujtOdL2LL+JnG49oMVGFgQ==} dependencies: lodash: 4.17.21 - '@storybook/csf@0.1.11': + /@storybook/csf@0.1.11: + resolution: {integrity: sha512-dHYFQH3mA+EtnCkHXzicbLgsvzYjcDJ1JWsogbItZogkPHgSJM/Wr71uMkcvw8v9mmCyP4NpXJuu6bPoVsOnzg==} dependencies: type-fest: 2.19.0 + dev: true - '@storybook/docs-mdx@0.1.0': {} + /@storybook/docs-mdx@0.1.0: + resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==} + dev: true - '@storybook/docs-tools@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/docs-tools@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-o+rAWPRGifjBF5xZzTKOqnHN3XQWkl0QFJYVDIiJYJrVll7ExCkpEq/PahOGzIBBV+tpMstJgmKM3lr/lu/jmg==} dependencies: '@babel/core': 7.24.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) core-js: 3.37.1 doctrine: 3.0.0 lodash: 4.17.21 @@ -39425,9 +27443,10 @@ snapshots: - react-dom - supports-color - '@storybook/docs-tools@7.6.9(encoding@0.1.13)': + /@storybook/docs-tools@7.6.9: + resolution: {integrity: sha512-p5+jkQk+9cTIjnHYqytJARtoupxn7fORAtk33+DOiSv026cSx5LsW2rZwZuGeH+bloVeLoxiwhQWeK61PN14Jw==} dependencies: - '@storybook/core-common': 7.6.9(encoding@0.1.13) + '@storybook/core-common': 7.6.9 '@storybook/preview-api': 7.6.9 '@storybook/types': 7.6.9 '@types/doctrine': 0.0.3 @@ -39437,50 +27456,60 @@ snapshots: transitivePeerDependencies: - encoding - supports-color + dev: true - '@storybook/global@5.0.0': {} + /@storybook/global@5.0.0: + resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} + dev: true - '@storybook/manager-webpack4@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': + /@storybook/manager-webpack4@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): + resolution: {integrity: sha512-5VJZwmQU6AgdsBPsYdu886UKBHQ9SJEnFMaeUxKEclXk+iRsmbzlL4GHKyVd6oGX/ZaecZtcHPR6xrzmA4Ziew==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.7) '@babel/preset-react': 7.24.7(@babel/core@7.24.7) - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/core-client': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/core-client': 6.5.16(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/node-logger': 6.5.16 - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/ui': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/ui': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@types/node': 16.18.101 '@types/webpack': 4.41.38 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.37.1 - css-loader: 3.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + css-loader: 3.6.0(webpack@5.84.1) express: 4.19.2(supports-color@6.1.0) - file-loader: 6.2.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + file-loader: 6.2.0(webpack@5.84.1) find-up: 5.0.0 fs-extra: 9.1.0 - html-webpack-plugin: 4.5.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - node-fetch: 2.7.0(encoding@0.1.13) + html-webpack-plugin: 4.5.2(webpack@5.84.1) + node-fetch: 2.7.0 pnp-webpack-plugin: 1.6.4(typescript@4.9.5) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 resolve-from: 5.0.0 - style-loader: 1.3.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + style-loader: 1.3.0(webpack@5.84.1) telejson: 6.0.8 - terser-webpack-plugin: 4.2.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + terser-webpack-plugin: 4.2.3(webpack@5.84.1) ts-dedent: 2.2.0 - url-loader: 4.1.1(file-loader@6.2.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + typescript: 4.9.5 + url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.84.1) util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - webpack-dev-middleware: 3.7.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack-dev-middleware: 3.7.3(webpack@5.84.1) webpack-virtual-modules: 0.2.2 - optionalDependencies: - typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - bluebird @@ -39491,45 +27520,53 @@ snapshots: - uglify-js - vue-template-compiler - webpack-cli + dev: false - '@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': + /@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): + resolution: {integrity: sha512-OtxXv8JCe0r/0rE5HxaFicsNsXA+fqZxzokxquFFgrYf/1Jg4d7QX6/pG5wINF+5qInJfVkRG6xhPzv1s5bk9Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.7) '@babel/preset-react': 7.24.7(@babel/core@7.24.7) - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/core-client': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/core-client': 6.5.16(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack@5.84.1) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/node-logger': 6.5.16 - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/ui': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/ui': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@types/node': 16.18.101 - babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + babel-loader: 8.3.0(@babel/core@7.24.7)(webpack@5.84.1) case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.37.1 - css-loader: 5.2.7(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + css-loader: 5.2.7(webpack@5.84.1) express: 4.19.2(supports-color@6.1.0) find-up: 5.0.0 fs-extra: 9.1.0 - html-webpack-plugin: 5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - node-fetch: 2.7.0(encoding@0.1.13) + html-webpack-plugin: 5.6.0(webpack@5.84.1) + node-fetch: 2.7.0 process: 0.11.10 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 resolve-from: 5.0.0 - style-loader: 2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + style-loader: 2.0.0(webpack@5.84.1) telejson: 6.0.8 - terser-webpack-plugin: 5.3.10(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + terser-webpack-plugin: 5.3.10(@swc/core@1.3.99)(esbuild@0.18.20)(webpack@5.84.1) ts-dedent: 2.2.0 + typescript: 4.9.5 util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - webpack-dev-middleware: 4.3.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack-dev-middleware: 4.3.0(webpack@5.84.1) webpack-virtual-modules: 0.4.6 - optionalDependencies: - typescript: 4.9.5 transitivePeerDependencies: - '@rspack/core' - '@swc/core' @@ -39540,10 +27577,14 @@ snapshots: - uglify-js - vue-template-compiler - webpack-cli + dev: false - '@storybook/manager@7.6.9': {} + /@storybook/manager@7.6.9: + resolution: {integrity: sha512-FGY4Dsttg1P9fPVeXuQyIEpXdQYHMMvqUoCpEc0hkDBf4cu6tbQCLOeP7EPKN4oVW+zKh4BanJlrOlqGAD5jWA==} + dev: true - '@storybook/mdx1-csf@0.0.1(@babel/core@7.24.7)': + /@storybook/mdx1-csf@0.0.1(@babel/core@7.24.7): + resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} dependencies: '@babel/generator': 7.24.7 '@babel/parser': 7.24.7 @@ -39560,7 +27601,8 @@ snapshots: - '@babel/core' - supports-color - '@storybook/node-logger@6.5.16': + /@storybook/node-logger@6.5.16: + resolution: {integrity: sha512-YjhBKrclQtjhqFNSO+BZK+RXOx6EQypAELJKoLFaawg331e8VUfvUuRCNB3fcEWp8G9oH13PQQte0OTjLyyOYg==} dependencies: '@types/npmlog': 4.1.6 chalk: 4.1.2 @@ -39568,22 +27610,39 @@ snapshots: npmlog: 5.0.1 pretty-hrtime: 1.0.3 - '@storybook/node-logger@7.6.9': {} + /@storybook/node-logger@7.6.9: + resolution: {integrity: sha512-JoK5mJkjjpFfbiXbCdCiQceIUzIfeHpYCDd6+Jpx9+Sk4osR3BgdW2qYBviosato9c9D3dvKyrfhzbSp5rX+bQ==} + dev: true - '@storybook/postinstall@6.5.16': + /@storybook/postinstall@6.5.16: + resolution: {integrity: sha512-08K2q+qN6pqyPW7PHLCZ5G5Xa6Wosd6t0F16PQ4abX2ItlJLabVoJN5mZ0gm/aeLTjD8QYr8IDvacu4eXh0SVA==} dependencies: core-js: 3.37.1 + dev: true - '@storybook/preset-react-webpack@7.6.9(@babel/core@7.24.7)(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/webpack@4.41.38)(encoding@0.1.13)(esbuild@0.18.20)(sockjs-client@1.6.1)(type-fest@4.20.1)(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)': + /@storybook/preset-react-webpack@7.6.9(@babel/core@7.24.7)(@swc/core@1.3.99)(esbuild@0.18.20)(typescript@5.1.6)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3): + resolution: {integrity: sha512-53zfRsr+YeP6SkoIBXCQjKhAMlVTRNtSpzuvhd7MvLoaU3YO9xE1ZzHMljk1r6gXt+GOMdEzZhFRGc/z/M62Vg==} + engines: {node: '>=16.0.0'} + peerDependencies: + '@babel/core': ^7.22.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + '@babel/core': + optional: true + typescript: + optional: true dependencies: + '@babel/core': 7.24.7 '@babel/preset-flow': 7.24.7(@babel/core@7.24.7) '@babel/preset-react': 7.24.7(@babel/core@7.24.7) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(@types/webpack@4.41.38)(react-refresh@0.14.2)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - '@storybook/core-webpack': 7.6.9(encoding@0.1.13) - '@storybook/docs-tools': 7.6.9(encoding@0.1.13) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.14.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) + '@storybook/core-webpack': 7.6.9 + '@storybook/docs-tools': 7.6.9 '@storybook/node-logger': 7.6.9 - '@storybook/react': 7.6.9(encoding@0.1.13)(typescript@5.1.6) - '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/react': 7.6.9(typescript@5.1.6) + '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.1.6)(webpack@5.84.1) '@types/node': 18.11.9 '@types/semver': 7.5.8 babel-plugin-add-react-displayname: 0.0.5 @@ -39592,10 +27651,8 @@ snapshots: react-docgen: 7.0.3 react-refresh: 0.14.2 semver: 7.6.2 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: - '@babel/core': 7.24.7 typescript: 5.1.6 + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) transitivePeerDependencies: - '@swc/core' - '@types/webpack' @@ -39609,8 +27666,10 @@ snapshots: - webpack-dev-server - webpack-hot-middleware - webpack-plugin-serve + dev: true - '@storybook/preview-api@7.6.9': + /@storybook/preview-api@7.6.9: + resolution: {integrity: sha512-qVRylkOc70Ivz/oRE3cXaQA9r60qXSCXhY8xFjnBvZFjoYr0ImGx+tt0818YzSkhTf6LsNbx9HxwW4+x7JD6dw==} dependencies: '@storybook/channels': 7.6.9 '@storybook/client-logger': 7.6.9 @@ -39626,15 +27685,20 @@ snapshots: synchronous-promise: 2.0.17 ts-dedent: 2.2.0 util-deprecate: 1.0.2 + dev: true - '@storybook/preview-web@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/preview-web@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-IJnvfe2sKCfk7apN9Fu9U8qibbarrPX5JB55ZzK1amSHVmSDuYk5MIMc/U3NnSQNnvd1DO5v/zMcGgj563hrtg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/channel-postmessage': 6.5.16 '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) ansi-to-html: 0.6.15 core-js: 3.37.1 global: 4.4.0 @@ -39648,11 +27712,17 @@ snapshots: unfetch: 4.2.0 util-deprecate: 1.0.2 - '@storybook/preview@7.6.9': {} + /@storybook/preview@7.6.9: + resolution: {integrity: sha512-cQbejRzUYghU913ZWLc37YinzU4Ziv5eYonQzGk7C5O2hP2MoDYqIL9CIll00tNb9lXDuK1kYz7AVJNrsDrvCg==} + dev: true - '@storybook/react-docgen-typescript-plugin@1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@storybook/react-docgen-typescript-plugin@1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.84.1): + resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==} + peerDependencies: + typescript: '>= 3.x' + webpack: 5.84.1 dependencies: - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) endent: 2.1.0 find-cache-dir: 3.3.2 flat-cache: 3.2.0 @@ -39660,13 +27730,18 @@ snapshots: react-docgen-typescript: 2.2.2(typescript@4.9.5) tslib: 2.6.3 typescript: 4.9.5 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) transitivePeerDependencies: - supports-color + dev: false - '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.1.6)(webpack@5.84.1): + resolution: {integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==} + peerDependencies: + typescript: '>= 4.x' + webpack: 5.84.1 dependencies: - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) endent: 2.1.0 find-cache-dir: 3.3.2 flat-cache: 3.2.0 @@ -39674,20 +27749,37 @@ snapshots: react-docgen-typescript: 2.2.2(typescript@5.1.6) tslib: 2.6.3 typescript: 5.1.6 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) transitivePeerDependencies: - supports-color + dev: true - '@storybook/react-dom-shim@7.6.9': {} + /@storybook/react-dom-shim@7.6.9: + resolution: {integrity: sha512-8n0MFq52lKGPHmqLN8PHueAE+5Kj+LMUTg7Sw0PeQhuaLYRT/1v0QpQXxuiwpkwEbrQr/u9MzZ8B0KsZHKxROQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + dev: true - '@storybook/react-webpack5@7.6.9(@babel/core@7.24.7)(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/helpers@0.5.9)(@types/webpack@4.41.38)(encoding@0.1.13)(esbuild@0.18.20)(sockjs-client@1.6.1)(type-fest@4.20.1)(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1)': + /@storybook/react-webpack5@7.6.9(@babel/core@7.24.7)(@swc/core@1.3.99)(@swc/helpers@0.5.9)(esbuild@0.18.20)(typescript@5.1.6)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3): + resolution: {integrity: sha512-J0LzsLYJ4vkTcep4u3kwnblyTJSh4E+KPQPGLMd8KmQ9/Z1i4JFONNrs0yn5PofhnBGvfD9Y8iNBhh3NDAH4XA==} + engines: {node: '>=16.0.0'} + peerDependencies: + '@babel/core': ^7.22.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + '@babel/core': + optional: true + typescript: + optional: true dependencies: - '@storybook/builder-webpack5': 7.6.9(@swc/helpers@0.5.9)(encoding@0.1.13)(esbuild@0.18.20)(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - '@storybook/preset-react-webpack': 7.6.9(@babel/core@7.24.7)(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/webpack@4.41.38)(encoding@0.1.13)(esbuild@0.18.20)(sockjs-client@1.6.1)(type-fest@4.20.1)(typescript@5.1.6)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))(webpack-hot-middleware@2.26.1) - '@storybook/react': 7.6.9(encoding@0.1.13)(typescript@5.1.6) - '@types/node': 18.11.9 - optionalDependencies: '@babel/core': 7.24.7 + '@storybook/builder-webpack5': 7.6.9(@swc/helpers@0.5.9)(esbuild@0.18.20)(typescript@5.1.6)(webpack-cli@4.10.0) + '@storybook/preset-react-webpack': 7.6.9(@babel/core@7.24.7)(@swc/core@1.3.99)(esbuild@0.18.20)(typescript@5.1.6)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3) + '@storybook/react': 7.6.9(typescript@5.1.6) + '@types/node': 18.11.9 typescript: 5.1.6 transitivePeerDependencies: - '@rspack/core' @@ -39704,22 +27796,52 @@ snapshots: - webpack-dev-server - webpack-hot-middleware - webpack-plugin-serve + dev: true - ? '@storybook/react@6.5.16(@babel/core@7.24.7)(@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/webpack@4.41.38)(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(require-from-string@2.0.2)(sockjs-client@1.6.1)(type-fest@4.20.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)' - : dependencies: + /@storybook/react@6.5.16(@babel/core@7.24.7)(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(require-from-string@2.0.2)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack-dev-server@3.11.3): + resolution: {integrity: sha512-cBtNlOzf/MySpNLBK22lJ8wFU22HnfTB2xJyBk7W7Zi71Lm7Uxkhv1Pz8HdiQndJ0SlsAAQOWjQYsSZsGkZIaA==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + '@babel/core': ^7.11.5 + '@storybook/builder-webpack4': '*' + '@storybook/builder-webpack5': '*' + '@storybook/manager-webpack4': '*' + '@storybook/manager-webpack5': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + require-from-string: ^2.0.2 + typescript: '*' + peerDependenciesMeta: + '@babel/core': + optional: true + '@storybook/builder-webpack4': + optional: true + '@storybook/builder-webpack5': + optional: true + '@storybook/manager-webpack4': + optional: true + '@storybook/manager-webpack5': + optional: true + typescript: + optional: true + dependencies: + '@babel/core': 7.24.7 '@babel/preset-flow': 7.24.7(@babel/core@7.24.7) '@babel/preset-react': 7.24.7(@babel/core@7.24.7) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(@types/webpack@4.41.38)(react-refresh@0.11.0)(sockjs-client@1.6.1)(type-fest@4.20.1)(webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack-hot-middleware@2.26.1)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.11.0)(webpack-dev-server@3.11.3)(webpack@5.84.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/builder-webpack5': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/client-logger': 6.5.16 - '@storybook/core': 6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@storybook/manager-webpack5@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/core': 6.5.16(@storybook/builder-webpack5@6.5.16)(@storybook/manager-webpack5@6.5.16)(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0)(webpack@5.84.1) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/docs-tools': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/docs-tools': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/manager-webpack5': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) '@storybook/node-logger': 6.5.16 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.84.1) '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/store': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@types/estree': 0.0.51 '@types/node': 16.18.101 '@types/webpack-env': 1.18.5 @@ -39737,19 +27859,15 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-element-to-jsx-string: 14.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-element-to-jsx-string: 14.3.4(react-dom@18.3.1)(react@18.3.1) react-refresh: 0.11.0 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 require-from-string: 2.0.2 ts-dedent: 2.2.0 - util-deprecate: 1.0.2 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: - '@babel/core': 7.24.7 - '@storybook/builder-webpack5': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - '@storybook/manager-webpack5': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) typescript: 4.9.5 + util-deprecate: 1.0.2 + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) transitivePeerDependencies: - '@storybook/mdx2-csf' - '@swc/core' @@ -39769,12 +27887,22 @@ snapshots: - webpack-dev-server - webpack-hot-middleware - webpack-plugin-serve + dev: false - '@storybook/react@7.6.9(encoding@0.1.13)(typescript@5.1.6)': + /@storybook/react@7.6.9(typescript@5.1.6): + resolution: {integrity: sha512-nKBiI0wVyN3yj9xgNjIVKaaYSwe+qBqn0pxmiHSY20mUY4GH1thEY2KMtL0BLIU/mvcp6cw/Sj3oDFKCe+G0MA==} + engines: {node: '>=16.0.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true dependencies: '@storybook/client-logger': 7.6.9 '@storybook/core-client': 7.6.9 - '@storybook/docs-tools': 7.6.9(encoding@0.1.13) + '@storybook/docs-tools': 7.6.9 '@storybook/global': 5.0.0 '@storybook/preview-api': 7.6.9 '@storybook/react-dom-shim': 7.6.9 @@ -39792,14 +27920,18 @@ snapshots: react-element-to-jsx-string: 15.0.0 ts-dedent: 2.2.0 type-fest: 2.19.0 - util-deprecate: 1.0.2 - optionalDependencies: typescript: 5.1.6 + util-deprecate: 1.0.2 transitivePeerDependencies: - encoding - supports-color + dev: true - '@storybook/router@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/router@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-ZgeP8a5YV/iuKbv31V8DjPxlV4AzorRiR8OuSt/KqaiYXNXlOoQDz/qMmiNcrshrfLpmkzoq7fSo4T8lWo2UwQ==} + 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': 6.5.16 core-js: 3.37.1 @@ -39809,14 +27941,21 @@ snapshots: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 - '@storybook/semver@7.3.2': + /@storybook/semver@7.3.2: + resolution: {integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==} + engines: {node: '>=10'} + hasBin: true dependencies: core-js: 3.37.1 find-up: 4.1.0 - '@storybook/source-loader@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/source-loader@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-fyVl4jrM/5JLrb48aqXPu7sTsmySQaVGFp1zfeqvPPlJRFMastDrePm5XGPN7Qjv1wsKmpuBvuweFKOT1pru3g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.37.1 @@ -39828,10 +27967,15 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 + dev: true - '@storybook/store@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/store@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-g+bVL5hmMq/9cM51K04e37OviUPHT0rHHrRm5wj/hrf18Kd9120b3sxdQ5Dc+HZ292yuME0n+cyrQPTYx9Epmw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 @@ -39849,17 +27993,18 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - '@storybook/telemetry@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': + /@storybook/telemetry@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): + resolution: {integrity: sha512-CWr5Uko1l9jJW88yTXsZTj/3GTabPvw0o7pDPOXPp8JRZiJTxv1JFaFCafhK9UzYbgcRuGfCC8kEWPZims7iKA==} dependencies: '@storybook/client-logger': 6.5.16 - '@storybook/core-common': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/core-common': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) chalk: 4.1.2 core-js: 3.37.1 detect-package-manager: 2.0.1 fetch-retry: 5.0.6 fs-extra: 9.1.0 global: 4.4.0 - isomorphic-unfetch: 3.1.0(encoding@0.1.13) + isomorphic-unfetch: 3.1.0 nanoid: 3.3.7 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 @@ -39875,11 +28020,13 @@ snapshots: - uglify-js - vue-template-compiler - webpack-cli + dev: false - '@storybook/telemetry@7.6.9(encoding@0.1.13)': + /@storybook/telemetry@7.6.9: + resolution: {integrity: sha512-0Dj2RH5oAL1mY72OcZKmiOlAcWyex2bwYJZUnsFrA+RFvOr7FbHAVWwudz4orWzIkYFTESixF4wuF0mYk8ds6g==} dependencies: '@storybook/client-logger': 7.6.9 - '@storybook/core-common': 7.6.9(encoding@0.1.13) + '@storybook/core-common': 7.6.9 '@storybook/csf-tools': 7.6.9 chalk: 4.1.2 detect-package-manager: 2.0.1 @@ -39889,8 +28036,13 @@ snapshots: transitivePeerDependencies: - encoding - supports-color + dev: true - '@storybook/theming@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/theming@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-hNLctkjaYLRdk1+xYTkC1mg4dYz2wSv6SqbLpcKMbkPHTE0ElhddGPHQqB362md/w9emYXNkt1LSMD8Xk9JzVQ==} + 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': 6.5.16 core-js: 3.37.1 @@ -39899,24 +28051,30 @@ snapshots: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 - '@storybook/types@7.6.9': + /@storybook/types@7.6.9: + resolution: {integrity: sha512-Qnx7exS6bO1MrqasHl12h8/HeBuxrwg2oMXROO7t0qmprV6+DGb6OxztsVIgbKR+m6uqFFM1q+f/Q5soI1qJ6g==} dependencies: '@storybook/channels': 7.6.9 '@types/babel__core': 7.20.5 '@types/express': 4.17.21 file-system-cache: 2.3.0 + dev: true - '@storybook/ui@6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@storybook/ui@6.5.16(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-rHn/n12WM8BaXtZ3IApNZCiS+C4Oc5+Lkl4MoctX8V7QSml0SxZBB5hsJ/AiWkgbRxjQpa/L/Nt7/Qw0FjTH/A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addons': 6.5.16(react-dom@18.3.1)(react@18.3.1) + '@storybook/api': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/channels': 6.5.16 '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/core-events': 6.5.16 - '@storybook/router': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/router': 6.5.16(react-dom@18.3.1)(react@18.3.1) '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 6.5.16(react-dom@18.3.1)(react@18.3.1) core-js: 3.37.1 memoizerific: 1.11.3 qs: 6.12.3 @@ -39924,96 +28082,209 @@ snapshots: react-dom: 18.3.1(react@18.3.1) regenerator-runtime: 0.13.11 resolve-from: 5.0.0 + dev: false - '@svgr/babel-plugin-add-jsx-attribute@4.2.0': {} + /@svgr/babel-plugin-add-jsx-attribute@4.2.0: + resolution: {integrity: sha512-j7KnilGyZzYr/jhcrSYS3FGWMZVaqyCG0vzMCwzvei0coIkczuYMcniK07nI0aHJINciujjH11T72ICW5eL5Ig==} + engines: {node: '>=8'} + dev: true - '@svgr/babel-plugin-add-jsx-attribute@5.4.0': {} + /@svgr/babel-plugin-add-jsx-attribute@5.4.0: + resolution: {integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==} + engines: {node: '>=10'} + dev: true - '@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.24.7)': + /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.24.7): + resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 - '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.24.7)': + /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.24.7): + resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 + dev: true - '@svgr/babel-plugin-remove-jsx-attribute@4.2.0': {} + /@svgr/babel-plugin-remove-jsx-attribute@4.2.0: + resolution: {integrity: sha512-3XHLtJ+HbRCH4n28S7y/yZoEQnRpl0tvTZQsHqvaeNXPra+6vE5tbRliH3ox1yZYPCxrlqaJT/Mg+75GpDKlvQ==} + engines: {node: '>=8'} + dev: true - '@svgr/babel-plugin-remove-jsx-attribute@5.4.0': {} + /@svgr/babel-plugin-remove-jsx-attribute@5.4.0: + resolution: {integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==} + engines: {node: '>=10'} + dev: true - '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.7)': + /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.7): + resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 - '@svgr/babel-plugin-remove-jsx-empty-expression@4.2.0': {} + /@svgr/babel-plugin-remove-jsx-empty-expression@4.2.0: + resolution: {integrity: sha512-yTr2iLdf6oEuUE9MsRdvt0NmdpMBAkgK8Bjhl6epb+eQWk6abBaX3d65UZ3E3FWaOwePyUgNyNCMVG61gGCQ7w==} + engines: {node: '>=8'} + dev: true - '@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1': {} + /@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1: + resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==} + engines: {node: '>=10'} + dev: true - '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.7)': + /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.7): + resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 - '@svgr/babel-plugin-replace-jsx-attribute-value@4.2.0': {} + /@svgr/babel-plugin-replace-jsx-attribute-value@4.2.0: + resolution: {integrity: sha512-U9m870Kqm0ko8beHawRXLGLvSi/ZMrl89gJ5BNcT452fAjtF2p4uRzXkdzvGJJJYBgx7BmqlDjBN/eCp5AAX2w==} + engines: {node: '>=8'} + dev: true - '@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1': {} + /@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1: + resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==} + engines: {node: '>=10'} + dev: true - '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.24.7)': + /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.24.7): + resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 - '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.24.7)': + /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.24.7): + resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 + dev: true - '@svgr/babel-plugin-svg-dynamic-title@4.3.3': {} + /@svgr/babel-plugin-svg-dynamic-title@4.3.3: + resolution: {integrity: sha512-w3Be6xUNdwgParsvxkkeZb545VhXEwjGMwExMVBIdPQJeyMQHqm9Msnb2a1teHBqUYL66qtwfhNkbj1iarCG7w==} + engines: {node: '>=8'} + dev: true - '@svgr/babel-plugin-svg-dynamic-title@5.4.0': {} + /@svgr/babel-plugin-svg-dynamic-title@5.4.0: + resolution: {integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==} + engines: {node: '>=10'} + dev: true - '@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.24.7)': + /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.24.7): + resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 - '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.24.7)': + /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.24.7): + resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 + dev: true - '@svgr/babel-plugin-svg-em-dimensions@4.2.0': {} + /@svgr/babel-plugin-svg-em-dimensions@4.2.0: + resolution: {integrity: sha512-C0Uy+BHolCHGOZ8Dnr1zXy/KgpBOkEUYY9kI/HseHVPeMbluaX3CijJr7D4C5uR8zrc1T64nnq/k63ydQuGt4w==} + engines: {node: '>=8'} + dev: true - '@svgr/babel-plugin-svg-em-dimensions@5.4.0': {} + /@svgr/babel-plugin-svg-em-dimensions@5.4.0: + resolution: {integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==} + engines: {node: '>=10'} + dev: true - '@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.24.7)': + /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.24.7): + resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 - '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.24.7)': + /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.24.7): + resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 + dev: true - '@svgr/babel-plugin-transform-react-native-svg@4.2.0': {} + /@svgr/babel-plugin-transform-react-native-svg@4.2.0: + resolution: {integrity: sha512-7YvynOpZDpCOUoIVlaaOUU87J4Z6RdD6spYN4eUb5tfPoKGSF9OG2NuhgYnq4jSkAxcpMaXWPf1cePkzmqTPNw==} + engines: {node: '>=8'} + dev: true - '@svgr/babel-plugin-transform-react-native-svg@5.4.0': {} + /@svgr/babel-plugin-transform-react-native-svg@5.4.0: + resolution: {integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==} + engines: {node: '>=10'} + dev: true - '@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.24.7)': + /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.24.7): + resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 - '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.24.7)': + /@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.24.7): + resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 + dev: true - '@svgr/babel-plugin-transform-svg-component@4.2.0': {} + /@svgr/babel-plugin-transform-svg-component@4.2.0: + resolution: {integrity: sha512-hYfYuZhQPCBVotABsXKSCfel2slf/yvJY8heTVX1PCTaq/IgASq1IyxPPKJ0chWREEKewIU/JMSsIGBtK1KKxw==} + engines: {node: '>=8'} + dev: true - '@svgr/babel-plugin-transform-svg-component@5.5.0': {} + /@svgr/babel-plugin-transform-svg-component@5.5.0: + resolution: {integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==} + engines: {node: '>=10'} + dev: true - '@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.24.7)': + /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.24.7): + resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} + engines: {node: '>=12'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 - '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.24.7)': + /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.24.7): + resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==} + engines: {node: '>=12'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 + dev: true - '@svgr/babel-preset@4.3.3': + /@svgr/babel-preset@4.3.3: + resolution: {integrity: sha512-6PG80tdz4eAlYUN3g5GZiUjg2FMcp+Wn6rtnz5WJG9ITGEF1pmFdzq02597Hn0OmnQuCVaBYQE1OVFAnwOl+0A==} + engines: {node: '>=8'} dependencies: '@svgr/babel-plugin-add-jsx-attribute': 4.2.0 '@svgr/babel-plugin-remove-jsx-attribute': 4.2.0 @@ -40023,8 +28294,11 @@ snapshots: '@svgr/babel-plugin-svg-em-dimensions': 4.2.0 '@svgr/babel-plugin-transform-react-native-svg': 4.2.0 '@svgr/babel-plugin-transform-svg-component': 4.2.0 + dev: true - '@svgr/babel-preset@5.5.0': + /@svgr/babel-preset@5.5.0: + resolution: {integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==} + engines: {node: '>=10'} dependencies: '@svgr/babel-plugin-add-jsx-attribute': 5.4.0 '@svgr/babel-plugin-remove-jsx-attribute': 5.4.0 @@ -40034,8 +28308,13 @@ snapshots: '@svgr/babel-plugin-svg-em-dimensions': 5.4.0 '@svgr/babel-plugin-transform-react-native-svg': 5.4.0 '@svgr/babel-plugin-transform-svg-component': 5.5.0 + dev: true - '@svgr/babel-preset@6.5.1(@babel/core@7.24.7)': + /@svgr/babel-preset@6.5.1(@babel/core@7.24.7): + resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.24.7) @@ -40047,7 +28326,11 @@ snapshots: '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.24.7) '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.24.7) - '@svgr/babel-preset@8.1.0(@babel/core@7.24.7)': + /@svgr/babel-preset@8.1.0(@babel/core@7.24.7): + resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.24.7) @@ -40058,24 +28341,33 @@ snapshots: '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.24.7) '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.24.7) '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.24.7) + dev: true - '@svgr/core@4.3.3': + /@svgr/core@4.3.3: + resolution: {integrity: sha512-qNuGF1QON1626UCaZamWt5yedpgOytvLj5BQZe2j1k1B8DUG4OyugZyfEwBeXozCUwhLEpsrgPrE+eCu4fY17w==} + engines: {node: '>=8'} dependencies: '@svgr/plugin-jsx': 4.3.3 camelcase: 5.3.1 cosmiconfig: 5.2.1 transitivePeerDependencies: - supports-color + dev: true - '@svgr/core@5.5.0': + /@svgr/core@5.5.0: + resolution: {integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==} + engines: {node: '>=10'} dependencies: '@svgr/plugin-jsx': 5.5.0 camelcase: 6.3.0 cosmiconfig: 7.1.0 transitivePeerDependencies: - supports-color + dev: true - '@svgr/core@6.5.1': + /@svgr/core@6.5.1: + resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} + engines: {node: '>=10'} dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 6.5.1(@babel/core@7.24.7) @@ -40085,7 +28377,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@svgr/core@8.1.0(typescript@5.1.6)': + /@svgr/core@8.1.0(typescript@5.1.6): + resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==} + engines: {node: '>=14'} dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 8.1.0(@babel/core@7.24.7) @@ -40095,26 +28389,40 @@ snapshots: transitivePeerDependencies: - supports-color - typescript + dev: true - '@svgr/hast-util-to-babel-ast@4.3.2': + /@svgr/hast-util-to-babel-ast@4.3.2: + resolution: {integrity: sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg==} + engines: {node: '>=8'} dependencies: '@babel/types': 7.24.7 + dev: true - '@svgr/hast-util-to-babel-ast@5.5.0': + /@svgr/hast-util-to-babel-ast@5.5.0: + resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} + engines: {node: '>=10'} dependencies: '@babel/types': 7.24.7 + dev: true - '@svgr/hast-util-to-babel-ast@6.5.1': + /@svgr/hast-util-to-babel-ast@6.5.1: + resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} + engines: {node: '>=10'} dependencies: '@babel/types': 7.24.7 entities: 4.5.0 - '@svgr/hast-util-to-babel-ast@8.0.0': + /@svgr/hast-util-to-babel-ast@8.0.0: + resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==} + engines: {node: '>=14'} dependencies: '@babel/types': 7.24.7 entities: 4.5.0 + dev: true - '@svgr/plugin-jsx@4.3.3': + /@svgr/plugin-jsx@4.3.3: + resolution: {integrity: sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w==} + engines: {node: '>=8'} dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 4.3.3 @@ -40122,8 +28430,11 @@ snapshots: svg-parser: 2.0.4 transitivePeerDependencies: - supports-color + dev: true - '@svgr/plugin-jsx@5.5.0': + /@svgr/plugin-jsx@5.5.0: + resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} + engines: {node: '>=10'} dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 5.5.0 @@ -40131,8 +28442,13 @@ snapshots: svg-parser: 2.0.4 transitivePeerDependencies: - supports-color + dev: true - '@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1)': + /@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1): + resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==} + engines: {node: '>=10'} + peerDependencies: + '@svgr/core': ^6.0.0 dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 6.5.1(@babel/core@7.24.7) @@ -40142,7 +28458,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.1.6))': + /@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0): + resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==} + engines: {node: '>=14'} + peerDependencies: + '@svgr/core': '*' dependencies: '@babel/core': 7.24.7 '@svgr/babel-preset': 8.1.0(@babel/core@7.24.7) @@ -40151,27 +28471,42 @@ snapshots: svg-parser: 2.0.4 transitivePeerDependencies: - supports-color + dev: true - '@svgr/plugin-svgo@4.3.1': + /@svgr/plugin-svgo@4.3.1: + resolution: {integrity: sha512-PrMtEDUWjX3Ea65JsVCwTIXuSqa3CG9px+DluF1/eo9mlDrgrtFE7NE/DjdhjJgSM9wenlVBzkzneSIUgfUI/w==} + engines: {node: '>=8'} dependencies: cosmiconfig: 5.2.1 merge-deep: 3.0.3 svgo: 1.3.2 + dev: true - '@svgr/plugin-svgo@5.5.0': + /@svgr/plugin-svgo@5.5.0: + resolution: {integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==} + engines: {node: '>=10'} dependencies: cosmiconfig: 7.1.0 deepmerge: 4.3.1 svgo: 1.3.2 + dev: true - '@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1)': + /@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1): + resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==} + engines: {node: '>=10'} + peerDependencies: + '@svgr/core': '*' dependencies: '@svgr/core': 6.5.1 cosmiconfig: 7.1.0 deepmerge: 4.3.1 svgo: 2.8.0 - '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.1.6))(typescript@5.1.6)': + /@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0)(typescript@5.1.6): + resolution: {integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==} + engines: {node: '>=14'} + peerDependencies: + '@svgr/core': '*' dependencies: '@svgr/core': 8.1.0(typescript@5.1.6) cosmiconfig: 8.3.6(typescript@5.1.6) @@ -40179,8 +28514,11 @@ snapshots: svgo: 3.3.2 transitivePeerDependencies: - typescript + dev: true - '@svgr/rollup@6.5.1': + /@svgr/rollup@6.5.1: + resolution: {integrity: sha512-GeUfq0grJfpcn2jRWRaZ4npn27nnWK21vUj6MqDqknuJnEqGADcZZjO9wrUAaPLr3InAnQi0Z7nwiNUdzkaj6A==} + engines: {node: '>=10'} dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) @@ -40193,8 +28531,11 @@ snapshots: '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1) transitivePeerDependencies: - supports-color + dev: true - '@svgr/webpack@4.3.2': + /@svgr/webpack@4.3.2: + resolution: {integrity: sha512-F3VE5OvyOWBEd2bF7BdtFRyI6E9it3mN7teDw0JQTlVtc4HZEYiiLSl+Uf9Uub6IYHVGc+qIrxxDyeedkQru2w==} + engines: {node: '>=8'} dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) @@ -40206,8 +28547,11 @@ snapshots: loader-utils: 1.4.2 transitivePeerDependencies: - supports-color + dev: true - '@svgr/webpack@5.5.0': + /@svgr/webpack@5.5.0: + resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==} + engines: {node: '>=10'} dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) @@ -40219,8 +28563,11 @@ snapshots: loader-utils: 2.0.4 transitivePeerDependencies: - supports-color + dev: true - '@svgr/webpack@6.5.1': + /@svgr/webpack@6.5.1: + resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==} + engines: {node: '>=10'} dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) @@ -40232,8 +28579,11 @@ snapshots: '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1) transitivePeerDependencies: - supports-color + dev: false - '@svgr/webpack@8.1.0(typescript@5.1.6)': + /@svgr/webpack@8.1.0(typescript@5.1.6): + resolution: {integrity: sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==} + engines: {node: '>=14'} dependencies: '@babel/core': 7.24.7 '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) @@ -40241,37 +28591,60 @@ snapshots: '@babel/preset-react': 7.24.7(@babel/core@7.24.7) '@babel/preset-typescript': 7.24.7(@babel/core@7.24.7) '@svgr/core': 8.1.0(typescript@5.1.6) - '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.1.6)) - '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.1.6))(typescript@5.1.6) + '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0) + '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0)(typescript@5.1.6) transitivePeerDependencies: - supports-color - typescript + dev: true - '@swc-node/core@1.13.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)': + /@swc-node/core@1.13.1(@swc/core@1.3.99)(@swc/types@0.1.9): + resolution: {integrity: sha512-emB5l2nZsXjUEAuusqjYvWnQMLWZp6K039Mv8aq5SX1rsNM/N7DNhw1i4/DX7AyzNZ0tT+ASWyTvqEURldp5HA==} + engines: {node: '>= 10'} + peerDependencies: + '@swc/core': '>= 1.4.13' + '@swc/types': '>= 0.1' dependencies: '@swc/core': 1.3.99(@swc/helpers@0.5.9) '@swc/types': 0.1.9 + dev: true - '@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6)': + /@swc-node/register@1.6.8(@swc/core@1.3.99)(@swc/types@0.1.9)(typescript@5.1.6): + resolution: {integrity: sha512-74ijy7J9CWr1Z88yO+ykXphV29giCrSpANQPQRooE0bObpkTO1g4RzQovIfbIaniBiGDDVsYwDoQ3FIrCE8HcQ==} + peerDependencies: + '@swc/core': '>= 1.3' + typescript: '>= 4.3' dependencies: - '@swc-node/core': 1.13.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9) + '@swc-node/core': 1.13.1(@swc/core@1.3.99)(@swc/types@0.1.9) '@swc-node/sourcemap-support': 0.3.0 '@swc/core': 1.3.99(@swc/helpers@0.5.9) colorette: 2.0.20 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) pirates: 4.0.6 tslib: 2.6.3 typescript: 5.1.6 transitivePeerDependencies: - '@swc/types' - supports-color + dev: true - '@swc-node/sourcemap-support@0.3.0': + /@swc-node/sourcemap-support@0.3.0: + resolution: {integrity: sha512-gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA==} dependencies: source-map-support: 0.5.21 tslib: 2.6.3 + dev: true - '@swc/cli@0.1.65(@swc/core@1.3.99(@swc/helpers@0.5.9))(chokidar@3.6.0)': + /@swc/cli@0.1.65(@swc/core@1.3.99): + resolution: {integrity: sha512-4NcgsvJVHhA7trDnMmkGLLvWMHu2kSy+qHx6QwRhhJhdiYdNUrhdp+ERxen73sYtaeEOYeLJcWrQ60nzKi6rpg==} + engines: {node: '>= 12.13'} + hasBin: true + peerDependencies: + '@swc/core': ^1.2.66 + chokidar: ^3.5.1 + peerDependenciesMeta: + chokidar: + optional: true dependencies: '@mole-inc/bin-wrapper': 8.0.1 '@swc/core': 1.3.99(@swc/helpers@0.5.9) @@ -40281,39 +28654,92 @@ snapshots: semver: 7.6.2 slash: 3.0.0 source-map: 0.7.4 - optionalDependencies: - chokidar: 3.6.0 + dev: true - '@swc/core-darwin-arm64@1.3.99': + /@swc/core-darwin-arm64@1.3.99: + resolution: {integrity: sha512-Qj7Jct68q3ZKeuJrjPx7k8SxzWN6PqLh+VFxzA+KwLDpQDPzOlKRZwkIMzuFjLhITO4RHgSnXoDk/Syz0ZeN+Q==} + engines: {node: '>=10'} + cpu: [arm64] + os: [darwin] + requiresBuild: true optional: true - '@swc/core-darwin-x64@1.3.99': + /@swc/core-darwin-x64@1.3.99: + resolution: {integrity: sha512-wR7m9QVJjgiBu1PSOHy7s66uJPa45Kf9bZExXUL+JAa9OQxt5y+XVzr+n+F045VXQOwdGWplgPnWjgbUUHEVyw==} + engines: {node: '>=10'} + cpu: [x64] + os: [darwin] + requiresBuild: true optional: true - '@swc/core-linux-arm64-gnu@1.3.99': + /@swc/core-linux-arm64-gnu@1.3.99: + resolution: {integrity: sha512-gcGv1l5t0DScEONmw5OhdVmEI/o49HCe9Ik38zzH0NtDkc+PDYaCcXU5rvfZP2qJFaAAr8cua8iJcOunOSLmnA==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + requiresBuild: true optional: true - '@swc/core-linux-arm64-musl@1.3.99': + /@swc/core-linux-arm64-musl@1.3.99: + resolution: {integrity: sha512-XL1/eUsTO8BiKsWq9i3iWh7H99iPO61+9HYiWVKhSavknfj4Plbn+XyajDpxsauln5o8t+BRGitymtnAWJM4UQ==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + requiresBuild: true optional: true - '@swc/core-linux-x64-gnu@1.3.99': + /@swc/core-linux-x64-gnu@1.3.99: + resolution: {integrity: sha512-fGrXYE6DbTfGNIGQmBefYxSk3rp/1lgbD0nVg4rl4mfFRQPi7CgGhrrqSuqZ/ezXInUIgoCyvYGWFSwjLXt/Qg==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + requiresBuild: true optional: true - '@swc/core-linux-x64-musl@1.3.99': + /@swc/core-linux-x64-musl@1.3.99: + resolution: {integrity: sha512-kvgZp/mqf3IJ806gUOL6gN6VU15+DfzM1Zv4Udn8GqgXiUAvbQehrtruid4Snn5pZTLj4PEpSCBbxgxK1jbssA==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + requiresBuild: true optional: true - '@swc/core-win32-arm64-msvc@1.3.99': + /@swc/core-win32-arm64-msvc@1.3.99: + resolution: {integrity: sha512-yt8RtZ4W/QgFF+JUemOUQAkVW58cCST7mbfKFZ1v16w3pl3NcWd9OrtppFIXpbjU1rrUX2zp2R7HZZzZ2Zk/aQ==} + engines: {node: '>=10'} + cpu: [arm64] + os: [win32] + requiresBuild: true optional: true - '@swc/core-win32-ia32-msvc@1.3.99': + /@swc/core-win32-ia32-msvc@1.3.99: + resolution: {integrity: sha512-62p5fWnOJR/rlbmbUIpQEVRconICy5KDScWVuJg1v3GPLBrmacjphyHiJC1mp6dYvvoEWCk/77c/jcQwlXrDXw==} + engines: {node: '>=10'} + cpu: [ia32] + os: [win32] + requiresBuild: true optional: true - '@swc/core-win32-x64-msvc@1.3.99': + /@swc/core-win32-x64-msvc@1.3.99: + resolution: {integrity: sha512-PdppWhkoS45VGdMBxvClVgF1hVjqamtvYd82Gab1i4IV45OSym2KinoDCKE1b6j3LwBLOn2J9fvChGSgGfDCHQ==} + engines: {node: '>=10'} + cpu: [x64] + os: [win32] + requiresBuild: true optional: true - '@swc/core@1.3.99(@swc/helpers@0.5.9)': + /@swc/core@1.3.99(@swc/helpers@0.5.9): + resolution: {integrity: sha512-8O996RfuPC4ieb4zbYMfbyCU9k4gSOpyCNnr7qBQ+o7IEmh8JCV6B8wwu+fT/Om/6Lp34KJe1IpJ/24axKS6TQ==} + engines: {node: '>=10'} + requiresBuild: true + peerDependencies: + '@swc/helpers': ^0.5.0 + peerDependenciesMeta: + '@swc/helpers': + optional: true dependencies: '@swc/counter': 0.1.3 + '@swc/helpers': 0.5.9 '@swc/types': 0.1.9 optionalDependencies: '@swc/core-darwin-arm64': 1.3.99 @@ -40325,27 +28751,37 @@ snapshots: '@swc/core-win32-arm64-msvc': 1.3.99 '@swc/core-win32-ia32-msvc': 1.3.99 '@swc/core-win32-x64-msvc': 1.3.99 - '@swc/helpers': 0.5.9 - '@swc/counter@0.1.3': {} + /@swc/counter@0.1.3: + resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} - '@swc/helpers@0.5.9': + /@swc/helpers@0.5.9: + resolution: {integrity: sha512-XI76sLwMJoLjJTOK5RblBZkouOJG3X3hjxLCzLnyN1ifAiKQc6Hck3uvnU4Z/dV/Dyk36Ffj8FLvDLV2oWvKTw==} dependencies: tslib: 2.6.3 - '@swc/types@0.1.9': + /@swc/types@0.1.9: + resolution: {integrity: sha512-qKnCno++jzcJ4lM4NTfYifm1EFSCeIfKiAHAfkENZAV5Kl9PjJIyd2yeeVv6c/2CckuLyv2NmRC5pv6pm2WQBg==} dependencies: '@swc/counter': 0.1.3 - '@szmarczak/http-timer@1.1.2': + /@szmarczak/http-timer@1.1.2: + resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} + engines: {node: '>=6'} dependencies: defer-to-connect: 1.1.3 + dev: false - '@szmarczak/http-timer@4.0.6': + /@szmarczak/http-timer@4.0.6: + resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} + engines: {node: '>=10'} dependencies: defer-to-connect: 2.0.1 + dev: true - '@testing-library/dom@7.31.2': + /@testing-library/dom@7.31.2: + resolution: {integrity: sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==} + engines: {node: '>=10'} dependencies: '@babel/code-frame': 7.24.7 '@babel/runtime': 7.24.7 @@ -40355,8 +28791,11 @@ snapshots: dom-accessibility-api: 0.5.16 lz-string: 1.5.0 pretty-format: 26.6.2 + dev: true - '@testing-library/dom@8.20.1': + /@testing-library/dom@8.20.1: + resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==} + engines: {node: '>=12'} dependencies: '@babel/code-frame': 7.24.7 '@babel/runtime': 7.24.7 @@ -40366,8 +28805,11 @@ snapshots: dom-accessibility-api: 0.5.16 lz-string: 1.5.0 pretty-format: 27.5.1 + dev: true - '@testing-library/dom@9.3.4': + /@testing-library/dom@9.3.4: + resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} + engines: {node: '>=14'} dependencies: '@babel/code-frame': 7.24.7 '@babel/runtime': 7.24.7 @@ -40377,8 +28819,11 @@ snapshots: dom-accessibility-api: 0.5.16 lz-string: 1.5.0 pretty-format: 27.5.1 + dev: true - '@testing-library/jest-dom@5.17.0': + /@testing-library/jest-dom@5.17.0: + resolution: {integrity: sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==} + engines: {node: '>=8', npm: '>=6', yarn: '>=1'} dependencies: '@adobe/css-tools': 4.4.0 '@babel/runtime': 7.24.7 @@ -40389,75 +28834,151 @@ snapshots: dom-accessibility-api: 0.5.16 lodash: 4.17.21 redent: 3.0.0 + dev: true - '@testing-library/jest-dom@6.4.6(@jest/globals@29.7.0)(@types/jest@29.4.4)(jest@29.4.3(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)))': + /@testing-library/jest-dom@6.4.6(@types/jest@29.4.4)(jest@29.4.3): + resolution: {integrity: sha512-8qpnGVincVDLEcQXWaHOf6zmlbwTKc6Us6PPu4CRnPXCzo2OGBS5cwgMMOWdxDpEz1mkbvXHpEy99M5Yvt682w==} + engines: {node: '>=14', npm: '>=6', yarn: '>=1'} + peerDependencies: + '@jest/globals': '>= 28' + '@types/bun': latest + '@types/jest': '>= 28' + jest: '>= 28' + vitest: '>= 0.32' + peerDependenciesMeta: + '@jest/globals': + optional: true + '@types/bun': + optional: true + '@types/jest': + optional: true + jest: + optional: true + vitest: + optional: true dependencies: '@adobe/css-tools': 4.4.0 '@babel/runtime': 7.24.7 + '@types/jest': 29.4.4 aria-query: 5.3.0 chalk: 3.0.0 css.escape: 1.5.1 dom-accessibility-api: 0.6.3 + jest: 29.4.3(@types/node@18.11.9) lodash: 4.17.21 redent: 3.0.0 - optionalDependencies: - '@jest/globals': 29.7.0 - '@types/jest': 29.4.4 - jest: 29.4.3(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) + dev: true - '@testing-library/jest-dom@6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))': + /@testing-library/jest-dom@6.4.6(@types/jest@29.5.12)(jest@29.7.0): + resolution: {integrity: sha512-8qpnGVincVDLEcQXWaHOf6zmlbwTKc6Us6PPu4CRnPXCzo2OGBS5cwgMMOWdxDpEz1mkbvXHpEy99M5Yvt682w==} + engines: {node: '>=14', npm: '>=6', yarn: '>=1'} + peerDependencies: + '@jest/globals': '>= 28' + '@types/bun': latest + '@types/jest': '>= 28' + jest: '>= 28' + vitest: '>= 0.32' + peerDependenciesMeta: + '@jest/globals': + optional: true + '@types/bun': + optional: true + '@types/jest': + optional: true + jest: + optional: true + vitest: + optional: true dependencies: '@adobe/css-tools': 4.4.0 '@babel/runtime': 7.24.7 + '@types/jest': 29.5.12 aria-query: 5.3.0 chalk: 3.0.0 css.escape: 1.5.1 dom-accessibility-api: 0.6.3 + jest: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) lodash: 4.17.21 redent: 3.0.0 - optionalDependencies: - '@jest/globals': 29.7.0 - '@types/jest': 29.5.12 - jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + dev: true - '@testing-library/react@14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + /@testing-library/react@14.3.1(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==} + engines: {node: '>=14'} + peerDependencies: + react: ^18.0.0 + react-dom: ^18.0.0 dependencies: '@babel/runtime': 7.24.7 '@testing-library/dom': 9.3.4 '@types/react-dom': 18.3.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + dev: true - '@testing-library/user-event@12.8.3(@testing-library/dom@7.31.2)': + /@testing-library/user-event@12.8.3(@testing-library/dom@7.31.2): + resolution: {integrity: sha512-IR0iWbFkgd56Bu5ZI/ej8yQwrkCv8Qydx6RzwbKz9faXazR/+5tvYKsZQgyXJiwgpcva127YO6JcWy7YlCfofQ==} + engines: {node: '>=10', npm: '>=6'} + peerDependencies: + '@testing-library/dom': '>=7.21.4' dependencies: '@babel/runtime': 7.24.7 '@testing-library/dom': 7.31.2 + dev: true - '@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4)': + /@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4): + resolution: {integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==} + engines: {node: '>=12', npm: '>=6'} + peerDependencies: + '@testing-library/dom': '>=7.21.4' dependencies: '@testing-library/dom': 9.3.4 + dev: true - '@tokenizer/token@0.3.0': {} + /@tokenizer/token@0.3.0: + resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} + dev: true - '@tootallnate/once@1.1.2': {} + /@tootallnate/once@1.1.2: + resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} + engines: {node: '>= 6'} + dev: true - '@tootallnate/once@2.0.0': {} + /@tootallnate/once@2.0.0: + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} + dev: true - '@trysound/sax@0.2.0': {} + /@trysound/sax@0.2.0: + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} - '@tsconfig/node10@1.0.11': {} + /@tsconfig/node10@1.0.11: + resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} + dev: true - '@tsconfig/node12@1.0.11': {} + /@tsconfig/node12@1.0.11: + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + dev: true - '@tsconfig/node14@1.0.3': {} + /@tsconfig/node14@1.0.3: + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + dev: true - '@tsconfig/node16@1.0.4': {} + /@tsconfig/node16@1.0.4: + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + dev: true - '@types/aria-query@4.2.2': {} + /@types/aria-query@4.2.2: + resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} + dev: true - '@types/aria-query@5.0.4': {} + /@types/aria-query@5.0.4: + resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} + dev: true - '@types/babel__core@7.20.5': + /@types/babel__core@7.20.5: + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} dependencies: '@babel/parser': 7.24.7 '@babel/types': 7.24.7 @@ -40465,143 +28986,226 @@ snapshots: '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.6 - '@types/babel__generator@7.6.8': + /@types/babel__generator@7.6.8: + resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} dependencies: '@babel/types': 7.24.7 - '@types/babel__template@7.4.4': + /@types/babel__template@7.4.4: + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} dependencies: '@babel/parser': 7.24.7 '@babel/types': 7.24.7 - '@types/babel__traverse@7.20.6': + /@types/babel__traverse@7.20.6: + resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} dependencies: '@babel/types': 7.24.7 - '@types/body-parser@1.19.5': + /@types/body-parser@1.19.5: + resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} dependencies: '@types/connect': 3.4.38 '@types/node': 13.13.52 + dev: true - '@types/bonjour@3.5.13': + /@types/bonjour@3.5.13: + resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/cacheable-request@6.0.3': + /@types/cacheable-request@6.0.3: + resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} dependencies: '@types/http-cache-semantics': 4.0.4 '@types/keyv': 3.1.4 '@types/node': 13.13.52 '@types/responselike': 1.0.3 + dev: true - '@types/connect-history-api-fallback@1.5.4': + /@types/connect-history-api-fallback@1.5.4: + resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} dependencies: '@types/express-serve-static-core': 4.19.5 '@types/node': 13.13.52 + dev: true - '@types/connect@3.4.38': + /@types/connect@3.4.38: + resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/cookie@0.4.1': {} + /@types/cookie@0.4.1: + resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==} + dev: true - '@types/cross-spawn@6.0.6': + /@types/cross-spawn@6.0.6: + resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/crypto-js@3.1.47': {} + /@types/crypto-js@3.1.47: + resolution: {integrity: sha512-eI6gvpcGHLk3dAuHYnRCAjX+41gMv1nz/VP55wAe5HtmAKDOoPSfr3f6vkMc08ov1S0NsjvUBxDtHHxqQY1LGA==} + dev: true - '@types/cssnano@5.1.0(postcss@8.4.39)': + /@types/cssnano@5.1.0(postcss@8.4.39): + resolution: {integrity: sha512-ikR+18UpFGgvaWSur4og6SJYF/6QEYHXvrIt36dp81p1MG3cAPTYDMBJGeyWa3LCnqEbgNMHKRb+FP0NrXtoWQ==} + deprecated: This is a stub types definition. cssnano provides its own type definitions, so you do not need this installed. dependencies: cssnano: 5.1.15(postcss@8.4.39) transitivePeerDependencies: - postcss + dev: true - '@types/d3-array@3.2.1': {} + /@types/d3-array@3.2.1: + resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==} + dev: false - '@types/d3-axis@3.0.6': + /@types/d3-axis@3.0.6: + resolution: {integrity: sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==} dependencies: '@types/d3-selection': 3.0.10 + dev: false - '@types/d3-brush@3.0.6': + /@types/d3-brush@3.0.6: + resolution: {integrity: sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==} dependencies: '@types/d3-selection': 3.0.10 + dev: false - '@types/d3-chord@3.0.6': {} + /@types/d3-chord@3.0.6: + resolution: {integrity: sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==} + dev: false - '@types/d3-color@3.1.3': {} + /@types/d3-color@3.1.3: + resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==} + dev: false - '@types/d3-contour@3.0.6': + /@types/d3-contour@3.0.6: + resolution: {integrity: sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==} dependencies: '@types/d3-array': 3.2.1 '@types/geojson': 7946.0.14 + dev: false - '@types/d3-delaunay@6.0.4': {} + /@types/d3-delaunay@6.0.4: + resolution: {integrity: sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==} + dev: false - '@types/d3-dispatch@3.0.6': {} + /@types/d3-dispatch@3.0.6: + resolution: {integrity: sha512-4fvZhzMeeuBJYZXRXrRIQnvUYfyXwYmLsdiN7XXmVNQKKw1cM8a5WdID0g1hVFZDqT9ZqZEY5pD44p24VS7iZQ==} + dev: false - '@types/d3-drag@3.0.7': + /@types/d3-drag@3.0.7: + resolution: {integrity: sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==} dependencies: '@types/d3-selection': 3.0.10 + dev: false - '@types/d3-dsv@3.0.7': {} + /@types/d3-dsv@3.0.7: + resolution: {integrity: sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==} + dev: false - '@types/d3-ease@3.0.2': {} + /@types/d3-ease@3.0.2: + resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==} + dev: false - '@types/d3-fetch@3.0.7': + /@types/d3-fetch@3.0.7: + resolution: {integrity: sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==} dependencies: '@types/d3-dsv': 3.0.7 + dev: false - '@types/d3-force@3.0.10': {} + /@types/d3-force@3.0.10: + resolution: {integrity: sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==} + dev: false - '@types/d3-format@3.0.4': {} + /@types/d3-format@3.0.4: + resolution: {integrity: sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==} + dev: false - '@types/d3-geo@3.1.0': + /@types/d3-geo@3.1.0: + resolution: {integrity: sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==} dependencies: '@types/geojson': 7946.0.14 + dev: false - '@types/d3-hierarchy@3.1.7': {} + /@types/d3-hierarchy@3.1.7: + resolution: {integrity: sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==} + dev: false - '@types/d3-interpolate@3.0.4': + /@types/d3-interpolate@3.0.4: + resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==} dependencies: '@types/d3-color': 3.1.3 + dev: false - '@types/d3-path@3.1.0': {} + /@types/d3-path@3.1.0: + resolution: {integrity: sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==} + dev: false - '@types/d3-polygon@3.0.2': {} + /@types/d3-polygon@3.0.2: + resolution: {integrity: sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==} + dev: false - '@types/d3-quadtree@3.0.6': {} + /@types/d3-quadtree@3.0.6: + resolution: {integrity: sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==} + dev: false - '@types/d3-random@3.0.3': {} + /@types/d3-random@3.0.3: + resolution: {integrity: sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==} + dev: false - '@types/d3-scale-chromatic@3.0.3': {} + /@types/d3-scale-chromatic@3.0.3: + resolution: {integrity: sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==} + dev: false - '@types/d3-scale@4.0.8': + /@types/d3-scale@4.0.8: + resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==} dependencies: '@types/d3-time': 3.0.3 + dev: false - '@types/d3-selection@3.0.10': {} + /@types/d3-selection@3.0.10: + resolution: {integrity: sha512-cuHoUgS/V3hLdjJOLTT691+G2QoqAjCVLmr4kJXR4ha56w1Zdu8UUQ5TxLRqudgNjwXeQxKMq4j+lyf9sWuslg==} + dev: false - '@types/d3-shape@3.1.6': + /@types/d3-shape@3.1.6: + resolution: {integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==} dependencies: '@types/d3-path': 3.1.0 + dev: false - '@types/d3-time-format@4.0.3': {} + /@types/d3-time-format@4.0.3: + resolution: {integrity: sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==} + dev: false - '@types/d3-time@3.0.3': {} + /@types/d3-time@3.0.3: + resolution: {integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==} + dev: false - '@types/d3-timer@3.0.2': {} + /@types/d3-timer@3.0.2: + resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==} + dev: false - '@types/d3-transition@3.0.8': + /@types/d3-transition@3.0.8: + resolution: {integrity: sha512-ew63aJfQ/ms7QQ4X7pk5NxQ9fZH/z+i24ZfJ6tJSfqxJMrYLiK01EAs2/Rtw/JreGUsS3pLPNV644qXFGnoZNQ==} dependencies: '@types/d3-selection': 3.0.10 + dev: false - '@types/d3-zoom@3.0.8': + /@types/d3-zoom@3.0.8: + resolution: {integrity: sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==} dependencies: '@types/d3-interpolate': 3.0.4 '@types/d3-selection': 3.0.10 + dev: false - '@types/d3@7.4.3': + /@types/d3@7.4.3: + resolution: {integrity: sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==} dependencies: '@types/d3-array': 3.2.1 '@types/d3-axis': 3.0.6 @@ -40633,379 +29237,576 @@ snapshots: '@types/d3-timer': 3.0.2 '@types/d3-transition': 3.0.8 '@types/d3-zoom': 3.0.8 + dev: false - '@types/debug@4.1.12': + /@types/debug@4.1.12: + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} dependencies: '@types/ms': 0.7.34 + dev: false - '@types/detect-port@1.3.5': {} + /@types/detect-port@1.3.5: + resolution: {integrity: sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==} + dev: true - '@types/doctrine@0.0.3': {} + /@types/doctrine@0.0.3: + resolution: {integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==} + dev: true - '@types/doctrine@0.0.9': {} + /@types/doctrine@0.0.9: + resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==} + dev: true - '@types/ejs@3.1.5': {} + /@types/ejs@3.1.5: + resolution: {integrity: sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==} + dev: true - '@types/emscripten@1.39.13': {} + /@types/emscripten@1.39.13: + resolution: {integrity: sha512-cFq+fO/isvhvmuP/+Sl4K4jtU6E23DoivtbO4r50e3odaxAiVdbfSYRDdJ4gCdxx+3aRjhphS5ZMwIH4hFy/Cw==} + dev: true - '@types/escodegen@0.0.6': {} + /@types/escodegen@0.0.6: + resolution: {integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==} + dev: true - '@types/eslint-scope@3.7.7': + /@types/eslint-scope@3.7.7: + resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} dependencies: '@types/eslint': 8.56.10 '@types/estree': 1.0.5 - '@types/eslint@7.29.0': + /@types/eslint@7.29.0: + resolution: {integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==} dependencies: '@types/estree': 1.0.5 '@types/json-schema': 7.0.15 + dev: true - '@types/eslint@8.56.10': + /@types/eslint@8.56.10: + resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==} dependencies: '@types/estree': 1.0.5 '@types/json-schema': 7.0.15 - '@types/estree-jsx@1.0.5': + /@types/estree-jsx@1.0.5: + resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} dependencies: '@types/estree': 1.0.5 + dev: false - '@types/estree@0.0.39': {} + /@types/estree@0.0.39: + resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} + dev: true - '@types/estree@0.0.51': {} + /@types/estree@0.0.51: + resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} - '@types/estree@1.0.5': {} + /@types/estree@1.0.5: + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} - '@types/express-serve-static-core@4.19.5': + /@types/express-serve-static-core@4.19.5: + resolution: {integrity: sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==} dependencies: '@types/node': 13.13.52 '@types/qs': 6.9.15 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 + dev: true - '@types/express@4.17.21': + /@types/express@4.17.21: + resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} dependencies: '@types/body-parser': 1.19.5 '@types/express-serve-static-core': 4.19.5 '@types/qs': 6.9.15 '@types/serve-static': 1.15.7 + dev: true - '@types/file-saver@2.0.7': {} + /@types/file-saver@2.0.7: + resolution: {integrity: sha512-dNKVfHd/jk0SkR/exKGj2ggkB45MAkzvWCaqLUUgkyjITkGNzH8H+yUwr+BLJUBjZOe9w8X3wgmXhZDRg1ED6A==} + dev: true - '@types/find-cache-dir@3.2.1': {} + /@types/find-cache-dir@3.2.1: + resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==} + dev: true - '@types/fs-extra@8.1.5': + /@types/fs-extra@8.1.5: + resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/geojson@7946.0.14': {} + /@types/geojson@7946.0.14: + resolution: {integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==} + dev: false - '@types/glob@7.2.0': + /@types/glob@7.2.0: + resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 5.1.2 '@types/node': 13.13.52 - '@types/glob@8.1.0': + /@types/glob@8.1.0: + resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==} dependencies: '@types/minimatch': 5.1.2 '@types/node': 13.13.52 + dev: false - '@types/graceful-fs@4.1.9': + /@types/graceful-fs@4.1.9: + resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} dependencies: '@types/node': 13.13.52 - '@types/hast@2.3.10': + /@types/hast@2.3.10: + resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} dependencies: '@types/unist': 2.0.10 - '@types/hast@3.0.4': + /@types/hast@3.0.4: + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} dependencies: '@types/unist': 2.0.10 + dev: false - '@types/history@4.7.11': {} + /@types/history@4.7.11: + resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==} + dev: true - '@types/hoist-non-react-statics@3.3.5': + /@types/hoist-non-react-statics@3.3.5: + resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==} dependencies: '@types/react': 18.0.18 hoist-non-react-statics: 3.3.2 - '@types/html-minifier-terser@5.1.2': {} + /@types/html-minifier-terser@5.1.2: + resolution: {integrity: sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==} + dev: false - '@types/html-minifier-terser@6.1.0': {} + /@types/html-minifier-terser@6.1.0: + resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} - '@types/http-cache-semantics@4.0.4': {} + /@types/http-cache-semantics@4.0.4: + resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} + dev: true - '@types/http-errors@2.0.4': {} + /@types/http-errors@2.0.4: + resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} + dev: true - '@types/http-proxy@1.17.14': + /@types/http-proxy@1.17.14: + resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/i18next-xhr-backend@1.4.2': + /@types/i18next-xhr-backend@1.4.2: + resolution: {integrity: sha512-uykS5BvdSoN+G7j7D19xzR12pEVkWmUrIEIxMsj2brVVzjc3gIthWCQKYqbe/b1q87SLbWb/ZHN9bR4qxi1H6A==} + deprecated: This is a stub types definition. i18next-xhr-backend provides its own type definitions, so you do not need this installed. dependencies: i18next-xhr-backend: 3.2.2 + dev: true - '@types/i18next@8.4.3': {} + /@types/i18next@8.4.3: + resolution: {integrity: sha512-ayqHEU+i9H7/Fkefnhyvml1ChKEZXcDwmVqo3jmrxy7PoAtTSY1t4/hr58Xz8hkXLPoCGS1hTc6bLJOUaOAjfQ==} + dev: true - '@types/inquirer@8.2.10': + /@types/inquirer@8.2.10: + resolution: {integrity: sha512-IdD5NmHyVjWM8SHWo/kPBgtzXatwPkfwzyP3fN1jF2g9BWt5WO+8hL2F4o2GKIYsU40PpqeevuUWvkS/roXJkA==} dependencies: '@types/through': 0.0.33 rxjs: 7.8.1 + dev: true - '@types/is-function@1.0.3': {} + /@types/is-function@1.0.3: + resolution: {integrity: sha512-/CLhCW79JUeLKznI6mbVieGbl4QU5Hfn+6udw1YHZoofASjbQ5zaP5LzAUZYDpRYEjS4/P+DhEgyJ/PQmGGTWw==} - '@types/istanbul-lib-coverage@2.0.6': {} + /@types/istanbul-lib-coverage@2.0.6: + resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} - '@types/istanbul-lib-report@3.0.3': + /@types/istanbul-lib-report@3.0.3: + resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} dependencies: '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports@3.0.4': + /@types/istanbul-reports@3.0.4: + resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} dependencies: '@types/istanbul-lib-report': 3.0.3 - '@types/jest@26.0.24': + /@types/jest@26.0.24: + resolution: {integrity: sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==} dependencies: jest-diff: 26.6.2 pretty-format: 26.6.2 + dev: true - '@types/jest@29.4.4': + /@types/jest@29.4.4: + resolution: {integrity: sha512-qezb65VIH7X1wobSnd6Lvdve7PXSyQRa3dljTkhTtDhi603RvHQCshSlJcuyMLHJpeHgY3NKwvDJWxMOOHxGDQ==} dependencies: expect: 29.7.0 pretty-format: 29.7.0 + dev: true - '@types/jest@29.5.12': + /@types/jest@29.5.12: + resolution: {integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==} dependencies: expect: 29.7.0 pretty-format: 29.7.0 - '@types/js-beautify@1.14.3': {} + /@types/js-beautify@1.14.3: + resolution: {integrity: sha512-FMbQHz+qd9DoGvgLHxeqqVPaNRffpIu5ZjozwV8hf9JAGpIOzuAf4wGbRSo8LNITHqGjmmVjaMggTT5P4v4IHg==} + dev: true - '@types/js-levenshtein@1.1.3': {} + /@types/js-levenshtein@1.1.3: + resolution: {integrity: sha512-jd+Q+sD20Qfu9e2aEXogiO3vpOC1PYJOUdyN9gvs4Qrvkg4wF43L5OhqrPeokdv8TL0/mXoYfpkcoGZMNN2pkQ==} + dev: true - '@types/js-yaml@3.12.3': {} + /@types/js-yaml@3.12.3: + resolution: {integrity: sha512-otRe77JNNWzoVGLKw8TCspKswRoQToys4tuL6XYVBFxjgeM0RUrx7m3jkaTdxILxeGry3zM8mGYkGXMeQ02guA==} + dev: true - '@types/jsdom@20.0.1': + /@types/jsdom@20.0.1: + resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} dependencies: '@types/node': 13.13.52 '@types/tough-cookie': 4.0.5 parse5: 7.1.2 + dev: true - '@types/json-schema@7.0.15': {} + /@types/json-schema@7.0.15: + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} - '@types/json5@0.0.29': {} + /@types/json5@0.0.29: + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + dev: true - '@types/keyv@3.1.4': + /@types/keyv@3.1.4: + resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: '@types/node': 13.13.52 - '@types/lodash-es@4.17.12': + /@types/lodash-es@4.17.12: + resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==} dependencies: '@types/lodash': 4.17.5 + dev: true - '@types/lodash@4.17.5': {} + /@types/lodash@4.17.5: + resolution: {integrity: sha512-MBIOHVZqVqgfro1euRDWX7OO0fBVUUMrN6Pwm8LQsz8cWhEpihlvR70ENj3f40j58TNxZaWv2ndSkInykNBBJw==} - '@types/mdast@3.0.15': + /@types/mdast@3.0.15: + resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} dependencies: '@types/unist': 2.0.10 - '@types/mdast@4.0.4': + /@types/mdast@4.0.4: + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} dependencies: '@types/unist': 2.0.10 + dev: false - '@types/mime-types@2.1.4': {} + /@types/mime-types@2.1.4: + resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==} - '@types/mime@1.3.5': {} + /@types/mime@1.3.5: + resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} + dev: true - '@types/minimatch@3.0.5': {} + /@types/minimatch@3.0.5: + resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} + dev: true - '@types/minimatch@5.1.2': {} + /@types/minimatch@5.1.2: + resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} - '@types/minimist@1.2.5': {} + /@types/minimist@1.2.5: + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} + dev: true - '@types/ms@0.7.34': {} + /@types/ms@0.7.34: + resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} + dev: false - '@types/node-fetch@2.6.11': + /@types/node-fetch@2.6.11: + resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==} dependencies: '@types/node': 13.13.52 form-data: 4.0.0 - '@types/node-forge@0.9.10': + /@types/node-forge@0.9.10: + resolution: {integrity: sha512-+BbPlhZeYs/WETWftQi2LeRx9VviWSwawNo+Pid5qNrSZHb60loYjpph3OrbwXMMseadu9rE9NeK34r4BHT+QQ==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/node-forge@1.3.11': + /@types/node-forge@1.3.11: + resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/node@12.20.55': {} + /@types/node@12.20.55: + resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} + dev: true - '@types/node@13.13.52': {} + /@types/node@13.13.52: + resolution: {integrity: sha512-s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ==} - '@types/node@14.18.63': {} + /@types/node@14.18.63: + resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==} + dev: true - '@types/node@16.18.101': {} + /@types/node@16.18.101: + resolution: {integrity: sha512-AAsx9Rgz2IzG8KJ6tXd6ndNkVcu+GYB6U/SnFAaokSPNx2N7dcIIfnighYUNumvj6YS2q39Dejz5tT0NCV7CWA==} - '@types/node@18.11.9': {} + /@types/node@18.11.9: + resolution: {integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==} - '@types/normalize-package-data@2.4.4': {} + /@types/normalize-package-data@2.4.4: + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} - '@types/npmlog@4.1.6': + /@types/npmlog@4.1.6: + resolution: {integrity: sha512-0l3z16vnlJGl2Mi/rgJFrdwfLZ4jfNYgE6ZShEpjqhHuGTqdEzNles03NpYHwUMVYZa+Tj46UxKIEpE78lQ3DQ==} dependencies: '@types/node': 13.13.52 - '@types/parse-json@4.0.2': {} + /@types/parse-json@4.0.2: + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} - '@types/parse5@5.0.3': {} + /@types/parse5@5.0.3: + resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==} - '@types/prettier@2.7.3': {} + /@types/prettier@2.7.3: + resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} + dev: true - '@types/pretty-hrtime@1.0.3': {} + /@types/pretty-hrtime@1.0.3: + resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==} - '@types/prop-types@15.7.12': {} + /@types/prop-types@15.7.12: + resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} - '@types/q@1.5.8': {} + /@types/q@1.5.8: + resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==} + dev: true - '@types/qs@6.9.15': {} + /@types/qs@6.9.15: + resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==} - '@types/range-parser@1.2.7': {} + /@types/range-parser@1.2.7: + resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} + dev: true - '@types/react-color@3.0.12': + /@types/react-color@3.0.12: + resolution: {integrity: sha512-pr3uKE3lSvf7GFo1Rn2K3QktiZQFFrSgSGJ/3iMvSOYWt2pPAJ97rVdVfhWxYJZ8prAEXzoP2XX//3qGSQgu7Q==} dependencies: '@types/react': 18.0.18 '@types/reactcss': 1.2.12 + dev: true - '@types/react-dom@18.3.0': + /@types/react-dom@18.3.0: + resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} dependencies: '@types/react': 18.0.18 + dev: true - '@types/react-notification-system@0.2.39': + /@types/react-notification-system@0.2.39: + resolution: {integrity: sha512-yfptO86dbfW4qaw34CIedfakdKWV3sPM0xb4T5EQZOza80WLvOUUKjdmZTeGyEKk/7n2za8RJa6aZpz/A+2Qbw==} dependencies: '@types/react': 18.0.18 + dev: true - '@types/react-redux@7.1.33': + /@types/react-redux@7.1.33: + resolution: {integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==} dependencies: '@types/hoist-non-react-statics': 3.3.5 '@types/react': 18.0.18 hoist-non-react-statics: 3.3.2 redux: 4.2.1 - '@types/react-router-dom@5.3.3': + /@types/react-router-dom@5.3.3: + resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==} dependencies: '@types/history': 4.7.11 '@types/react': 18.0.18 '@types/react-router': 5.1.20 + dev: true - '@types/react-router@5.1.20': + /@types/react-router@5.1.20: + resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==} dependencies: '@types/history': 4.7.11 '@types/react': 18.0.18 + dev: true - '@types/react-transition-group@4.4.10': + /@types/react-transition-group@4.4.10: + resolution: {integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==} dependencies: '@types/react': 18.0.18 + dev: false - '@types/react@18.0.18': + /@types/react@18.0.18: + resolution: {integrity: sha512-6hI08umYs6NaiHFEEGioXnxJ+oEhY3eRz8VCUaudZmGdtvPviCJB8mgaMxaDWAdPSYd4eFavrPk2QIolwbLYrg==} dependencies: '@types/prop-types': 15.7.12 '@types/scheduler': 0.23.0 csstype: 3.1.3 - '@types/reactcss@1.2.12': + /@types/reactcss@1.2.12: + resolution: {integrity: sha512-BrXUQ86/wbbFiZv8h/Q1/Q1XOsaHneYmCb/tHe9+M8XBAAUc2EHfdY0DY22ZZjVSaXr5ix7j+zsqO2eGZub8lQ==} dependencies: '@types/react': 18.0.18 + dev: true - '@types/reactour@1.18.5': + /@types/reactour@1.18.5: + resolution: {integrity: sha512-Pl5yh9bXeXaFcioDk6XVmUzdJGZDAKesVmwoh2KvN/1FXSd9saN8pIprLvfspnXANMcgl3AtSlD4zs0cJIhGIw==} dependencies: '@types/react': 18.0.18 + dev: true - '@types/redux-mock-store@1.0.6': + /@types/redux-mock-store@1.0.6: + resolution: {integrity: sha512-eg5RDfhJTXuoJjOMyXiJbaDb1B8tfTaJixscmu+jOusj6adGC0Krntz09Tf4gJgXeCqCrM5bBMd+B7ez0izcAQ==} dependencies: redux: 4.2.1 + dev: true - '@types/resolve@1.17.1': + /@types/resolve@1.17.1: + resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/resolve@1.20.2': {} + /@types/resolve@1.20.2: + resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} + dev: true - '@types/resolve@1.20.6': {} + /@types/resolve@1.20.6: + resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} + dev: true - '@types/responselike@1.0.3': + /@types/responselike@1.0.3: + resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} dependencies: '@types/node': 13.13.52 - '@types/retry@0.12.0': {} + /@types/retry@0.12.0: + resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} + dev: true - '@types/scheduler@0.23.0': {} + /@types/scheduler@0.23.0: + resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==} - '@types/semver@7.5.8': {} + /@types/semver@7.5.8: + resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} + dev: true - '@types/send@0.17.4': + /@types/send@0.17.4: + resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} dependencies: '@types/mime': 1.3.5 '@types/node': 13.13.52 + dev: true - '@types/serve-index@1.9.4': + /@types/serve-index@1.9.4: + resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} dependencies: '@types/express': 4.17.21 + dev: true - '@types/serve-static@1.15.7': + /@types/serve-static@1.15.7: + resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} dependencies: '@types/http-errors': 2.0.4 '@types/node': 13.13.52 '@types/send': 0.17.4 + dev: true - '@types/set-cookie-parser@2.4.9': + /@types/set-cookie-parser@2.4.9: + resolution: {integrity: sha512-bCorlULvl0xTdjj4BPUHX4cqs9I+go2TfW/7Do1nnFYWS0CPP429Qr1AY42kiFhCwLpvAkWFr1XIBHd8j6/MCQ==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/sinonjs__fake-timers@8.1.1': {} + /@types/sinonjs__fake-timers@8.1.1: + resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} + dev: true - '@types/sizzle@2.3.8': {} + /@types/sizzle@2.3.8: + resolution: {integrity: sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==} + dev: true - '@types/sockjs@0.3.36': + /@types/sockjs@0.3.36: + resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/source-list-map@0.1.6': {} + /@types/source-list-map@0.1.6: + resolution: {integrity: sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==} + dev: false - '@types/stack-utils@2.0.3': {} + /@types/stack-utils@2.0.3: + resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} - '@types/tapable@1.0.12': {} + /@types/tapable@1.0.12: + resolution: {integrity: sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==} + dev: false - '@types/testing-library__jest-dom@5.14.9': + /@types/testing-library__jest-dom@5.14.9: + resolution: {integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==} dependencies: '@types/jest': 29.5.12 + dev: true - '@types/through@0.0.33': + /@types/through@0.0.33: + resolution: {integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/tough-cookie@4.0.5': {} + /@types/tough-cookie@4.0.5: + resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} + dev: true - '@types/ua-parser-js@0.7.36': {} + /@types/ua-parser-js@0.7.36: + resolution: {integrity: sha512-N1rW+njavs70y2cApeIw1vLMYXRwfBy+7trgavGuuTfOd7j1Yh7QTRc/yqsPl6ncokt72ZXuxEU0PiCp9bSwNQ==} + dev: true - '@types/uglify-js@3.17.5': + /@types/uglify-js@3.17.5: + resolution: {integrity: sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==} dependencies: source-map: 0.6.1 + dev: false - '@types/unist@2.0.10': {} + /@types/unist@2.0.10: + resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} - '@types/unist@3.0.2': {} + /@types/unist@3.0.2: + resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} + dev: false - '@types/uuid@9.0.8': {} + /@types/uuid@9.0.8: + resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==} + dev: true - '@types/webappsec-credential-management@0.6.8': {} + /@types/webappsec-credential-management@0.6.8: + resolution: {integrity: sha512-DES/SkK54U7AG8hmMkGCJkOSlywM3R+TzaWT+rBnX3lQTJ3K57jWr+UccWY8ImkuKekC9BjB+AH4zLJB4JKpvQ==} + dev: true - '@types/webpack-env@1.18.5': {} + /@types/webpack-env@1.18.5: + resolution: {integrity: sha512-wz7kjjRRj8/Lty4B+Kr0LN6Ypc/3SymeCCGSbaXp2leH0ZVg/PriNiOwNj4bD4uphI7A8NXS4b6Gl373sfO5mA==} - '@types/webpack-sources@3.2.3': + /@types/webpack-sources@3.2.3: + resolution: {integrity: sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==} dependencies: '@types/node': 13.13.52 '@types/source-list-map': 0.1.6 source-map: 0.7.4 + dev: false - '@types/webpack@4.41.38': + /@types/webpack@4.41.38: + resolution: {integrity: sha512-oOW7E931XJU1mVfCnxCVgv8GLFL768pDO5u2Gzk82i8yTIgX6i7cntyZOkZYb/JtYM8252SN9bQp9tgkVDSsRw==} dependencies: '@types/node': 13.13.52 '@types/tapable': 1.0.12 @@ -41013,224 +29814,261 @@ snapshots: '@types/webpack-sources': 3.2.3 anymatch: 3.1.3 source-map: 0.6.1 + dev: false - '@types/ws@8.5.10': + /@types/ws@8.5.10: + resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} dependencies: '@types/node': 13.13.52 + dev: true - '@types/yargs-parser@21.0.3': {} + /@types/yargs-parser@21.0.3: + resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} - '@types/yargs@15.0.19': + /@types/yargs@15.0.19: + resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} dependencies: '@types/yargs-parser': 21.0.3 - '@types/yargs@17.0.32': + /@types/yargs@17.0.32: + resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} dependencies: '@types/yargs-parser': 21.0.3 - '@types/yauzl@2.10.3': + /@types/yauzl@2.10.3: + resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} + requiresBuild: true dependencies: '@types/node': 13.13.52 + dev: true optional: true - '@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5)': + /@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5): + resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + '@typescript-eslint/parser': ^4.0.0 + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true dependencies: '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) '@typescript-eslint/scope-manager': 4.33.0 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) eslint: 7.32.0 functional-red-black-tree: 1.0.1 ignore: 5.3.1 regexpp: 3.2.0 semver: 7.6.2 tsutils: 3.21.0(typescript@4.9.5) - optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color + dev: true - '@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.1.6))(eslint@7.32.0)(typescript@5.1.6)': - dependencies: - '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@5.1.6) - '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@5.1.6) - '@typescript-eslint/scope-manager': 4.33.0 - debug: 4.3.5(supports-color@8.1.1) - eslint: 7.32.0 - functional-red-black-tree: 1.0.1 - ignore: 5.3.1 - regexpp: 3.2.0 - semver: 7.6.2 - tsutils: 3.21.0(typescript@5.1.6) - optionalDependencies: - typescript: 5.1.6 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint@8.46.0)(typescript@5.1.6)': + /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)(typescript@5.1.6): + 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.11.0 - '@typescript-eslint/parser': 5.62.0(eslint@8.46.0)(typescript@5.1.6) + '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.1.6) '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/type-utils': 5.62.0(eslint@8.46.0)(typescript@5.1.6) - '@typescript-eslint/utils': 5.62.0(eslint@8.46.0)(typescript@5.1.6) - debug: 4.3.5(supports-color@8.1.1) - eslint: 8.46.0 - graphemer: 1.4.0 - ignore: 5.3.1 - natural-compare-lite: 1.4.0 - semver: 7.6.2 - tsutils: 3.21.0(typescript@5.1.6) - optionalDependencies: - typescript: 5.1.6 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/experimental-utils@4.33.0(eslint@7.32.0)(typescript@4.9.5)': - dependencies: - '@types/json-schema': 7.0.15 - '@typescript-eslint/scope-manager': 4.33.0 - '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.5) + '@typescript-eslint/type-utils': 5.62.0(eslint@7.32.0)(typescript@5.1.6) + '@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@5.1.6) + debug: 4.3.5(supports-color@6.1.0) eslint: 7.32.0 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0(eslint@7.32.0) + graphemer: 1.4.0 + ignore: 5.3.1 + natural-compare-lite: 1.4.0 + semver: 7.6.2 + tsutils: 3.21.0(typescript@5.1.6) + typescript: 5.1.6 transitivePeerDependencies: - supports-color - - typescript + dev: true - '@typescript-eslint/experimental-utils@4.33.0(eslint@7.32.0)(typescript@5.1.6)': + /@typescript-eslint/experimental-utils@4.33.0(eslint@7.32.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.15 '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/typescript-estree': 4.33.0(typescript@5.1.6) + '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.5) eslint: 7.32.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0(eslint@7.32.0) transitivePeerDependencies: - supports-color - typescript + dev: true - '@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5)': + /@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5): + resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true dependencies: '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.5) - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) eslint: 7.32.0 - optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color + dev: true - '@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.1.6)': - dependencies: - '@typescript-eslint/scope-manager': 4.33.0 - '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/typescript-estree': 4.33.0(typescript@5.1.6) - debug: 4.3.5(supports-color@8.1.1) - eslint: 7.32.0 - optionalDependencies: - typescript: 5.1.6 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6)': + /@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.1.6): + 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@5.1.6) - debug: 4.3.5(supports-color@8.1.1) - eslint: 8.46.0 - optionalDependencies: + debug: 4.3.5(supports-color@6.1.0) + eslint: 7.32.0 typescript: 5.1.6 transitivePeerDependencies: - supports-color + dev: true - '@typescript-eslint/scope-manager@4.33.0': + /@typescript-eslint/scope-manager@4.33.0: + resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dependencies: '@typescript-eslint/types': 4.33.0 '@typescript-eslint/visitor-keys': 4.33.0 + dev: true - '@typescript-eslint/scope-manager@5.62.0': + /@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.62.0(eslint@8.46.0)(typescript@5.1.6)': + /@typescript-eslint/type-utils@5.62.0(eslint@7.32.0)(typescript@5.1.6): + 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@5.1.6) - '@typescript-eslint/utils': 5.62.0(eslint@8.46.0)(typescript@5.1.6) - debug: 4.3.5(supports-color@8.1.1) - eslint: 8.46.0 + '@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@5.1.6) + debug: 4.3.5(supports-color@6.1.0) + eslint: 7.32.0 tsutils: 3.21.0(typescript@5.1.6) - optionalDependencies: typescript: 5.1.6 transitivePeerDependencies: - supports-color + dev: true - '@typescript-eslint/types@4.33.0': {} + /@typescript-eslint/types@4.33.0: + resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + dev: true - '@typescript-eslint/types@5.62.0': {} + /@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)': + /@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} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true dependencies: '@typescript-eslint/types': 4.33.0 '@typescript-eslint/visitor-keys': 4.33.0 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.2 tsutils: 3.21.0(typescript@4.9.5) - optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color + dev: true - '@typescript-eslint/typescript-estree@4.33.0(typescript@5.1.6)': - dependencies: - '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/visitor-keys': 4.33.0 - debug: 4.3.5(supports-color@8.1.1) - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.6.2 - tsutils: 3.21.0(typescript@5.1.6) - optionalDependencies: - typescript: 5.1.6 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5)': + /@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.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.2 tsutils: 3.21.0(typescript@4.9.5) - optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: - supports-color + dev: true - '@typescript-eslint/typescript-estree@5.62.0(typescript@5.1.6)': + /@typescript-eslint/typescript-estree@5.62.0(typescript@5.1.6): + 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.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.2 tsutils: 3.21.0(typescript@5.1.6) - optionalDependencies: typescript: 5.1.6 transitivePeerDependencies: - supports-color + dev: true - '@typescript-eslint/utils@5.62.0(eslint@7.32.0)(typescript@4.9.5)': + /@typescript-eslint/utils@5.62.0(eslint@7.32.0)(typescript@4.9.5): + resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} + 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@7.32.0) '@types/json-schema': 7.0.15 @@ -41244,71 +30082,96 @@ snapshots: transitivePeerDependencies: - supports-color - typescript + dev: true - '@typescript-eslint/utils@5.62.0(eslint@8.46.0)(typescript@5.1.6)': + /@typescript-eslint/utils@5.62.0(eslint@7.32.0)(typescript@5.1.6): + resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} + 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@7.32.0) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6) - eslint: 8.46.0 + eslint: 7.32.0 eslint-scope: 5.1.1 semver: 7.6.2 transitivePeerDependencies: - supports-color - typescript + dev: true - '@typescript-eslint/visitor-keys@4.33.0': + /@typescript-eslint/visitor-keys@4.33.0: + resolution: {integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dependencies: '@typescript-eslint/types': 4.33.0 eslint-visitor-keys: 2.1.0 + dev: true - '@typescript-eslint/visitor-keys@5.62.0': + /@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.3 + dev: true - '@ungap/structured-clone@1.2.0': {} + /@ungap/structured-clone@1.2.0: + resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + dev: false - '@webassemblyjs/ast@1.12.1': + /@webassemblyjs/ast@1.12.1: + resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} dependencies: '@webassemblyjs/helper-numbers': 1.11.6 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/floating-point-hex-parser@1.11.6': {} + /@webassemblyjs/floating-point-hex-parser@1.11.6: + resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} - '@webassemblyjs/helper-api-error@1.11.6': {} + /@webassemblyjs/helper-api-error@1.11.6: + resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} - '@webassemblyjs/helper-buffer@1.12.1': {} + /@webassemblyjs/helper-buffer@1.12.1: + resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==} - '@webassemblyjs/helper-numbers@1.11.6': + /@webassemblyjs/helper-numbers@1.11.6: + resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} dependencies: '@webassemblyjs/floating-point-hex-parser': 1.11.6 '@webassemblyjs/helper-api-error': 1.11.6 '@xtuc/long': 4.2.2 - '@webassemblyjs/helper-wasm-bytecode@1.11.6': {} + /@webassemblyjs/helper-wasm-bytecode@1.11.6: + resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} - '@webassemblyjs/helper-wasm-section@1.12.1': + /@webassemblyjs/helper-wasm-section@1.12.1: + resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==} dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-buffer': 1.12.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 '@webassemblyjs/wasm-gen': 1.12.1 - '@webassemblyjs/ieee754@1.11.6': + /@webassemblyjs/ieee754@1.11.6: + resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} dependencies: '@xtuc/ieee754': 1.2.0 - '@webassemblyjs/leb128@1.11.6': + /@webassemblyjs/leb128@1.11.6: + resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} dependencies: '@xtuc/long': 4.2.2 - '@webassemblyjs/utf8@1.11.6': {} + /@webassemblyjs/utf8@1.11.6: + resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} - '@webassemblyjs/wasm-edit@1.12.1': + /@webassemblyjs/wasm-edit@1.12.1: + resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==} dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-buffer': 1.12.1 @@ -41319,7 +30182,8 @@ snapshots: '@webassemblyjs/wasm-parser': 1.12.1 '@webassemblyjs/wast-printer': 1.12.1 - '@webassemblyjs/wasm-gen@1.12.1': + /@webassemblyjs/wasm-gen@1.12.1: + resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==} dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 @@ -41327,14 +30191,16 @@ snapshots: '@webassemblyjs/leb128': 1.11.6 '@webassemblyjs/utf8': 1.11.6 - '@webassemblyjs/wasm-opt@1.12.1': + /@webassemblyjs/wasm-opt@1.12.1: + resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==} dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-buffer': 1.12.1 '@webassemblyjs/wasm-gen': 1.12.1 '@webassemblyjs/wasm-parser': 1.12.1 - '@webassemblyjs/wasm-parser@1.12.1': + /@webassemblyjs/wasm-parser@1.12.1: + resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==} dependencies: '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/helper-api-error': 1.11.6 @@ -41343,139 +30209,234 @@ snapshots: '@webassemblyjs/leb128': 1.11.6 '@webassemblyjs/utf8': 1.11.6 - '@webassemblyjs/wast-printer@1.12.1': + /@webassemblyjs/wast-printer@1.12.1: + resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==} dependencies: '@webassemblyjs/ast': 1.12.1 '@xtuc/long': 4.2.2 - '@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0)(webpack@5.84.1): + resolution: {integrity: sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==} + peerDependencies: + webpack: 5.84.1 + webpack-cli: 4.x.x dependencies: - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) - '@webpack-cli/info@1.5.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))': + /@webpack-cli/info@1.5.0(webpack-cli@4.10.0): + resolution: {integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==} + peerDependencies: + webpack-cli: 4.x.x dependencies: envinfo: 7.13.0 webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) - '@webpack-cli/serve@1.7.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1))': + /@webpack-cli/serve@1.7.0(webpack-cli@4.10.0)(webpack-dev-server@3.11.3): + resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==} + peerDependencies: + webpack-cli: 4.x.x + webpack-dev-server: '*' + peerDependenciesMeta: + webpack-dev-server: + optional: true dependencies: webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) - optionalDependencies: - webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) - '@webpack-contrib/schema-utils@1.0.0-beta.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)))': + /@webpack-contrib/schema-utils@1.0.0-beta.0(webpack@5.84.1): + resolution: {integrity: sha512-LonryJP+FxQQHsjGBi6W786TQB1Oym+agTpY0c+Kj8alnIw+DLUJb6SI8Y1GHGhLCH1yPRrucjObUmxNICQ1pg==} + engines: {node: '>= 6.9.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 dependencies: ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) chalk: 2.4.2 strip-ansi: 4.0.0 text-table: 0.2.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-log: 1.2.0 + dev: true - '@xmldom/xmldom@0.7.13': {} + /@xmldom/xmldom@0.7.13: + resolution: {integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==} + engines: {node: '>=10.0.0'} + dev: true - '@xtuc/ieee754@1.2.0': {} + /@xtuc/ieee754@1.2.0: + resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} - '@xtuc/long@4.2.2': {} + /@xtuc/long@4.2.2: + resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} - '@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.20): + resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==} + engines: {node: '>=14.15.0'} + peerDependencies: + esbuild: '>=0.10.0' dependencies: esbuild: 0.18.20 tslib: 2.6.3 + dev: true - '@yarnpkg/fslib@2.10.3': + /@yarnpkg/fslib@2.10.3: + resolution: {integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==} + engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} dependencies: '@yarnpkg/libzip': 2.3.0 tslib: 1.14.1 + dev: true - '@yarnpkg/libzip@2.3.0': + /@yarnpkg/libzip@2.3.0: + resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==} + engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} dependencies: '@types/emscripten': 1.39.13 tslib: 1.14.1 + dev: true - '@yarnpkg/lockfile@1.1.0': {} + /@yarnpkg/lockfile@1.1.0: + resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} + dev: true - '@yarnpkg/parsers@3.0.0-rc.46': + /@yarnpkg/parsers@3.0.0-rc.46: + resolution: {integrity: sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==} + engines: {node: '>=14.15.0'} dependencies: js-yaml: 3.13.1 tslib: 2.6.3 + dev: true - '@zkochan/js-yaml@0.0.6': + /@zkochan/js-yaml@0.0.6: + resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} + hasBin: true dependencies: argparse: 2.0.1 + dev: true - JSONStream@1.3.5: + /JSONStream@1.3.5: + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + hasBin: true dependencies: jsonparse: 1.3.1 through: 2.3.8 + dev: true - abab@2.0.6: {} + /abab@2.0.6: + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + deprecated: Use your platform's native atob() and btoa() methods instead + dev: true - abbrev@1.1.1: {} + /abbrev@1.1.1: + resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} + dev: true - abbrev@2.0.0: {} + /abbrev@2.0.0: + resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dev: false - accepts@1.3.8: + /accepts@1.3.8: + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} dependencies: mime-types: 2.1.35 negotiator: 0.6.3 - acorn-globals@6.0.0: + /acorn-globals@6.0.0: + resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} dependencies: acorn: 7.4.1 acorn-walk: 7.2.0 + dev: true - acorn-globals@7.0.1: + /acorn-globals@7.0.1: + resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} dependencies: acorn: 8.12.0 acorn-walk: 8.3.3 + dev: true - acorn-import-assertions@1.9.0(acorn@8.12.0): + /acorn-import-assertions@1.9.0(acorn@8.12.0): + resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} + peerDependencies: + acorn: ^8 dependencies: acorn: 8.12.0 - acorn-jsx@5.3.2(acorn@7.4.1): + /acorn-jsx@5.3.2(acorn@7.4.1): + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 7.4.1 - acorn-jsx@5.3.2(acorn@8.12.0): + /acorn-jsx@5.3.2(acorn@8.12.0): + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 8.12.0 + dev: true - acorn-walk@7.2.0: {} + /acorn-walk@7.2.0: + resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} + engines: {node: '>=0.4.0'} - acorn-walk@8.3.3: + /acorn-walk@8.3.3: + resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==} + engines: {node: '>=0.4.0'} dependencies: acorn: 8.12.0 - acorn@7.4.1: {} + /acorn@7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} + hasBin: true - acorn@8.12.0: {} + /acorn@8.12.0: + resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==} + engines: {node: '>=0.4.0'} + hasBin: true - add-stream@1.0.0: {} + /add-stream@1.0.0: + resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} + dev: true - address@1.2.2: {} + /address@1.2.2: + resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} + engines: {node: '>= 10.0.0'} - agent-base@5.1.1: {} + /agent-base@5.1.1: + resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==} + engines: {node: '>= 6.0.0'} - agent-base@6.0.2: + /agent-base@6.0.2: + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} dependencies: - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) transitivePeerDependencies: - supports-color + dev: true - agentkeepalive@4.5.0: + /agentkeepalive@4.5.0: + resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} + engines: {node: '>= 8.0.0'} dependencies: humanize-ms: 1.2.1 + dev: true - aggregate-error@3.1.0: + /aggregate-error@3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} dependencies: clean-stack: 2.2.0 indent-string: 4.0.0 - airbnb-js-shims@2.2.1: + /airbnb-js-shims@2.2.1: + resolution: {integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==} dependencies: array-includes: 3.1.8 array.prototype.flat: 1.3.2 @@ -41494,168 +30455,286 @@ snapshots: string.prototype.padend: 3.1.6 string.prototype.padstart: 3.1.6 symbol.prototype.description: 1.0.6 + dev: false - ajv-errors@1.0.1(ajv@6.12.6): + /ajv-errors@1.0.1(ajv@6.12.6): + resolution: {integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==} + peerDependencies: + ajv: '>=5.0.0' dependencies: ajv: 6.12.6 - ajv-formats@2.1.1(ajv@8.16.0): - optionalDependencies: + /ajv-formats@2.1.1(ajv@8.16.0): + resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + dependencies: ajv: 8.16.0 - ajv-keywords@3.5.2(ajv@6.12.6): + /ajv-keywords@3.5.2(ajv@6.12.6): + resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} + peerDependencies: + ajv: ^6.9.1 dependencies: ajv: 6.12.6 - ajv-keywords@5.1.0(ajv@8.16.0): + /ajv-keywords@5.1.0(ajv@8.16.0): + resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} + peerDependencies: + ajv: ^8.8.2 dependencies: ajv: 8.16.0 fast-deep-equal: 3.1.3 - ajv@6.12.6: + /ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 json-schema-traverse: 0.4.1 uri-js: 4.4.1 - ajv@8.16.0: + /ajv@8.16.0: + resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==} dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 uri-js: 4.4.1 - ansi-align@3.0.1: + /ansi-align@3.0.1: + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} dependencies: string-width: 4.2.3 + dev: false - ansi-colors@3.2.4: {} + /ansi-colors@3.2.4: + resolution: {integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==} + engines: {node: '>=6'} - ansi-colors@4.1.3: {} + /ansi-colors@4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} - ansi-escapes@4.3.2: + /ansi-escapes@4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} dependencies: type-fest: 0.21.3 - ansi-html-community@0.0.8: {} + /ansi-html-community@0.0.8: + resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} + engines: {'0': node >= 0.8.0} + hasBin: true - ansi-html@0.0.7: {} + /ansi-html@0.0.7: + resolution: {integrity: sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA==} + engines: {'0': node >= 0.8.0} + hasBin: true + dev: true - ansi-html@0.0.9: {} + /ansi-html@0.0.9: + resolution: {integrity: sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==} + engines: {'0': node >= 0.8.0} + hasBin: true - ansi-red@0.1.1: + /ansi-red@0.1.1: + resolution: {integrity: sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==} + engines: {node: '>=0.10.0'} dependencies: ansi-wrap: 0.1.0 + dev: true - ansi-regex@2.1.1: {} + /ansi-regex@2.1.1: + resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} + engines: {node: '>=0.10.0'} - ansi-regex@3.0.1: {} + /ansi-regex@3.0.1: + resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} + engines: {node: '>=4'} + dev: true - ansi-regex@4.1.1: {} + /ansi-regex@4.1.1: + resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} + engines: {node: '>=6'} - ansi-regex@5.0.1: {} + /ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} - ansi-regex@6.0.1: {} + /ansi-regex@6.0.1: + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + engines: {node: '>=12'} - ansi-styles@2.2.1: {} + /ansi-styles@2.2.1: + resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} + engines: {node: '>=0.10.0'} + dev: true - ansi-styles@3.2.1: + /ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} dependencies: color-convert: 1.9.3 - ansi-styles@4.3.0: + /ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} dependencies: color-convert: 2.0.1 - ansi-styles@5.2.0: {} + /ansi-styles@5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} - ansi-styles@6.2.1: {} + /ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} - ansi-to-html@0.6.15: + /ansi-to-html@0.6.15: + resolution: {integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==} + engines: {node: '>=8.0.0'} + hasBin: true dependencies: entities: 2.2.0 - ansi-wrap@0.1.0: {} + /ansi-wrap@0.1.0: + resolution: {integrity: sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==} + engines: {node: '>=0.10.0'} + dev: true - anymatch@2.0.0(supports-color@6.1.0): + /anymatch@2.0.0(supports-color@6.1.0): + resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==} dependencies: micromatch: 3.1.10(supports-color@6.1.0) normalize-path: 2.1.1 transitivePeerDependencies: - supports-color - anymatch@3.1.3: + /anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 - app-root-dir@1.0.2: {} + /app-root-dir@1.0.2: + resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==} - append-transform@2.0.0: + /append-transform@2.0.0: + resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==} + engines: {node: '>=8'} dependencies: default-require-extensions: 3.0.1 + dev: true - aproba@2.0.0: {} + /aproba@2.0.0: + resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} - arch@2.2.0: {} + /arch@2.2.0: + resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} + dev: true - archy@1.0.0: {} + /archy@1.0.0: + resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} + dev: true - are-we-there-yet@2.0.0: + /are-we-there-yet@2.0.0: + resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} + engines: {node: '>=10'} + deprecated: This package is no longer supported. dependencies: delegates: 1.0.0 readable-stream: 3.6.2 - are-we-there-yet@3.0.1: + /are-we-there-yet@3.0.1: + resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. dependencies: delegates: 1.0.0 readable-stream: 3.6.2 + dev: true - arg@4.1.3: {} + /arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} - argparse@1.0.10: + /argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} dependencies: sprintf-js: 1.0.3 - argparse@2.0.1: {} + /argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + dev: true - aria-query@4.2.2: + /aria-query@4.2.2: + resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} + engines: {node: '>=6.0'} dependencies: '@babel/runtime': 7.24.7 '@babel/runtime-corejs3': 7.24.7 + dev: true - aria-query@5.1.3: + /aria-query@5.1.3: + resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} dependencies: deep-equal: 2.2.3 + dev: true - aria-query@5.3.0: + /aria-query@5.3.0: + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} dependencies: dequal: 2.0.3 + dev: true - arr-diff@4.0.0: {} + /arr-diff@4.0.0: + resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} + engines: {node: '>=0.10.0'} - arr-flatten@1.1.0: {} + /arr-flatten@1.1.0: + resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} + engines: {node: '>=0.10.0'} - arr-union@3.1.0: {} + /arr-union@3.1.0: + resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} + engines: {node: '>=0.10.0'} - array-buffer-byte-length@1.0.1: + /array-buffer-byte-length@1.0.1: + resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 is-array-buffer: 3.0.4 - array-differ@3.0.0: {} + /array-differ@3.0.0: + resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} + engines: {node: '>=8'} + dev: true - array-find-index@1.0.2: + /array-find-index@1.0.2: + resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} + engines: {node: '>=0.10.0'} + requiresBuild: true + dev: false optional: true - array-flatten@1.1.1: {} + /array-flatten@1.1.1: + resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} - array-flatten@2.1.2: {} + /array-flatten@2.1.2: + resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} - array-ify@1.0.0: {} + /array-ify@1.0.0: + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + dev: true - array-includes@3.1.8: + /array-includes@3.1.8: + resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -41664,19 +30743,32 @@ snapshots: get-intrinsic: 1.2.4 is-string: 1.0.7 - array-union@1.0.2: + /array-union@1.0.2: + resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==} + engines: {node: '>=0.10.0'} dependencies: array-uniq: 1.0.3 - array-union@2.1.0: {} + /array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} - array-union@3.0.1: {} + /array-union@3.0.1: + resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==} + engines: {node: '>=12'} + dev: true - array-uniq@1.0.3: {} + /array-uniq@1.0.3: + resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} + engines: {node: '>=0.10.0'} - array-unique@0.3.2: {} + /array-unique@0.3.2: + resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} + engines: {node: '>=0.10.0'} - array.prototype.findlast@1.2.5: + /array.prototype.findlast@1.2.5: + resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -41684,8 +30776,11 @@ snapshots: es-errors: 1.3.0 es-object-atoms: 1.0.0 es-shim-unscopables: 1.0.2 + dev: true - array.prototype.findlastindex@1.2.5: + /array.prototype.findlastindex@1.2.5: + resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -41693,22 +30788,29 @@ snapshots: es-errors: 1.3.0 es-object-atoms: 1.0.0 es-shim-unscopables: 1.0.2 + dev: true - array.prototype.flat@1.3.2: + /array.prototype.flat@1.3.2: + resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-shim-unscopables: 1.0.2 - array.prototype.flatmap@1.3.2: + /array.prototype.flatmap@1.3.2: + resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-shim-unscopables: 1.0.2 - array.prototype.map@1.0.7: + /array.prototype.map@1.0.7: + resolution: {integrity: sha512-XpcFfLoBEAhezrrNw1V+yLXkE7M6uR7xJEsxbG6c/V9v043qurwVJB9r9UTnoSioFDoz1i1VOydpWGmJpfVZbg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -41716,8 +30818,11 @@ snapshots: es-array-method-boxes-properly: 1.0.0 es-object-atoms: 1.0.0 is-string: 1.0.7 + dev: false - array.prototype.reduce@1.0.7: + /array.prototype.reduce@1.0.7: + resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -41727,22 +30832,29 @@ snapshots: es-object-atoms: 1.0.0 is-string: 1.0.7 - array.prototype.toreversed@1.1.2: + /array.prototype.toreversed@1.1.2: + resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-shim-unscopables: 1.0.2 + dev: true - array.prototype.tosorted@1.1.4: + /array.prototype.tosorted@1.1.4: + resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-errors: 1.3.0 es-shim-unscopables: 1.0.2 + dev: true - arraybuffer.prototype.slice@1.0.3: + /arraybuffer.prototype.slice@1.0.3: + resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} + engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.1 call-bind: 1.0.7 @@ -41753,65 +30865,114 @@ snapshots: is-array-buffer: 3.0.4 is-shared-array-buffer: 1.0.3 - arrify@1.0.1: {} + /arrify@1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + dev: true - arrify@2.0.1: {} + /arrify@2.0.1: + resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} + engines: {node: '>=8'} - asap@2.0.6: {} + /asap@2.0.6: + resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} - asn1@0.2.6: + /asn1@0.2.6: + resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} dependencies: safer-buffer: 2.1.2 + dev: true - assert-plus@1.0.0: {} + /assert-plus@1.0.0: + resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} + engines: {node: '>=0.8'} + dev: true - assert@2.1.0: + /assert@2.1.0: + resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} dependencies: call-bind: 1.0.7 is-nan: 1.3.2 object-is: 1.1.6 object.assign: 4.1.5 util: 0.12.5 + dev: true - assign-symbols@1.0.0: {} + /assign-symbols@1.0.0: + resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} + engines: {node: '>=0.10.0'} - ast-types-flow@0.0.7: {} + /ast-types-flow@0.0.7: + resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} + dev: true - ast-types@0.13.3: {} + /ast-types@0.13.3: + resolution: {integrity: sha512-XTZ7xGML849LkQP86sWdQzfhwbt3YwIO6MqbX9mUNYY98VKaaVZP7YNNm70IpwecbkkxmfC5IYAzOQ/2p29zRA==} + engines: {node: '>=4'} + dev: false - ast-types@0.14.2: + /ast-types@0.14.2: + resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==} + engines: {node: '>=4'} dependencies: tslib: 2.6.3 + dev: false - ast-types@0.16.1: + /ast-types@0.16.1: + resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} + engines: {node: '>=4'} dependencies: tslib: 2.6.3 + dev: true - astral-regex@2.0.0: {} + /astral-regex@2.0.0: + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} + engines: {node: '>=8'} - astring@1.8.6: {} + /astring@1.8.6: + resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==} + hasBin: true + dev: true - async-each@1.0.6: {} + /async-each@1.0.6: + resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==} - async-limiter@1.0.1: {} + /async-limiter@1.0.1: + resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} - async@2.6.4: + /async@2.6.4: + resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} dependencies: lodash: 4.17.21 - async@3.2.5: {} + /async@3.2.5: + resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} + dev: true - asynckit@0.4.0: {} + /asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} - at-least-node@1.0.0: {} + /at-least-node@1.0.0: + resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + engines: {node: '>= 4.0.0'} - atob@2.1.2: {} + /atob@2.1.2: + resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} + engines: {node: '>= 4.5.0'} + hasBin: true - autolinker@0.28.1: + /autolinker@0.28.1: + resolution: {integrity: sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==} dependencies: gulp-header: 1.8.12 + dev: true - autoprefixer@10.4.13(postcss@8.4.39): + /autoprefixer@10.4.13(postcss@8.4.39): + resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 dependencies: browserslist: 4.23.1 caniuse-lite: 1.0.30001636 @@ -41820,8 +30981,11 @@ snapshots: picocolors: 1.0.1 postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - autoprefixer@9.8.8: + /autoprefixer@9.8.8: + resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} + hasBin: true dependencies: browserslist: 4.23.1 caniuse-lite: 1.0.30001636 @@ -41830,58 +30994,136 @@ snapshots: picocolors: 0.2.1 postcss: 7.0.39 postcss-value-parser: 4.2.0 + dev: false - available-typed-arrays@1.0.7: + /available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} dependencies: possible-typed-array-names: 1.0.0 - await-semaphore@0.1.3: {} + /await-semaphore@0.1.3: + resolution: {integrity: sha512-d1W2aNSYcz/sxYO4pMGX9vq65qOTu0P800epMud+6cYYX0QcT7zyqcxec3VWzpgvdXo57UWmVbZpLMjX2m1I7Q==} - aws-sign2@0.7.0: {} + /aws-sign2@0.7.0: + resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} + dev: true - aws4@1.13.0: {} + /aws4@1.13.0: + resolution: {integrity: sha512-3AungXC4I8kKsS9PuS4JH2nc+0bVY/mjgrephHTIi8fpEeGsTHBUJeosp0Wc1myYMElmD0B3Oc4XL/HVJ4PV2g==} + dev: true - axe-core@4.9.1: {} + /axe-core@4.9.1: + resolution: {integrity: sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==} + engines: {node: '>=4'} + dev: true - axios@0.19.2: + /axios@0.19.2: + resolution: {integrity: sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==} + deprecated: Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410 dependencies: follow-redirects: 1.5.10 transitivePeerDependencies: - supports-color + dev: false - axios@0.21.4: + /axios@0.21.4: + resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} dependencies: - follow-redirects: 1.15.6(debug@4.3.5(supports-color@6.1.0)) + follow-redirects: 1.15.6(debug@4.3.5) transitivePeerDependencies: - debug + dev: false - axios@0.26.1: + /axios@0.26.1: + resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==} dependencies: - follow-redirects: 1.15.6(debug@4.3.5(supports-color@6.1.0)) + follow-redirects: 1.15.6(debug@4.3.5) transitivePeerDependencies: - debug - axios@1.7.2: + /axios@1.7.2: + resolution: {integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==} dependencies: - follow-redirects: 1.15.6(debug@4.3.5(supports-color@6.1.0)) + follow-redirects: 1.15.6(debug@4.3.5) form-data: 4.0.0 proxy-from-env: 1.1.0 transitivePeerDependencies: - debug + dev: true - axobject-query@2.2.0: {} + /axobject-query@2.2.0: + resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} + dev: true - babel-code-frame@6.26.0: + /babel-code-frame@6.26.0: + resolution: {integrity: sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==} dependencies: chalk: 1.1.3 esutils: 2.0.3 js-tokens: 3.0.2 + dev: true + + /babel-core@6.26.3: + resolution: {integrity: sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==} + dependencies: + babel-code-frame: 6.26.0 + babel-generator: 6.26.1 + babel-helpers: 6.24.1 + babel-messages: 6.23.0 + babel-register: 6.26.0 + babel-runtime: 6.26.0 + babel-template: 6.26.0 + babel-traverse: 6.26.0 + babel-types: 6.26.0 + babylon: 6.18.0 + convert-source-map: 1.9.0 + debug: 2.6.9(supports-color@6.1.0) + json5: 0.5.1 + lodash: 4.17.21 + minimatch: 3.1.2 + path-is-absolute: 1.0.1 + private: 0.1.8 + slash: 1.0.0 + source-map: 0.5.7 + transitivePeerDependencies: + - supports-color + dev: true - babel-core@7.0.0-bridge.0(@babel/core@7.24.7): + /babel-core@7.0.0-bridge.0(@babel/core@7.24.7): + resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 - babel-jest@26.6.3(@babel/core@7.24.7): + /babel-generator@6.26.1: + resolution: {integrity: sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==} + dependencies: + babel-messages: 6.23.0 + babel-runtime: 6.26.0 + babel-types: 6.26.0 + detect-indent: 4.0.0 + jsesc: 1.3.0 + lodash: 4.17.21 + source-map: 0.5.7 + trim-right: 1.0.1 + dev: true + + /babel-helpers@6.24.1: + resolution: {integrity: sha512-n7pFrqQm44TCYvrCDb0MqabAF+JUBq+ijBvNMUxpkLjJaAu32faIexewMumrH5KLLJ1HDyT0PTEqRyAe/GwwuQ==} + dependencies: + babel-runtime: 6.26.0 + babel-template: 6.26.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-jest@26.6.3(@babel/core@7.24.7): + resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} + engines: {node: '>= 10.14.2'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.24.7 '@jest/transform': 26.6.2 @@ -41895,7 +31137,11 @@ snapshots: transitivePeerDependencies: - supports-color - babel-jest@29.7.0(@babel/core@7.24.7): + /babel-jest@29.7.0(@babel/core@7.24.7): + resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.8.0 dependencies: '@babel/core': 7.24.7 '@jest/transform': 29.7.0 @@ -41908,35 +31154,55 @@ snapshots: transitivePeerDependencies: - supports-color - babel-loader@8.3.0(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /babel-loader@8.3.0(@babel/core@7.24.7)(webpack@5.84.1): + resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} + engines: {node: '>= 8.9'} + peerDependencies: + '@babel/core': ^7.0.0 + webpack: 5.84.1 dependencies: '@babel/core': 7.24.7 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - babel-loader@9.1.3(@babel/core@7.24.7)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /babel-loader@9.1.3(@babel/core@7.24.7)(webpack@5.84.1): + resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==} + engines: {node: '>= 14.15.0'} + peerDependencies: + '@babel/core': ^7.12.0 + webpack: 5.84.1 dependencies: '@babel/core': 7.24.7 find-cache-dir: 4.0.0 schema-utils: 4.2.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - babel-messages@6.23.0: + /babel-messages@6.23.0: + resolution: {integrity: sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==} dependencies: babel-runtime: 6.26.0 + dev: true - babel-plugin-add-react-displayname@0.0.5: {} + /babel-plugin-add-react-displayname@0.0.5: + resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} - babel-plugin-apply-mdx-type-prop@1.6.22(@babel/core@7.12.9): + /babel-plugin-apply-mdx-type-prop@1.6.22(@babel/core@7.12.9): + resolution: {integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==} + peerDependencies: + '@babel/core': ^7.11.6 dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 '@mdx-js/util': 1.6.22 - babel-plugin-const-enum@1.2.0(@babel/core@7.24.7): + /babel-plugin-const-enum@1.2.0(@babel/core@7.24.7): + resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 @@ -41944,12 +31210,16 @@ snapshots: '@babel/traverse': 7.24.7 transitivePeerDependencies: - supports-color + dev: true - babel-plugin-extract-import-names@1.6.22: + /babel-plugin-extract-import-names@1.6.22: + resolution: {integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==} dependencies: '@babel/helper-plugin-utils': 7.10.4 - babel-plugin-istanbul@6.1.1: + /babel-plugin-istanbul@6.1.1: + resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} + engines: {node: '>=8'} dependencies: '@babel/helper-plugin-utils': 7.24.7 '@istanbuljs/load-nyc-config': 1.1.0 @@ -41959,35 +31229,48 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-jest-hoist@26.6.2: + /babel-plugin-jest-hoist@26.6.2: + resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==} + engines: {node: '>= 10.14.2'} dependencies: '@babel/template': 7.24.7 '@babel/types': 7.24.7 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.6 - babel-plugin-jest-hoist@29.6.3: + /babel-plugin-jest-hoist@29.6.3: + resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/template': 7.24.7 '@babel/types': 7.24.7 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.6 - babel-plugin-macros@2.8.0: + /babel-plugin-macros@2.8.0: + resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} dependencies: '@babel/runtime': 7.24.7 cosmiconfig: 6.0.0 resolve: 1.22.8 + dev: true - babel-plugin-macros@3.1.0: + /babel-plugin-macros@3.1.0: + resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} + engines: {node: '>=10', npm: '>=6'} dependencies: '@babel/runtime': 7.24.7 cosmiconfig: 7.1.0 resolve: 1.22.8 - babel-plugin-named-exports-order@0.0.2: {} + /babel-plugin-named-exports-order@0.0.2: + resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==} + dev: false - babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.7): + /babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.7): + resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/compat-data': 7.24.7 '@babel/core': 7.24.7 @@ -41996,7 +31279,10 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.24.7): + /babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.24.7): + resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.24.7 '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.24.7) @@ -42004,7 +31290,10 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.7): + /babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.7): + resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.24.7 '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7) @@ -42012,40 +31301,56 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.7): + /babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.7): + resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.24.7 '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7) transitivePeerDependencies: - supports-color - babel-plugin-react-docgen@4.2.1: + /babel-plugin-react-docgen@4.2.1: + resolution: {integrity: sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==} dependencies: ast-types: 0.14.2 lodash: 4.17.21 react-docgen: 5.4.3 transitivePeerDependencies: - supports-color + dev: false - babel-plugin-rename-jsx-attribute@0.2.4(babel-core@7.0.0-bridge.0(@babel/core@7.24.7)): + /babel-plugin-rename-jsx-attribute@0.2.4(babel-core@6.26.3): + resolution: {integrity: sha512-R3kRggMmkXAd465a2q2Y2IceIUJHoyw9q/c0I7i3JdQDHGbUj59OTOR6QjRuB/bII1yH2Xuy/KM5+NNs9NzCGw==} + peerDependencies: + babel-core: ^6.26.3 dependencies: - babel-core: 7.0.0-bridge.0(@babel/core@7.24.7) + babel-core: 6.26.3 + dev: true - babel-plugin-styled-components@2.1.4(@babel/core@7.24.7)(styled-components@4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(supports-color@5.5.0): + /babel-plugin-styled-components@2.1.4(@babel/core@7.24.7)(styled-components@4.4.1)(supports-color@5.5.0): + resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==} + peerDependencies: + styled-components: '>= 2' dependencies: '@babel/helper-annotate-as-pure': 7.24.7 '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0) '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7) lodash: 4.17.21 picomatch: 2.3.1 - styled-components: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + styled-components: 4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1) transitivePeerDependencies: - '@babel/core' - supports-color + dev: false - babel-plugin-transform-async-to-promises@0.8.18: {} + /babel-plugin-transform-async-to-promises@0.8.18: + resolution: {integrity: sha512-WpOrF76nUHijnNn10eBGOHZmXQC8JYRME9rOLxStOga7Av2VO53ehVFvVNImMksVtQuL2/7ZNxEgxnx7oo/3Hw==} + dev: true - babel-plugin-transform-es2015-modules-commonjs@6.26.2: + /babel-plugin-transform-es2015-modules-commonjs@6.26.2: + resolution: {integrity: sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==} dependencies: babel-plugin-transform-strict-mode: 6.24.1 babel-runtime: 6.26.0 @@ -42053,26 +31358,39 @@ snapshots: babel-types: 6.26.0 transitivePeerDependencies: - supports-color + dev: true - babel-plugin-transform-strict-mode@6.24.1: + /babel-plugin-transform-strict-mode@6.24.1: + resolution: {integrity: sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw==} dependencies: babel-runtime: 6.26.0 babel-types: 6.26.0 + dev: true - babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.24.7)(@babel/traverse@7.24.7): + /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.24.7): + resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} + peerDependencies: + '@babel/core': ^7 + '@babel/traverse': ^7 + peerDependenciesMeta: + '@babel/traverse': + optional: true dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 - optionalDependencies: - '@babel/traverse': 7.24.7 + dev: true - babel-polyfill@6.26.0: + /babel-polyfill@6.26.0: + resolution: {integrity: sha512-F2rZGQnAdaHWQ8YAoeRbukc7HS9QgdgeyJ0rQDd485v9opwuPvjpPFcOOT/WmkKTdgy9ESgSPXDcTNpzrGr6iQ==} dependencies: babel-runtime: 6.26.0 core-js: 2.6.12 regenerator-runtime: 0.10.5 - babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.7): + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.7): + resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.24.7 '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7) @@ -42088,24 +31406,48 @@ snapshots: '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.7) - babel-preset-jest@26.6.2(@babel/core@7.24.7): + /babel-preset-jest@26.6.2(@babel/core@7.24.7): + resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} + engines: {node: '>= 10.14.2'} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.24.7 babel-plugin-jest-hoist: 26.6.2 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7) - babel-preset-jest@29.6.3(@babel/core@7.24.7): + /babel-preset-jest@29.6.3(@babel/core@7.24.7): + resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.24.7 babel-plugin-jest-hoist: 29.6.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7) - babel-runtime@6.26.0: + /babel-register@6.26.0: + resolution: {integrity: sha512-veliHlHX06wjaeY8xNITbveXSiI+ASFnOqvne/LaIJIqOWi2Ogmj91KOugEz/hoh/fwMhXNBJPCv8Xaz5CyM4A==} + dependencies: + babel-core: 6.26.3 + babel-runtime: 6.26.0 + core-js: 2.6.12 + home-or-tmp: 2.0.0 + lodash: 4.17.21 + mkdirp: 0.5.6 + source-map-support: 0.4.18 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-runtime@6.26.0: + resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==} dependencies: core-js: 2.6.12 regenerator-runtime: 0.11.1 - babel-template@6.26.0: + /babel-template@6.26.0: + resolution: {integrity: sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg==} dependencies: babel-runtime: 6.26.0 babel-traverse: 6.26.0 @@ -42114,8 +31456,10 @@ snapshots: lodash: 4.17.21 transitivePeerDependencies: - supports-color + dev: true - babel-traverse@6.26.0: + /babel-traverse@6.26.0: + resolution: {integrity: sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA==} dependencies: babel-code-frame: 6.26.0 babel-messages: 6.23.0 @@ -42128,27 +31472,42 @@ snapshots: lodash: 4.17.21 transitivePeerDependencies: - supports-color + dev: true - babel-types@6.26.0: + /babel-types@6.26.0: + resolution: {integrity: sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==} dependencies: babel-runtime: 6.26.0 esutils: 2.0.3 lodash: 4.17.21 to-fast-properties: 1.0.3 + dev: true - babylon@6.18.0: {} + /babylon@6.18.0: + resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==} + hasBin: true + dev: true - bail@1.0.5: {} + /bail@1.0.5: + resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} - bail@2.0.2: {} + /bail@2.0.2: + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + dev: false - balanced-match@1.0.2: {} + /balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - base64-js@1.5.1: {} + /base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - base64url@3.0.1: {} + /base64url@3.0.1: + resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==} + engines: {node: '>=6.0.0'} - base@0.11.2: + /base@0.11.2: + resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} + engines: {node: '>=0.10.0'} dependencies: cache-base: 1.0.1 class-utils: 0.3.6 @@ -42158,40 +31517,65 @@ snapshots: mixin-deep: 1.3.2 pascalcase: 0.1.1 - basic-auth@2.0.1: + /basic-auth@2.0.1: + resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} + engines: {node: '>= 0.8'} dependencies: safe-buffer: 5.1.2 + dev: true - batch@0.6.1: {} + /batch@0.6.1: + resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} - bcrypt-pbkdf@1.0.2: + /bcrypt-pbkdf@1.0.2: + resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} dependencies: tweetnacl: 0.14.5 + dev: true - before-after-hook@2.2.3: {} + /before-after-hook@2.2.3: + resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} + dev: true - better-opn@2.1.1: + /better-opn@2.1.1: + resolution: {integrity: sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==} + engines: {node: '>8.0.0'} dependencies: open: 7.4.2 + dev: false - better-opn@3.0.2: + /better-opn@3.0.2: + resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==} + engines: {node: '>=12.0.0'} dependencies: open: 8.4.2 + dev: true - better-path-resolve@1.0.0: + /better-path-resolve@1.0.0: + resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} + engines: {node: '>=4'} dependencies: is-windows: 1.0.2 + dev: true - big-integer@1.6.52: {} + /big-integer@1.6.52: + resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} + engines: {node: '>=0.6'} - big.js@5.2.2: {} + /big.js@5.2.2: + resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} - bin-check@4.1.0: + /bin-check@4.1.0: + resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==} + engines: {node: '>=4'} dependencies: execa: 0.7.0 executable: 4.1.1 + dev: true - bin-links@3.0.3: + /bin-links@3.0.3: + resolution: {integrity: sha512-zKdnMPWEdh4F5INR07/eBrodC7QrF5JKvqskjz/ZZRXg5YSAZIbn8zGhbhUrElzHBZ2fvEQdOU59RHcTG3GiwA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: cmd-shim: 5.0.0 mkdirp-infer-owner: 2.0.0 @@ -42199,38 +31583,59 @@ snapshots: read-cmd-shim: 3.0.1 rimraf: 3.0.2 write-file-atomic: 4.0.2 + dev: true - bin-version-check@5.1.0: + /bin-version-check@5.1.0: + resolution: {integrity: sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==} + engines: {node: '>=12'} dependencies: bin-version: 6.0.0 semver: 7.6.2 semver-truncate: 3.0.0 + dev: true - bin-version@6.0.0: + /bin-version@6.0.0: + resolution: {integrity: sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==} + engines: {node: '>=12'} dependencies: execa: 5.1.1 find-versions: 5.1.0 + dev: true - binary-extensions@1.13.1: {} + /binary-extensions@1.13.1: + resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==} + engines: {node: '>=0.10.0'} - binary-extensions@2.3.0: {} + /binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} - bindings@1.5.0: + /bindings@1.5.0: + resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + requiresBuild: true dependencies: file-uri-to-path: 1.0.0 optional: true - bl@4.1.0: + /bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} dependencies: buffer: 5.7.1 inherits: 2.0.4 readable-stream: 3.6.2 + dev: true - blob-util@2.0.2: {} + /blob-util@2.0.2: + resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} + dev: true - bluebird@3.7.2: {} + /bluebird@3.7.2: + resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} + dev: true - body-parser@1.20.2(supports-color@6.1.0): + /body-parser@1.20.2(supports-color@6.1.0): + resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} dependencies: bytes: 3.1.2 content-type: 1.0.5 @@ -42247,12 +31652,15 @@ snapshots: transitivePeerDependencies: - supports-color - bonjour-service@1.2.1: + /bonjour-service@1.2.1: + resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==} dependencies: fast-deep-equal: 3.1.3 multicast-dns: 7.2.5 + dev: true - bonjour@3.5.0: + /bonjour@3.5.0: + resolution: {integrity: sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==} dependencies: array-flatten: 2.1.2 deep-equal: 1.1.2 @@ -42261,9 +31669,12 @@ snapshots: multicast-dns: 6.2.3 multicast-dns-service-types: 1.1.0 - boolbase@1.0.0: {} + /boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - boxen@5.1.2: + /boxen@5.1.2: + resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} + engines: {node: '>=10'} dependencies: ansi-align: 3.0.1 camelcase: 6.3.0 @@ -42273,26 +31684,37 @@ snapshots: type-fest: 0.20.2 widest-line: 3.1.0 wrap-ansi: 7.0.0 + dev: false - bplist-parser@0.1.1: + /bplist-parser@0.1.1: + resolution: {integrity: sha512-2AEM0FXy8ZxVLBuqX0hqt1gDwcnz2zygEkQ6zaD5Wko/sB9paUNwlpawrFtKeHUAQUOzjVy9AO4oeonqIHKA9Q==} + requiresBuild: true dependencies: big-integer: 1.6.52 + dev: false optional: true - bplist-parser@0.2.0: + /bplist-parser@0.2.0: + resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} + engines: {node: '>= 5.10.0'} dependencies: big-integer: 1.6.52 + dev: true - brace-expansion@1.1.11: + /brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 - brace-expansion@2.0.1: + /brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} dependencies: balanced-match: 1.0.2 - braces@2.3.2(supports-color@6.1.0): + /braces@2.3.2(supports-color@6.1.0): + resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} + engines: {node: '>=0.10.0'} dependencies: arr-flatten: 1.1.0 array-unique: 0.3.2 @@ -42307,68 +31729,106 @@ snapshots: transitivePeerDependencies: - supports-color - braces@3.0.3: + /braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} dependencies: fill-range: 7.1.1 - breakword@1.0.6: + /breakword@1.0.6: + resolution: {integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==} dependencies: wcwidth: 1.0.1 + dev: true - browser-assert@1.2.1: {} + /browser-assert@1.2.1: + resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==} - browser-process-hrtime@1.0.0: {} + /browser-process-hrtime@1.0.0: + resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} + dev: true - browserify-zlib@0.1.4: + /browserify-zlib@0.1.4: + resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==} dependencies: pako: 0.2.9 + dev: true - browserslist@4.23.1: + /browserslist@4.23.1: + resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true dependencies: caniuse-lite: 1.0.30001636 electron-to-chromium: 1.4.810 node-releases: 2.0.14 update-browserslist-db: 1.0.16(browserslist@4.23.1) - bs-logger@0.2.6: + /bs-logger@0.2.6: + resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} + engines: {node: '>= 6'} dependencies: fast-json-stable-stringify: 2.1.0 - bser@2.1.1: + /bser@2.1.1: + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} dependencies: node-int64: 0.4.0 - buffer-crc32@0.2.13: {} + /buffer-crc32@0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} - buffer-from@1.1.2: {} + /buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - buffer-indexof@1.1.1: {} + /buffer-indexof@1.1.1: + resolution: {integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==} - buffer@5.7.1: + /buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} dependencies: base64-js: 1.5.1 ieee754: 1.2.1 + dev: true - buffer@6.0.3: + /buffer@6.0.3: + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} dependencies: base64-js: 1.5.1 ieee754: 1.2.1 - builtin-modules@3.3.0: {} + /builtin-modules@3.3.0: + resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} + engines: {node: '>=6'} + dev: true - builtins@1.0.3: {} + /builtins@1.0.3: + resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==} + dev: true - builtins@5.1.0: + /builtins@5.1.0: + resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==} dependencies: semver: 7.6.2 + dev: true - byte-size@7.0.1: {} + /byte-size@7.0.1: + resolution: {integrity: sha512-crQdqyCwhokxwV1UyDzLZanhkugAgft7vt0qbbdt60C6Zf3CAiGmtUCylbtYwrU6loOUw3euGrNtW1J651ot1A==} + engines: {node: '>=10'} + dev: true - bytes@3.0.0: {} + /bytes@3.0.0: + resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} + engines: {node: '>= 0.8'} - bytes@3.1.2: {} + /bytes@3.1.2: + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} - c8@7.14.0: + /c8@7.14.0: + resolution: {integrity: sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw==} + engines: {node: '>=10.12.0'} + hasBin: true dependencies: '@bcoe/v8-coverage': 0.2.3 '@istanbuljs/schema': 0.1.3 @@ -42382,8 +31842,11 @@ snapshots: v8-to-istanbul: 9.3.0 yargs: 16.2.0 yargs-parser: 20.2.9 + dev: false - cacache@15.3.0: + /cacache@15.3.0: + resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==} + engines: {node: '>= 10'} dependencies: '@npmcli/fs': 1.1.1 '@npmcli/move-file': 1.1.2 @@ -42405,8 +31868,11 @@ snapshots: unique-filename: 1.1.1 transitivePeerDependencies: - bluebird + dev: false - cacache@16.1.3: + /cacache@16.1.3: + resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: '@npmcli/fs': 2.1.2 '@npmcli/move-file': 2.0.1 @@ -42428,8 +31894,11 @@ snapshots: unique-filename: 2.0.1 transitivePeerDependencies: - bluebird + dev: true - cache-base@1.0.1: + /cache-base@1.0.1: + resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} + engines: {node: '>=0.10.0'} dependencies: collection-visit: 1.0.0 component-emitter: 1.3.1 @@ -42441,9 +31910,14 @@ snapshots: union-value: 1.0.1 unset-value: 1.0.0 - cacheable-lookup@5.0.4: {} + /cacheable-lookup@5.0.4: + resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} + engines: {node: '>=10.6.0'} + dev: true - cacheable-request@6.1.0: + /cacheable-request@6.1.0: + resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} + engines: {node: '>=8'} dependencies: clone-response: 1.0.3 get-stream: 5.2.0 @@ -42452,8 +31926,11 @@ snapshots: lowercase-keys: 2.0.0 normalize-url: 4.5.1 responselike: 1.0.2 + dev: false - cacheable-request@7.0.4: + /cacheable-request@7.0.4: + resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} + engines: {node: '>=8'} dependencies: clone-response: 1.0.3 get-stream: 5.2.0 @@ -42462,17 +31939,26 @@ snapshots: lowercase-keys: 2.0.0 normalize-url: 6.1.0 responselike: 2.0.1 + dev: true - cachedir@2.4.0: {} + /cachedir@2.4.0: + resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==} + engines: {node: '>=6'} + dev: true - caching-transform@4.0.0: + /caching-transform@4.0.0: + resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==} + engines: {node: '>=8'} dependencies: hasha: 5.2.2 make-dir: 3.1.0 package-hash: 4.0.0 write-file-atomic: 3.0.3 + dev: true - call-bind@1.0.7: + /call-bind@1.0.7: + resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} + engines: {node: '>= 0.4'} dependencies: es-define-property: 1.0.0 es-errors: 1.3.0 @@ -42480,121 +31966,198 @@ snapshots: get-intrinsic: 1.2.4 set-function-length: 1.2.2 - call-me-maybe@1.0.2: {} + /call-me-maybe@1.0.2: + resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} + dev: false - caller-callsite@2.0.0: + /caller-callsite@2.0.0: + resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} + engines: {node: '>=4'} dependencies: callsites: 2.0.0 - caller-path@2.0.0: + /caller-path@2.0.0: + resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} + engines: {node: '>=4'} dependencies: caller-callsite: 2.0.0 - callsites@2.0.0: {} + /callsites@2.0.0: + resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} + engines: {node: '>=4'} - callsites@3.1.0: {} + /callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} - camel-case@4.1.2: + /camel-case@4.1.2: + resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} dependencies: pascal-case: 3.1.2 tslib: 2.6.3 - camelcase-css@2.0.1: {} + /camelcase-css@2.0.1: + resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} + engines: {node: '>= 6'} - camelcase-keys@2.1.0: + /camelcase-keys@2.1.0: + resolution: {integrity: sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: camelcase: 2.1.1 map-obj: 1.0.1 + dev: false optional: true - camelcase-keys@6.2.2: + /camelcase-keys@6.2.2: + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} dependencies: camelcase: 5.3.1 map-obj: 4.3.0 quick-lru: 4.0.1 + dev: true - camelcase@2.1.1: + /camelcase@2.1.1: + resolution: {integrity: sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==} + engines: {node: '>=0.10.0'} + requiresBuild: true + dev: false optional: true - camelcase@5.3.1: {} + /camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} - camelcase@6.3.0: {} + /camelcase@6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} - camelize@1.0.1: {} + /camelize@1.0.1: + resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} + dev: false - caniuse-api@3.0.0: + /caniuse-api@3.0.0: + resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: browserslist: 4.23.1 caniuse-lite: 1.0.30001636 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 + dev: true - caniuse-lite@1.0.30001636: {} + /caniuse-lite@1.0.30001636: + resolution: {integrity: sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==} - capture-exit@2.0.0: + /capture-exit@2.0.0: + resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} + engines: {node: 6.* || 8.* || >= 10.*} dependencies: rsvp: 4.8.5 - case-sensitive-paths-webpack-plugin@2.4.0: {} + /case-sensitive-paths-webpack-plugin@2.4.0: + resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} + engines: {node: '>=4'} - caseless@0.12.0: {} + /caseless@0.12.0: + resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + dev: true - ccount@1.1.0: {} + /ccount@1.1.0: + resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==} - ccount@2.0.1: {} + /ccount@2.0.1: + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + dev: false - chalk@1.1.3: + /chalk@1.1.3: + resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} + engines: {node: '>=0.10.0'} dependencies: ansi-styles: 2.2.1 escape-string-regexp: 1.0.5 has-ansi: 2.0.0 strip-ansi: 3.0.1 supports-color: 2.0.0 + dev: true - chalk@2.4.2: + /chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 supports-color: 5.5.0 - chalk@3.0.0: + /chalk@3.0.0: + resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} + engines: {node: '>=8'} dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 + dev: true - chalk@4.1.1: + /chalk@4.1.1: + resolution: {integrity: sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==} + engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 + dev: true - chalk@4.1.2: + /chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 - char-regex@1.0.2: {} + /char-regex@1.0.2: + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + engines: {node: '>=10'} - character-entities-html4@2.1.0: {} + /character-entities-html4@2.1.0: + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} + dev: false - character-entities-legacy@1.1.4: {} + /character-entities-legacy@1.1.4: + resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} - character-entities-legacy@3.0.0: {} + /character-entities-legacy@3.0.0: + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + dev: false - character-entities@1.2.4: {} + /character-entities@1.2.4: + resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} - character-entities@2.0.2: {} + /character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + dev: false - character-reference-invalid@1.1.4: {} + /character-reference-invalid@1.1.4: + resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} - character-reference-invalid@2.0.1: {} + /character-reference-invalid@2.0.1: + resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} + dev: false - chardet@0.7.0: {} + /chardet@0.7.0: + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + dev: true - check-more-types@2.24.0: {} + /check-more-types@2.24.0: + resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} + engines: {node: '>= 0.8.0'} + dev: true - child_process@1.0.2: {} + /child_process@1.0.2: + resolution: {integrity: sha512-Wmza/JzL0SiWz7kl6MhIKT5ceIlnFPJX+lwUGj7Clhy5MMldsSoJR0+uvRzOS5Kv45Mq7t1PoE8TsOA9bzvb6g==} + dev: true - chokidar@2.1.8(supports-color@6.1.0): + /chokidar@2.1.8(supports-color@6.1.0): + resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==} + deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies dependencies: anymatch: 2.0.0(supports-color@6.1.0) async-each: 1.0.6 @@ -42612,7 +32175,9 @@ snapshots: transitivePeerDependencies: - supports-color - chokidar@3.6.0: + /chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} dependencies: anymatch: 3.1.3 braces: 3.0.3 @@ -42624,223 +32189,371 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - chownr@1.1.4: {} + /chownr@1.1.4: + resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} + dev: true - chownr@2.0.0: {} + /chownr@2.0.0: + resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} + engines: {node: '>=10'} - chrome-trace-event@1.0.4: {} + /chrome-trace-event@1.0.4: + resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} + engines: {node: '>=6.0'} - ci-info@2.0.0: {} + /ci-info@2.0.0: + resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} - ci-info@3.9.0: {} + /ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} - citty@0.1.6: + /citty@0.1.6: + resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} dependencies: consola: 3.2.3 + dev: true - cjs-module-lexer@0.6.0: {} + /cjs-module-lexer@0.6.0: + resolution: {integrity: sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==} + dev: true - cjs-module-lexer@1.3.1: {} + /cjs-module-lexer@1.3.1: + resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==} - class-utils@0.3.6: + /class-utils@0.3.6: + resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} + engines: {node: '>=0.10.0'} dependencies: arr-union: 3.1.0 define-property: 0.2.5 isobject: 3.0.1 static-extend: 0.1.2 - classcat@5.0.5: {} + /classcat@5.0.5: + resolution: {integrity: sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==} + dev: false - classnames@2.5.1: {} + /classnames@2.5.1: + resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==} - clean-css@4.2.4: + /clean-css@4.2.4: + resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==} + engines: {node: '>= 4.0'} dependencies: source-map: 0.6.1 - clean-css@5.3.3: + /clean-css@5.3.3: + resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} + engines: {node: '>= 10.0'} dependencies: source-map: 0.6.1 - clean-stack@2.2.0: {} + /clean-stack@2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} - cli-boxes@2.2.1: {} + /cli-boxes@2.2.1: + resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} + engines: {node: '>=6'} + dev: false - cli-cursor@3.1.0: + /cli-cursor@3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} dependencies: restore-cursor: 3.1.0 + dev: true - cli-spinners@2.6.1: {} + /cli-spinners@2.6.1: + resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} + engines: {node: '>=6'} + dev: true - cli-spinners@2.9.2: {} + /cli-spinners@2.9.2: + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + engines: {node: '>=6'} + dev: true - cli-table3@0.6.5: + /cli-table3@0.6.5: + resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} + engines: {node: 10.* || >= 12.*} dependencies: string-width: 4.2.3 optionalDependencies: '@colors/colors': 1.5.0 - cli-truncate@2.1.0: + /cli-truncate@2.1.0: + resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} + engines: {node: '>=8'} dependencies: slice-ansi: 3.0.0 string-width: 4.2.3 + dev: true - cli-width@3.0.0: {} + /cli-width@3.0.0: + resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} + engines: {node: '>= 10'} + dev: true - cli@1.0.1: + /cli@1.0.1: + resolution: {integrity: sha512-41U72MB56TfUMGndAKK8vJ78eooOD4Z5NOL4xEfjc0c23s+6EYKXlXsmACBVclLP1yOfWCgEganVzddVrSNoTg==} + engines: {node: '>=0.2.5'} dependencies: exit: 0.1.2 glob: 7.2.3 + dev: false - client-only@0.0.1: {} + /client-only@0.0.1: + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + dev: false - cliui@5.0.0: + /cliui@5.0.0: + resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==} dependencies: string-width: 3.1.0 strip-ansi: 5.2.0 wrap-ansi: 5.1.0 - cliui@6.0.0: + /cliui@6.0.0: + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 6.2.0 + dev: true - cliui@7.0.4: + /cliui@7.0.4: + resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - cliui@8.0.1: + /cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - clone-deep@0.2.4: + /clone-deep@0.2.4: + resolution: {integrity: sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==} + engines: {node: '>=0.10.0'} dependencies: for-own: 0.1.5 is-plain-object: 2.0.4 kind-of: 3.2.2 lazy-cache: 1.0.4 shallow-clone: 0.1.2 + dev: true - clone-deep@4.0.1: + /clone-deep@4.0.1: + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} dependencies: is-plain-object: 2.0.4 kind-of: 6.0.3 shallow-clone: 3.0.1 - clone-response@1.0.3: + /clone-response@1.0.3: + resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} dependencies: mimic-response: 1.0.1 - clone@1.0.4: {} + /clone@1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + dev: true - clone@2.1.2: {} + /clone@2.1.2: + resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} + engines: {node: '>=0.8'} + dev: true - clsx@1.2.1: {} + /clsx@1.2.1: + resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} + engines: {node: '>=6'} + dev: false - clsx@2.1.1: {} + /clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} + dev: false - cmd-shim@5.0.0: + /cmd-shim@5.0.0: + resolution: {integrity: sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: mkdirp-infer-owner: 2.0.0 + dev: true - co@4.6.0: {} + /co@4.6.0: + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} - coa@2.0.2: + /coa@2.0.2: + resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} + engines: {node: '>= 4.0'} dependencies: '@types/q': 1.5.8 chalk: 2.4.2 q: 1.5.1 + dev: true - codemirror@5.65.16: {} + /codemirror@5.65.16: + resolution: {integrity: sha512-br21LjYmSlVL0vFCPWPfhzUCT34FM/pAdK7rRIZwa0rrtrIdotvP4Oh4GUHsu2E3IrQMCfRkL/fN3ytMNxVQvg==} + dev: false - coffee-script@1.12.7: {} + /coffee-script@1.12.7: + resolution: {integrity: sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==} + engines: {node: '>=0.8.0'} + deprecated: CoffeeScript on NPM has moved to "coffeescript" (no hyphen) + hasBin: true + dev: true - collapse-white-space@1.0.6: {} + /collapse-white-space@1.0.6: + resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==} - collect-v8-coverage@1.0.2: {} + /collect-v8-coverage@1.0.2: + resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} - collection-visit@1.0.0: + /collection-visit@1.0.0: + resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} + engines: {node: '>=0.10.0'} dependencies: map-visit: 1.0.0 object-visit: 1.0.1 - color-convert@1.9.3: + /color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: color-name: 1.1.3 - color-convert@2.0.1: + /color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} dependencies: color-name: 1.1.4 - color-name@1.1.3: {} + /color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - color-name@1.1.4: {} + /color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - color-support@1.1.3: {} + /color-support@1.1.3: + resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} + hasBin: true - colord@2.9.3: {} + /colord@2.9.3: + resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} + dev: true - colorette@1.4.0: {} + /colorette@1.4.0: + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} - colorette@2.0.20: {} + /colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} - columnify@1.6.0: + /columnify@1.6.0: + resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==} + engines: {node: '>=8.0.0'} dependencies: strip-ansi: 6.0.1 wcwidth: 1.0.1 + dev: true - combined-stream@1.0.8: + /combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} dependencies: delayed-stream: 1.0.0 - comma-separated-tokens@1.0.8: {} + /comma-separated-tokens@1.0.8: + resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} - comma-separated-tokens@2.0.3: {} + /comma-separated-tokens@2.0.3: + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} + dev: false - commander@10.0.1: {} + /commander@10.0.1: + resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} + engines: {node: '>=14'} + dev: false - commander@2.20.3: {} + /commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} - commander@4.1.1: {} + /commander@4.1.1: + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} + dev: false - commander@5.1.0: {} + /commander@5.1.0: + resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} + engines: {node: '>= 6'} + dev: true - commander@6.2.1: {} + /commander@6.2.1: + resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} + engines: {node: '>= 6'} - commander@7.2.0: {} + /commander@7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} - commander@8.3.0: {} + /commander@8.3.0: + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + engines: {node: '>= 12'} - common-ancestor-path@1.0.1: {} + /common-ancestor-path@1.0.1: + resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} + dev: true - common-path-prefix@3.0.0: {} + /common-path-prefix@3.0.0: + resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} + dev: true - common-tags@1.8.2: {} + /common-tags@1.8.2: + resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} + engines: {node: '>=4.0.0'} + dev: true - commondir@1.0.1: {} + /commondir@1.0.1: + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} - compare-func@2.0.0: + /compare-func@2.0.0: + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} dependencies: array-ify: 1.0.0 dot-prop: 5.3.0 + dev: true - component-emitter@1.3.1: {} + /component-emitter@1.3.1: + resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==} - compressible@2.0.18: + /compressible@2.0.18: + resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} + engines: {node: '>= 0.6'} dependencies: mime-db: 1.52.0 - compression-webpack-plugin@7.1.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /compression-webpack-plugin@7.1.2(webpack@5.84.1): + resolution: {integrity: sha512-9DKNW6ILLjx+bNBoviHDgLx6swBhWWH9ApClC9sTH2NoFfQM47BapQfovCm9zjD9v1uZwInF5a925FB9ErGQeQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: schema-utils: 3.3.0 serialize-javascript: 5.0.1 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - compression@1.7.4(supports-color@6.1.0): + /compression@1.7.4(supports-color@6.1.0): + resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} + engines: {node: '>= 0.8.0'} dependencies: accepts: 1.3.8 bytes: 3.0.0 @@ -42852,34 +32565,47 @@ snapshots: transitivePeerDependencies: - supports-color - concat-map@0.0.1: {} + /concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - concat-stream@1.6.2: + /concat-stream@1.6.2: + resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} + engines: {'0': node >= 0.8} dependencies: buffer-from: 1.1.2 inherits: 2.0.4 readable-stream: 2.3.8 typedarray: 0.0.6 - concat-stream@2.0.0: + /concat-stream@2.0.0: + resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} + engines: {'0': node >= 6.0} dependencies: buffer-from: 1.1.2 inherits: 2.0.4 readable-stream: 3.6.2 typedarray: 0.0.6 + dev: true - concat-with-sourcemaps@1.1.0: + /concat-with-sourcemaps@1.1.0: + resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==} dependencies: source-map: 0.6.1 + dev: true - confbox@0.1.7: {} + /confbox@0.1.7: + resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==} + dev: true - config-chain@1.1.13: + /config-chain@1.1.13: + resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} dependencies: ini: 1.3.8 proto-list: 1.2.4 - configstore@5.0.1: + /configstore@5.0.1: + resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} + engines: {node: '>=8'} dependencies: dot-prop: 5.3.0 graceful-fs: 4.2.11 @@ -42887,35 +32613,60 @@ snapshots: unique-string: 2.0.0 write-file-atomic: 3.0.3 xdg-basedir: 4.0.0 + dev: false - confusing-browser-globals@1.0.11: {} + /confusing-browser-globals@1.0.11: + resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} + dev: true - connect-history-api-fallback@1.6.0: {} + /connect-history-api-fallback@1.6.0: + resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==} + engines: {node: '>=0.8'} - connect-history-api-fallback@2.0.0: {} + /connect-history-api-fallback@2.0.0: + resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} + engines: {node: '>=0.8'} + dev: true - consola@3.2.3: {} + /consola@3.2.3: + resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} + engines: {node: ^14.18.0 || >=16.10.0} + dev: true - console-browserify@1.1.0: + /console-browserify@1.1.0: + resolution: {integrity: sha512-duS7VP5pvfsNLDvL1O4VOEbw37AI3A4ZUQYemvDlnpGrNu9tprR7BYWpDYwC0Xia0Zxz5ZupdiIrUp0GH1aXfg==} dependencies: date-now: 0.1.4 + dev: false - console-control-strings@1.1.0: {} + /console-control-strings@1.1.0: + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} - constants-browserify@1.0.0: {} + /constants-browserify@1.0.0: + resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} + dev: true - content-disposition@0.5.4: + /content-disposition@0.5.4: + resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} + engines: {node: '>= 0.6'} dependencies: safe-buffer: 5.2.1 - content-type@1.0.5: {} + /content-type@1.0.5: + resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} + engines: {node: '>= 0.6'} - conventional-changelog-angular@5.0.13: + /conventional-changelog-angular@5.0.13: + resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} + engines: {node: '>=10'} dependencies: compare-func: 2.0.0 q: 1.5.1 + dev: true - conventional-changelog-core@4.2.4: + /conventional-changelog-core@4.2.4: + resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==} + engines: {node: '>=10'} dependencies: add-stream: 1.0.0 conventional-changelog-writer: 5.0.1 @@ -42931,10 +32682,17 @@ snapshots: read-pkg: 3.0.0 read-pkg-up: 3.0.0 through2: 4.0.2 + dev: true - conventional-changelog-preset-loader@2.3.4: {} + /conventional-changelog-preset-loader@2.3.4: + resolution: {integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==} + engines: {node: '>=10'} + dev: true - conventional-changelog-writer@5.0.1: + /conventional-changelog-writer@5.0.1: + resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==} + engines: {node: '>=10'} + hasBin: true dependencies: conventional-commits-filter: 2.0.7 dateformat: 3.0.3 @@ -42945,13 +32703,20 @@ snapshots: semver: 6.3.1 split: 1.0.1 through2: 4.0.2 + dev: true - conventional-commits-filter@2.0.7: + /conventional-commits-filter@2.0.7: + resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==} + engines: {node: '>=10'} dependencies: lodash.ismatch: 4.4.0 modify-values: 1.0.1 + dev: true - conventional-commits-parser@3.2.4: + /conventional-commits-parser@3.2.4: + resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} + engines: {node: '>=10'} + hasBin: true dependencies: JSONStream: 1.3.5 is-text-path: 1.0.1 @@ -42959,8 +32724,12 @@ snapshots: meow: 8.1.2 split2: 3.2.2 through2: 4.0.2 + dev: true - conventional-recommended-bump@6.1.0: + /conventional-recommended-bump@6.1.0: + resolution: {integrity: sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==} + engines: {node: '>=10'} + hasBin: true dependencies: concat-stream: 2.0.0 conventional-changelog-preset-loader: 2.3.4 @@ -42970,24 +32739,41 @@ snapshots: git-semver-tags: 4.1.1 meow: 8.1.2 q: 1.5.1 + dev: true - convert-source-map@1.9.0: {} + /convert-source-map@1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} - convert-source-map@2.0.0: {} + /convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - cookie-signature@1.0.6: {} + /cookie-signature@1.0.6: + resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} - cookie@0.4.2: {} + /cookie@0.4.2: + resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} + engines: {node: '>= 0.6'} + dev: true - cookie@0.6.0: {} + /cookie@0.6.0: + resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} + engines: {node: '>= 0.6'} - copy-anything@2.0.6: + /copy-anything@2.0.6: + resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} dependencies: is-what: 3.14.1 + dev: true - copy-descriptor@0.1.1: {} + /copy-descriptor@0.1.1: + resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} + engines: {node: '>=0.10.0'} - copy-webpack-plugin@10.2.4(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /copy-webpack-plugin@10.2.4(webpack@5.84.1): + resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==} + engines: {node: '>= 12.20.0'} + peerDependencies: + webpack: 5.84.1 dependencies: fast-glob: 3.3.2 glob-parent: 6.0.2 @@ -42995,9 +32781,14 @@ snapshots: normalize-path: 3.0.0 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - copy-webpack-plugin@12.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /copy-webpack-plugin@12.0.2(webpack@5.84.1): + resolution: {integrity: sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==} + engines: {node: '>= 18.12.0'} + peerDependencies: + webpack: 5.84.1 dependencies: fast-glob: 3.3.2 glob-parent: 6.0.2 @@ -43005,32 +32796,51 @@ snapshots: normalize-path: 3.0.0 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - core-js-compat@3.37.1: + /core-js-compat@3.37.1: + resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==} dependencies: browserslist: 4.23.1 - core-js-pure@3.37.1: {} + /core-js-pure@3.37.1: + resolution: {integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==} + requiresBuild: true - core-js@2.6.12: {} + /core-js@2.6.12: + resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} + deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. + requiresBuild: true - core-js@3.37.1: {} + /core-js@3.37.1: + resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==} + requiresBuild: true - core-util-is@1.0.2: {} + /core-util-is@1.0.2: + resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + dev: true - core-util-is@1.0.3: {} + /core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - corser@2.0.1: {} + /corser@2.0.1: + resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==} + engines: {node: '>= 0.4.0'} + dev: true - cosmiconfig@5.2.1: + /cosmiconfig@5.2.1: + resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} + engines: {node: '>=4'} dependencies: import-fresh: 2.0.0 is-directory: 0.3.1 js-yaml: 3.13.1 parse-json: 4.0.0 - cosmiconfig@6.0.0: + /cosmiconfig@6.0.0: + resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} + engines: {node: '>=8'} dependencies: '@types/parse-json': 4.0.2 import-fresh: 3.3.0 @@ -43038,7 +32848,9 @@ snapshots: path-type: 4.0.0 yaml: 1.10.2 - cosmiconfig@7.1.0: + /cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} dependencies: '@types/parse-json': 4.0.2 import-fresh: 3.3.0 @@ -43046,28 +32858,42 @@ snapshots: path-type: 4.0.0 yaml: 1.10.2 - cosmiconfig@8.3.6(typescript@5.1.6): + /cosmiconfig@8.3.6(typescript@5.1.6): + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 - optionalDependencies: typescript: 5.1.6 + dev: true - country-language@0.1.7: + /country-language@0.1.7: + resolution: {integrity: sha512-QH8GvZehR0IsFSR8ZPzteaCq/JjsLKk+tHWSQciXVpredI/2Xaf1VAdCuo/XPFWSrRCkSLaZNqnOcot4zceAIw==} dependencies: underscore: 1.7.0 underscore.deep: 0.5.3(underscore@1.7.0) + dev: false - cp-file@7.0.0: + /cp-file@7.0.0: + resolution: {integrity: sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==} + engines: {node: '>=8'} dependencies: graceful-fs: 4.2.11 make-dir: 3.1.0 nested-error-stacks: 2.1.1 p-event: 4.2.0 + dev: false - cpy@8.1.2: + /cpy@8.1.2: + resolution: {integrity: sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==} + engines: {node: '>=8'} dependencies: arrify: 2.0.1 cp-file: 7.0.0 @@ -43080,29 +32906,18 @@ snapshots: p-map: 3.0.0 transitivePeerDependencies: - supports-color + dev: false - create-jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)): - dependencies: - '@jest/types': 29.6.3 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)) - jest-util: 29.7.0 - prompts: 2.4.2 - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - - create-jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)): + /create-jest@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): + resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)) + jest-config: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -43111,13 +32926,16 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)): + /create-jest@29.7.0(@types/node@18.11.9): + resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)) + jest-config: 29.7.0(@types/node@18.11.9) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -43126,15 +32944,21 @@ snapshots: - supports-color - ts-node - create-require@1.1.1: {} + /create-require@1.1.1: + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + dev: true - cross-spawn@5.1.0: + /cross-spawn@5.1.0: + resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} dependencies: lru-cache: 4.1.5 shebang-command: 1.2.0 which: 1.3.1 + dev: true - cross-spawn@6.0.5: + /cross-spawn@6.0.5: + resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} + engines: {node: '>=4.8'} dependencies: nice-try: 1.0.5 path-key: 2.0.1 @@ -43142,27 +32966,50 @@ snapshots: shebang-command: 1.2.0 which: 1.3.1 - cross-spawn@7.0.3: + /cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 - crypto-js@3.3.0: {} + /crypto-js@3.3.0: + resolution: {integrity: sha512-DIT51nX0dCfKltpRiXV+/TVZq+Qq2NgF4644+K7Ttnla7zEzqc+kjJyiB96BHNyUTBxyjzRcZYpUdZa+QAqi6Q==} + dev: false - crypto-random-string@2.0.0: {} + /crypto-random-string@2.0.0: + resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} + engines: {node: '>=8'} - css-color-keywords@1.0.0: {} + /css-color-keywords@1.0.0: + resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} + engines: {node: '>=4'} + dev: false - css-declaration-sorter@6.4.1(postcss@8.4.39): + /css-declaration-sorter@6.4.1(postcss@8.4.39): + resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} + engines: {node: ^10 || ^12 || >=14} + peerDependencies: + postcss: ^8.0.9 dependencies: postcss: 8.4.39 + dev: true - css-declaration-sorter@7.2.0(postcss@8.4.39): + /css-declaration-sorter@7.2.0(postcss@8.4.39): + resolution: {integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.0.9 dependencies: postcss: 8.4.39 + dev: true - css-loader@1.0.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /css-loader@1.0.1(webpack@5.84.1): + resolution: {integrity: sha512-+ZHAZm/yqvJ2kDtPne3uX0C+Vr3Zn5jFn2N4HywtS5ujwvsVkyg0VArEXpl3BgczDA8anieki1FIzhchX4yrDw==} + engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 dependencies: babel-code-frame: 6.26.0 css-selector-tokenizer: 0.7.3 @@ -43176,9 +33023,14 @@ snapshots: postcss-modules-values: 1.3.0 postcss-value-parser: 3.3.1 source-list-map: 2.0.1 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - css-loader@3.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /css-loader@3.6.0(webpack@5.84.1): + resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==} + engines: {node: '>= 8.9.0'} + peerDependencies: + webpack: 5.84.1 dependencies: camelcase: 5.3.1 cssesc: 3.0.0 @@ -43193,9 +33045,14 @@ snapshots: postcss-value-parser: 4.2.0 schema-utils: 2.7.1 semver: 6.3.1 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: false - css-loader@5.2.7(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /css-loader@5.2.7(webpack@5.84.1): + resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: icss-utils: 5.1.0(postcss@8.4.39) loader-utils: 2.0.4 @@ -43207,9 +33064,20 @@ snapshots: postcss-value-parser: 4.2.0 schema-utils: 3.3.0 semver: 7.6.2 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: false - css-loader@6.11.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /css-loader@6.11.0(webpack@5.84.1): + resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==} + engines: {node: '>= 12.13.0'} + peerDependencies: + '@rspack/core': 0.x || 1.x + webpack: 5.84.1 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true dependencies: icss-utils: 5.1.0(postcss@8.4.39) postcss: 8.4.39 @@ -43219,31 +33087,59 @@ snapshots: postcss-modules-values: 4.0.0(postcss@8.4.39) postcss-value-parser: 4.2.0 semver: 7.6.2 - optionalDependencies: - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - css-minimizer-webpack-plugin@5.0.1(esbuild@0.18.20)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /css-minimizer-webpack-plugin@5.0.1(esbuild@0.18.20)(webpack@5.84.1): + resolution: {integrity: sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==} + engines: {node: '>= 14.15.0'} + peerDependencies: + '@parcel/css': '*' + '@swc/css': '*' + clean-css: '*' + csso: '*' + esbuild: '*' + lightningcss: '*' + webpack: 5.84.1 + peerDependenciesMeta: + '@parcel/css': + optional: true + '@swc/css': + optional: true + clean-css: + optional: true + csso: + optional: true + esbuild: + optional: true + lightningcss: + optional: true dependencies: '@jridgewell/trace-mapping': 0.3.25 cssnano: 6.1.2(postcss@8.4.39) + esbuild: 0.18.20 jest-worker: 29.7.0 postcss: 8.4.39 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: - esbuild: 0.18.20 + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - css-select-base-adapter@0.1.1: {} + /css-select-base-adapter@0.1.1: + resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} + dev: true - css-select@2.1.0: + /css-select@2.1.0: + resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==} dependencies: boolbase: 1.0.0 css-what: 3.4.2 domutils: 1.7.0 nth-check: 1.0.2 + dev: true - css-select@4.3.0: + /css-select@4.3.0: + resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} dependencies: boolbase: 1.0.0 css-what: 6.1.0 @@ -43251,7 +33147,8 @@ snapshots: domutils: 2.8.0 nth-check: 2.1.1 - css-select@5.1.0: + /css-select@5.1.0: + resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} dependencies: boolbase: 1.0.0 css-what: 6.1.0 @@ -43259,46 +33156,73 @@ snapshots: domutils: 3.1.0 nth-check: 2.1.1 - css-selector-tokenizer@0.7.3: + /css-selector-tokenizer@0.7.3: + resolution: {integrity: sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==} dependencies: cssesc: 3.0.0 fastparse: 1.1.2 + dev: true - css-to-react-native@2.3.2: + /css-to-react-native@2.3.2: + resolution: {integrity: sha512-VOFaeZA053BqvvvqIA8c9n0+9vFppVBAHCp6JgFTtTMU3Mzi+XnelJ9XC9ul3BqFzZyQ5N+H0SnwsWT2Ebchxw==} dependencies: camelize: 1.0.1 css-color-keywords: 1.0.0 postcss-value-parser: 3.3.1 + dev: false - css-tree@1.0.0-alpha.37: + /css-tree@1.0.0-alpha.37: + resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} + engines: {node: '>=8.0.0'} dependencies: mdn-data: 2.0.4 source-map: 0.6.1 + dev: true - css-tree@1.1.3: + /css-tree@1.1.3: + resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} + engines: {node: '>=8.0.0'} dependencies: mdn-data: 2.0.14 source-map: 0.6.1 - css-tree@2.2.1: + /css-tree@2.2.1: + resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} dependencies: mdn-data: 2.0.28 source-map-js: 1.2.0 - css-tree@2.3.1: + /css-tree@2.3.1: + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} dependencies: mdn-data: 2.0.30 source-map-js: 1.2.0 - css-what@3.4.2: {} + /css-what@3.4.2: + resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} + engines: {node: '>= 6'} + dev: true - css-what@6.1.0: {} + /css-what@6.1.0: + resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} + engines: {node: '>= 6'} - css.escape@1.5.1: {} + /css.escape@1.5.1: + resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} + dev: true - cssesc@3.0.0: {} + /cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true - cssnano-preset-default@5.2.14(postcss@8.4.39): + /cssnano-preset-default@5.2.14(postcss@8.4.39): + resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: css-declaration-sorter: 6.4.1(postcss@8.4.39) cssnano-utils: 3.1.0(postcss@8.4.39) @@ -43330,8 +33254,13 @@ snapshots: postcss-reduce-transforms: 5.1.0(postcss@8.4.39) postcss-svgo: 5.1.0(postcss@8.4.39) postcss-unique-selectors: 5.1.1(postcss@8.4.39) + dev: true - cssnano-preset-default@6.1.2(postcss@8.4.39): + /cssnano-preset-default@6.1.2(postcss@8.4.39): + resolution: {integrity: sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: browserslist: 4.23.1 css-declaration-sorter: 7.2.0(postcss@8.4.39) @@ -43364,67 +33293,119 @@ snapshots: postcss-reduce-transforms: 6.0.2(postcss@8.4.39) postcss-svgo: 6.0.3(postcss@8.4.39) postcss-unique-selectors: 6.0.4(postcss@8.4.39) + dev: true - cssnano-utils@3.1.0(postcss@8.4.39): + /cssnano-utils@3.1.0(postcss@8.4.39): + resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: postcss: 8.4.39 + dev: true - cssnano-utils@4.0.2(postcss@8.4.39): + /cssnano-utils@4.0.2(postcss@8.4.39): + resolution: {integrity: sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 + dev: true - cssnano@5.1.15(postcss@8.4.39): + /cssnano@5.1.15(postcss@8.4.39): + resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: cssnano-preset-default: 5.2.14(postcss@8.4.39) lilconfig: 2.1.0 postcss: 8.4.39 yaml: 1.10.2 + dev: true - cssnano@6.1.2(postcss@8.4.39): + /cssnano@6.1.2(postcss@8.4.39): + resolution: {integrity: sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: cssnano-preset-default: 6.1.2(postcss@8.4.39) lilconfig: 3.1.2 postcss: 8.4.39 + dev: true - csso@4.2.0: + /csso@4.2.0: + resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} + engines: {node: '>=8.0.0'} dependencies: css-tree: 1.1.3 - csso@5.0.5: + /csso@5.0.5: + resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} dependencies: css-tree: 2.2.1 - cssom@0.3.8: {} + /cssom@0.3.8: + resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + dev: true - cssom@0.4.4: {} + /cssom@0.4.4: + resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} + dev: true - cssom@0.5.0: {} + /cssom@0.5.0: + resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} + dev: true - cssstyle@2.3.0: + /cssstyle@2.3.0: + resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} + engines: {node: '>=8'} dependencies: cssom: 0.3.8 + dev: true - csstype@3.1.3: {} + /csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} - csv-generate@3.4.3: {} + /csv-generate@3.4.3: + resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} + dev: true - csv-parse@4.16.3: {} + /csv-parse@4.16.3: + resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} + dev: true - csv-stringify@5.6.5: {} + /csv-stringify@5.6.5: + resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} + dev: true - csv@5.5.3: + /csv@5.5.3: + resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} + engines: {node: '>= 0.1.90'} dependencies: csv-generate: 3.4.3 csv-parse: 4.16.3 csv-stringify: 5.6.5 stream-transform: 2.1.3 + dev: true - currently-unhandled@0.4.1: + /currently-unhandled@0.4.1: + resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: array-find-index: 1.0.2 + dev: false optional: true - cypress@9.7.0: + /cypress@9.7.0: + resolution: {integrity: sha512-+1EE1nuuuwIt/N1KXRR2iWHU+OiIt7H28jJDyyI4tiUftId/DrXYEwoDa5+kH2pki1zxnA0r6HrUGHV5eLbF5Q==} + engines: {node: '>=12.0.0'} + hasBin: true + requiresBuild: true dependencies: '@cypress/request': 2.88.12 '@cypress/xvfb': 1.2.4(supports-color@8.1.1) @@ -43468,55 +33449,102 @@ snapshots: tmp: 0.2.3 untildify: 4.0.0 yauzl: 2.10.0 + dev: true - d3-array@3.2.4: + /d3-array@3.2.4: + resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} + engines: {node: '>=12'} dependencies: internmap: 2.0.3 + dev: false - d3-color@3.1.0: {} + /d3-color@3.1.0: + resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} + engines: {node: '>=12'} + dev: false - d3-dispatch@3.0.1: {} + /d3-dispatch@3.0.1: + resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} + engines: {node: '>=12'} + dev: false - d3-drag@3.0.0: + /d3-drag@3.0.0: + resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} + engines: {node: '>=12'} dependencies: d3-dispatch: 3.0.1 d3-selection: 3.0.0 + dev: false - d3-ease@3.0.1: {} + /d3-ease@3.0.1: + resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} + engines: {node: '>=12'} + dev: false - d3-format@3.1.0: {} + /d3-format@3.1.0: + resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} + engines: {node: '>=12'} + dev: false - d3-interpolate@3.0.1: + /d3-interpolate@3.0.1: + resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} + engines: {node: '>=12'} dependencies: d3-color: 3.1.0 + dev: false - d3-path@3.1.0: {} + /d3-path@3.1.0: + resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==} + engines: {node: '>=12'} + dev: false - d3-scale@4.0.2: + /d3-scale@4.0.2: + resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} + engines: {node: '>=12'} dependencies: d3-array: 3.2.4 d3-format: 3.1.0 d3-interpolate: 3.0.1 d3-time: 3.1.0 d3-time-format: 4.1.0 + dev: false - d3-selection@3.0.0: {} + /d3-selection@3.0.0: + resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} + engines: {node: '>=12'} + dev: false - d3-shape@3.2.0: + /d3-shape@3.2.0: + resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==} + engines: {node: '>=12'} dependencies: d3-path: 3.1.0 + dev: false - d3-time-format@4.1.0: + /d3-time-format@4.1.0: + resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} + engines: {node: '>=12'} dependencies: d3-time: 3.1.0 + dev: false - d3-time@3.1.0: + /d3-time@3.1.0: + resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} + engines: {node: '>=12'} dependencies: d3-array: 3.2.4 + dev: false - d3-timer@3.0.1: {} + /d3-timer@3.0.1: + resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} + engines: {node: '>=12'} + dev: false - d3-transition@3.0.1(d3-selection@3.0.0): + /d3-transition@3.0.1(d3-selection@3.0.0): + resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} + engines: {node: '>=12'} + peerDependencies: + d3-selection: 2 - 3 dependencies: d3-color: 3.1.0 d3-dispatch: 3.0.1 @@ -43524,146 +33552,260 @@ snapshots: d3-interpolate: 3.0.1 d3-selection: 3.0.0 d3-timer: 3.0.1 + dev: false - d3-zoom@3.0.0: + /d3-zoom@3.0.0: + resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} + engines: {node: '>=12'} dependencies: d3-dispatch: 3.0.1 d3-drag: 3.0.0 d3-interpolate: 3.0.1 d3-selection: 3.0.0 d3-transition: 3.0.1(d3-selection@3.0.0) + dev: false - d@1.0.2: + /d@1.0.2: + resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==} + engines: {node: '>=0.12'} dependencies: es5-ext: 0.10.64 type: 2.7.3 + dev: true - damerau-levenshtein@1.0.8: {} + /damerau-levenshtein@1.0.8: + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + dev: true - dargs@7.0.0: {} + /dargs@7.0.0: + resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} + engines: {node: '>=8'} + dev: true - dashdash@1.14.1: + /dashdash@1.14.1: + resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} + engines: {node: '>=0.10'} dependencies: assert-plus: 1.0.0 + dev: true - data-urls@2.0.0: + /data-urls@2.0.0: + resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} + engines: {node: '>=10'} dependencies: abab: 2.0.6 whatwg-mimetype: 2.3.0 whatwg-url: 8.7.0 + dev: true - data-urls@3.0.2: + /data-urls@3.0.2: + resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} + engines: {node: '>=12'} dependencies: abab: 2.0.6 whatwg-mimetype: 3.0.0 whatwg-url: 11.0.0 + dev: true - data-view-buffer@1.0.1: + /data-view-buffer@1.0.1: + resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-data-view: 1.0.1 - data-view-byte-length@1.0.1: + /data-view-byte-length@1.0.1: + resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-data-view: 1.0.1 - data-view-byte-offset@1.0.0: + /data-view-byte-offset@1.0.0: + resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-data-view: 1.0.1 - dataloader@1.4.0: {} + /dataloader@1.4.0: + resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} + dev: true - date-format@2.1.0: {} + /date-format@2.1.0: + resolution: {integrity: sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==} + engines: {node: '>=4.0'} + deprecated: 2.x is no longer supported. Please upgrade to 4.x or higher. + dev: true - date-now@0.1.4: {} + /date-now@0.1.4: + resolution: {integrity: sha512-AsElvov3LoNB7tf5k37H2jYSB+ZZPMT5sG2QjJCcdlV5chIv6htBUBUui2IKRjgtKAKtCBN7Zbwa+MtwLjSeNw==} + dev: false - dateformat@3.0.3: {} + /dateformat@3.0.3: + resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} + dev: true - dayjs@1.11.11: {} + /dayjs@1.11.11: + resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==} + dev: true - debounce@1.2.1: {} + /debounce@1.2.1: + resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} - debug@2.6.9(supports-color@6.1.0): + /debug@2.6.9(supports-color@6.1.0): + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.0.0 - optionalDependencies: supports-color: 6.1.0 - debug@3.1.0: + /debug@3.1.0: + resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.0.0 + dev: false - debug@3.2.7(supports-color@6.1.0): + /debug@3.2.7(supports-color@6.1.0): + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.1.3 - optionalDependencies: supports-color: 6.1.0 - debug@3.2.7(supports-color@8.1.1): + /debug@3.2.7(supports-color@8.1.1): + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.1.3 - optionalDependencies: supports-color: 8.1.1 + dev: true - debug@4.3.5(supports-color@5.5.0): + /debug@4.3.5(supports-color@5.5.0): + resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.1.2 - optionalDependencies: supports-color: 5.5.0 + dev: false - debug@4.3.5(supports-color@6.1.0): + /debug@4.3.5(supports-color@6.1.0): + resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.1.2 - optionalDependencies: supports-color: 6.1.0 - debug@4.3.5(supports-color@8.1.1): + /debug@4.3.5(supports-color@8.1.1): + resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true dependencies: ms: 2.1.2 - optionalDependencies: supports-color: 8.1.1 + dev: true - debuglog@1.0.1: {} + /debuglog@1.0.1: + resolution: {integrity: sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + dev: true - decamelize-keys@1.1.1: + /decamelize-keys@1.1.1: + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + engines: {node: '>=0.10.0'} dependencies: decamelize: 1.2.0 map-obj: 1.0.1 + dev: true - decamelize@1.2.0: {} + /decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} - decimal.js-light@2.5.1: {} + /decimal.js-light@2.5.1: + resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==} + dev: false - decimal.js@10.4.3: {} + /decimal.js@10.4.3: + resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + dev: true - decode-named-character-reference@1.0.2: + /decode-named-character-reference@1.0.2: + resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} dependencies: character-entities: 2.0.2 + dev: false - decode-uri-component@0.2.2: {} + /decode-uri-component@0.2.2: + resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} + engines: {node: '>=0.10'} - decompress-response@3.3.0: + /decompress-response@3.3.0: + resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} + engines: {node: '>=4'} dependencies: mimic-response: 1.0.1 + dev: false - decompress-response@6.0.0: + /decompress-response@6.0.0: + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} + engines: {node: '>=10'} dependencies: mimic-response: 3.1.0 + dev: true - dedent@0.7.0: {} + /dedent@0.7.0: + resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} - dedent@1.5.3(babel-plugin-macros@3.1.0): - optionalDependencies: - babel-plugin-macros: 3.1.0 + /dedent@1.5.3: + resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} + peerDependencies: + babel-plugin-macros: ^3.1.0 + peerDependenciesMeta: + babel-plugin-macros: + optional: true - deep-diff@1.0.2: {} + /deep-diff@1.0.2: + resolution: {integrity: sha512-aWS3UIVH+NPGCD1kki+DCU9Dua032iSsO43LqQpcs4R3+dVv7tX0qBGjiVHJHjplsoUM2XRO/KB92glqc68awg==} + dev: false - deep-equal@1.1.2: + /deep-equal@1.1.2: + resolution: {integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==} + engines: {node: '>= 0.4'} dependencies: is-arguments: 1.1.1 is-date-object: 1.0.5 @@ -43672,7 +33814,9 @@ snapshots: object-keys: 1.1.1 regexp.prototype.flags: 1.5.2 - deep-equal@2.2.3: + /deep-equal@2.2.3: + resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} + engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.1 call-bind: 1.0.7 @@ -43693,75 +33837,120 @@ snapshots: which-collection: 1.0.2 which-typed-array: 1.1.15 - deep-extend@0.6.0: {} + /deep-extend@0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + dev: false - deep-is@0.1.4: {} + /deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} - deepmerge@4.3.1: {} + /deepmerge@4.3.1: + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} - default-browser-id@1.0.4: + /default-browser-id@1.0.4: + resolution: {integrity: sha512-qPy925qewwul9Hifs+3sx1ZYn14obHxpkX+mPD369w4Rzg+YkJBgi3SOvwUq81nWSjqGUegIgEPwD8u+HUnxlw==} + engines: {node: '>=0.10.0'} + hasBin: true + requiresBuild: true dependencies: bplist-parser: 0.1.1 meow: 3.7.0 untildify: 2.1.0 + dev: false optional: true - default-browser-id@3.0.0: + /default-browser-id@3.0.0: + resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} + engines: {node: '>=12'} dependencies: bplist-parser: 0.2.0 untildify: 4.0.0 + dev: true - default-gateway@4.2.0: + /default-gateway@4.2.0: + resolution: {integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==} + engines: {node: '>=6'} dependencies: execa: 1.0.0 ip-regex: 2.1.0 - default-gateway@6.0.3: + /default-gateway@6.0.3: + resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} + engines: {node: '>= 10'} dependencies: execa: 5.1.1 + dev: true - default-require-extensions@3.0.1: + /default-require-extensions@3.0.1: + resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==} + engines: {node: '>=8'} dependencies: strip-bom: 4.0.0 + dev: true - defaults@1.0.4: + /defaults@1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} dependencies: clone: 1.0.4 + dev: true - defer-to-connect@1.1.3: {} + /defer-to-connect@1.1.3: + resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} + dev: false - defer-to-connect@2.0.1: {} + /defer-to-connect@2.0.1: + resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} + engines: {node: '>=10'} + dev: true - define-data-property@1.1.4: + /define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} dependencies: es-define-property: 1.0.0 es-errors: 1.3.0 gopd: 1.0.1 - define-lazy-prop@2.0.0: {} + /define-lazy-prop@2.0.0: + resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} + engines: {node: '>=8'} - define-properties@1.2.1: + /define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} dependencies: define-data-property: 1.1.4 has-property-descriptors: 1.0.2 object-keys: 1.1.1 - define-property@0.2.5: + /define-property@0.2.5: + resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} + engines: {node: '>=0.10.0'} dependencies: is-descriptor: 0.1.7 - define-property@1.0.0: + /define-property@1.0.0: + resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} + engines: {node: '>=0.10.0'} dependencies: is-descriptor: 1.0.3 - define-property@2.0.2: + /define-property@2.0.2: + resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} + engines: {node: '>=0.10.0'} dependencies: is-descriptor: 1.0.3 isobject: 3.0.1 - defu@6.1.4: {} + /defu@6.1.4: + resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} + dev: true - del@4.1.1: + /del@4.1.1: + resolution: {integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==} + engines: {node: '>=6'} dependencies: '@types/glob': 7.2.0 globby: 6.1.0 @@ -43771,7 +33960,9 @@ snapshots: pify: 4.0.1 rimraf: 2.7.1 - del@6.1.1: + /del@6.1.1: + resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} + engines: {node: '>=10'} dependencies: globby: 11.1.0 graceful-fs: 4.2.11 @@ -43781,306 +33972,495 @@ snapshots: p-map: 4.0.0 rimraf: 3.0.2 slash: 3.0.0 + dev: true - delayed-stream@1.0.0: {} + /delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} - delegates@1.0.0: {} + /delegates@1.0.0: + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} - depd@1.1.2: {} + /depd@1.1.2: + resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} + engines: {node: '>= 0.6'} - depd@2.0.0: {} + /depd@2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} - deprecation@2.3.1: {} + /deprecation@2.3.1: + resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} + dev: true - dequal@2.0.3: {} + /dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} - destroy@1.2.0: {} + /destroy@1.2.0: + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - detab@2.0.4: + /detab@2.0.4: + resolution: {integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==} dependencies: repeat-string: 1.6.1 - detect-indent@5.0.0: {} + /detect-indent@4.0.0: + resolution: {integrity: sha512-BDKtmHlOzwI7iRuEkhzsnPoi5ypEhWAJB5RvHWe1kMr06js3uK5B3734i3ui5Yd+wOJV1cpE4JnivPD283GU/A==} + engines: {node: '>=0.10.0'} + dependencies: + repeating: 2.0.1 + dev: true + + /detect-indent@5.0.0: + resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==} + engines: {node: '>=4'} + dev: true - detect-indent@6.1.0: {} + /detect-indent@6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} + dev: true - detect-newline@3.1.0: {} + /detect-newline@3.1.0: + resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} + engines: {node: '>=8'} - detect-node@2.1.0: {} + /detect-node@2.1.0: + resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} - detect-package-manager@2.0.1: + /detect-package-manager@2.0.1: + resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==} + engines: {node: '>=12'} dependencies: execa: 5.1.1 - detect-port@1.6.1: + /detect-port@1.6.1: + resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==} + engines: {node: '>= 4.0.0'} + hasBin: true dependencies: address: 1.2.2 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) transitivePeerDependencies: - supports-color - devlop@1.1.0: + /devlop@1.1.0: + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} dependencies: dequal: 2.0.3 + dev: false - dezalgo@1.0.4: + /dezalgo@1.0.4: + resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==} dependencies: asap: 2.0.6 wrappy: 1.0.2 + dev: true - diacritics-map@0.1.0: {} + /diacritics-map@0.1.0: + resolution: {integrity: sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==} + engines: {node: '>=0.8.0'} + dev: true - diff-sequences@26.6.2: {} + /diff-sequences@26.6.2: + resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==} + engines: {node: '>= 10.14.2'} + dev: true - diff-sequences@29.6.3: {} + /diff-sequences@29.6.3: + resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - diff@4.0.2: {} + /diff@4.0.2: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} - dir-glob@2.2.2: + /dir-glob@2.2.2: + resolution: {integrity: sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==} + engines: {node: '>=4'} dependencies: path-type: 3.0.0 + dev: false - dir-glob@3.0.1: + /dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} dependencies: path-type: 4.0.0 - dns-equal@1.0.0: {} + /dns-equal@1.0.0: + resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} - dns-packet@1.3.4: + /dns-packet@1.3.4: + resolution: {integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==} dependencies: ip: 1.1.9 safe-buffer: 5.2.1 - dns-packet@5.6.1: + /dns-packet@5.6.1: + resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} + engines: {node: '>=6'} dependencies: '@leichtgewicht/ip-codec': 2.0.5 + dev: true - dns-txt@2.0.2: + /dns-txt@2.0.2: + resolution: {integrity: sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==} dependencies: buffer-indexof: 1.1.1 - doctrine@2.1.0: + /doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} dependencies: esutils: 2.0.3 + dev: true - doctrine@3.0.0: + /doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} dependencies: esutils: 2.0.3 - dom-accessibility-api@0.5.16: {} + /dom-accessibility-api@0.5.16: + resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} + dev: true - dom-accessibility-api@0.6.3: {} + /dom-accessibility-api@0.6.3: + resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} + dev: true - dom-converter@0.2.0: + /dom-converter@0.2.0: + resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} dependencies: utila: 0.4.0 - dom-helpers@5.2.1: + /dom-helpers@5.2.1: + resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} dependencies: '@babel/runtime': 7.24.7 csstype: 3.1.3 + dev: false - dom-serializer@0.2.2: + /dom-serializer@0.2.2: + resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} dependencies: domelementtype: 2.3.0 entities: 2.2.0 - dom-serializer@1.4.1: + /dom-serializer@1.4.1: + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 entities: 2.2.0 - dom-serializer@2.0.0: + /dom-serializer@2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 entities: 4.5.0 - dom-walk@0.1.2: {} + /dom-walk@0.1.2: + resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==} - domelementtype@1.3.1: {} + /domelementtype@1.3.1: + resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} - domelementtype@2.3.0: {} + /domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} - domexception@2.0.1: + /domexception@2.0.1: + resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} + engines: {node: '>=8'} + deprecated: Use your platform's native DOMException instead dependencies: webidl-conversions: 5.0.0 + dev: true - domexception@4.0.0: + /domexception@4.0.0: + resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} + engines: {node: '>=12'} + deprecated: Use your platform's native DOMException instead dependencies: webidl-conversions: 7.0.0 + dev: true - domhandler@2.3.0: + /domhandler@2.3.0: + resolution: {integrity: sha512-q9bUwjfp7Eif8jWxxxPSykdRZAb6GkguBGSgvvCrhI9wB71W2K/Kvv4E61CF/mcCfnVJDeDWx/Vb/uAqbDj6UQ==} dependencies: domelementtype: 1.3.1 + dev: false - domhandler@4.3.1: + /domhandler@4.3.1: + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} dependencies: domelementtype: 2.3.0 - domhandler@5.0.3: + /domhandler@5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} dependencies: domelementtype: 2.3.0 - dompurify@3.1.5: {} + /dompurify@3.1.5: + resolution: {integrity: sha512-lwG+n5h8QNpxtyrJW/gJWckL+1/DQiYMX8f7t8Z2AZTPw1esVrqjI63i7Zc2Gz0aKzLVMYC1V1PL/ky+aY/NgA==} + dev: false - domutils@1.5.1: + /domutils@1.5.1: + resolution: {integrity: sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==} dependencies: dom-serializer: 0.2.2 domelementtype: 1.3.1 + dev: false - domutils@1.7.0: + /domutils@1.7.0: + resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} dependencies: dom-serializer: 0.2.2 domelementtype: 1.3.1 + dev: true - domutils@2.8.0: + /domutils@2.8.0: + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} dependencies: dom-serializer: 1.4.1 domelementtype: 2.3.0 domhandler: 4.3.1 - domutils@3.1.0: + /domutils@3.1.0: + resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} dependencies: dom-serializer: 2.0.0 domelementtype: 2.3.0 domhandler: 5.0.3 - dot-case@3.0.4: + /dot-case@3.0.4: + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} dependencies: no-case: 3.0.4 tslib: 2.6.3 - dot-prop@5.3.0: + /dot-prop@5.3.0: + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} dependencies: is-obj: 2.0.0 - dot-prop@6.0.1: + /dot-prop@6.0.1: + resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} + engines: {node: '>=10'} dependencies: is-obj: 2.0.0 + dev: true - dotenv-expand@10.0.0: {} + /dotenv-expand@10.0.0: + resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} + engines: {node: '>=12'} + dev: true - dotenv-expand@5.1.0: {} + /dotenv-expand@5.1.0: + resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} - dotenv@10.0.0: {} + /dotenv@10.0.0: + resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} + engines: {node: '>=10'} + dev: true - dotenv@16.3.2: {} + /dotenv@16.3.2: + resolution: {integrity: sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==} + engines: {node: '>=12'} + dev: true - dotenv@16.4.5: {} + /dotenv@16.4.5: + resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} + engines: {node: '>=12'} + dev: true - dotenv@8.6.0: {} + /dotenv@8.6.0: + resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} + engines: {node: '>=10'} - duplexer3@0.1.5: {} + /duplexer3@0.1.5: + resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} + dev: false - duplexer@0.1.2: {} + /duplexer@0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} - duplexify@3.7.1: + /duplexify@3.7.1: + resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} dependencies: end-of-stream: 1.4.4 inherits: 2.0.4 readable-stream: 2.3.8 stream-shift: 1.0.3 + dev: true - eastasianwidth@0.2.0: {} + /eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - ecc-jsbn@0.1.2: + /ecc-jsbn@0.1.2: + resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} dependencies: jsbn: 0.1.1 safer-buffer: 2.1.2 + dev: true - editorconfig@1.0.4: + /editorconfig@1.0.4: + resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==} + engines: {node: '>=14'} + hasBin: true dependencies: '@one-ini/wasm': 0.1.1 commander: 10.0.1 minimatch: 9.0.1 semver: 7.6.2 + dev: false - ee-first@1.1.1: {} + /ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - ejs@3.1.10: + /ejs@3.1.10: + resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} + engines: {node: '>=0.10.0'} + hasBin: true dependencies: jake: 10.9.1 + dev: true - electron-to-chromium@1.4.810: {} + /electron-to-chromium@1.4.810: + resolution: {integrity: sha512-Kaxhu4T7SJGpRQx99tq216gCq2nMxJo+uuT6uzz9l8TVN2stL7M06MIIXAtr9jsrLs2Glflgf2vMQRepxawOdQ==} - emittery@0.13.1: {} + /emittery@0.13.1: + resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} + engines: {node: '>=12'} - emittery@0.7.2: {} + /emittery@0.7.2: + resolution: {integrity: sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==} + engines: {node: '>=10'} + dev: true - emoji-regex@7.0.3: {} + /emoji-regex@7.0.3: + resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==} - emoji-regex@8.0.0: {} + /emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - emoji-regex@9.2.2: {} + /emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - emojis-list@3.0.0: {} + /emojis-list@3.0.0: + resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} + engines: {node: '>= 4'} - encodeurl@1.0.2: {} + /encodeurl@1.0.2: + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + engines: {node: '>= 0.8'} - encoding@0.1.13: + /encoding@0.1.13: + resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} + requiresBuild: true dependencies: iconv-lite: 0.6.3 + dev: true optional: true - end-of-stream@1.4.4: + /end-of-stream@1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} dependencies: once: 1.4.0 - endent@2.1.0: + /endent@2.1.0: + resolution: {integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==} dependencies: dedent: 0.7.0 fast-json-parse: 1.0.3 objectorarray: 1.0.5 - enhanced-resolve@4.5.0: + /enhanced-resolve@4.5.0: + resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==} + engines: {node: '>=6.9.0'} dependencies: graceful-fs: 4.2.11 memory-fs: 0.5.0 tapable: 1.1.3 + dev: true - enhanced-resolve@5.17.0: + /enhanced-resolve@5.17.0: + resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==} + engines: {node: '>=10.13.0'} dependencies: graceful-fs: 4.2.11 tapable: 2.2.1 - enquirer@2.3.6: + /enquirer@2.3.6: + resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + engines: {node: '>=8.6'} dependencies: ansi-colors: 4.1.3 + dev: true - enquirer@2.4.1: + /enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} dependencies: ansi-colors: 4.1.3 strip-ansi: 6.0.1 - entities@1.0.0: {} + /entities@1.0.0: + resolution: {integrity: sha512-LbLqfXgJMmy81t+7c14mnulFHJ170cM6E+0vMXR9k/ZiZwgX8i5pNgjTCX3SO4VeUsFLV+8InixoretwU+MjBQ==} + dev: false - entities@2.2.0: {} + /entities@2.2.0: + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} - entities@3.0.1: {} + /entities@3.0.1: + resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} + engines: {node: '>=0.12'} + dev: false - entities@4.5.0: {} + /entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} - env-paths@2.2.1: {} + /env-paths@2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} + dev: true - envinfo@7.13.0: {} + /envinfo@7.13.0: + resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==} + engines: {node: '>=4'} + hasBin: true - err-code@2.0.3: {} + /err-code@2.0.3: + resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} + dev: true - errno@0.1.8: + /errno@0.1.8: + resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} + hasBin: true dependencies: prr: 1.0.1 - error-ex@1.3.2: + /error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} dependencies: is-arrayish: 0.2.1 - error-stack-parser@2.1.4: + /error-stack-parser@2.1.4: + resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} dependencies: stackframe: 1.3.4 - es-abstract@1.23.3: + /es-abstract@1.23.3: + resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} + engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.1 arraybuffer.prototype.slice: 1.0.3 @@ -44129,15 +34509,21 @@ snapshots: unbox-primitive: 1.0.2 which-typed-array: 1.1.15 - es-array-method-boxes-properly@1.0.0: {} + /es-array-method-boxes-properly@1.0.0: + resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} - es-define-property@1.0.0: + /es-define-property@1.0.0: + resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} + engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.4 - es-errors@1.3.0: {} + /es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} - es-get-iterator@1.1.3: + /es-get-iterator@1.1.3: + resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 @@ -44149,7 +34535,9 @@ snapshots: isarray: 2.0.5 stop-iteration-iterator: 1.0.0 - es-iterator-helpers@1.0.19: + /es-iterator-helpers@1.0.19: + resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -44165,63 +34553,97 @@ snapshots: internal-slot: 1.0.7 iterator.prototype: 1.1.2 safe-array-concat: 1.1.2 + dev: true - es-module-lexer@1.5.4: {} + /es-module-lexer@1.5.4: + resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} - es-object-atoms@1.0.0: + /es-object-atoms@1.0.0: + resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} + engines: {node: '>= 0.4'} dependencies: es-errors: 1.3.0 - es-set-tostringtag@2.0.3: + /es-set-tostringtag@2.0.3: + resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} + engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.4 has-tostringtag: 1.0.2 hasown: 2.0.2 - es-shim-unscopables@1.0.2: + /es-shim-unscopables@1.0.2: + resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} dependencies: hasown: 2.0.2 - es-to-primitive@1.2.1: + /es-to-primitive@1.2.1: + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} dependencies: is-callable: 1.2.7 is-date-object: 1.0.5 is-symbol: 1.0.4 - es5-ext@0.10.64: + /es5-ext@0.10.64: + resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==} + engines: {node: '>=0.10'} + requiresBuild: true dependencies: es6-iterator: 2.0.3 es6-symbol: 3.1.4 esniff: 2.0.1 next-tick: 1.1.0 + dev: true - es5-shim@4.6.7: {} + /es5-shim@4.6.7: + resolution: {integrity: sha512-jg21/dmlrNQI7JyyA2w7n+yifSxBng0ZralnSfVZjoCawgNTCnS+yBCyVM9DL5itm7SUnDGgv7hcq2XCZX4iRQ==} + engines: {node: '>=0.4.0'} + dev: false - es6-error@4.1.1: {} + /es6-error@4.1.1: + resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} - es6-iterator@2.0.3: + /es6-iterator@2.0.3: + resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} dependencies: d: 1.0.2 es5-ext: 0.10.64 es6-symbol: 3.1.4 + dev: true - es6-shim@0.35.8: {} + /es6-shim@0.35.8: + resolution: {integrity: sha512-Twf7I2v4/1tLoIXMT8HlqaBSS5H2wQTs2wx3MNYCI8K1R1/clXyCazrcVCPm/FuO9cyV8+leEaZOWD5C253NDg==} + dev: false - es6-symbol@3.1.4: + /es6-symbol@3.1.4: + resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==} + engines: {node: '>=0.12'} dependencies: d: 1.0.2 ext: 1.7.0 + dev: true - esbuild-plugin-alias@0.2.1: {} + /esbuild-plugin-alias@0.2.1: + resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==} + dev: true - esbuild-register@3.5.0(esbuild@0.18.20): + /esbuild-register@3.5.0(esbuild@0.18.20): + resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==} + peerDependencies: + esbuild: '>=0.12 <1' dependencies: - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) esbuild: 0.18.20 transitivePeerDependencies: - supports-color + dev: true - esbuild@0.18.20: + /esbuild@0.18.20: + resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true optionalDependencies: '@esbuild/android-arm': 0.18.20 '@esbuild/android-arm64': 0.18.20 @@ -44246,21 +34668,39 @@ snapshots: '@esbuild/win32-ia32': 0.18.20 '@esbuild/win32-x64': 0.18.20 - escalade@3.1.2: {} + /escalade@3.1.2: + resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} + engines: {node: '>=6'} - escape-goat@2.1.1: {} + /escape-goat@2.1.1: + resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==} + engines: {node: '>=8'} + dev: false - escape-html@1.0.3: {} + /escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} - escape-string-regexp@1.0.5: {} + /escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} - escape-string-regexp@2.0.0: {} + /escape-string-regexp@2.0.0: + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} - escape-string-regexp@4.0.0: {} + /escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} - escape-string-regexp@5.0.0: {} + /escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + dev: true - escodegen@2.1.0: + /escodegen@2.1.0: + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} + hasBin: true dependencies: esprima: 4.0.1 estraverse: 5.3.0 @@ -44268,100 +34708,122 @@ snapshots: optionalDependencies: source-map: 0.6.1 - eslint-compat-utils@0.5.1(eslint@7.32.0): + /eslint-compat-utils@0.5.1(eslint@7.32.0): + resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} + engines: {node: '>=12'} + peerDependencies: + eslint: '>=6.0.0' dependencies: eslint: 7.32.0 semver: 7.6.2 + dev: true - eslint-config-prettier@9.1.0(eslint@8.46.0): + /eslint-config-prettier@9.1.0(eslint@7.32.0): + resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' dependencies: - eslint: 8.46.0 + eslint: 7.32.0 + dev: true - eslint-import-resolver-node@0.3.9: + /eslint-import-resolver-node@0.3.9: + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} dependencies: - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7(supports-color@6.1.0) is-core-module: 2.14.0 resolve: 1.22.8 transitivePeerDependencies: - supports-color + dev: true - eslint-module-utils@2.8.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0): + /eslint-module-utils@2.8.1(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0): + resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} + 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: - debug: 3.2.7(supports-color@8.1.1) - optionalDependencies: '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) + debug: 3.2.7(supports-color@6.1.0) eslint: 7.32.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color + dev: true - eslint-module-utils@2.8.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0): + /eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0): + resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} + 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: - debug: 3.2.7(supports-color@8.1.1) - optionalDependencies: - '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@5.1.6) + '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.1.6) + debug: 3.2.7(supports-color@6.1.0) eslint: 7.32.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color + dev: true - eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint@8.46.0): - dependencies: - debug: 3.2.7(supports-color@8.1.1) - optionalDependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.46.0)(typescript@5.1.6) - eslint: 8.46.0 - eslint-import-resolver-node: 0.3.9 - transitivePeerDependencies: - - supports-color - - eslint-plugin-cypress@2.15.2(eslint@8.46.0): + /eslint-plugin-cypress@2.15.2(eslint@7.32.0): + resolution: {integrity: sha512-CtcFEQTDKyftpI22FVGpx8bkpKyYXBlNge6zSo0pl5/qJvBAnzaD76Vu2AsP16d6mTj478Ldn2mhgrWV+Xr0vQ==} + peerDependencies: + eslint: '>= 3.2.1' dependencies: - eslint: 8.46.0 + eslint: 7.32.0 globals: 13.24.0 + dev: true - eslint-plugin-header@https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3(eslint@8.46.0): - dependencies: - eslint: 8.46.0 - - eslint-plugin-import@2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0): + /eslint-plugin-import@2.29.1(@typescript-eslint/parser@4.33.0)(eslint@7.32.0): + resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true dependencies: - array-includes: 3.1.8 - array.prototype.findlastindex: 1.2.5 - array.prototype.flat: 1.3.2 - array.prototype.flatmap: 1.3.2 - debug: 3.2.7(supports-color@8.1.1) - doctrine: 2.1.0 - eslint: 7.32.0 - eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0) - hasown: 2.0.2 - is-core-module: 2.14.0 - is-glob: 4.0.3 - minimatch: 3.1.2 - object.fromentries: 2.0.8 - object.groupby: 1.0.3 - object.values: 1.2.0 - semver: 6.3.1 - tsconfig-paths: 3.15.0 - optionalDependencies: '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) - transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color - - eslint-plugin-import@2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.1.6))(eslint@7.32.0): - dependencies: array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 array.prototype.flat: 1.3.2 array.prototype.flatmap: 1.3.2 - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7(supports-color@6.1.0) doctrine: 2.1.0 eslint: 7.32.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0) hasown: 2.0.2 is-core-module: 2.14.0 is-glob: 4.0.3 @@ -44371,24 +34833,32 @@ snapshots: object.values: 1.2.0 semver: 6.3.1 tsconfig-paths: 3.15.0 - optionalDependencies: - '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@5.1.6) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color + dev: true - eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint@8.46.0): + /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint@7.32.0): + resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} + 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.62.0(eslint@7.32.0)(typescript@5.1.6) array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 array.prototype.flat: 1.3.2 array.prototype.flatmap: 1.3.2 - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7(supports-color@6.1.0) doctrine: 2.1.0 - eslint: 8.46.0 + eslint: 7.32.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.1.6))(eslint-import-resolver-node@0.3.9)(eslint@8.46.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0) hasown: 2.0.2 is-core-module: 2.14.0 is-glob: 4.0.3 @@ -44398,21 +34868,29 @@ snapshots: object.values: 1.2.0 semver: 6.3.1 tsconfig-paths: 3.15.0 - optionalDependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.46.0)(typescript@5.1.6) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color + dev: true - eslint-plugin-jest-dom@4.0.3(eslint@7.32.0): + /eslint-plugin-jest-dom@4.0.3(eslint@7.32.0): + resolution: {integrity: sha512-9j+n8uj0+V0tmsoS7bYC7fLhQmIvjRqRYEcbDSi+TKPsTThLLXCyj5swMSSf/hTleeMktACnn+HFqXBr5gbcbA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6', yarn: '>=1'} + peerDependencies: + eslint: ^6.8.0 || ^7.0.0 || ^8.0.0 dependencies: '@babel/runtime': 7.24.7 '@testing-library/dom': 8.20.1 eslint: 7.32.0 requireindex: 1.2.0 + dev: true - eslint-plugin-jsonc@2.16.0(eslint@7.32.0): + /eslint-plugin-jsonc@2.16.0(eslint@7.32.0): + resolution: {integrity: sha512-Af/ZL5mgfb8FFNleH6KlO4/VdmDuTqmM+SPnWcdoWywTetv7kq+vQe99UyQb9XO3b0OWLVuTH7H0d/PXYCMdSg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0) eslint: 7.32.0 @@ -44422,8 +34900,13 @@ snapshots: jsonc-eslint-parser: 2.4.0 natural-compare: 1.4.0 synckit: 0.6.2 + dev: true - eslint-plugin-jsx-a11y@6.5.1(eslint@8.46.0): + /eslint-plugin-jsx-a11y@6.5.1(eslint@7.32.0): + resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==} + engines: {node: '>=4.0'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: '@babel/runtime': 7.24.7 aria-query: 4.2.2 @@ -44433,27 +34916,33 @@ snapshots: axobject-query: 2.2.0 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 8.46.0 + eslint: 7.32.0 has: 1.0.4 jsx-ast-utils: 3.3.5 language-tags: 1.0.9 minimatch: 3.1.2 + dev: true - eslint-plugin-react-hooks@4.6.2(eslint@7.32.0): + /eslint-plugin-react-hooks@4.6.2(eslint@7.32.0): + resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} + 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: 7.32.0 + dev: true - eslint-plugin-react-hooks@4.6.2(eslint@8.46.0): - dependencies: - eslint: 8.46.0 - - eslint-plugin-react@7.31.11(eslint@8.46.0): + /eslint-plugin-react@7.31.11(eslint@7.32.0): + resolution: {integrity: sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: array-includes: 3.1.8 array.prototype.flatmap: 1.3.2 array.prototype.tosorted: 1.1.4 doctrine: 2.1.0 - eslint: 8.46.0 + eslint: 7.32.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.5 minimatch: 3.1.2 @@ -44465,8 +34954,13 @@ snapshots: resolve: 2.0.0-next.5 semver: 6.3.1 string.prototype.matchall: 4.0.11 + dev: true - eslint-plugin-react@7.34.3(eslint@7.32.0): + /eslint-plugin-react@7.34.3(eslint@7.32.0): + resolution: {integrity: sha512-aoW4MV891jkUulwDApQbPYTVZmeuSyFrudpbTAQuj5Fv8VL+o6df2xIGpw8B0hPjAaih1/Fb0om9grCdyFYemA==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: array-includes: 3.1.8 array.prototype.findlast: 1.2.5 @@ -44487,46 +34981,70 @@ snapshots: resolve: 2.0.0-next.5 semver: 6.3.1 string.prototype.matchall: 4.0.11 + dev: true - eslint-plugin-testing-library@5.11.1(eslint@7.32.0)(typescript@4.9.5): + /eslint-plugin-testing-library@5.11.1(eslint@7.32.0)(typescript@4.9.5): + resolution: {integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} + peerDependencies: + eslint: ^7.5.0 || ^8.0.0 dependencies: '@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@4.9.5) eslint: 7.32.0 transitivePeerDependencies: - supports-color - typescript + dev: true - eslint-plugin-tsdoc@0.2.17: + /eslint-plugin-tsdoc@0.2.17: + resolution: {integrity: sha512-xRmVi7Zx44lOBuYqG8vzTXuL6IdGOeF9nHX17bjJ8+VE6fsxpdGem0/SBTmAwgYMKYB1WBkqRJVQ+n8GK041pA==} dependencies: '@microsoft/tsdoc': 0.14.2 '@microsoft/tsdoc-config': 0.16.2 + dev: true - eslint-scope@5.1.1: + /eslint-scope@5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} dependencies: esrecurse: 4.3.0 estraverse: 4.3.0 - eslint-scope@7.2.2: - dependencies: - esrecurse: 4.3.0 - estraverse: 5.3.0 - - eslint-utils@2.1.0: + /eslint-utils@2.1.0: + resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} + engines: {node: '>=6'} dependencies: eslint-visitor-keys: 1.3.0 - eslint-utils@3.0.0(eslint@7.32.0): + /eslint-utils@3.0.0(eslint@7.32.0): + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: '>=5' dependencies: eslint: 7.32.0 eslint-visitor-keys: 2.1.0 + dev: true - eslint-visitor-keys@1.3.0: {} + /eslint-visitor-keys@1.3.0: + resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} + engines: {node: '>=4'} - eslint-visitor-keys@2.1.0: {} + /eslint-visitor-keys@2.1.0: + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} + engines: {node: '>=10'} - eslint-visitor-keys@3.4.3: {} + /eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true - eslint-webpack-plugin@2.7.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /eslint-webpack-plugin@2.7.0(eslint@7.32.0)(webpack@5.84.1): + resolution: {integrity: sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + webpack: 5.84.1 dependencies: '@types/eslint': 7.29.0 arrify: 2.0.1 @@ -44535,20 +35053,15 @@ snapshots: micromatch: 4.0.7 normalize-path: 3.0.0 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - - eslint-webpack-plugin@2.7.0(eslint@8.46.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): - dependencies: - '@types/eslint': 7.29.0 - arrify: 2.0.1 - eslint: 8.46.0 - jest-worker: 27.5.1 - micromatch: 4.0.7 - normalize-path: 3.0.0 - schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - eslint-webpack-plugin@3.2.0(eslint@7.32.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /eslint-webpack-plugin@3.2.0(eslint@7.32.0)(webpack@5.84.1): + resolution: {integrity: sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==} + engines: {node: '>= 12.13.0'} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + webpack: 5.84.1 dependencies: '@types/eslint': 8.56.10 eslint: 7.32.0 @@ -44556,9 +35069,13 @@ snapshots: micromatch: 4.0.7 normalize-path: 3.0.0 schema-utils: 4.2.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - eslint@7.32.0: + /eslint@7.32.0: + resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} + engines: {node: ^10.12.0 || >=12.0.0} + hasBin: true dependencies: '@babel/code-frame': 7.12.11 '@eslint/eslintrc': 0.4.3 @@ -44566,7 +35083,7 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) doctrine: 3.0.0 enquirer: 2.4.1 escape-string-regexp: 4.0.0 @@ -44603,123 +35120,131 @@ snapshots: transitivePeerDependencies: - supports-color - eslint@8.46.0: - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.46.0) - '@eslint-community/regexpp': 4.11.0 - '@eslint/eslintrc': 2.1.4 - '@eslint/js': 8.57.0 - '@humanwhocodes/config-array': 0.11.14 - '@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.5(supports-color@8.1.1) - doctrine: 3.0.0 - escape-string-regexp: 4.0.0 - eslint-scope: 7.2.2 - eslint-visitor-keys: 3.4.3 - espree: 9.6.1 - esquery: 1.6.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.24.0 - graphemer: 1.4.0 - ignore: 5.3.1 - 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.4 - strip-ansi: 6.0.1 - text-table: 0.2.0 - transitivePeerDependencies: - - supports-color - - esniff@2.0.1: + /esniff@2.0.1: + resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==} + engines: {node: '>=0.10'} dependencies: d: 1.0.2 es5-ext: 0.10.64 event-emitter: 0.3.5 type: 2.7.3 + dev: true - espree@7.3.1: + /espree@7.3.1: + resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} + engines: {node: ^10.12.0 || >=12.0.0} dependencies: acorn: 7.4.1 acorn-jsx: 5.3.2(acorn@7.4.1) eslint-visitor-keys: 1.3.0 - espree@9.6.1: + /espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.12.0 acorn-jsx: 5.3.2(acorn@8.12.0) eslint-visitor-keys: 3.4.3 + dev: true - esprima@4.0.1: {} + /esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true - esquery@1.6.0: + /esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + engines: {node: '>=0.10'} dependencies: estraverse: 5.3.0 - esrecurse@4.3.0: + /esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} dependencies: estraverse: 5.3.0 - estraverse@4.3.0: {} + /estraverse@4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} - estraverse@5.3.0: {} + /estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} - estree-to-babel@3.2.1: + /estree-to-babel@3.2.1: + resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} + engines: {node: '>=8.3.0'} dependencies: '@babel/traverse': 7.24.7 '@babel/types': 7.24.7 c8: 7.14.0 transitivePeerDependencies: - supports-color + dev: false - estree-util-is-identifier-name@3.0.0: {} + /estree-util-is-identifier-name@3.0.0: + resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} + dev: false - estree-walker@0.2.1: {} + /estree-walker@0.2.1: + resolution: {integrity: sha512-6/I1dwNKk0N9iGOU3ydzAAurz4NPo/ttxZNCqgIVbWFvWyzWBSNonRrJ5CpjDuyBfmM7ENN7WCzUi9aT/UPXXQ==} + dev: true - estree-walker@0.6.1: {} + /estree-walker@0.6.1: + resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} + dev: true - estree-walker@1.0.1: {} + /estree-walker@1.0.1: + resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} + dev: true - estree-walker@2.0.2: {} + /estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + dev: true - esutils@2.0.3: {} + /esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} - etag@1.8.1: {} + /etag@1.8.1: + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} - event-emitter@0.3.5: + /event-emitter@0.3.5: + resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} dependencies: d: 1.0.2 es5-ext: 0.10.64 + dev: true - eventemitter2@6.4.9: {} + /eventemitter2@6.4.9: + resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==} + dev: true - eventemitter3@4.0.7: {} + /eventemitter3@4.0.7: + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} - events@3.3.0: {} + /events@3.3.0: + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} - eventsource@2.0.2: {} + /eventsource@2.0.2: + resolution: {integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==} + engines: {node: '>=12.0.0'} - exec-sh@0.2.2: + /exec-sh@0.2.2: + resolution: {integrity: sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==} dependencies: merge: 1.2.1 + dev: true - exec-sh@0.3.6: {} + /exec-sh@0.3.6: + resolution: {integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==} - execa@0.7.0: + /execa@0.7.0: + resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==} + engines: {node: '>=4'} dependencies: cross-spawn: 5.1.0 get-stream: 3.0.0 @@ -44728,8 +35253,11 @@ snapshots: p-finally: 1.0.0 signal-exit: 3.0.7 strip-eof: 1.0.0 + dev: true - execa@1.0.0: + /execa@1.0.0: + resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} + engines: {node: '>=6'} dependencies: cross-spawn: 6.0.5 get-stream: 4.1.0 @@ -44739,7 +35267,9 @@ snapshots: signal-exit: 3.0.7 strip-eof: 1.0.0 - execa@4.1.0: + /execa@4.1.0: + resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} + engines: {node: '>=10'} dependencies: cross-spawn: 7.0.3 get-stream: 5.2.0 @@ -44750,8 +35280,11 @@ snapshots: onetime: 5.1.2 signal-exit: 3.0.7 strip-final-newline: 2.0.0 + dev: true - execa@5.1.1: + /execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} dependencies: cross-spawn: 7.0.3 get-stream: 6.0.1 @@ -44763,7 +35296,9 @@ snapshots: signal-exit: 3.0.7 strip-final-newline: 2.0.0 - execa@8.0.1: + /execa@8.0.1: + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} + engines: {node: '>=16.17'} dependencies: cross-spawn: 7.0.3 get-stream: 8.0.1 @@ -44774,16 +35309,26 @@ snapshots: onetime: 6.0.0 signal-exit: 4.1.0 strip-final-newline: 3.0.0 + dev: true - executable@4.1.1: + /executable@4.1.1: + resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==} + engines: {node: '>=4'} dependencies: pify: 2.3.0 + dev: true - exenv@1.2.2: {} + /exenv@1.2.2: + resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==} + dev: false - exit@0.1.2: {} + /exit@0.1.2: + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} + engines: {node: '>= 0.8.0'} - expand-brackets@2.1.4(supports-color@6.1.0): + /expand-brackets@2.1.4(supports-color@6.1.0): + resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} + engines: {node: '>=0.10.0'} dependencies: debug: 2.6.9(supports-color@6.1.0) define-property: 0.2.5 @@ -44795,11 +35340,16 @@ snapshots: transitivePeerDependencies: - supports-color - expand-range@1.8.2: + /expand-range@1.8.2: + resolution: {integrity: sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==} + engines: {node: '>=0.10.0'} dependencies: fill-range: 2.2.4 + dev: true - expect@26.6.2: + /expect@26.6.2: + resolution: {integrity: sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 ansi-styles: 4.3.0 @@ -44807,8 +35357,11 @@ snapshots: jest-matcher-utils: 26.6.2 jest-message-util: 26.6.2 jest-regex-util: 26.0.0 + dev: true - expect@29.7.0: + /expect@29.7.0: + resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/expect-utils': 29.7.0 jest-get-type: 29.6.3 @@ -44816,9 +35369,13 @@ snapshots: jest-message-util: 29.7.0 jest-util: 29.7.0 - exponential-backoff@3.1.1: {} + /exponential-backoff@3.1.1: + resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} + dev: true - express@4.19.2(supports-color@6.1.0): + /express@4.19.2(supports-color@6.1.0): + resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==} + engines: {node: '>= 0.10.0'} dependencies: accepts: 1.3.8 array-flatten: 1.1.1 @@ -44854,39 +35411,59 @@ snapshots: transitivePeerDependencies: - supports-color - ext-list@2.2.2: + /ext-list@2.2.2: + resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} + engines: {node: '>=0.10.0'} dependencies: mime-db: 1.52.0 + dev: true - ext-name@5.0.0: + /ext-name@5.0.0: + resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==} + engines: {node: '>=4'} dependencies: ext-list: 2.2.2 sort-keys-length: 1.0.1 + dev: true - ext@1.7.0: + /ext@1.7.0: + resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} dependencies: type: 2.7.3 + dev: true - extend-shallow@2.0.1: + /extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} dependencies: is-extendable: 0.1.1 - extend-shallow@3.0.2: + /extend-shallow@3.0.2: + resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} + engines: {node: '>=0.10.0'} dependencies: assign-symbols: 1.0.0 is-extendable: 1.0.1 - extend@3.0.2: {} + /extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} - extendable-error@0.1.7: {} + /extendable-error@0.1.7: + resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} + dev: true - external-editor@3.1.0: + /external-editor@3.1.0: + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} dependencies: chardet: 0.7.0 iconv-lite: 0.4.24 tmp: 0.0.33 + dev: true - extglob@2.0.4(supports-color@6.1.0): + /extglob@2.0.4(supports-color@6.1.0): + resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} + engines: {node: '>=0.10.0'} dependencies: array-unique: 0.3.2 define-property: 1.0.0 @@ -44899,15 +35476,22 @@ snapshots: transitivePeerDependencies: - supports-color - extract-text-webpack-plugin@4.0.0-beta.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /extract-text-webpack-plugin@4.0.0-beta.0(webpack@5.84.1): + resolution: {integrity: sha512-Hypkn9jUTnFr0DpekNam53X47tXn3ucY08BQumv7kdGgeVUBLq3DJHJTi6HNxv4jl9W+Skxjz9+RnK0sJyqqjA==} + engines: {node: '>= 6.9.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 dependencies: async: 2.6.4 loader-utils: 1.4.2 schema-utils: 0.4.7 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-sources: 1.4.3 + dev: true - extract-zip@1.7.0: + /extract-zip@1.7.0: + resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==} + hasBin: true dependencies: concat-stream: 1.6.2 debug: 2.6.9(supports-color@6.1.0) @@ -44916,7 +35500,10 @@ snapshots: transitivePeerDependencies: - supports-color - extract-zip@2.0.1(supports-color@8.1.1): + /extract-zip@2.0.1(supports-color@8.1.1): + resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} + engines: {node: '>= 10.17.0'} + hasBin: true dependencies: debug: 4.3.5(supports-color@8.1.1) get-stream: 5.2.0 @@ -44925,14 +35512,24 @@ snapshots: '@types/yauzl': 2.10.3 transitivePeerDependencies: - supports-color + dev: true - extsprintf@1.3.0: {} + /extsprintf@1.3.0: + resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} + engines: {'0': node >=0.6.0} + dev: true - fast-deep-equal@3.1.3: {} + /fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - fast-equals@5.0.1: {} + /fast-equals@5.0.1: + resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==} + engines: {node: '>=6.0.0'} + dev: false - fast-glob@2.2.7: + /fast-glob@2.2.7: + resolution: {integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==} + engines: {node: '>=4.0.0'} dependencies: '@mrmlnc/readdir-enhanced': 2.2.1 '@nodelib/fs.stat': 1.1.3 @@ -44942,16 +35539,22 @@ snapshots: micromatch: 3.1.10(supports-color@6.1.0) transitivePeerDependencies: - supports-color + dev: false - fast-glob@3.2.7: + /fast-glob@3.2.7: + resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} + engines: {node: '>=8'} 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.7 + dev: true - fast-glob@3.3.2: + /fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 @@ -44959,125 +35562,196 @@ snapshots: merge2: 1.4.1 micromatch: 4.0.7 - fast-json-parse@1.0.3: {} + /fast-json-parse@1.0.3: + resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==} - fast-json-stable-stringify@2.1.0: {} + /fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} - fast-levenshtein@2.0.6: {} + /fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - fast-sha256@1.3.0: {} + /fast-sha256@1.3.0: + resolution: {integrity: sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==} - fast-sort@3.4.0: {} + /fast-sort@3.4.0: + resolution: {integrity: sha512-c/cMBGA5mH3OYjaXedtLIM3hQjv+KuZuiD2QEH5GofNOZeQVDIYIN7Okc2AW1KPhk44g5PTZnXp8t2lOMl8qhQ==} + dev: true - fast-xml-parser@3.21.1: + /fast-xml-parser@3.21.1: + resolution: {integrity: sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==} + hasBin: true dependencies: strnum: 1.0.5 + dev: true - fastest-levenshtein@1.0.16: {} + /fastest-levenshtein@1.0.16: + resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} + engines: {node: '>= 4.9.1'} - fastestsmallesttextencoderdecoder@1.0.22: {} + /fastestsmallesttextencoderdecoder@1.0.22: + resolution: {integrity: sha512-Pb8d48e+oIuY4MaM64Cd7OW1gt4nxCHs7/ddPPZ/Ic3sg8yVGM7O9wDvZ7us6ScaUupzM+pfBolwtYhN1IxBIw==} + dev: false - fastparse@1.1.2: {} + /fastparse@1.1.2: + resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==} + dev: true - fastq@1.17.1: + /fastq@1.17.1: + resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} dependencies: reusify: 1.0.4 - faye-websocket@0.11.4: + /faye-websocket@0.11.4: + resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} + engines: {node: '>=0.8.0'} dependencies: websocket-driver: 0.7.4 - fb-watchman@2.0.2: + /fb-watchman@2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} dependencies: bser: 2.1.1 - fd-slicer@1.1.0: + /fd-slicer@1.1.0: + resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} dependencies: pend: 1.2.0 - fetch-retry@5.0.6: {} + /fetch-retry@5.0.6: + resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==} - figures@3.2.0: + /figures@3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} dependencies: escape-string-regexp: 1.0.5 + dev: true - file-entry-cache@6.0.1: + /file-entry-cache@6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} dependencies: flat-cache: 3.2.0 - file-loader@2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /file-loader@2.0.0(webpack@5.84.1): + resolution: {integrity: sha512-YCsBfd1ZGCyonOKLxPiKPdu+8ld9HAaMEvJewzz+b2eTF7uL5Zm/HdBF6FjCrpCMRq25Mi0U1gl4pwn2TlH7hQ==} + engines: {node: '>= 6.9.0 < 7.0.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 dependencies: loader-utils: 1.4.2 schema-utils: 1.0.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - file-loader@6.2.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /file-loader@6.2.0(webpack@5.84.1): + resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - file-saver@2.0.5: {} + /file-saver@2.0.5: + resolution: {integrity: sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==} + dev: false - file-system-cache@1.1.0: + /file-system-cache@1.1.0: + resolution: {integrity: sha512-IzF5MBq+5CR0jXx5RxPe4BICl/oEhBSXKaL9fLhAXrIfIUS77Hr4vzrYyqYMHN6uTt+BOqi3fDCTjjEBCjERKw==} dependencies: fs-extra: 10.1.0 ramda: 0.28.0 - file-system-cache@2.3.0: + /file-system-cache@2.3.0: + resolution: {integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==} dependencies: fs-extra: 11.1.1 ramda: 0.29.0 + dev: true - file-type@17.1.6: + /file-type@17.1.6: + resolution: {integrity: sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: readable-web-to-node-stream: 3.0.2 strtok3: 7.1.0 token-types: 5.0.1 + dev: true - file-uri-to-path@1.0.0: + /file-uri-to-path@1.0.0: + resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + requiresBuild: true optional: true - filelist@1.0.4: + /filelist@1.0.4: + resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} dependencies: minimatch: 5.1.6 + dev: true - filename-reserved-regex@3.0.0: {} + /filename-reserved-regex@3.0.0: + resolution: {integrity: sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true - filenamify@5.1.1: + /filenamify@5.1.1: + resolution: {integrity: sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==} + engines: {node: '>=12.20'} dependencies: filename-reserved-regex: 3.0.0 strip-outer: 2.0.0 trim-repeated: 2.0.0 + dev: true - filesize@3.6.1: {} + /filesize@3.6.1: + resolution: {integrity: sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==} + engines: {node: '>= 0.4.0'} + dev: true - fill-range@2.2.4: + /fill-range@2.2.4: + resolution: {integrity: sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==} + engines: {node: '>=0.10.0'} dependencies: is-number: 2.1.0 isobject: 2.1.0 randomatic: 3.1.1 repeat-element: 1.1.4 repeat-string: 1.6.1 + dev: true - fill-range@4.0.0: + /fill-range@4.0.0: + resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} + engines: {node: '>=0.10.0'} dependencies: extend-shallow: 2.0.1 is-number: 3.0.0 repeat-string: 1.6.1 to-regex-range: 2.1.1 - fill-range@7.1.1: + /fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} dependencies: to-regex-range: 5.0.1 - filter-obj@1.1.0: {} + /filter-obj@1.1.0: + resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} + engines: {node: '>=0.10.0'} + dev: true - final-form@4.20.10: + /final-form@4.20.10: + resolution: {integrity: sha512-TL48Pi1oNHeMOHrKv1bCJUrWZDcD3DIG6AGYVNOnyZPr7Bd/pStN0pL+lfzF5BNoj/FclaoiaLenk4XUIFVYng==} + engines: {node: '>=8'} dependencies: '@babel/runtime': 7.24.7 + dev: false - finalhandler@1.2.0(supports-color@6.1.0): + /finalhandler@1.2.0(supports-color@6.1.0): + resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} + engines: {node: '>= 0.8'} dependencies: debug: 2.6.9(supports-color@6.1.0) encodeurl: 1.0.2 @@ -45089,128 +35763,216 @@ snapshots: transitivePeerDependencies: - supports-color - find-cache-dir@2.1.0: + /find-cache-dir@2.1.0: + resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} + engines: {node: '>=6'} dependencies: commondir: 1.0.1 make-dir: 2.1.0 pkg-dir: 3.0.0 - find-cache-dir@3.3.2: + /find-cache-dir@3.3.2: + resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} + engines: {node: '>=8'} dependencies: commondir: 1.0.1 make-dir: 3.1.0 pkg-dir: 4.2.0 - find-cache-dir@4.0.0: + /find-cache-dir@4.0.0: + resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==} + engines: {node: '>=14.16'} dependencies: common-path-prefix: 3.0.0 pkg-dir: 7.0.0 + dev: true - find-root@1.1.0: {} + /find-root@1.1.0: + resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} + dev: false - find-up@1.1.2: + /find-up@1.1.2: + resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: path-exists: 2.1.0 pinkie-promise: 2.0.1 + dev: false optional: true - find-up@2.1.0: + /find-up@2.1.0: + resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} + engines: {node: '>=4'} dependencies: locate-path: 2.0.0 + dev: true - find-up@3.0.0: + /find-up@3.0.0: + resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} + engines: {node: '>=6'} dependencies: locate-path: 3.0.0 - find-up@4.1.0: + /find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} dependencies: locate-path: 5.0.0 path-exists: 4.0.0 - find-up@5.0.0: + /find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} dependencies: locate-path: 6.0.0 path-exists: 4.0.0 - find-up@6.3.0: + /find-up@6.3.0: + resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: locate-path: 7.2.0 path-exists: 5.0.0 + dev: true - find-versions@5.1.0: + /find-versions@5.1.0: + resolution: {integrity: sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==} + engines: {node: '>=12'} dependencies: semver-regex: 4.0.5 + dev: true - find-yarn-workspace-root2@1.2.16: + /find-yarn-workspace-root2@1.2.16: + resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} dependencies: micromatch: 4.0.7 pkg-dir: 4.2.0 + dev: true - flat-cache@3.2.0: + /flat-cache@3.2.0: + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} + engines: {node: ^10.12.0 || >=12.0.0} dependencies: flatted: 3.3.1 keyv: 4.5.4 rimraf: 3.0.2 - flat@5.0.2: {} + /flat@5.0.2: + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + hasBin: true - flatted@2.0.2: {} + /flatted@2.0.2: + resolution: {integrity: sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==} + dev: true - flatted@3.3.1: {} + /flatted@3.3.1: + resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} - flow-parser@0.238.0: {} + /flow-parser@0.238.0: + resolution: {integrity: sha512-VE7XSv1epljsIN2YeBnxCmGJihpNIAnLLu/pPOdA+Gkso7qDltJwUi6vfHjgxdBbjSdAuPGnhuOHJUQG+yYwIg==} + engines: {node: '>=0.4.0'} - follow-redirects@1.15.6(debug@4.3.5(supports-color@6.1.0)): - optionalDependencies: + /follow-redirects@1.15.6(debug@4.3.5): + resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + dependencies: debug: 4.3.5(supports-color@6.1.0) - follow-redirects@1.5.10: + /follow-redirects@1.5.10: + resolution: {integrity: sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==} + engines: {node: '>=4.0'} dependencies: debug: 3.1.0 transitivePeerDependencies: - supports-color + dev: false - for-each@0.3.3: + /for-each@0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} dependencies: is-callable: 1.2.7 - for-in@0.1.8: {} + /for-in@0.1.8: + resolution: {integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==} + engines: {node: '>=0.10.0'} + dev: true - for-in@1.0.2: {} + /for-in@1.0.2: + resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} + engines: {node: '>=0.10.0'} - for-own@0.1.5: + /for-own@0.1.5: + resolution: {integrity: sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==} + engines: {node: '>=0.10.0'} dependencies: for-in: 1.0.2 + dev: true - foreground-child@2.0.0: + /foreground-child@2.0.0: + resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} + engines: {node: '>=8.0.0'} dependencies: cross-spawn: 7.0.3 signal-exit: 3.0.7 - foreground-child@3.2.1: + /foreground-child@3.2.1: + resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==} + engines: {node: '>=14'} dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 - forever-agent@0.6.1: {} + /forever-agent@0.6.1: + resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} + dev: true - fork-ts-checker-webpack-plugin@4.1.6(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /fork-ts-checker-webpack-plugin@4.1.6(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1): + resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} + engines: {node: '>=6.11.5', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: 5.84.1 + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true dependencies: '@babel/code-frame': 7.24.7 chalk: 2.4.2 + eslint: 7.32.0 micromatch: 3.1.10(supports-color@6.1.0) minimatch: 3.1.2 semver: 5.7.2 tapable: 1.1.3 typescript: 4.9.5 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) worker-rpc: 0.1.1 - optionalDependencies: - eslint: 7.32.0 transitivePeerDependencies: - supports-color + dev: false - fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.84.1): + resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} + engines: {node: '>=10', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: 5.84.1 + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true dependencies: '@babel/code-frame': 7.24.7 '@types/json-schema': 7.0.15 @@ -45218,6 +35980,7 @@ snapshots: chokidar: 3.6.0 cosmiconfig: 6.0.0 deepmerge: 4.3.1 + eslint: 7.32.0 fs-extra: 9.1.0 glob: 7.2.3 memfs: 3.5.3 @@ -45226,11 +35989,21 @@ snapshots: semver: 7.6.2 tapable: 1.1.3 typescript: 4.9.5 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: - eslint: 7.32.0 + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - fork-ts-checker-webpack-plugin@6.5.3(eslint@8.46.0)(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@5.1.6)(webpack@5.84.1): + resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} + engines: {node: '>=10', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: 5.84.1 + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true dependencies: '@babel/code-frame': 7.24.7 '@types/json-schema': 7.0.15 @@ -45238,6 +36011,7 @@ snapshots: chokidar: 3.6.0 cosmiconfig: 6.0.0 deepmerge: 4.3.1 + eslint: 7.32.0 fs-extra: 9.1.0 glob: 7.2.3 memfs: 3.5.3 @@ -45246,11 +36020,19 @@ snapshots: semver: 7.6.2 tapable: 1.1.3 typescript: 5.1.6 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: - eslint: 8.46.0 + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - fork-ts-checker-webpack-plugin@7.2.13(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /fork-ts-checker-webpack-plugin@7.2.13(typescript@5.1.6)(webpack@5.84.1): + resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==} + engines: {node: '>=12.13.0', yarn: '>=1.0.0'} + peerDependencies: + typescript: '>3.6.0' + vue-template-compiler: '*' + webpack: 5.84.1 + peerDependenciesMeta: + vue-template-compiler: + optional: true dependencies: '@babel/code-frame': 7.24.7 chalk: 4.1.2 @@ -45265,9 +36047,15 @@ snapshots: semver: 7.6.2 tapable: 2.2.1 typescript: 5.1.6 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - fork-ts-checker-webpack-plugin@8.0.0(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /fork-ts-checker-webpack-plugin@8.0.0(typescript@5.1.6)(webpack@5.84.1): + resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} + engines: {node: '>=12.13.0', yarn: '>=1.0.0'} + peerDependencies: + typescript: '>3.6.0' + webpack: 5.84.1 dependencies: '@babel/code-frame': 7.24.7 chalk: 4.1.2 @@ -45282,120 +36070,193 @@ snapshots: semver: 7.6.2 tapable: 2.2.1 typescript: 5.1.6 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - form-data@2.3.3: + /form-data@2.3.3: + resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} + engines: {node: '>= 0.12'} dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 + dev: true - form-data@3.0.1: + /form-data@3.0.1: + resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} + engines: {node: '>= 6'} dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 + dev: true - form-data@4.0.0: + /form-data@4.0.0: + resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} + engines: {node: '>= 6'} dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 - forwarded@0.2.0: {} + /forwarded@0.2.0: + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + engines: {node: '>= 0.6'} - fraction.js@4.3.7: {} + /fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + dev: true - fragment-cache@0.2.1: + /fragment-cache@0.2.1: + resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} + engines: {node: '>=0.10.0'} dependencies: map-cache: 0.2.2 - framer-motion@11.2.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /framer-motion@11.2.11(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-n+ozoEzgJu/2h9NoQMokF+CwNqIRVyuRC4RwMPwklfrrTjbVV32k9uBIgqYAwn7Jfpt5LuDVCtT57MWz1FbaLw==} + peerDependencies: + '@emotion/is-prop-valid': '*' + react: ^18.0.0 + react-dom: ^18.0.0 + peerDependenciesMeta: + '@emotion/is-prop-valid': + optional: true + react: + optional: true + react-dom: + optional: true dependencies: - tslib: 2.6.3 - optionalDependencies: - '@emotion/is-prop-valid': 1.2.2 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + tslib: 2.6.3 + dev: false - fresh@0.5.2: {} + /fresh@0.5.2: + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} - fromentries@1.3.2: {} + /fromentries@1.3.2: + resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==} + dev: true - fs-constants@1.0.0: {} + /fs-constants@1.0.0: + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + dev: true - fs-extra@10.1.0: + /fs-extra@10.1.0: + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 - fs-extra@11.1.1: + /fs-extra@11.1.1: + resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} + engines: {node: '>=14.14'} dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 + dev: true - fs-extra@11.2.0: + /fs-extra@11.2.0: + resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} + engines: {node: '>=14.14'} dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 + dev: true - fs-extra@7.0.1: + /fs-extra@7.0.1: + resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} + engines: {node: '>=6 <7 || >=8'} dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 + dev: true - fs-extra@8.1.0: + /fs-extra@8.1.0: + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 + dev: true - fs-extra@9.1.0: + /fs-extra@9.1.0: + resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} + engines: {node: '>=10'} dependencies: at-least-node: 1.0.0 graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 - fs-minipass@2.1.0: + /fs-minipass@2.1.0: + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} dependencies: minipass: 3.3.6 - fs-monkey@1.0.6: {} + /fs-monkey@1.0.6: + resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==} - fs-readdir-recursive@1.1.0: {} + /fs-readdir-recursive@1.1.0: + resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==} + dev: true - fs.realpath@1.0.0: {} + /fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: {} + /fs@0.0.1-security: + resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} + dev: true - fsevents@1.2.13: + /fsevents@1.2.13: + resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==} + engines: {node: '>= 4.0'} + os: [darwin] + deprecated: The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2 + requiresBuild: true dependencies: bindings: 1.5.0 nan: 2.20.0 optional: true - fsevents@2.3.3: + /fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true optional: true - function-bind@1.1.2: {} + /function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - function.prototype.name@1.1.6: + /function.prototype.name@1.1.6: + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 functions-have-names: 1.2.3 - functional-red-black-tree@1.0.1: {} + /functional-red-black-tree@1.0.1: + resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} - functions-have-names@1.2.3: {} + /functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - gauge@3.0.2: + /gauge@3.0.2: + resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} + engines: {node: '>=10'} + deprecated: This package is no longer supported. dependencies: aproba: 2.0.0 color-support: 1.1.3 @@ -45407,7 +36268,10 @@ snapshots: strip-ansi: 6.0.1 wide-align: 1.1.5 - gauge@4.0.4: + /gauge@4.0.4: + resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. dependencies: aproba: 2.0.0 color-support: 1.1.3 @@ -45417,16 +36281,25 @@ snapshots: string-width: 4.2.3 strip-ansi: 6.0.1 wide-align: 1.1.5 + dev: true - generic-names@4.0.0: + /generic-names@4.0.0: + resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} dependencies: loader-utils: 3.3.1 + dev: true - gensync@1.0.0-beta.2: {} + /gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} - get-caller-file@2.0.5: {} + /get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} - get-intrinsic@1.2.4: + /get-intrinsic@1.2.4: + resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} + engines: {node: '>= 0.4'} dependencies: es-errors: 1.3.0 function-bind: 1.1.2 @@ -45434,53 +36307,90 @@ snapshots: has-symbols: 1.0.3 hasown: 2.0.2 - get-npm-tarball-url@2.1.0: {} + /get-npm-tarball-url@2.1.0: + resolution: {integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==} + engines: {node: '>=12.17'} + dev: true - get-package-type@0.1.0: {} + /get-package-type@0.1.0: + resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} + engines: {node: '>=8.0.0'} - get-pkg-repo@4.2.1: + /get-pkg-repo@4.2.1: + resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} + engines: {node: '>=6.9.0'} + hasBin: true dependencies: '@hutson/parse-repository-url': 3.0.2 hosted-git-info: 4.1.0 through2: 2.0.5 yargs: 16.2.0 + dev: true - get-port@5.1.1: {} + /get-port@5.1.1: + resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} + engines: {node: '>=8'} - get-stdin@4.0.1: + /get-stdin@4.0.1: + resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==} + engines: {node: '>=0.10.0'} + requiresBuild: true + dev: false optional: true - get-stream@3.0.0: {} + /get-stream@3.0.0: + resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==} + engines: {node: '>=4'} + dev: true - get-stream@4.1.0: + /get-stream@4.1.0: + resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} + engines: {node: '>=6'} dependencies: pump: 3.0.0 - get-stream@5.2.0: + /get-stream@5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} dependencies: pump: 3.0.0 - get-stream@6.0.1: {} + /get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} - get-stream@8.0.1: {} + /get-stream@8.0.1: + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} + engines: {node: '>=16'} + dev: true - get-symbol-description@1.0.2: + /get-symbol-description@1.0.2: + resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 get-intrinsic: 1.2.4 - get-value@2.0.6: {} + /get-value@2.0.6: + resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} + engines: {node: '>=0.10.0'} - getos@3.2.1: + /getos@3.2.1: + resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} dependencies: async: 3.2.5 + dev: true - getpass@0.1.7: + /getpass@0.1.7: + resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} dependencies: assert-plus: 1.0.0 + dev: true - giget@1.2.3: + /giget@1.2.3: + resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==} + hasBin: true dependencies: citty: 0.1.6 consola: 3.2.3 @@ -45490,63 +36400,100 @@ snapshots: ohash: 1.1.3 pathe: 1.1.2 tar: 6.2.1 + dev: true - git-raw-commits@2.0.11: + /git-raw-commits@2.0.11: + resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} + engines: {node: '>=10'} + hasBin: true dependencies: dargs: 7.0.0 lodash: 4.17.21 meow: 8.1.2 split2: 3.2.2 through2: 4.0.2 + dev: true - git-remote-origin-url@2.0.0: + /git-remote-origin-url@2.0.0: + resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} + engines: {node: '>=4'} dependencies: gitconfiglocal: 1.0.0 pify: 2.3.0 + dev: true - git-semver-tags@4.1.1: + /git-semver-tags@4.1.1: + resolution: {integrity: sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==} + engines: {node: '>=10'} + hasBin: true dependencies: meow: 8.1.2 semver: 6.3.1 + dev: true - git-up@7.0.0: + /git-up@7.0.0: + resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} dependencies: is-ssh: 1.4.0 parse-url: 8.1.0 + dev: true - git-url-parse@13.1.1: + /git-url-parse@13.1.1: + resolution: {integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==} dependencies: git-up: 7.0.0 + dev: true - gitconfiglocal@1.0.0: + /gitconfiglocal@1.0.0: + resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==} dependencies: ini: 1.3.8 + dev: true - github-slugger@1.5.0: {} + /github-slugger@1.5.0: + resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} + dev: true - glob-parent@3.1.0: + /glob-parent@3.1.0: + resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==} dependencies: is-glob: 3.1.0 path-dirname: 1.0.2 - glob-parent@5.1.2: + /glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} dependencies: is-glob: 4.0.3 - glob-parent@6.0.2: + /glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} dependencies: is-glob: 4.0.3 + dev: true - glob-promise@3.4.0(glob@7.2.3): + /glob-promise@3.4.0(glob@7.2.3): + resolution: {integrity: sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==} + engines: {node: '>=4'} + peerDependencies: + glob: '*' dependencies: '@types/glob': 8.1.0 glob: 7.2.3 + dev: false - glob-to-regexp@0.3.0: {} + /glob-to-regexp@0.3.0: + resolution: {integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==} + dev: false - glob-to-regexp@0.4.1: {} + /glob-to-regexp@0.4.1: + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - glob@10.4.2: + /glob@10.4.2: + resolution: {integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==} + engines: {node: '>=16 || 14 >=14.18'} + hasBin: true dependencies: foreground-child: 3.2.1 jackspeak: 3.4.0 @@ -45555,7 +36502,9 @@ snapshots: package-json-from-dist: 1.0.0 path-scurry: 1.11.1 - glob@7.1.4: + /glob@7.1.4: + resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} + deprecated: Glob versions prior to v9 are no longer supported dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -45563,8 +36512,11 @@ snapshots: minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 + dev: true - glob@7.2.3: + /glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -45573,37 +36525,55 @@ snapshots: once: 1.4.0 path-is-absolute: 1.0.1 - glob@8.1.0: + /glob@8.1.0: + resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} + engines: {node: '>=12'} + deprecated: Glob versions prior to v9 are no longer supported dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 minimatch: 5.1.6 once: 1.4.0 + dev: true - global-dirs@3.0.1: + /global-dirs@3.0.1: + resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} + engines: {node: '>=10'} dependencies: ini: 2.0.0 - global@4.4.0: + /global@4.4.0: + resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==} dependencies: min-document: 2.19.0 process: 0.11.10 - globals@11.12.0: {} + /globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} - globals@13.24.0: + /globals@13.24.0: + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} + engines: {node: '>=8'} dependencies: type-fest: 0.20.2 - globals@9.18.0: {} + /globals@9.18.0: + resolution: {integrity: sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==} + engines: {node: '>=0.10.0'} + dev: true - globalthis@1.0.4: + /globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} dependencies: define-properties: 1.2.1 gopd: 1.0.1 - globby@10.0.1: + /globby@10.0.1: + resolution: {integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==} + engines: {node: '>=8'} dependencies: '@types/glob': 7.2.0 array-union: 2.1.0 @@ -45613,8 +36583,11 @@ snapshots: ignore: 5.3.1 merge2: 1.4.1 slash: 3.0.0 + dev: true - globby@11.1.0: + /globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} dependencies: array-union: 2.1.0 dir-glob: 3.0.1 @@ -45623,7 +36596,9 @@ snapshots: merge2: 1.4.1 slash: 3.0.0 - globby@12.2.0: + /globby@12.2.0: + resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: array-union: 3.0.1 dir-glob: 3.0.1 @@ -45631,8 +36606,11 @@ snapshots: ignore: 5.3.1 merge2: 1.4.1 slash: 4.0.0 + dev: true - globby@14.0.2: + /globby@14.0.2: + resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} + engines: {node: '>=18'} dependencies: '@sindresorhus/merge-streams': 2.3.0 fast-glob: 3.3.2 @@ -45640,8 +36618,11 @@ snapshots: path-type: 5.0.0 slash: 5.1.0 unicorn-magic: 0.1.0 + dev: true - globby@6.1.0: + /globby@6.1.0: + resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==} + engines: {node: '>=0.10.0'} dependencies: array-union: 1.0.2 glob: 7.2.3 @@ -45649,7 +36630,9 @@ snapshots: pify: 2.3.0 pinkie-promise: 2.0.1 - globby@9.2.0: + /globby@9.2.0: + resolution: {integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==} + engines: {node: '>=6'} dependencies: '@types/glob': 7.2.0 array-union: 1.0.2 @@ -45661,12 +36644,16 @@ snapshots: slash: 2.0.0 transitivePeerDependencies: - supports-color + dev: false - gopd@1.0.1: + /gopd@1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: get-intrinsic: 1.2.4 - got@11.8.6: + /got@11.8.6: + resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} + engines: {node: '>=10.19.0'} dependencies: '@sindresorhus/is': 4.6.0 '@szmarczak/http-timer': 4.0.6 @@ -45679,8 +36666,11 @@ snapshots: lowercase-keys: 2.0.0 p-cancelable: 2.1.1 responselike: 2.0.1 + dev: true - got@9.6.0: + /got@9.6.0: + resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} + engines: {node: '>=8.6'} dependencies: '@sindresorhus/is': 0.14.0 '@szmarczak/http-timer': 1.1.2 @@ -45695,33 +36685,53 @@ snapshots: p-cancelable: 1.1.0 to-readable-stream: 1.0.0 url-parse-lax: 3.0.0 + dev: false - graceful-fs@4.2.11: {} + /graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - grapheme-splitter@1.0.4: {} + /grapheme-splitter@1.0.4: + resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} + dev: true - graphemer@1.4.0: {} + /graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + dev: true - graphql@15.9.0: {} + /graphql@15.9.0: + resolution: {integrity: sha512-GCOQdvm7XxV1S4U4CGrsdlEN37245eC8P9zaYCMr6K1BG0IPGy5lUwmJsEOGyl1GD6HXjOtl2keCP9asRBwNvA==} + engines: {node: '>= 10.x'} + dev: true - gray-matter@2.1.1: + /gray-matter@2.1.1: + resolution: {integrity: sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==} + engines: {node: '>=0.10.0'} dependencies: ansi-red: 0.1.1 coffee-script: 1.12.7 extend-shallow: 2.0.1 js-yaml: 3.13.1 toml: 2.3.6 + dev: true - growly@1.3.0: + /growly@1.3.0: + resolution: {integrity: sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==} + requiresBuild: true + dev: true optional: true - gulp-header@1.8.12: + /gulp-header@1.8.12: + resolution: {integrity: sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==} + deprecated: Removed event-stream from gulp-header dependencies: concat-with-sourcemaps: 1.1.0 lodash.template: 4.5.0 through2: 2.0.5 + dev: true - gunzip-maybe@1.4.2: + /gunzip-maybe@1.4.2: + resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==} + hasBin: true dependencies: browserify-zlib: 0.1.4 is-deflate: 1.0.0 @@ -45729,14 +36739,21 @@ snapshots: peek-stream: 1.1.3 pumpify: 1.5.1 through2: 2.0.5 + dev: true - gzip-size@6.0.0: + /gzip-size@6.0.0: + resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} + engines: {node: '>=10'} dependencies: duplexer: 0.1.2 - handle-thing@2.0.1: {} + /handle-thing@2.0.1: + resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} - handlebars@4.7.8: + /handlebars@4.7.8: + resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} + engines: {node: '>=0.4.7'} + hasBin: true dependencies: minimist: 1.2.8 neo-async: 2.6.2 @@ -45745,71 +36762,115 @@ snapshots: optionalDependencies: uglify-js: 3.18.0 - hard-rejection@2.1.0: {} + /hard-rejection@2.1.0: + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} + dev: true - harmony-reflect@1.6.2: {} + /harmony-reflect@1.6.2: + resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} + dev: true - has-ansi@2.0.0: + /has-ansi@2.0.0: + resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} + engines: {node: '>=0.10.0'} dependencies: ansi-regex: 2.1.1 + dev: true - has-bigints@1.0.2: {} + /has-bigints@1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} - has-flag@3.0.0: {} + /has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} - has-flag@4.0.0: {} + /has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} - has-glob@1.0.0: + /has-glob@1.0.0: + resolution: {integrity: sha512-D+8A457fBShSEI3tFCj65PAbT++5sKiFtdCdOam0gnfBgw9D277OERk+HM9qYJXmdVLZ/znez10SqHN0BBQ50g==} + engines: {node: '>=0.10.0'} dependencies: is-glob: 3.1.0 + dev: false - has-property-descriptors@1.0.2: + /has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} dependencies: es-define-property: 1.0.0 - has-proto@1.0.3: {} + /has-proto@1.0.3: + resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} + engines: {node: '>= 0.4'} - has-symbols@1.0.3: {} + /has-symbols@1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} - has-tostringtag@1.0.2: + /has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 - has-unicode@2.0.1: {} + /has-unicode@2.0.1: + resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} - has-value@0.3.1: + /has-value@0.3.1: + resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} + engines: {node: '>=0.10.0'} dependencies: get-value: 2.0.6 has-values: 0.1.4 isobject: 2.1.0 - has-value@1.0.0: + /has-value@1.0.0: + resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} + engines: {node: '>=0.10.0'} dependencies: get-value: 2.0.6 has-values: 1.0.0 isobject: 3.0.1 - has-values@0.1.4: {} + /has-values@0.1.4: + resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} + engines: {node: '>=0.10.0'} - has-values@1.0.0: + /has-values@1.0.0: + resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} + engines: {node: '>=0.10.0'} dependencies: is-number: 3.0.0 kind-of: 4.0.0 - has-yarn@2.1.0: {} + /has-yarn@2.1.0: + resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==} + engines: {node: '>=8'} + dev: false - has@1.0.4: {} + /has@1.0.4: + resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} + engines: {node: '>= 0.4.0'} + dev: true - hasha@5.2.2: + /hasha@5.2.2: + resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} + engines: {node: '>=8'} dependencies: is-stream: 2.0.1 type-fest: 0.8.1 + dev: true - hasown@2.0.2: + /hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} dependencies: function-bind: 1.1.2 - hast-to-hyperscript@9.0.1: + /hast-to-hyperscript@9.0.1: + resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==} dependencies: '@types/unist': 2.0.10 comma-separated-tokens: 1.0.8 @@ -45819,7 +36880,8 @@ snapshots: unist-util-is: 4.1.0 web-namespaces: 1.1.4 - hast-util-from-parse5@6.0.1: + /hast-util-from-parse5@6.0.1: + resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==} dependencies: '@types/parse5': 5.0.3 hastscript: 6.0.0 @@ -45828,9 +36890,11 @@ snapshots: vfile-location: 3.2.0 web-namespaces: 1.1.4 - hast-util-parse-selector@2.2.5: {} + /hast-util-parse-selector@2.2.5: + resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==} - hast-util-raw@6.0.1: + /hast-util-raw@6.0.1: + resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==} dependencies: '@types/hast': 2.3.10 hast-util-from-parse5: 6.0.1 @@ -45843,7 +36907,8 @@ snapshots: xtend: 4.0.2 zwitch: 1.0.5 - hast-util-to-jsx-runtime@2.3.0: + /hast-util-to-jsx-runtime@2.3.0: + resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==} dependencies: '@types/estree': 1.0.5 '@types/hast': 3.0.4 @@ -45862,8 +36927,10 @@ snapshots: vfile-message: 4.0.2 transitivePeerDependencies: - supports-color + dev: false - hast-util-to-parse5@6.0.0: + /hast-util-to-parse5@6.0.0: + resolution: {integrity: sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==} dependencies: hast-to-hyperscript: 9.0.1 property-information: 5.6.0 @@ -45871,11 +36938,14 @@ snapshots: xtend: 4.0.2 zwitch: 1.0.5 - hast-util-whitespace@3.0.0: + /hast-util-whitespace@3.0.0: + resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} dependencies: '@types/hast': 3.0.4 + dev: false - hastscript@6.0.0: + /hastscript@6.0.0: + resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} dependencies: '@types/hast': 2.3.10 comma-separated-tokens: 1.0.8 @@ -45883,11 +36953,16 @@ snapshots: property-information: 5.6.0 space-separated-tokens: 1.1.5 - he@1.2.0: {} + /he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true - headers-utils@3.0.2: {} + /headers-utils@3.0.2: + resolution: {integrity: sha512-xAxZkM1dRyGV2Ou5bzMxBPNLoRCjcX+ya7KSWybQD2KwLphxsapUVK6x/02o7f4VU6GPSXch9vNY2+gkU8tYWQ==} + dev: true - history@4.10.1: + /history@4.10.1: + resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==} dependencies: '@babel/runtime': 7.24.7 loose-envify: 1.4.0 @@ -45895,58 +36970,98 @@ snapshots: tiny-invariant: 1.3.3 tiny-warning: 1.0.3 value-equal: 1.0.1 + dev: false - hoist-non-react-statics@2.5.5: {} + /hoist-non-react-statics@2.5.5: + resolution: {integrity: sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==} + dev: false - hoist-non-react-statics@3.3.2: + /hoist-non-react-statics@3.3.2: + resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} dependencies: react-is: 16.13.1 - hosted-git-info@2.8.9: {} + /home-or-tmp@2.0.0: + resolution: {integrity: sha512-ycURW7oUxE2sNiPVw1HVEFsW+ecOpJ5zaj7eC0RlwhibhRBod20muUN8qu/gzx956YrLolVvs1MTXwKgC2rVEg==} + engines: {node: '>=0.10.0'} + dependencies: + os-homedir: 1.0.2 + os-tmpdir: 1.0.2 + dev: true + + /hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} - hosted-git-info@3.0.8: + /hosted-git-info@3.0.8: + resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==} + engines: {node: '>=10'} dependencies: lru-cache: 6.0.0 + dev: true - hosted-git-info@4.1.0: + /hosted-git-info@4.1.0: + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} dependencies: lru-cache: 6.0.0 + dev: true - hosted-git-info@5.2.1: + /hosted-git-info@5.2.1: + resolution: {integrity: sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: lru-cache: 7.18.3 + dev: true - hosted-git-info@7.0.2: + /hosted-git-info@7.0.2: + resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==} + engines: {node: ^16.14.0 || >=18.0.0} dependencies: lru-cache: 10.4.3 + dev: true - hpack.js@2.1.6: + /hpack.js@2.1.6: + resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} dependencies: inherits: 2.0.4 obuf: 1.1.2 readable-stream: 2.3.8 wbuf: 1.7.3 - html-dom-parser@2.0.0: + /html-dom-parser@2.0.0: + resolution: {integrity: sha512-PwVjg12yfWunpH2WjwjaYNKcZyKKm20kclTfMQohiRzfgYiXX0dR7nXIIKnHneghMDvB0rKFZLEAe11ykOfpcg==} dependencies: domhandler: 4.3.1 htmlparser2: 7.2.0 + dev: false - html-encoding-sniffer@2.0.1: + /html-encoding-sniffer@2.0.1: + resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} + engines: {node: '>=10'} dependencies: whatwg-encoding: 1.0.5 + dev: true - html-encoding-sniffer@3.0.0: + /html-encoding-sniffer@3.0.0: + resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + engines: {node: '>=12'} dependencies: whatwg-encoding: 2.0.0 + dev: true - html-entities@1.4.0: {} + /html-entities@1.4.0: + resolution: {integrity: sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==} - html-entities@2.5.2: {} + /html-entities@2.5.2: + resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} - html-escaper@2.0.2: {} + /html-escaper@2.0.2: + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} - html-minifier-terser@5.1.1: + /html-minifier-terser@5.1.1: + resolution: {integrity: sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==} + engines: {node: '>=6'} + hasBin: true dependencies: camel-case: 4.1.2 clean-css: 4.2.4 @@ -45955,8 +37070,12 @@ snapshots: param-case: 3.0.4 relateurl: 0.2.7 terser: 4.8.1 + dev: false - html-minifier-terser@6.1.0: + /html-minifier-terser@6.1.0: + resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} + engines: {node: '>=12'} + hasBin: true dependencies: camel-case: 4.1.2 clean-css: 5.3.3 @@ -45966,25 +37085,40 @@ snapshots: relateurl: 0.2.7 terser: 5.31.1 - html-parse-stringify@3.0.1: + /html-parse-stringify@3.0.1: + resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==} dependencies: void-elements: 3.1.0 + dev: false - html-react-parser@2.0.0(react@18.3.1): + /html-react-parser@2.0.0(react@18.3.1): + resolution: {integrity: sha512-AI1lhybWGi8w4QkGtEIS3iSGAjeFGaonxl/+CzqzCeNT3g3z/yx2NKsA93trnv2BLjhe+juGLmLeTSUkyYWk9Q==} + peerDependencies: + react: 0.14 || 15 || 16 || 17 || 18 dependencies: domhandler: 4.3.1 html-dom-parser: 2.0.0 react: 18.3.1 react-property: 2.0.0 style-to-js: 1.1.1 + dev: false - html-tags@3.3.1: {} + /html-tags@3.3.1: + resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} + engines: {node: '>=8'} - html-url-attributes@3.0.0: {} + /html-url-attributes@3.0.0: + resolution: {integrity: sha512-/sXbVCWayk6GDVg3ctOX6nxaVj7So40FcFAnWlWGNAB1LpYKcV5Cd10APjPjW80O7zYW2MsjBV4zZ7IZO5fVow==} + dev: false - html-void-elements@1.0.5: {} + /html-void-elements@1.0.5: + resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==} - html-webpack-plugin@4.5.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /html-webpack-plugin@4.5.2(webpack@5.84.1): + resolution: {integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==} + engines: {node: '>=6.9'} + peerDependencies: + webpack: 5.84.1 dependencies: '@types/html-minifier-terser': 5.1.2 '@types/tapable': 1.0.12 @@ -45995,52 +37129,73 @@ snapshots: pretty-error: 2.1.2 tapable: 1.1.3 util.promisify: 1.0.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: false - html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /html-webpack-plugin@5.6.0(webpack@5.84.1): + resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==} + engines: {node: '>=10.13.0'} + peerDependencies: + '@rspack/core': 0.x || 1.x + webpack: 5.84.1 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - optionalDependencies: - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - htmlparser2@3.8.3: + /htmlparser2@3.8.3: + resolution: {integrity: sha512-hBxEg3CYXe+rPIua8ETe7tmG3XDn9B0edOE/e9wH2nLczxzgdu0m0aNHY+5wFZiviLWLdANPJTssa92dMcXQ5Q==} dependencies: domelementtype: 1.3.1 domhandler: 2.3.0 domutils: 1.5.1 entities: 1.0.0 readable-stream: 1.1.14 + dev: false - htmlparser2@6.1.0: + /htmlparser2@6.1.0: + resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 domutils: 2.8.0 entities: 2.2.0 - htmlparser2@7.2.0: + /htmlparser2@7.2.0: + resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 domutils: 2.8.0 entities: 3.0.1 + dev: false - http-cache-semantics@4.1.1: {} + /http-cache-semantics@4.1.1: + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} - http-deceiver@1.2.7: {} + /http-deceiver@1.2.7: + resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} - http-errors@1.6.3: + /http-errors@1.6.3: + resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} + engines: {node: '>= 0.6'} dependencies: depd: 1.1.2 inherits: 2.0.3 setprototypeof: 1.1.0 statuses: 1.5.0 - http-errors@2.0.0: + /http-errors@2.0.0: + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} dependencies: depd: 2.0.0 inherits: 2.0.4 @@ -46048,27 +37203,36 @@ snapshots: statuses: 2.0.1 toidentifier: 1.0.1 - http-parser-js@0.5.8: {} + /http-parser-js@0.5.8: + resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} - http-proxy-agent@4.0.1: + /http-proxy-agent@4.0.1: + resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} + engines: {node: '>= 6'} dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) transitivePeerDependencies: - supports-color + dev: true - http-proxy-agent@5.0.0: + /http-proxy-agent@5.0.0: + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) transitivePeerDependencies: - supports-color + dev: true - http-proxy-middleware@0.19.1(debug@4.3.5(supports-color@6.1.0))(supports-color@6.1.0): + /http-proxy-middleware@0.19.1(debug@4.3.5)(supports-color@6.1.0): + resolution: {integrity: sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==} + engines: {node: '>=4.0.0'} dependencies: - http-proxy: 1.18.1(debug@4.3.5(supports-color@6.1.0)) + http-proxy: 1.18.1(debug@4.3.5) is-glob: 4.0.3 lodash: 4.17.21 micromatch: 3.1.10(supports-color@6.1.0) @@ -46076,198 +37240,315 @@ snapshots: - debug - supports-color - http-proxy-middleware@2.0.6(@types/express@4.17.21): + /http-proxy-middleware@2.0.6(@types/express@4.17.21): + resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/express': ^4.17.13 + peerDependenciesMeta: + '@types/express': + optional: true dependencies: + '@types/express': 4.17.21 '@types/http-proxy': 1.17.14 - http-proxy: 1.18.1(debug@4.3.5(supports-color@6.1.0)) + http-proxy: 1.18.1(debug@4.3.5) is-glob: 4.0.3 is-plain-obj: 3.0.0 micromatch: 4.0.7 - optionalDependencies: - '@types/express': 4.17.21 transitivePeerDependencies: - debug + dev: true - http-proxy@1.18.1(debug@4.3.5(supports-color@6.1.0)): + /http-proxy@1.18.1(debug@4.3.5): + resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} + engines: {node: '>=8.0.0'} dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.15.6(debug@4.3.5(supports-color@6.1.0)) + follow-redirects: 1.15.6(debug@4.3.5) requires-port: 1.0.0 transitivePeerDependencies: - debug - http-server@14.1.1: + /http-server@14.1.1: + resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==} + engines: {node: '>=12'} + hasBin: true dependencies: basic-auth: 2.0.1 chalk: 4.1.2 corser: 2.0.1 he: 1.2.0 html-encoding-sniffer: 3.0.0 - http-proxy: 1.18.1(debug@4.3.5(supports-color@6.1.0)) + http-proxy: 1.18.1(debug@4.3.5) mime: 1.6.0 minimist: 1.2.8 opener: 1.5.2 - portfinder: 1.0.32 + portfinder: 1.0.32(supports-color@6.1.0) secure-compare: 3.0.1 union: 0.5.0 url-join: 4.0.1 transitivePeerDependencies: - debug - supports-color + dev: true - http-signature@1.3.6: + /http-signature@1.3.6: + resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} + engines: {node: '>=0.10'} dependencies: assert-plus: 1.0.0 jsprim: 2.0.2 sshpk: 1.18.0 + dev: true - http2-wrapper@1.0.3: + /http2-wrapper@1.0.3: + resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} + engines: {node: '>=10.19.0'} dependencies: quick-lru: 5.1.1 resolve-alpn: 1.2.1 + dev: true - https-proxy-agent@4.0.0: + /https-proxy-agent@4.0.0: + resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==} + engines: {node: '>= 6.0.0'} dependencies: agent-base: 5.1.1 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) transitivePeerDependencies: - supports-color - https-proxy-agent@5.0.1: + /https-proxy-agent@5.0.1: + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} dependencies: agent-base: 6.0.2 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) transitivePeerDependencies: - supports-color + dev: true - human-id@1.0.2: {} + /human-id@1.0.2: + resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} + dev: true - human-signals@1.1.1: {} + /human-signals@1.1.1: + resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} + engines: {node: '>=8.12.0'} + dev: true - human-signals@2.1.0: {} + /human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} - human-signals@5.0.0: {} + /human-signals@5.0.0: + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} + engines: {node: '>=16.17.0'} + dev: true - humanize-ms@1.2.1: + /humanize-ms@1.2.1: + resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} dependencies: ms: 2.1.3 + dev: true - i18next-browser-languagedetector@6.1.8: + /i18next-browser-languagedetector@6.1.8: + resolution: {integrity: sha512-Svm+MduCElO0Meqpj1kJAriTC6OhI41VhlT/A0UPjGoPZBhAHIaGE5EfsHlTpgdH09UVX7rcc72pSDDBeKSQQA==} dependencies: '@babel/runtime': 7.24.7 + dev: false - i18next-xhr-backend@3.2.2: + /i18next-xhr-backend@3.2.2: + resolution: {integrity: sha512-OtRf2Vo3IqAxsttQbpjYnmMML12IMB5e0fc5B7qKJFLScitYaXa1OhMX0n0X/3vrfFlpHL9Ro/H+ps4Ej2j7QQ==} + deprecated: replaced by i18next-http-backend dependencies: '@babel/runtime': 7.24.7 - i18next@21.10.0: + /i18next@21.10.0: + resolution: {integrity: sha512-YeuIBmFsGjUfO3qBmMOc0rQaun4mIpGKET5WDwvu8lU7gvwpcariZLNtL0Fzj+zazcHUrlXHiptcFhBMFaxzfg==} dependencies: '@babel/runtime': 7.24.7 + dev: false - iconv-lite@0.4.24: + /iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} dependencies: safer-buffer: 2.1.2 - iconv-lite@0.6.3: + /iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} dependencies: safer-buffer: 2.1.2 + dev: true - icss-replace-symbols@1.1.0: {} + /icss-replace-symbols@1.1.0: + resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} + dev: true - icss-utils@2.1.0: + /icss-utils@2.1.0: + resolution: {integrity: sha512-bsVoyn/1V4R1kYYjLcWLedozAM4FClZUdjE9nIr8uWY7xs78y9DATgwz2wGU7M+7z55KenmmTkN2DVJ7bqzjAA==} dependencies: postcss: 6.0.23 + dev: true - icss-utils@4.1.1: + /icss-utils@4.1.1: + resolution: {integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==} + engines: {node: '>= 6'} dependencies: postcss: 7.0.39 + dev: false - icss-utils@5.1.0(postcss@8.4.39): + /icss-utils@5.1.0(postcss@8.4.39): + resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 dependencies: postcss: 8.4.39 - identity-obj-proxy@3.0.0: + /identity-obj-proxy@3.0.0: + resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} + engines: {node: '>=4'} dependencies: harmony-reflect: 1.6.2 + dev: true - ieee754@1.2.1: {} + /ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - ignore-walk@5.0.1: + /ignore-walk@5.0.1: + resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: minimatch: 5.1.6 + dev: true - ignore@4.0.6: {} + /ignore@4.0.6: + resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} + engines: {node: '>= 4'} - ignore@5.3.1: {} + /ignore@5.3.1: + resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} + engines: {node: '>= 4'} - image-size@0.5.5: + /image-size@0.5.5: + resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} + engines: {node: '>=0.10.0'} + hasBin: true + requiresBuild: true + dev: true optional: true - immutable@4.3.6: {} + /immutable@4.3.6: + resolution: {integrity: sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==} + dev: true - import-cwd@2.1.0: + /import-cwd@2.1.0: + resolution: {integrity: sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==} + engines: {node: '>=4'} dependencies: import-from: 2.1.0 - import-cwd@3.0.0: + /import-cwd@3.0.0: + resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} + engines: {node: '>=8'} dependencies: import-from: 3.0.0 + dev: true - import-fresh@2.0.0: + /import-fresh@2.0.0: + resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} + engines: {node: '>=4'} dependencies: caller-path: 2.0.0 resolve-from: 3.0.0 - import-fresh@3.3.0: + /import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 - import-from@2.1.0: + /import-from@2.1.0: + resolution: {integrity: sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==} + engines: {node: '>=4'} dependencies: resolve-from: 3.0.0 - import-from@3.0.0: + /import-from@3.0.0: + resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==} + engines: {node: '>=8'} dependencies: resolve-from: 5.0.0 + dev: true - import-lazy@2.1.0: {} + /import-lazy@2.1.0: + resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==} + engines: {node: '>=4'} + dev: false - import-local@2.0.0: + /import-local@2.0.0: + resolution: {integrity: sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==} + engines: {node: '>=6'} + hasBin: true dependencies: pkg-dir: 3.0.0 resolve-cwd: 2.0.0 - import-local@3.1.0: + /import-local@3.1.0: + resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} + engines: {node: '>=8'} + hasBin: true dependencies: pkg-dir: 4.2.0 resolve-cwd: 3.0.0 - imurmurhash@0.1.4: {} + /imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} - indent-string@2.1.0: + /indent-string@2.1.0: + resolution: {integrity: sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: repeating: 2.0.1 + dev: false optional: true - indent-string@4.0.0: {} + /indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} - infer-owner@1.0.4: {} + /infer-owner@1.0.4: + resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} - inflight@1.0.6: + /inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. dependencies: once: 1.4.0 wrappy: 1.0.2 - inherits@2.0.3: {} + /inherits@2.0.3: + resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} - inherits@2.0.4: {} + /inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - ini@1.3.8: {} + /ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - ini@2.0.0: {} + /ini@2.0.0: + resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} + engines: {node: '>=10'} - init-package-json@3.0.2: + /init-package-json@3.0.2: + resolution: {integrity: sha512-YhlQPEjNFqlGdzrBfDNRLhvoSgX7iQRgSxgsNknRQ9ITXFT7UMfVMWhBTOh2Y+25lRnGrv5Xz8yZwQ3ACR6T3A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: npm-package-arg: 9.1.2 promzard: 0.3.0 @@ -46276,12 +37557,18 @@ snapshots: semver: 7.6.2 validate-npm-package-license: 3.0.4 validate-npm-package-name: 4.0.0 + dev: true - inline-style-parser@0.1.1: {} + /inline-style-parser@0.1.1: + resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} - inline-style-parser@0.2.3: {} + /inline-style-parser@0.2.3: + resolution: {integrity: sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==} + dev: false - inquirer@8.2.6: + /inquirer@8.2.6: + resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} + engines: {node: '>=12.0.0'} dependencies: ansi-escapes: 4.3.2 chalk: 4.1.1 @@ -46298,389 +37585,654 @@ snapshots: strip-ansi: 6.0.1 through: 2.3.8 wrap-ansi: 6.2.0 + dev: true - internal-ip@4.3.0: + /internal-ip@4.3.0: + resolution: {integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==} + engines: {node: '>=6'} dependencies: default-gateway: 4.2.0 ipaddr.js: 1.9.1 - internal-slot@1.0.7: + /internal-slot@1.0.7: + resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} + engines: {node: '>= 0.4'} dependencies: es-errors: 1.3.0 hasown: 2.0.2 side-channel: 1.0.6 - internmap@2.0.3: {} + /internmap@2.0.3: + resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} + engines: {node: '>=12'} + dev: false - interpret@1.4.0: {} + /interpret@1.4.0: + resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} + engines: {node: '>= 0.10'} + dev: false - interpret@2.2.0: {} + /interpret@2.2.0: + resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==} + engines: {node: '>= 0.10'} - invariant@2.2.4: + /invariant@2.2.4: + resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} dependencies: loose-envify: 1.4.0 - ip-address@9.0.5: + /ip-address@9.0.5: + resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} + engines: {node: '>= 12'} dependencies: jsbn: 1.1.0 sprintf-js: 1.1.3 + dev: true - ip-regex@2.1.0: {} + /ip-regex@2.1.0: + resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==} + engines: {node: '>=4'} - ip@1.1.9: {} + /ip@1.1.9: + resolution: {integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==} - ip@2.0.1: {} + /ip@2.0.1: + resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==} - ipaddr.js@1.9.1: {} + /ipaddr.js@1.9.1: + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + engines: {node: '>= 0.10'} - ipaddr.js@2.2.0: {} + /ipaddr.js@2.2.0: + resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==} + engines: {node: '>= 10'} + dev: true - is-absolute-url@3.0.3: {} + /is-absolute-url@3.0.3: + resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==} + engines: {node: '>=8'} - is-accessor-descriptor@1.0.1: + /is-accessor-descriptor@1.0.1: + resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==} + engines: {node: '>= 0.10'} dependencies: hasown: 2.0.2 - is-alphabetical@1.0.4: {} + /is-alphabetical@1.0.4: + resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} - is-alphabetical@2.0.1: {} + /is-alphabetical@2.0.1: + resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} + dev: false - is-alphanumerical@1.0.4: + /is-alphanumerical@1.0.4: + resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} dependencies: is-alphabetical: 1.0.4 is-decimal: 1.0.4 - is-alphanumerical@2.0.1: + /is-alphanumerical@2.0.1: + resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} dependencies: is-alphabetical: 2.0.1 is-decimal: 2.0.1 + dev: false - is-arguments@1.1.1: + /is-arguments@1.1.1: + resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 has-tostringtag: 1.0.2 - is-array-buffer@3.0.4: + /is-array-buffer@3.0.4: + resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 - is-arrayish@0.2.1: {} + /is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - is-async-function@2.0.0: + /is-async-function@2.0.0: + resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.2 + dev: true - is-bigint@1.0.4: + /is-bigint@1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} dependencies: has-bigints: 1.0.2 - is-binary-path@1.0.1: + /is-binary-path@1.0.1: + resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==} + engines: {node: '>=0.10.0'} dependencies: binary-extensions: 1.13.1 - is-binary-path@2.1.0: + /is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} dependencies: binary-extensions: 2.3.0 - is-boolean-object@1.1.2: + /is-boolean-object@1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 has-tostringtag: 1.0.2 - is-buffer@1.1.6: {} + /is-buffer@1.1.6: + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} - is-buffer@2.0.5: {} + /is-buffer@2.0.5: + resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} + engines: {node: '>=4'} - is-builtin-module@3.2.1: + /is-builtin-module@3.2.1: + resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} + engines: {node: '>=6'} dependencies: builtin-modules: 3.3.0 + dev: true - is-callable@1.2.7: {} + /is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} - is-ci@2.0.0: + /is-ci@2.0.0: + resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} + hasBin: true dependencies: ci-info: 2.0.0 - is-ci@3.0.1: + /is-ci@3.0.1: + resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} + hasBin: true dependencies: ci-info: 3.9.0 + dev: true - is-core-module@2.14.0: + /is-core-module@2.14.0: + resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==} + engines: {node: '>= 0.4'} dependencies: hasown: 2.0.2 - is-data-descriptor@1.0.1: + /is-data-descriptor@1.0.1: + resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==} + engines: {node: '>= 0.4'} dependencies: hasown: 2.0.2 - is-data-view@1.0.1: + /is-data-view@1.0.1: + resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} + engines: {node: '>= 0.4'} dependencies: is-typed-array: 1.1.13 - is-date-object@1.0.5: + /is-date-object@1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.2 - is-decimal@1.0.4: {} + /is-decimal@1.0.4: + resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} - is-decimal@2.0.1: {} + /is-decimal@2.0.1: + resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} + dev: false - is-deflate@1.0.0: {} + /is-deflate@1.0.0: + resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==} + dev: true - is-descriptor@0.1.7: + /is-descriptor@0.1.7: + resolution: {integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==} + engines: {node: '>= 0.4'} dependencies: is-accessor-descriptor: 1.0.1 is-data-descriptor: 1.0.1 - is-descriptor@1.0.3: + /is-descriptor@1.0.3: + resolution: {integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==} + engines: {node: '>= 0.4'} dependencies: is-accessor-descriptor: 1.0.1 is-data-descriptor: 1.0.1 - is-directory@0.3.1: {} + /is-directory@0.3.1: + resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} + engines: {node: '>=0.10.0'} - is-docker@2.2.1: {} + /is-docker@2.2.1: + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} + hasBin: true - is-dom@1.1.0: + /is-dom@1.1.0: + resolution: {integrity: sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==} dependencies: is-object: 1.0.2 is-window: 1.0.2 + dev: true - is-extendable@0.1.1: {} + /is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} - is-extendable@1.0.1: + /is-extendable@1.0.1: + resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} + engines: {node: '>=0.10.0'} dependencies: is-plain-object: 2.0.4 - is-extglob@2.1.1: {} + /is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} - is-finalizationregistry@1.0.2: + /is-finalizationregistry@1.0.2: + resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} dependencies: call-bind: 1.0.7 + dev: true - is-finite@1.1.0: - optional: true + /is-finite@1.1.0: + resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==} + engines: {node: '>=0.10.0'} + requiresBuild: true - is-fullwidth-code-point@2.0.0: {} + /is-fullwidth-code-point@2.0.0: + resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} + engines: {node: '>=4'} - is-fullwidth-code-point@3.0.0: {} + /is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} - is-function@1.0.2: {} + /is-function@1.0.2: + resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==} - is-generator-fn@2.1.0: {} + /is-generator-fn@2.1.0: + resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} + engines: {node: '>=6'} - is-generator-function@1.0.10: + /is-generator-function@1.0.10: + resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.2 + dev: true - is-glob@3.1.0: + /is-glob@3.1.0: + resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==} + engines: {node: '>=0.10.0'} dependencies: is-extglob: 2.1.1 - is-glob@4.0.3: + /is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} dependencies: is-extglob: 2.1.1 - is-gzip@1.0.0: {} + /is-gzip@1.0.0: + resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==} + engines: {node: '>=0.10.0'} + dev: true - is-hexadecimal@1.0.4: {} + /is-hexadecimal@1.0.4: + resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} - is-hexadecimal@2.0.1: {} + /is-hexadecimal@2.0.1: + resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} + dev: false - is-installed-globally@0.4.0: + /is-installed-globally@0.4.0: + resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} + engines: {node: '>=10'} dependencies: global-dirs: 3.0.1 is-path-inside: 3.0.3 - is-interactive@1.0.0: {} + /is-interactive@1.0.0: + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + engines: {node: '>=8'} + dev: true - is-lambda@1.0.1: {} + /is-lambda@1.0.1: + resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} + dev: true - is-lite@0.8.2: {} + /is-lite@0.8.2: + resolution: {integrity: sha512-JZfH47qTsslwaAsqbMI3Q6HNNjUuq6Cmzzww50TdP5Esb6e1y2sK2UAaZZuzfAzpoI2AkxoPQapZdlDuP6Vlsw==} + dev: false - is-lite@1.2.1: {} + /is-lite@1.2.1: + resolution: {integrity: sha512-pgF+L5bxC+10hLBgf6R2P4ZZUBOQIIacbdo8YvuCP8/JvsWxG7aZ9p10DYuLtifFci4l3VITphhMlMV4Y+urPw==} + dev: false - is-map@2.0.3: {} + /is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} - is-module@1.0.0: {} + /is-module@1.0.0: + resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + dev: true - is-nan@1.3.2: + /is-nan@1.3.2: + resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 + dev: true - is-negative-zero@2.0.3: {} + /is-negative-zero@2.0.3: + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + engines: {node: '>= 0.4'} - is-node-process@1.2.0: {} + /is-node-process@1.2.0: + resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==} + dev: true - is-npm@5.0.0: {} + /is-npm@5.0.0: + resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==} + engines: {node: '>=10'} + dev: false - is-number-object@1.0.7: + /is-number-object@1.0.7: + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.2 - is-number@2.1.0: + /is-number@2.1.0: + resolution: {integrity: sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==} + engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 + dev: true - is-number@3.0.0: + /is-number@3.0.0: + resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} + engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 - is-number@4.0.0: {} + /is-number@4.0.0: + resolution: {integrity: sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==} + engines: {node: '>=0.10.0'} + dev: true - is-number@7.0.0: {} + /is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} - is-obj@2.0.0: {} + /is-obj@2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} - is-object@1.0.2: {} + /is-object@1.0.2: + resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==} + dev: true - is-path-cwd@2.2.0: {} + /is-path-cwd@2.2.0: + resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} + engines: {node: '>=6'} - is-path-in-cwd@2.1.0: + /is-path-in-cwd@2.1.0: + resolution: {integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==} + engines: {node: '>=6'} dependencies: is-path-inside: 2.1.0 - is-path-inside@2.1.0: + /is-path-inside@2.1.0: + resolution: {integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==} + engines: {node: '>=6'} dependencies: path-is-inside: 1.0.2 - is-path-inside@3.0.3: {} + /is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} - is-plain-obj@1.1.0: {} + /is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + dev: true - is-plain-obj@2.1.0: {} + /is-plain-obj@2.1.0: + resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} + engines: {node: '>=8'} - is-plain-obj@3.0.0: {} + /is-plain-obj@3.0.0: + resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} + engines: {node: '>=10'} + dev: true - is-plain-obj@4.1.0: {} + /is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + dev: false - is-plain-object@2.0.4: + /is-plain-object@2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 - is-plain-object@3.0.1: {} + /is-plain-object@3.0.1: + resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==} + engines: {node: '>=0.10.0'} + dev: true - is-plain-object@5.0.0: {} + /is-plain-object@5.0.0: + resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + engines: {node: '>=0.10.0'} - is-potential-custom-element-name@1.0.1: {} + /is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + dev: true - is-promise@2.2.2: {} + /is-promise@2.2.2: + resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + dev: false - is-reference@1.2.1: + /is-reference@1.2.1: + resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} dependencies: '@types/estree': 1.0.5 + dev: true - is-regex@1.1.4: + /is-regex@1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 has-tostringtag: 1.0.2 - is-set@2.0.3: {} + /is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} - is-shared-array-buffer@1.0.3: + /is-shared-array-buffer@1.0.3: + resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 - is-ssh@1.4.0: + /is-ssh@1.4.0: + resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} dependencies: protocols: 2.0.1 + dev: true - is-stream@1.1.0: {} + /is-stream@1.1.0: + resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} + engines: {node: '>=0.10.0'} - is-stream@2.0.1: {} + /is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} - is-stream@3.0.0: {} + /is-stream@3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true - is-string@1.0.7: + /is-string@1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.2 - is-subdir@1.2.0: + /is-subdir@1.2.0: + resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} + engines: {node: '>=4'} dependencies: better-path-resolve: 1.0.0 + dev: true - is-symbol@1.0.4: + /is-symbol@1.0.4: + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 - is-text-path@1.0.1: + /is-text-path@1.0.1: + resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} + engines: {node: '>=0.10.0'} dependencies: text-extensions: 1.9.0 + dev: true - is-typed-array@1.1.13: + /is-typed-array@1.1.13: + resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} + engines: {node: '>= 0.4'} dependencies: which-typed-array: 1.1.15 - is-typedarray@1.0.0: {} + /is-typedarray@1.0.0: + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} - is-unicode-supported@0.1.0: {} + /is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + dev: true - is-utf8@0.2.1: + /is-utf8@0.2.1: + resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} + requiresBuild: true + dev: false optional: true - is-weakmap@2.0.2: {} + /is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} - is-weakref@1.0.2: + /is-weakref@1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: call-bind: 1.0.7 - is-weakset@2.0.3: + /is-weakset@2.0.3: + resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 - is-what@3.14.1: {} + /is-what@3.14.1: + resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} - is-whitespace-character@1.0.4: {} + /is-whitespace-character@1.0.4: + resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==} - is-window@1.0.2: {} + /is-window@1.0.2: + resolution: {integrity: sha512-uj00kdXyZb9t9RcAUAwMZAnkBUwdYGhYlt7djMXhfyhUCzwNba50tIiBKR7q0l7tdoBtFVw/3JmLY6fI3rmZmg==} + dev: true - is-windows@1.0.2: {} + /is-windows@1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} - is-word-character@1.0.4: {} + /is-word-character@1.0.4: + resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==} - is-wsl@1.1.0: {} + /is-wsl@1.1.0: + resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} + engines: {node: '>=4'} - is-wsl@2.2.0: + /is-wsl@2.2.0: + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} dependencies: is-docker: 2.2.1 - is-yarn-global@0.3.0: {} + /is-yarn-global@0.3.0: + resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==} + dev: false - isarray@0.0.1: {} + /isarray@0.0.1: + resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} + dev: false - isarray@1.0.0: {} + /isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} - isarray@2.0.5: {} + /isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} - isexe@2.0.0: {} + /isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - isobject@2.1.0: + /isobject@2.1.0: + resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} + engines: {node: '>=0.10.0'} dependencies: isarray: 1.0.0 - isobject@3.0.1: {} + /isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} - isobject@4.0.0: {} + /isobject@4.0.0: + resolution: {integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==} + engines: {node: '>=0.10.0'} - isomorphic-unfetch@3.1.0(encoding@0.1.13): + /isomorphic-unfetch@3.1.0: + resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==} dependencies: - node-fetch: 2.7.0(encoding@0.1.13) + node-fetch: 2.7.0 unfetch: 4.2.0 transitivePeerDependencies: - encoding + dev: false - isstream@0.1.2: {} + /isstream@0.1.2: + resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} + dev: true - istanbul-lib-coverage@3.2.2: {} + /istanbul-lib-coverage@3.2.2: + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} + engines: {node: '>=8'} - istanbul-lib-hook@3.0.0: + /istanbul-lib-hook@3.0.0: + resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==} + engines: {node: '>=8'} dependencies: append-transform: 2.0.0 + dev: true - istanbul-lib-instrument@4.0.3: + /istanbul-lib-instrument@4.0.3: + resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} + engines: {node: '>=8'} dependencies: '@babel/core': 7.24.7 '@istanbuljs/schema': 0.1.3 @@ -46688,8 +38240,11 @@ snapshots: semver: 6.3.1 transitivePeerDependencies: - supports-color + dev: true - istanbul-lib-instrument@5.2.1: + /istanbul-lib-instrument@5.2.1: + resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} + engines: {node: '>=8'} dependencies: '@babel/core': 7.24.7 '@babel/parser': 7.24.7 @@ -46699,7 +38254,9 @@ snapshots: transitivePeerDependencies: - supports-color - istanbul-lib-instrument@6.0.3: + /istanbul-lib-instrument@6.0.3: + resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==} + engines: {node: '>=10'} dependencies: '@babel/core': 7.24.7 '@babel/parser': 7.24.7 @@ -46709,7 +38266,9 @@ snapshots: transitivePeerDependencies: - supports-color - istanbul-lib-processinfo@2.0.3: + /istanbul-lib-processinfo@2.0.3: + resolution: {integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==} + engines: {node: '>=8'} dependencies: archy: 1.0.0 cross-spawn: 7.0.3 @@ -46717,67 +38276,93 @@ snapshots: p-map: 3.0.0 rimraf: 3.0.2 uuid: 8.3.2 + dev: true - istanbul-lib-report@3.0.1: + /istanbul-lib-report@3.0.1: + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} dependencies: istanbul-lib-coverage: 3.2.2 make-dir: 4.0.0 supports-color: 7.2.0 - istanbul-lib-source-maps@4.0.1: + /istanbul-lib-source-maps@4.0.1: + resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} + engines: {node: '>=10'} dependencies: - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) istanbul-lib-coverage: 3.2.2 source-map: 0.6.1 transitivePeerDependencies: - supports-color - istanbul-reports@3.1.7: + /istanbul-reports@3.1.7: + resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} + engines: {node: '>=8'} dependencies: html-escaper: 2.0.2 istanbul-lib-report: 3.0.1 - iterate-iterator@1.0.2: {} + /iterate-iterator@1.0.2: + resolution: {integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==} + dev: false - iterate-value@1.0.2: + /iterate-value@1.0.2: + resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==} dependencies: es-get-iterator: 1.1.3 iterate-iterator: 1.0.2 + dev: false - iterator.prototype@1.1.2: + /iterator.prototype@1.1.2: + resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} dependencies: define-properties: 1.2.1 get-intrinsic: 1.2.4 has-symbols: 1.0.3 reflect.getprototypeof: 1.0.6 set-function-name: 2.0.2 + dev: true - jackspeak@3.4.0: + /jackspeak@3.4.0: + resolution: {integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==} + engines: {node: '>=14'} dependencies: '@isaacs/cliui': 8.0.2 optionalDependencies: '@pkgjs/parseargs': 0.11.0 - jake@10.9.1: + /jake@10.9.1: + resolution: {integrity: sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==} + engines: {node: '>=10'} + hasBin: true dependencies: async: 3.2.5 chalk: 4.1.2 filelist: 1.0.4 minimatch: 3.1.2 + dev: true - jest-changed-files@26.6.2: + /jest-changed-files@26.6.2: + resolution: {integrity: sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 execa: 4.1.0 throat: 5.0.0 + dev: true - jest-changed-files@29.7.0: + /jest-changed-files@29.7.0: + resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: execa: 5.1.1 jest-util: 29.7.0 p-limit: 3.1.0 - jest-circus@29.7.0(babel-plugin-macros@3.1.0): + /jest-circus@29.7.0: + resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/environment': 29.7.0 '@jest/expect': 29.7.0 @@ -46786,7 +38371,7 @@ snapshots: '@types/node': 13.13.52 chalk: 4.1.2 co: 4.6.0 - dedent: 1.5.3(babel-plugin-macros@3.1.0) + dedent: 1.5.3 is-generator-fn: 2.1.0 jest-each: 29.7.0 jest-matcher-utils: 29.7.0 @@ -46803,9 +38388,12 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@26.6.3(ts-node@8.10.2(typescript@4.9.5)): + /jest-cli@26.6.3: + resolution: {integrity: sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==} + engines: {node: '>= 10.14.2'} + hasBin: true dependencies: - '@jest/core': 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + '@jest/core': 26.6.3 '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 chalk: 4.1.2 @@ -46813,7 +38401,7 @@ snapshots: graceful-fs: 4.2.11 import-local: 3.1.0 is-ci: 2.0.0 - jest-config: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-config: 26.6.3 jest-util: 26.6.2 jest-validate: 26.6.2 prompts: 2.4.2 @@ -46824,74 +38412,73 @@ snapshots: - supports-color - ts-node - utf-8-validate + dev: true - jest-cli@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)): - dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 - chalk: 4.1.2 - create-jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)) - exit: 0.1.2 - import-local: 3.1.0 - jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)) - jest-util: 29.7.0 - jest-validate: 29.7.0 - yargs: 17.7.2 - optionalDependencies: - node-notifier: 8.0.2 - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - - jest-cli@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)): + /jest-cli@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): + resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) + '@jest/core': 29.7.0(ts-node@8.10.2) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)) + create-jest: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)) + jest-config: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 - optionalDependencies: - node-notifier: 8.0.2 transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - jest-cli@29.7.0(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)): + /jest-cli@29.7.0(@types/node@18.11.9): + resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) + '@jest/core': 29.7.0(ts-node@8.10.2) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)) + create-jest: 29.7.0(@types/node@18.11.9) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)) + jest-config: 29.7.0(@types/node@18.11.9) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 - optionalDependencies: - node-notifier: 8.0.2 transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - jest-config@26.6.3(ts-node@8.10.2(typescript@4.9.5)): + /jest-config@26.6.3: + resolution: {integrity: sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==} + engines: {node: '>= 10.14.2'} + peerDependencies: + ts-node: '>=9.0.0' + peerDependenciesMeta: + ts-node: + optional: true dependencies: '@babel/core': 7.24.7 - '@jest/test-sequencer': 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + '@jest/test-sequencer': 26.6.3 '@jest/types': 26.6.2 babel-jest: 26.6.3(@babel/core@7.24.7) chalk: 4.1.2 @@ -46901,33 +38488,43 @@ snapshots: jest-environment-jsdom: 26.6.2 jest-environment-node: 26.6.2 jest-get-type: 26.3.0 - jest-jasmine2: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-jasmine2: 26.6.3 jest-regex-util: 26.0.0 jest-resolve: 26.6.2 jest-util: 26.6.2 jest-validate: 26.6.2 micromatch: 4.0.7 pretty-format: 26.6.2 - optionalDependencies: - ts-node: 8.10.2(typescript@4.9.5) transitivePeerDependencies: - bufferutil - canvas - supports-color - utf-8-validate + dev: true - jest-config@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@4.9.5)): + /jest-config@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): + resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true dependencies: '@babel/core': 7.24.7 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 + '@types/node': 13.13.52 babel-jest: 29.7.0(@babel/core@7.24.7) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 - jest-circus: 29.7.0(babel-plugin-macros@3.1.0) + jest-circus: 29.7.0 jest-environment-node: 29.7.0 jest-get-type: 29.6.3 jest-regex-util: 29.6.3 @@ -46940,25 +38537,34 @@ snapshots: pretty-format: 29.7.0 slash: 3.0.0 strip-json-comments: 3.1.1 - optionalDependencies: - '@types/node': 13.13.52 ts-node: 8.10.2(typescript@4.9.5) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)): + /jest-config@29.7.0(@types/node@18.11.9): + resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true dependencies: '@babel/core': 7.24.7 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 + '@types/node': 18.11.9 babel-jest: 29.7.0(@babel/core@7.24.7) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 - jest-circus: 29.7.0(babel-plugin-macros@3.1.0) + jest-circus: 29.7.0 jest-environment-node: 29.7.0 jest-get-type: 29.6.3 jest-regex-util: 29.6.3 @@ -46971,75 +38577,56 @@ snapshots: pretty-format: 29.7.0 slash: 3.0.0 strip-json-comments: 3.1.1 - optionalDependencies: - '@types/node': 13.13.52 - ts-node: 8.10.2(typescript@5.1.6) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(ts-node@8.10.2(typescript@5.1.6)): - dependencies: - '@babel/core': 7.24.7 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) - chalk: 4.1.2 - ci-info: 3.9.0 - deepmerge: 4.3.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-circus: 29.7.0(babel-plugin-macros@3.1.0) - jest-environment-node: 29.7.0 - jest-get-type: 29.6.3 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-runner: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - micromatch: 4.0.7 - parse-json: 5.2.0 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-json-comments: 3.1.1 - optionalDependencies: - '@types/node': 18.11.9 - ts-node: 8.10.2(typescript@5.1.6) - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - jest-diff@26.6.2: + /jest-diff@26.6.2: + resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==} + engines: {node: '>= 10.14.2'} dependencies: chalk: 4.1.2 diff-sequences: 26.6.2 jest-get-type: 26.3.0 pretty-format: 26.6.2 + dev: true - jest-diff@29.7.0: + /jest-diff@29.7.0: + resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 diff-sequences: 29.6.3 jest-get-type: 29.6.3 pretty-format: 29.7.0 - jest-docblock@26.0.0: + /jest-docblock@26.0.0: + resolution: {integrity: sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==} + engines: {node: '>= 10.14.2'} dependencies: detect-newline: 3.1.0 + dev: true - jest-docblock@29.7.0: + /jest-docblock@29.7.0: + resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: detect-newline: 3.1.0 - jest-each@26.6.2: + /jest-each@26.6.2: + resolution: {integrity: sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 chalk: 4.1.2 jest-get-type: 26.3.0 jest-util: 26.6.2 pretty-format: 26.6.2 + dev: true - jest-each@29.7.0: + /jest-each@29.7.0: + resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 @@ -47047,19 +38634,35 @@ snapshots: jest-util: 29.7.0 pretty-format: 29.7.0 - jest-environment-jsdom-global@2.0.4(jest-environment-jsdom@26.6.2): + /jest-environment-jsdom-global@2.0.4(jest-environment-jsdom@26.6.2): + resolution: {integrity: sha512-1vB8q+PrszXW4Pf7Zgp3eQ4oNVbA7GY6+jmrg1qi6RtYRWDJ60/xdkhjqAbQpX8BRyvqQJYQi66LXER5YNeHXg==} + peerDependencies: + jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x dependencies: jest-environment-jsdom: 26.6.2 + dev: true - jest-environment-jsdom-global@4.0.0(jest-environment-jsdom@26.6.2): + /jest-environment-jsdom-global@4.0.0(jest-environment-jsdom@26.6.2): + resolution: {integrity: sha512-qEV8j61oV5XhOBUQbrld2nMYKnp/AGINUaoYTtkwJ9rjvMNRN7ZaZ/dgoPpW83oFtrSiVM1gie6ajdsKFBUlLA==} + engines: {node: '>= 14'} + peerDependencies: + jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x || 27.x || 28.x || 29.x dependencies: jest-environment-jsdom: 26.6.2 + dev: true - jest-environment-jsdom-global@4.0.0(jest-environment-jsdom@29.7.0): + /jest-environment-jsdom-global@4.0.0(jest-environment-jsdom@29.7.0): + resolution: {integrity: sha512-qEV8j61oV5XhOBUQbrld2nMYKnp/AGINUaoYTtkwJ9rjvMNRN7ZaZ/dgoPpW83oFtrSiVM1gie6ajdsKFBUlLA==} + engines: {node: '>= 14'} + peerDependencies: + jest-environment-jsdom: 22.x || 23.x || 24.x || 25.x || 26.x || 27.x || 28.x || 29.x dependencies: jest-environment-jsdom: 29.7.0 + dev: true - jest-environment-jsdom@26.6.2: + /jest-environment-jsdom@26.6.2: + resolution: {integrity: sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/environment': 26.6.2 '@jest/fake-timers': 26.6.2 @@ -47073,8 +38676,16 @@ snapshots: - canvas - supports-color - utf-8-validate + dev: true - jest-environment-jsdom@29.7.0: + /jest-environment-jsdom@29.7.0: + resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true dependencies: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 @@ -47088,8 +38699,11 @@ snapshots: - bufferutil - supports-color - utf-8-validate + dev: true - jest-environment-node@26.6.2: + /jest-environment-node@26.6.2: + resolution: {integrity: sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/environment': 26.6.2 '@jest/fake-timers': 26.6.2 @@ -47097,8 +38711,11 @@ snapshots: '@types/node': 13.13.52 jest-mock: 26.6.2 jest-util: 26.6.2 + dev: true - jest-environment-node@29.7.0: + /jest-environment-node@29.7.0: + resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 @@ -47107,11 +38724,18 @@ snapshots: jest-mock: 29.7.0 jest-util: 29.7.0 - jest-get-type@26.3.0: {} + /jest-get-type@26.3.0: + resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==} + engines: {node: '>= 10.14.2'} + dev: true - jest-get-type@29.6.3: {} + /jest-get-type@29.6.3: + resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - jest-haste-map@26.6.2: + /jest-haste-map@26.6.2: + resolution: {integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.9 @@ -47131,7 +38755,9 @@ snapshots: transitivePeerDependencies: - supports-color - jest-haste-map@29.7.0: + /jest-haste-map@29.7.0: + resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.9 @@ -47147,7 +38773,9 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - jest-jasmine2@26.6.3(ts-node@8.10.2(typescript@4.9.5)): + /jest-jasmine2@26.6.3: + resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==} + engines: {node: '>= 10.14.2'} dependencies: '@babel/traverse': 7.24.7 '@jest/environment': 26.6.2 @@ -47162,7 +38790,7 @@ snapshots: jest-each: 26.6.2 jest-matcher-utils: 26.6.2 jest-message-util: 26.6.2 - jest-runtime: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-runtime: 26.6.3 jest-snapshot: 26.6.2 jest-util: 26.6.2 pretty-format: 26.6.2 @@ -47173,32 +38801,45 @@ snapshots: - supports-color - ts-node - utf-8-validate + dev: true - jest-leak-detector@26.6.2: + /jest-leak-detector@26.6.2: + resolution: {integrity: sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==} + engines: {node: '>= 10.14.2'} dependencies: jest-get-type: 26.3.0 pretty-format: 26.6.2 + dev: true - jest-leak-detector@29.7.0: + /jest-leak-detector@29.7.0: + resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: jest-get-type: 29.6.3 pretty-format: 29.7.0 - jest-matcher-utils@26.6.2: + /jest-matcher-utils@26.6.2: + resolution: {integrity: sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==} + engines: {node: '>= 10.14.2'} dependencies: chalk: 4.1.2 jest-diff: 26.6.2 jest-get-type: 26.3.0 pretty-format: 26.6.2 + dev: true - jest-matcher-utils@29.7.0: + /jest-matcher-utils@29.7.0: + resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 jest-diff: 29.7.0 jest-get-type: 29.6.3 pretty-format: 29.7.0 - jest-message-util@26.6.2: + /jest-message-util@26.6.2: + resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==} + engines: {node: '>= 10.14.2'} dependencies: '@babel/code-frame': 7.24.7 '@jest/types': 26.6.2 @@ -47209,8 +38850,11 @@ snapshots: pretty-format: 26.6.2 slash: 3.0.0 stack-utils: 2.0.6 + dev: true - jest-message-util@29.7.0: + /jest-message-util@29.7.0: + resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/code-frame': 7.24.7 '@jest/types': 29.6.3 @@ -47222,45 +38866,76 @@ snapshots: slash: 3.0.0 stack-utils: 2.0.6 - jest-mock@26.6.2: + /jest-mock@26.6.2: + resolution: {integrity: sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 '@types/node': 13.13.52 + dev: true - jest-mock@29.7.0: + /jest-mock@29.7.0: + resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 '@types/node': 13.13.52 jest-util: 29.7.0 - jest-pnp-resolver@1.2.3(jest-resolve@26.6.2): - optionalDependencies: + /jest-pnp-resolver@1.2.3(jest-resolve@26.6.2): + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + dependencies: jest-resolve: 26.6.2 + dev: true - jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): - optionalDependencies: + /jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + dependencies: jest-resolve: 29.7.0 - jest-regex-util@26.0.0: {} + /jest-regex-util@26.0.0: + resolution: {integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==} + engines: {node: '>= 10.14.2'} - jest-regex-util@29.6.3: {} + /jest-regex-util@29.6.3: + resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - jest-resolve-dependencies@26.6.3: + /jest-resolve-dependencies@26.6.3: + resolution: {integrity: sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 jest-regex-util: 26.0.0 jest-snapshot: 26.6.2 transitivePeerDependencies: - supports-color + dev: true - jest-resolve-dependencies@29.7.0: + /jest-resolve-dependencies@29.7.0: + resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: jest-regex-util: 29.6.3 jest-snapshot: 29.7.0 transitivePeerDependencies: - supports-color - jest-resolve@26.6.2: + /jest-resolve@26.6.2: + resolution: {integrity: sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 chalk: 4.1.2 @@ -47270,8 +38945,11 @@ snapshots: read-pkg-up: 7.0.1 resolve: 1.22.8 slash: 3.0.0 + dev: true - jest-resolve@29.7.0: + /jest-resolve@29.7.0: + resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 graceful-fs: 4.2.11 @@ -47283,7 +38961,9 @@ snapshots: resolve.exports: 2.0.2 slash: 3.0.0 - jest-runner@26.6.3(ts-node@8.10.2(typescript@4.9.5)): + /jest-runner@26.6.3: + resolution: {integrity: sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/console': 26.6.2 '@jest/environment': 26.6.2 @@ -47294,13 +38974,13 @@ snapshots: emittery: 0.7.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-config: 26.6.3 jest-docblock: 26.0.0 jest-haste-map: 26.6.2 jest-leak-detector: 26.6.2 jest-message-util: 26.6.2 jest-resolve: 26.6.2 - jest-runtime: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-runtime: 26.6.3 jest-util: 26.6.2 jest-worker: 26.6.2 source-map-support: 0.5.21 @@ -47311,8 +38991,11 @@ snapshots: - supports-color - ts-node - utf-8-validate + dev: true - jest-runner@29.7.0: + /jest-runner@29.7.0: + resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/console': 29.7.0 '@jest/environment': 29.7.0 @@ -47338,7 +39021,10 @@ snapshots: transitivePeerDependencies: - supports-color - jest-runtime@26.6.3(ts-node@8.10.2(typescript@4.9.5)): + /jest-runtime@26.6.3: + resolution: {integrity: sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==} + engines: {node: '>= 10.14.2'} + hasBin: true dependencies: '@jest/console': 26.6.2 '@jest/environment': 26.6.2 @@ -47355,7 +39041,7 @@ snapshots: exit: 0.1.2 glob: 7.2.3 graceful-fs: 4.2.11 - jest-config: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-config: 26.6.3 jest-haste-map: 26.6.2 jest-message-util: 26.6.2 jest-mock: 26.6.2 @@ -47373,8 +39059,11 @@ snapshots: - supports-color - ts-node - utf-8-validate + dev: true - jest-runtime@29.7.0: + /jest-runtime@29.7.0: + resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 @@ -47401,12 +39090,16 @@ snapshots: transitivePeerDependencies: - supports-color - jest-serializer@26.6.2: + /jest-serializer@26.6.2: + resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} + engines: {node: '>= 10.14.2'} dependencies: '@types/node': 13.13.52 graceful-fs: 4.2.11 - jest-snapshot@26.6.2: + /jest-snapshot@26.6.2: + resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==} + engines: {node: '>= 10.14.2'} dependencies: '@babel/types': 7.24.7 '@jest/types': 26.6.2 @@ -47426,8 +39119,11 @@ snapshots: semver: 7.6.2 transitivePeerDependencies: - supports-color + dev: true - jest-snapshot@29.7.0: + /jest-snapshot@29.7.0: + resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/core': 7.24.7 '@babel/generator': 7.24.7 @@ -47452,7 +39148,9 @@ snapshots: transitivePeerDependencies: - supports-color - jest-util@26.6.2: + /jest-util@26.6.2: + resolution: {integrity: sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 '@types/node': 13.13.52 @@ -47461,7 +39159,9 @@ snapshots: is-ci: 2.0.0 micromatch: 4.0.7 - jest-util@29.7.0: + /jest-util@29.7.0: + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 '@types/node': 13.13.52 @@ -47470,7 +39170,9 @@ snapshots: graceful-fs: 4.2.11 picomatch: 2.3.1 - jest-validate@26.6.2: + /jest-validate@26.6.2: + resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 camelcase: 6.3.0 @@ -47478,8 +39180,11 @@ snapshots: jest-get-type: 26.3.0 leven: 3.1.0 pretty-format: 26.6.2 + dev: true - jest-validate@29.7.0: + /jest-validate@29.7.0: + resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 camelcase: 6.3.0 @@ -47488,7 +39193,9 @@ snapshots: leven: 3.1.0 pretty-format: 29.7.0 - jest-watcher@26.6.2: + /jest-watcher@26.6.2: + resolution: {integrity: sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==} + engines: {node: '>= 10.14.2'} dependencies: '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 @@ -47497,8 +39204,11 @@ snapshots: chalk: 4.1.2 jest-util: 26.6.2 string-length: 4.0.2 + dev: true - jest-watcher@29.7.0: + /jest-watcher@29.7.0: + resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 @@ -47509,131 +39219,198 @@ snapshots: jest-util: 29.7.0 string-length: 4.0.2 - jest-worker@26.6.2: + /jest-worker@26.6.2: + resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} + engines: {node: '>= 10.13.0'} dependencies: '@types/node': 13.13.52 merge-stream: 2.0.0 supports-color: 7.2.0 - jest-worker@27.5.1: + /jest-worker@27.5.1: + resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} + engines: {node: '>= 10.13.0'} dependencies: '@types/node': 13.13.52 merge-stream: 2.0.0 supports-color: 8.1.1 - jest-worker@28.1.3: + /jest-worker@28.1.3: + resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@types/node': 13.13.52 merge-stream: 2.0.0 supports-color: 8.1.1 + dev: true - jest-worker@29.7.0: + /jest-worker@29.7.0: + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@types/node': 13.13.52 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)): + /jest@26.6.3: + resolution: {integrity: sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==} + engines: {node: '>= 10.14.2'} + hasBin: true dependencies: - '@jest/core': 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + '@jest/core': 26.6.3 import-local: 3.1.0 - jest-cli: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest-cli: 26.6.3 transitivePeerDependencies: - bufferutil - canvas - supports-color - ts-node - utf-8-validate + dev: true - jest@29.4.3(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)): + /jest@29.4.3(@types/node@18.11.9): + resolution: {integrity: sha512-XvK65feuEFGZT8OO0fB/QAQS+LGHvQpaadkH5p47/j3Ocqq3xf2pK9R+G0GzgfuhXVxEv76qCOOcMb5efLk6PA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) + '@jest/core': 29.7.0(ts-node@8.10.2) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) - optionalDependencies: - node-notifier: 8.0.2 + jest-cli: 29.7.0(@types/node@18.11.9) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node + dev: true - jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)): + /jest@29.7.0(@types/node@13.13.52)(ts-node@8.10.2): + resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) + '@jest/core': 29.7.0(ts-node@8.10.2) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) - optionalDependencies: - node-notifier: 8.0.2 + jest-cli: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)): + /jest@29.7.0(@types/node@18.11.9): + resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) + '@jest/core': 29.7.0(ts-node@8.10.2) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) - optionalDependencies: - node-notifier: 8.0.2 + jest-cli: 29.7.0(@types/node@18.11.9) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - jju@1.4.0: {} + /jju@1.4.0: + resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} + dev: true - joi@17.13.3: + /joi@17.13.3: + resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} dependencies: '@hapi/hoek': 9.3.0 '@hapi/topo': 5.1.0 '@sideway/address': 4.1.5 '@sideway/formula': 3.0.1 '@sideway/pinpoint': 2.0.0 + dev: false - jose@4.15.7: {} + /jose@4.15.7: + resolution: {integrity: sha512-L7ioP+JAuZe8v+T5+zVI9Tx8LtU8BL7NxkyDFVMv+Qr3JW0jSoYDedLtodaXwfqMpeCyx4WXFNyu9tJt4WvC1A==} - jquery@3.7.1: {} + /jquery@3.7.1: + resolution: {integrity: sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==} + dev: true - js-beautify@1.15.1: + /js-beautify@1.15.1: + resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==} + engines: {node: '>=14'} + hasBin: true dependencies: config-chain: 1.1.13 editorconfig: 1.0.4 glob: 10.4.2 js-cookie: 3.0.5 nopt: 7.2.1 + dev: false - js-cookie@3.0.5: {} + /js-cookie@3.0.5: + resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} + engines: {node: '>=14'} + dev: false - js-levenshtein@1.1.6: {} + /js-levenshtein@1.1.6: + resolution: {integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==} + engines: {node: '>=0.10.0'} + dev: true - js-string-escape@1.0.1: {} + /js-string-escape@1.0.1: + resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} + engines: {node: '>= 0.8'} - js-tokens@3.0.2: {} + /js-tokens@3.0.2: + resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==} + dev: true - js-tokens@4.0.0: {} + /js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - js-yaml@3.13.1: + /js-yaml@3.13.1: + resolution: {integrity: sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==} + hasBin: true dependencies: argparse: 1.0.10 esprima: 4.0.1 - js-yaml@4.1.0: + /js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true dependencies: argparse: 2.0.1 + dev: true - jsbn@0.1.1: {} + /jsbn@0.1.1: + resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + dev: true - jsbn@1.1.0: {} + /jsbn@1.1.0: + resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} + dev: true - jscodeshift@0.13.1(@babel/preset-env@7.24.7(@babel/core@7.24.7)): + /jscodeshift@0.13.1(@babel/preset-env@7.24.7): + resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==} + hasBin: true + peerDependencies: + '@babel/preset-env': ^7.1.6 dependencies: '@babel/core': 7.24.7 '@babel/parser': 7.24.7 @@ -47657,8 +39434,16 @@ snapshots: write-file-atomic: 2.4.3 transitivePeerDependencies: - supports-color + dev: false - jscodeshift@0.15.2(@babel/preset-env@7.24.7(@babel/core@7.24.7)): + /jscodeshift@0.15.2(@babel/preset-env@7.24.7): + resolution: {integrity: sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==} + hasBin: true + peerDependencies: + '@babel/preset-env': ^7.1.6 + peerDependenciesMeta: + '@babel/preset-env': + optional: true dependencies: '@babel/core': 7.24.7 '@babel/parser': 7.24.7 @@ -47667,6 +39452,7 @@ snapshots: '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.24.7) '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7) '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.7) + '@babel/preset-env': 7.24.7(@babel/core@7.24.7) '@babel/preset-flow': 7.24.7(@babel/core@7.24.7) '@babel/preset-typescript': 7.24.7(@babel/core@7.24.7) '@babel/register': 7.24.6(@babel/core@7.24.7) @@ -47680,12 +39466,18 @@ snapshots: recast: 0.23.9 temp: 0.8.4 write-file-atomic: 2.4.3 - optionalDependencies: - '@babel/preset-env': 7.24.7(@babel/core@7.24.7) transitivePeerDependencies: - supports-color + dev: true - jsdom@16.7.0: + /jsdom@16.7.0: + resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} + engines: {node: '>=10'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true dependencies: abab: 2.0.6 acorn: 8.12.0 @@ -47718,8 +39510,16 @@ snapshots: - bufferutil - supports-color - utf-8-validate + dev: true - jsdom@20.0.3: + /jsdom@20.0.3: + resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} + engines: {node: '>=14'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true dependencies: abab: 2.0.6 acorn: 8.12.0 @@ -47751,12 +39551,25 @@ snapshots: - bufferutil - supports-color - utf-8-validate + dev: true - jsesc@0.5.0: {} + /jsesc@0.5.0: + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} + hasBin: true - jsesc@2.5.2: {} + /jsesc@1.3.0: + resolution: {integrity: sha512-Mke0DA0QjUWuJlhsE0ZPPhYiJkRap642SmI/4ztCFaUs6V2AiH1sfecc+57NgaryfAA2VR3v6O+CSjC1jZJKOA==} + hasBin: true + dev: true + + /jsesc@2.5.2: + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} + hasBin: true - jshint@2.13.6: + /jshint@2.13.6: + resolution: {integrity: sha512-IVdB4G0NTTeQZrBoM8C5JFVLjV2KtZ9APgybDA1MK73xb09qFs0jCXyQLnCOp1cSZZZbvhq/6mfXHUTaDkffuQ==} + hasBin: true dependencies: cli: 1.0.1 console-browserify: 1.1.0 @@ -47765,144 +39578,251 @@ snapshots: lodash: 4.17.21 minimatch: 3.0.8 strip-json-comments: 1.0.4 + dev: false - json-buffer@3.0.0: {} + /json-buffer@3.0.0: + resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} + dev: false - json-buffer@3.0.1: {} + /json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - json-minimizer-webpack-plugin@4.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /json-minimizer-webpack-plugin@4.0.0(webpack@5.84.1): + resolution: {integrity: sha512-PJaNiSeZlZStdyLtJo/QOOC7uHRW9qvc//7F8M0ZH1huPSvmX5kR2qrq2Tn1ODYLi128bTkKepqtgYmtEOkPzQ==} + engines: {node: '>= 14.15.0'} + peerDependencies: + webpack: 5.84.1 dependencies: schema-utils: 4.2.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - json-minimizer-webpack-plugin@5.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /json-minimizer-webpack-plugin@5.0.0(webpack@5.84.1): + resolution: {integrity: sha512-GT/SZolN2p405EMGjMTBvAVi2+y035p1tSOuLpWbp5QTMl080OHx4DEGXfUH6vbnGw5Z/QKfBe+KpP9Dj0qLmA==} + engines: {node: '>= 18.12.0'} + peerDependencies: + webpack: 5.84.1 dependencies: schema-utils: 4.2.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - json-parse-better-errors@1.0.2: {} + /json-parse-better-errors@1.0.2: + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} - json-parse-even-better-errors@2.3.1: {} + /json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - json-schema-traverse@0.4.1: {} + /json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} - json-schema-traverse@1.0.0: {} + /json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} - json-schema@0.4.0: {} + /json-schema@0.4.0: + resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + dev: true - json-stable-stringify-without-jsonify@1.0.1: {} + /json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - json-stringify-nice@1.1.4: {} + /json-stringify-nice@1.1.4: + resolution: {integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==} + dev: true - json-stringify-safe@5.0.1: {} + /json-stringify-safe@5.0.1: + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + dev: true - json5@1.0.2: + /json5@0.5.1: + resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==} + hasBin: true + dev: true + + /json5@1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true dependencies: minimist: 1.2.8 - json5@2.2.3: {} + /json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true - jsonc-eslint-parser@2.4.0: + /jsonc-eslint-parser@2.4.0: + resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.12.0 eslint-visitor-keys: 3.4.3 espree: 9.6.1 semver: 7.6.2 + dev: true - jsonc-parser@3.2.0: {} + /jsonc-parser@3.2.0: + resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} + dev: true - jsonfile@4.0.0: + /jsonfile@4.0.0: + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} optionalDependencies: graceful-fs: 4.2.11 + dev: true - jsonfile@6.1.0: + /jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} dependencies: universalify: 2.0.1 optionalDependencies: graceful-fs: 4.2.11 - jsonparse@1.3.1: {} + /jsonparse@1.3.1: + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} + dev: true - jsprim@2.0.2: + /jsprim@2.0.2: + resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==} + engines: {'0': node >=0.6.0} dependencies: assert-plus: 1.0.0 extsprintf: 1.3.0 json-schema: 0.4.0 verror: 1.10.0 + dev: true - jsrsasign@10.9.0: {} + /jsrsasign@10.9.0: + resolution: {integrity: sha512-QWLUikj1SBJGuyGK8tjKSx3K7Y69KYJnrs/pQ1KZ6wvZIkHkWjZ1PJDpuvc1/28c1uP0KW9qn1eI1LzHQqDOwQ==} + dev: false - jsx-ast-utils@3.3.5: + /jsx-ast-utils@3.3.5: + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} + engines: {node: '>=4.0'} dependencies: array-includes: 3.1.8 array.prototype.flat: 1.3.2 object.assign: 4.1.5 object.values: 1.2.0 + dev: true - junk@3.1.0: {} + /junk@3.1.0: + resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==} + engines: {node: '>=8'} + dev: false - just-diff-apply@5.5.0: {} + /just-diff-apply@5.5.0: + resolution: {integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==} + dev: true - just-diff@5.2.0: {} + /just-diff@5.2.0: + resolution: {integrity: sha512-6ufhP9SHjb7jibNFrNxyFZ6od3g+An6Ai9mhGRvcYe8UJlH0prseN64M+6ZBBUoKYHZsitDP42gAJ8+eVWr3lw==} + dev: true - keyboard-key@1.1.0: {} + /keyboard-key@1.1.0: + resolution: {integrity: sha512-qkBzPTi3rlAKvX7k0/ub44sqOfXeLc/jcnGGmj5c7BJpU8eDrEVPyhCvNYAaoubbsLm9uGWwQJO1ytQK1a9/dQ==} + dev: false - keyv@3.1.0: + /keyv@3.1.0: + resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} dependencies: json-buffer: 3.0.0 + dev: false - keyv@4.5.4: + /keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} dependencies: json-buffer: 3.0.1 - killable@1.0.1: {} + /killable@1.0.1: + resolution: {integrity: sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==} - kind-of@2.0.1: + /kind-of@2.0.1: + resolution: {integrity: sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==} + engines: {node: '>=0.10.0'} dependencies: is-buffer: 1.1.6 + dev: true - kind-of@3.2.2: + /kind-of@3.2.2: + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} + engines: {node: '>=0.10.0'} dependencies: is-buffer: 1.1.6 - kind-of@4.0.0: + /kind-of@4.0.0: + resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} + engines: {node: '>=0.10.0'} dependencies: is-buffer: 1.1.6 - kind-of@6.0.3: {} + /kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} - kleur@3.0.3: {} + /kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} - kleur@4.1.5: {} + /kleur@4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + dev: true - klona@2.0.6: {} + /klona@2.0.6: + resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} + engines: {node: '>= 8'} - language-subtag-registry@0.3.23: {} + /language-subtag-registry@0.3.23: + resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} + dev: true - language-tags@1.0.9: + /language-tags@1.0.9: + resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} + engines: {node: '>=0.10'} dependencies: language-subtag-registry: 0.3.23 + dev: true - latest-version@5.1.0: + /latest-version@5.1.0: + resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==} + engines: {node: '>=8'} dependencies: package-json: 6.5.0 + dev: false - launch-editor@2.8.0: + /launch-editor@2.8.0: + resolution: {integrity: sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==} dependencies: picocolors: 1.0.1 shell-quote: 1.8.1 + dev: true - lazy-ass@1.6.0: {} + /lazy-ass@1.6.0: + resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==} + engines: {node: '> 0.8'} + dev: true - lazy-cache@0.2.7: {} + /lazy-cache@0.2.7: + resolution: {integrity: sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==} + engines: {node: '>=0.10.0'} + dev: true - lazy-cache@1.0.4: {} + /lazy-cache@1.0.4: + resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==} + engines: {node: '>=0.10.0'} + dev: true - lazy-cache@2.0.2: + /lazy-cache@2.0.2: + resolution: {integrity: sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==} + engines: {node: '>=0.10.0'} dependencies: set-getter: 0.1.1 + dev: true - lazy-universal-dotenv@3.0.1: + /lazy-universal-dotenv@3.0.1: + resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==} + engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'} dependencies: '@babel/runtime': 7.24.7 app-root-dir: 1.0.2 @@ -47910,13 +39830,19 @@ snapshots: dotenv: 8.6.0 dotenv-expand: 5.1.0 - lazy-universal-dotenv@4.0.0: + /lazy-universal-dotenv@4.0.0: + resolution: {integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==} + engines: {node: '>=14.0.0'} dependencies: app-root-dir: 1.0.2 dotenv: 16.4.5 dotenv-expand: 10.0.0 + dev: true - lerna@5.6.2(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13): + /lerna@5.6.2(@swc-node/register@1.6.8)(@swc/core@1.3.99): + resolution: {integrity: sha512-Y0yMPslvnBnTZi7Nrs/gDyYZYauNf61xWNCehISHIORxZmmpoluNkcWTfcyb47is5uJQCv5QJX5xKKubbs+a6w==} + engines: {node: ^14.15.0 || >=16.0.0} + hasBin: true dependencies: '@lerna/add': 5.6.2 '@lerna/bootstrap': 5.6.2 @@ -47932,14 +39858,14 @@ snapshots: '@lerna/init': 5.6.2 '@lerna/link': 5.6.2 '@lerna/list': 5.6.2 - '@lerna/publish': 5.6.2(encoding@0.1.13)(nx@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@lerna/publish': 5.6.2(nx@15.9.3) '@lerna/run': 5.6.2 - '@lerna/version': 5.6.2(encoding@0.1.13)(nx@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) - '@nrwl/devkit': 15.9.7(nx@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9))) + '@lerna/version': 5.6.2(nx@15.9.3) + '@nrwl/devkit': 15.9.7(nx@15.9.3) import-local: 3.1.0 inquirer: 8.2.6 npmlog: 6.0.2 - nx: 15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) + nx: 15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) typescript: 4.9.5 transitivePeerDependencies: - '@swc-node/register' @@ -47948,33 +39874,59 @@ snapshots: - debug - encoding - supports-color + dev: true - less-loader@11.1.0(less@4.1.3)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /less-loader@11.1.0(less@4.1.3)(webpack@5.84.1): + resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==} + engines: {node: '>= 14.15.0'} + peerDependencies: + less: ^3.5.0 || ^4.0.0 + webpack: 5.84.1 dependencies: klona: 2.0.6 less: 4.1.3 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - less-loader@5.0.0(less@4.1.3)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /less-loader@5.0.0(less@3.13.1)(webpack@5.84.1): + resolution: {integrity: sha512-bquCU89mO/yWLaUq0Clk7qCsKhsF/TZpJUzETRvJa9KSVEL9SO3ovCvdEHISBhrC81OwC8QSVX7E0bzElZj9cg==} + engines: {node: '>= 4.8.0'} + peerDependencies: + less: ^2.3.1 || ^3.0.0 + webpack: 5.84.1 dependencies: clone: 2.1.2 - less: 4.1.3 + less: 3.13.1 loader-utils: 1.4.2 pify: 4.0.1 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - less-plugin-inline-urls@1.2.0: {} + /less-plugin-inline-urls@1.2.0: + resolution: {integrity: sha512-QS9MLcg8Lo6ZHVS+9kncmHeLypIdnFgG/neqV3RPkXfiiSCJHn/jTQHKnXfDEL/F/JM+z6MQ6ukWr/xsOChHTA==} + engines: {node: '>=0.4.2'} + dev: true - less-plugin-npm-import@2.1.0: + /less-plugin-npm-import@2.1.0: + resolution: {integrity: sha512-f7pVkEooRq2/jge/M/Y+spoPXj5rRIY30q1as+3kZsDG8Rs+loNJUCVQjzXB9Ao/9FeIJULiq2zrXymv+OMTbw==} + engines: {node: '>=0.4.2'} dependencies: promise: 7.0.4 resolve: 1.1.7 + dev: true - less-plugin-rewrite-import@0.1.1: {} + /less-plugin-rewrite-import@0.1.1: + resolution: {integrity: sha512-8FnuGhF0rS6P9DkaEH2+6pphx7pJ9hV4mHF2MhsXKSXNvwTVX9YCt5HnX99mhTOyQzc+2hu5JPPoRl/b9DAwuQ==} + dev: true - less-plugin-rewrite-variable@0.1.0: {} + /less-plugin-rewrite-variable@0.1.0: + resolution: {integrity: sha512-cpIa1+wHssZRt2aUnoWODfDB0z0QM8ir9ZS/18802bX9S4+6s+/HXaK92C3VznniPjviKhA3u8o4/0K9HK0nEw==} + engines: {node: '>=0.4.2'} + dev: true - less-to-json@1.2.0: + /less-to-json@1.2.0: + resolution: {integrity: sha512-1ItmxVFw76yiQgr2MUTGy7bTHT2tT6CcZ28grgw/gWNy2Q3WwFfSHL88sWUBpTXGFonlKd2yCDhtJFJdGjzqHA==} + hasBin: true dependencies: commander: 2.20.3 fs: 0.0.1-security @@ -47983,12 +39935,19 @@ snapshots: path: 0.12.7 transitivePeerDependencies: - supports-color + dev: true - less-vars-to-js@1.3.0: + /less-vars-to-js@1.3.0: + resolution: {integrity: sha512-xeiLLn/IMCGtdyCkYQnW8UuzoW2oYMCKg9boZRaGI58fLz5r90bNJDlqGzmVt/1Uqk75/DxIVtQSNCMkE5fRZQ==} + engines: {node: '>=8'} dependencies: strip-json-comments: 2.0.1 + dev: true - less@3.13.1: + /less@3.13.1: + resolution: {integrity: sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==} + engines: {node: '>=6'} + hasBin: true dependencies: copy-anything: 2.0.6 tslib: 1.14.1 @@ -48000,8 +39959,12 @@ snapshots: mime: 1.6.0 native-request: 1.1.0 source-map: 0.6.1 + dev: true - less@4.1.3: + /less@4.1.3: + resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==} + engines: {node: '>=6'} + hasBin: true dependencies: copy-anything: 2.0.6 parse-node-version: 1.0.1 @@ -48014,15 +39977,22 @@ snapshots: mime: 1.6.0 needle: 3.3.1 source-map: 0.6.1 + dev: true - leven@3.1.0: {} + /leven@3.1.0: + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} - levn@0.4.1: + /levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 - libnpmaccess@6.0.4: + /libnpmaccess@6.0.4: + resolution: {integrity: sha512-qZ3wcfIyUoW0+qSFkMBovcTrSGJ3ZeyvpR7d5N9pEYv/kXs8sHP2wiqEIXBKLFrZlmM0kR0RJD7mtfLngtlLag==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: aproba: 2.0.0 minipass: 3.3.6 @@ -48031,8 +40001,11 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - libnpmpublish@6.0.5: + /libnpmpublish@6.0.5: + resolution: {integrity: sha512-LUR08JKSviZiqrYTDfywvtnsnxr+tOvBU0BF8H+9frt7HMvc6Qn6F8Ubm72g5hDTHbq8qupKfDvDAln2TVPvFg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: normalize-package-data: 4.0.1 npm-package-arg: 9.1.2 @@ -48042,244 +40015,392 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - license-webpack-plugin@4.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /license-webpack-plugin@4.0.2(webpack@5.84.1): + resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==} + peerDependencies: + webpack: '*' + peerDependenciesMeta: + webpack: + optional: true + webpack-sources: + optional: true dependencies: + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-sources: 3.2.3 - optionalDependencies: - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + dev: true - lilconfig@2.1.0: {} + /lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + dev: true - lilconfig@3.1.2: {} + /lilconfig@3.1.2: + resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} + engines: {node: '>=14'} + dev: true - lines-and-columns@1.2.4: {} + /lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - lines-and-columns@2.0.4: {} + /lines-and-columns@2.0.4: + resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true - list-item@1.1.1: + /list-item@1.1.1: + resolution: {integrity: sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==} + engines: {node: '>=0.10.0'} dependencies: expand-range: 1.8.2 extend-shallow: 2.0.1 is-number: 2.1.0 repeat-string: 1.6.1 + dev: true - listr2@3.14.0(enquirer@2.4.1): + /listr2@3.14.0(enquirer@2.4.1): + resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==} + engines: {node: '>=10.0.0'} + peerDependencies: + enquirer: '>= 2.3.0 < 3' + peerDependenciesMeta: + enquirer: + optional: true dependencies: cli-truncate: 2.1.0 colorette: 2.0.20 + enquirer: 2.4.1 log-update: 4.0.0 p-map: 4.0.0 rfdc: 1.4.1 rxjs: 7.8.1 through: 2.3.8 wrap-ansi: 7.0.0 - optionalDependencies: - enquirer: 2.4.1 + dev: true - load-json-file@1.1.0: + /load-json-file@1.1.0: + resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: graceful-fs: 4.2.11 parse-json: 2.2.0 pify: 2.3.0 pinkie-promise: 2.0.1 strip-bom: 2.0.0 + dev: false optional: true - load-json-file@4.0.0: + /load-json-file@4.0.0: + resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} + engines: {node: '>=4'} dependencies: graceful-fs: 4.2.11 parse-json: 4.0.0 pify: 3.0.0 strip-bom: 3.0.0 + dev: true - load-json-file@6.2.0: + /load-json-file@6.2.0: + resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==} + engines: {node: '>=8'} dependencies: graceful-fs: 4.2.11 parse-json: 5.2.0 strip-bom: 4.0.0 type-fest: 0.6.0 + dev: true - load-yaml-file@0.2.0: + /load-yaml-file@0.2.0: + resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} + engines: {node: '>=6'} dependencies: graceful-fs: 4.2.11 js-yaml: 3.13.1 pify: 4.0.1 strip-bom: 3.0.0 + dev: true - loader-runner@2.4.0: {} + /loader-runner@2.4.0: + resolution: {integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==} + engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} + dev: true - loader-runner@4.3.0: {} + /loader-runner@4.3.0: + resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} + engines: {node: '>=6.11.5'} - loader-utils@1.4.2: + /loader-utils@1.4.2: + resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} + engines: {node: '>=4.0.0'} dependencies: big.js: 5.2.2 emojis-list: 3.0.0 json5: 1.0.2 - loader-utils@2.0.4: + /loader-utils@2.0.4: + resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} + engines: {node: '>=8.9.0'} dependencies: big.js: 5.2.2 emojis-list: 3.0.0 json5: 2.2.3 - loader-utils@3.3.1: {} + /loader-utils@3.3.1: + resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} + engines: {node: '>= 12.13.0'} + dev: true - locate-path@2.0.0: + /locate-path@2.0.0: + resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} + engines: {node: '>=4'} dependencies: p-locate: 2.0.0 path-exists: 3.0.0 + dev: true - locate-path@3.0.0: + /locate-path@3.0.0: + resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} + engines: {node: '>=6'} dependencies: p-locate: 3.0.0 path-exists: 3.0.0 - locate-path@5.0.0: + /locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} dependencies: p-locate: 4.1.0 - locate-path@6.0.0: + /locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} dependencies: p-locate: 5.0.0 - locate-path@7.2.0: + /locate-path@7.2.0: + resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: p-locate: 6.0.0 + dev: true - lodash-es@4.17.21: {} + /lodash-es@4.17.21: + resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} + dev: false - lodash._reinterpolate@3.0.0: {} + /lodash._reinterpolate@3.0.0: + resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==} + dev: true - lodash.camelcase@4.3.0: {} + /lodash.camelcase@4.3.0: + resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + dev: true - lodash.debounce@4.0.8: {} + /lodash.debounce@4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - lodash.flattendeep@4.4.0: {} + /lodash.flattendeep@4.4.0: + resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} + dev: true - lodash.ismatch@4.4.0: {} + /lodash.ismatch@4.4.0: + resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} + dev: true - lodash.isplainobject@4.0.6: {} + /lodash.isplainobject@4.0.6: + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} - lodash.memoize@4.1.2: {} + /lodash.memoize@4.1.2: + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} - lodash.merge@4.6.2: {} + /lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - lodash.once@4.1.1: {} + /lodash.once@4.1.1: + resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} + dev: true - lodash.startcase@4.4.0: {} + /lodash.startcase@4.4.0: + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + dev: true - lodash.template@4.5.0: + /lodash.template@4.5.0: + resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==} dependencies: lodash._reinterpolate: 3.0.0 lodash.templatesettings: 4.2.0 + dev: true - lodash.templatesettings@4.2.0: + /lodash.templatesettings@4.2.0: + resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==} dependencies: lodash._reinterpolate: 3.0.0 + dev: true - lodash.truncate@4.4.2: {} + /lodash.truncate@4.4.2: + resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} - lodash.uniq@4.5.0: {} + /lodash.uniq@4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} - lodash@4.17.21: {} + /lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - log-symbols@2.2.0: + /log-symbols@2.2.0: + resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==} + engines: {node: '>=4'} dependencies: chalk: 2.4.2 + dev: true - log-symbols@4.1.0: + /log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} dependencies: chalk: 4.1.2 is-unicode-supported: 0.1.0 + dev: true - log-update@4.0.0: + /log-update@4.0.0: + resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} + engines: {node: '>=10'} dependencies: ansi-escapes: 4.3.2 cli-cursor: 3.1.0 slice-ansi: 4.0.0 wrap-ansi: 6.2.0 + dev: true - log4js@4.5.1: + /log4js@4.5.1: + resolution: {integrity: sha512-EEEgFcE9bLgaYUKuozyFfytQM2wDHtXn4tAN41pkaxpNjAykv11GVdeI4tHtmPWW4Xrgh9R/2d7XYghDVjbKKw==} + engines: {node: '>=6.0'} + deprecated: 4.x is no longer supported. Please upgrade to 6.x or higher. dependencies: date-format: 2.1.0 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) flatted: 2.0.2 rfdc: 1.4.1 streamroller: 1.0.6 transitivePeerDependencies: - supports-color + dev: true - loglevel@1.9.1: {} + /loglevel@1.9.1: + resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==} + engines: {node: '>= 0.6.0'} - loglevelnext@1.0.5: + /loglevelnext@1.0.5: + resolution: {integrity: sha512-V/73qkPuJmx4BcBF19xPBr+0ZRVBhc4POxvZTZdMeXpJ4NItXSJ/MSwuFT0kQJlCbXvdlZoQQ/418bS1y9Jh6A==} + engines: {node: '>= 6'} dependencies: es6-symbol: 3.1.4 object.assign: 4.1.5 + dev: true - longest-streak@3.1.0: {} + /longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + dev: false - loose-envify@1.4.0: + /loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true dependencies: js-tokens: 4.0.0 - loud-rejection@1.6.0: + /loud-rejection@1.6.0: + resolution: {integrity: sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: currently-unhandled: 0.4.1 signal-exit: 3.0.7 + dev: false optional: true - lower-case@2.0.2: + /lower-case@2.0.2: + resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} dependencies: tslib: 2.6.3 - lowercase-keys@1.0.1: {} + /lowercase-keys@1.0.1: + resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} + engines: {node: '>=0.10.0'} + dev: false - lowercase-keys@2.0.0: {} + /lowercase-keys@2.0.0: + resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} + engines: {node: '>=8'} - lru-cache@10.4.3: {} + /lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} - lru-cache@4.1.5: + /lru-cache@4.1.5: + resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} dependencies: pseudomap: 1.0.2 yallist: 2.1.2 + dev: true - lru-cache@5.1.1: + /lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} dependencies: yallist: 3.1.1 - lru-cache@6.0.0: + /lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} dependencies: yallist: 4.0.0 - lru-cache@7.18.3: {} + /lru-cache@7.18.3: + resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} + engines: {node: '>=12'} + dev: true - lz-string@1.5.0: {} + /lz-string@1.5.0: + resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} + hasBin: true + dev: true - magic-string@0.25.9: + /magic-string@0.25.9: + resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} dependencies: sourcemap-codec: 1.4.8 + dev: true - magic-string@0.30.10: + /magic-string@0.30.10: + resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} dependencies: '@jridgewell/sourcemap-codec': 1.5.0 + dev: true - make-dir@2.1.0: + /make-dir@2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} dependencies: pify: 4.0.1 semver: 5.7.2 - make-dir@3.1.0: + /make-dir@3.1.0: + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} dependencies: semver: 6.3.1 - make-dir@4.0.0: + /make-dir@4.0.0: + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} dependencies: semver: 7.6.2 - make-error@1.3.6: {} + /make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - make-fetch-happen@10.2.1: + /make-fetch-happen@10.2.1: + resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: agentkeepalive: 4.5.0 cacache: 16.1.3 @@ -48300,32 +40421,54 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - makeerror@1.0.12: + /makeerror@1.0.12: + resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} dependencies: tmpl: 1.0.5 - map-age-cleaner@0.1.3: + /map-age-cleaner@0.1.3: + resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==} + engines: {node: '>=6'} dependencies: p-defer: 1.0.0 + dev: false - map-cache@0.2.2: {} + /map-cache@0.2.2: + resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} + engines: {node: '>=0.10.0'} - map-obj@1.0.1: {} + /map-obj@1.0.1: + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} - map-obj@4.3.0: {} + /map-obj@4.3.0: + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} + dev: true - map-or-similar@1.5.0: {} + /map-or-similar@1.5.0: + resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} - map-visit@1.0.0: + /map-visit@1.0.0: + resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} + engines: {node: '>=0.10.0'} dependencies: object-visit: 1.0.1 - markdown-escapes@1.0.4: {} + /markdown-escapes@1.0.4: + resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==} - markdown-link@0.1.1: {} + /markdown-link@0.1.1: + resolution: {integrity: sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==} + engines: {node: '>=0.10.0'} + dev: true - markdown-toc@1.2.0: + /markdown-toc@1.2.0: + resolution: {integrity: sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==} + engines: {node: '>=0.10.0'} + hasBin: true dependencies: concat-stream: 1.6.2 diacritics-map: 0.1.0 @@ -48339,20 +40482,28 @@ snapshots: remarkable: 1.7.4 repeat-string: 1.6.1 strip-color: 0.1.0 + dev: true - material-colors@1.2.6: {} + /material-colors@1.2.6: + resolution: {integrity: sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==} + dev: false - math-random@1.0.4: {} + /math-random@1.0.4: + resolution: {integrity: sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==} + dev: true - mdast-squeeze-paragraphs@4.0.0: + /mdast-squeeze-paragraphs@4.0.0: + resolution: {integrity: sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==} dependencies: unist-util-remove: 2.1.0 - mdast-util-definitions@4.0.0: + /mdast-util-definitions@4.0.0: + resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==} dependencies: unist-util-visit: 2.0.3 - mdast-util-from-markdown@2.0.1: + /mdast-util-from-markdown@2.0.1: + resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==} dependencies: '@types/mdast': 4.0.4 '@types/unist': 3.0.2 @@ -48368,8 +40519,10 @@ snapshots: unist-util-stringify-position: 4.0.0 transitivePeerDependencies: - supports-color + dev: false - mdast-util-mdx-expression@2.0.0: + /mdast-util-mdx-expression@2.0.0: + resolution: {integrity: sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==} dependencies: '@types/estree-jsx': 1.0.5 '@types/hast': 3.0.4 @@ -48379,8 +40532,10 @@ snapshots: mdast-util-to-markdown: 2.1.0 transitivePeerDependencies: - supports-color + dev: false - mdast-util-mdx-jsx@3.1.2: + /mdast-util-mdx-jsx@3.1.2: + resolution: {integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==} dependencies: '@types/estree-jsx': 1.0.5 '@types/hast': 3.0.4 @@ -48397,8 +40552,10 @@ snapshots: vfile-message: 4.0.2 transitivePeerDependencies: - supports-color + dev: false - mdast-util-mdxjs-esm@2.0.1: + /mdast-util-mdxjs-esm@2.0.1: + resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==} dependencies: '@types/estree-jsx': 1.0.5 '@types/hast': 3.0.4 @@ -48408,13 +40565,17 @@ snapshots: mdast-util-to-markdown: 2.1.0 transitivePeerDependencies: - supports-color + dev: false - mdast-util-phrasing@4.1.0: + /mdast-util-phrasing@4.1.0: + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} dependencies: '@types/mdast': 4.0.4 unist-util-is: 6.0.0 + dev: false - mdast-util-to-hast@10.0.1: + /mdast-util-to-hast@10.0.1: + resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==} dependencies: '@types/mdast': 3.0.15 '@types/unist': 2.0.10 @@ -48425,7 +40586,8 @@ snapshots: unist-util-position: 3.1.0 unist-util-visit: 2.0.3 - mdast-util-to-hast@13.2.0: + /mdast-util-to-hast@13.2.0: + resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} dependencies: '@types/hast': 3.0.4 '@types/mdast': 4.0.4 @@ -48436,8 +40598,10 @@ snapshots: unist-util-position: 5.0.0 unist-util-visit: 5.0.0 vfile: 6.0.1 + dev: false - mdast-util-to-markdown@2.1.0: + /mdast-util-to-markdown@2.1.0: + resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==} dependencies: '@types/mdast': 4.0.4 '@types/unist': 3.0.2 @@ -48447,51 +40611,79 @@ snapshots: micromark-util-decode-string: 2.0.0 unist-util-visit: 5.0.0 zwitch: 2.0.4 + dev: false - mdast-util-to-string@1.1.0: {} + /mdast-util-to-string@1.1.0: + resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==} + dev: true - mdast-util-to-string@4.0.0: + /mdast-util-to-string@4.0.0: + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} dependencies: '@types/mdast': 4.0.4 + dev: false - mdn-data@2.0.14: {} + /mdn-data@2.0.14: + resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} - mdn-data@2.0.28: {} + /mdn-data@2.0.28: + resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} - mdn-data@2.0.30: {} + /mdn-data@2.0.30: + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} - mdn-data@2.0.4: {} + /mdn-data@2.0.4: + resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} + dev: true - mdurl@1.0.1: {} + /mdurl@1.0.1: + resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} - media-typer@0.3.0: {} + /media-typer@0.3.0: + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} - mem@8.1.1: + /mem@8.1.1: + resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==} + engines: {node: '>=10'} dependencies: map-age-cleaner: 0.1.3 mimic-fn: 3.1.0 + dev: false - memfs@3.5.3: + /memfs@3.5.3: + resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} + engines: {node: '>= 4.0.0'} dependencies: fs-monkey: 1.0.6 - memoize-one@5.2.1: {} + /memoize-one@5.2.1: + resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} + dev: false - memoizerific@1.11.3: + /memoizerific@1.11.3: + resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==} dependencies: map-or-similar: 1.5.0 - memory-fs@0.4.1: + /memory-fs@0.4.1: + resolution: {integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==} dependencies: errno: 0.1.8 readable-stream: 2.3.8 - memory-fs@0.5.0: + /memory-fs@0.5.0: + resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==} + engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} dependencies: errno: 0.1.8 readable-stream: 2.3.8 + dev: true - meow@3.7.0: + /meow@3.7.0: + resolution: {integrity: sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: camelcase-keys: 2.1.0 decamelize: 1.2.0 @@ -48503,9 +40695,12 @@ snapshots: read-pkg-up: 1.0.1 redent: 1.0.0 trim-newlines: 1.0.0 + dev: false optional: true - meow@6.1.1: + /meow@6.1.1: + resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} + engines: {node: '>=8'} dependencies: '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 @@ -48518,8 +40713,11 @@ snapshots: trim-newlines: 3.0.1 type-fest: 0.13.1 yargs-parser: 18.1.3 + dev: true - meow@8.1.2: + /meow@8.1.2: + resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} + engines: {node: '>=10'} dependencies: '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 @@ -48532,34 +40730,53 @@ snapshots: trim-newlines: 3.0.1 type-fest: 0.18.1 yargs-parser: 20.2.9 + dev: true - merge-anything@2.4.4: + /merge-anything@2.4.4: + resolution: {integrity: sha512-l5XlriUDJKQT12bH+rVhAHjwIuXWdAIecGwsYjv2LJo+dA1AeRTmeQS+3QBpO6lEthBMDi2IUMpLC1yyRvGlwQ==} dependencies: is-what: 3.14.1 + dev: false - merge-deep@3.0.3: + /merge-deep@3.0.3: + resolution: {integrity: sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==} + engines: {node: '>=0.10.0'} dependencies: arr-union: 3.1.0 clone-deep: 0.2.4 kind-of: 3.2.2 + dev: true - merge-descriptors@1.0.1: {} + /merge-descriptors@1.0.1: + resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} - merge-files@0.1.2: + /merge-files@0.1.2: + resolution: {integrity: sha512-WTvtH6ZwVy1/scvp1M+Re6PVni87QTjpSLAwxh0L+PlYIxc4VGFFpLjvP7jdJ43gaJ5n+RUIriJ6wKqmqvVVmg==} dependencies: multistream: 2.1.1 + dev: true - merge-stream@2.0.0: {} + /merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} - merge2@1.4.1: {} + /merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} - merge@1.2.1: {} + /merge@1.2.1: + resolution: {integrity: sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==} + dev: true - methods@1.1.2: {} + /methods@1.1.2: + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} + engines: {node: '>= 0.6'} - microevent.ts@0.1.1: {} + /microevent.ts@0.1.1: + resolution: {integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==} + dev: false - micromark-core-commonmark@2.0.1: + /micromark-core-commonmark@2.0.1: + resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==} dependencies: decode-named-character-reference: 1.0.2 devlop: 1.1.0 @@ -48577,103 +40794,143 @@ snapshots: micromark-util-subtokenize: 2.0.1 micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 + dev: false - micromark-factory-destination@2.0.0: + /micromark-factory-destination@2.0.0: + resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==} dependencies: micromark-util-character: 2.1.0 micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 + dev: false - micromark-factory-label@2.0.0: + /micromark-factory-label@2.0.0: + resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==} dependencies: devlop: 1.1.0 micromark-util-character: 2.1.0 micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 + dev: false - micromark-factory-space@2.0.0: + /micromark-factory-space@2.0.0: + resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==} dependencies: micromark-util-character: 2.1.0 micromark-util-types: 2.0.0 + dev: false - micromark-factory-title@2.0.0: + /micromark-factory-title@2.0.0: + resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==} dependencies: micromark-factory-space: 2.0.0 micromark-util-character: 2.1.0 micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 + dev: false - micromark-factory-whitespace@2.0.0: + /micromark-factory-whitespace@2.0.0: + resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==} dependencies: micromark-factory-space: 2.0.0 micromark-util-character: 2.1.0 micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 + dev: false - micromark-util-character@2.1.0: + /micromark-util-character@2.1.0: + resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} dependencies: micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 + dev: false - micromark-util-chunked@2.0.0: + /micromark-util-chunked@2.0.0: + resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==} dependencies: micromark-util-symbol: 2.0.0 + dev: false - micromark-util-classify-character@2.0.0: + /micromark-util-classify-character@2.0.0: + resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==} dependencies: micromark-util-character: 2.1.0 micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 + dev: false - micromark-util-combine-extensions@2.0.0: + /micromark-util-combine-extensions@2.0.0: + resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==} dependencies: micromark-util-chunked: 2.0.0 micromark-util-types: 2.0.0 + dev: false - micromark-util-decode-numeric-character-reference@2.0.1: + /micromark-util-decode-numeric-character-reference@2.0.1: + resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==} dependencies: micromark-util-symbol: 2.0.0 + dev: false - micromark-util-decode-string@2.0.0: + /micromark-util-decode-string@2.0.0: + resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==} dependencies: decode-named-character-reference: 1.0.2 micromark-util-character: 2.1.0 micromark-util-decode-numeric-character-reference: 2.0.1 micromark-util-symbol: 2.0.0 + dev: false - micromark-util-encode@2.0.0: {} + /micromark-util-encode@2.0.0: + resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==} + dev: false - micromark-util-html-tag-name@2.0.0: {} + /micromark-util-html-tag-name@2.0.0: + resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==} + dev: false - micromark-util-normalize-identifier@2.0.0: + /micromark-util-normalize-identifier@2.0.0: + resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==} dependencies: micromark-util-symbol: 2.0.0 + dev: false - micromark-util-resolve-all@2.0.0: + /micromark-util-resolve-all@2.0.0: + resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==} dependencies: micromark-util-types: 2.0.0 + dev: false - micromark-util-sanitize-uri@2.0.0: + /micromark-util-sanitize-uri@2.0.0: + resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} dependencies: micromark-util-character: 2.1.0 micromark-util-encode: 2.0.0 micromark-util-symbol: 2.0.0 + dev: false - micromark-util-subtokenize@2.0.1: + /micromark-util-subtokenize@2.0.1: + resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==} dependencies: devlop: 1.1.0 micromark-util-chunked: 2.0.0 micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 + dev: false - micromark-util-symbol@2.0.0: {} + /micromark-util-symbol@2.0.0: + resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==} + dev: false - micromark-util-types@2.0.0: {} + /micromark-util-types@2.0.0: + resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==} + dev: false - micromark@4.0.0: + /micromark@4.0.0: + resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} dependencies: '@types/debug': 4.1.12 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) decode-named-character-reference: 1.0.2 devlop: 1.1.0 micromark-core-commonmark: 2.0.1 @@ -48691,8 +40948,11 @@ snapshots: micromark-util-types: 2.0.0 transitivePeerDependencies: - supports-color + dev: false - micromatch@3.1.10(supports-color@6.1.0): + /micromatch@3.1.10(supports-color@6.1.0): + resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} + engines: {node: '>=0.10.0'} dependencies: arr-diff: 4.0.0 array-unique: 0.3.2 @@ -48710,177 +40970,299 @@ snapshots: transitivePeerDependencies: - supports-color - micromatch@4.0.7: + /micromatch@4.0.7: + resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} + engines: {node: '>=8.6'} dependencies: braces: 3.0.3 picomatch: 2.3.1 - mime-db@1.52.0: {} + /mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} - mime-types@2.1.35: + /mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} dependencies: mime-db: 1.52.0 - mime@1.6.0: {} + /mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true - mime@2.6.0: {} + /mime@2.6.0: + resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} + engines: {node: '>=4.0.0'} + hasBin: true - mimic-fn@2.1.0: {} + /mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} - mimic-fn@3.1.0: {} + /mimic-fn@3.1.0: + resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} + engines: {node: '>=8'} + dev: false - mimic-fn@4.0.0: {} + /mimic-fn@4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + dev: true - mimic-response@1.0.1: {} + /mimic-response@1.0.1: + resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} + engines: {node: '>=4'} - mimic-response@3.1.0: {} + /mimic-response@3.1.0: + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} + engines: {node: '>=10'} + dev: true - min-document@2.19.0: + /min-document@2.19.0: + resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==} dependencies: dom-walk: 0.1.2 - min-indent@1.0.1: {} + /min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} - mini-css-extract-plugin@0.4.5(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /mini-css-extract-plugin@0.4.5(webpack@5.84.1): + resolution: {integrity: sha512-dqBanNfktnp2hwL2YguV9Jh91PFX7gu7nRLs4TGsbAfAG6WOtlynFRYzwDwmmeSb5uIwHo9nx1ta0f7vAZVp2w==} + engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 dependencies: loader-utils: 1.4.2 schema-utils: 1.0.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-sources: 1.4.3 + dev: true - mini-css-extract-plugin@2.4.7(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /mini-css-extract-plugin@2.4.7(webpack@5.84.1): + resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: schema-utils: 4.2.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - mini-svg-data-uri@1.4.4: {} + /mini-svg-data-uri@1.4.4: + resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} + hasBin: true + dev: true - minimalistic-assert@1.0.1: {} + /minimalistic-assert@1.0.1: + resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} - minimatch@3.0.5: + /minimatch@3.0.5: + resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} dependencies: brace-expansion: 1.1.11 + dev: true - minimatch@3.0.8: + /minimatch@3.0.8: + resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==} dependencies: brace-expansion: 1.1.11 + dev: false - minimatch@3.1.2: + /minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} dependencies: brace-expansion: 1.1.11 - minimatch@5.1.6: + /minimatch@5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 + dev: true - minimatch@9.0.1: + /minimatch@9.0.1: + resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} + engines: {node: '>=16 || 14 >=14.17'} dependencies: brace-expansion: 2.0.1 + dev: false - minimatch@9.0.5: + /minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} dependencies: brace-expansion: 2.0.1 - minimist-options@4.1.0: + /minimist-options@4.1.0: + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} dependencies: arrify: 1.0.1 is-plain-obj: 1.1.0 kind-of: 6.0.3 + dev: true - minimist@1.2.8: {} + /minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - minipass-collect@1.0.2: + /minipass-collect@1.0.2: + resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} + engines: {node: '>= 8'} dependencies: minipass: 3.3.6 - minipass-fetch@2.1.2: + /minipass-fetch@2.1.2: + resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: minipass: 3.3.6 minipass-sized: 1.0.3 minizlib: 2.1.2 optionalDependencies: encoding: 0.1.13 + dev: true - minipass-flush@1.0.5: + /minipass-flush@1.0.5: + resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} + engines: {node: '>= 8'} dependencies: minipass: 3.3.6 - minipass-json-stream@1.0.1: + /minipass-json-stream@1.0.1: + resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==} dependencies: jsonparse: 1.3.1 minipass: 3.3.6 + dev: true - minipass-pipeline@1.2.4: + /minipass-pipeline@1.2.4: + resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} + engines: {node: '>=8'} dependencies: minipass: 3.3.6 - minipass-sized@1.0.3: + /minipass-sized@1.0.3: + resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} + engines: {node: '>=8'} dependencies: minipass: 3.3.6 + dev: true - minipass@3.3.6: + /minipass@3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} dependencies: yallist: 4.0.0 - minipass@5.0.0: {} + /minipass@5.0.0: + resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} + engines: {node: '>=8'} - minipass@7.1.2: {} + /minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} - minizlib@2.1.2: + /minizlib@2.1.2: + resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} + engines: {node: '>= 8'} dependencies: minipass: 3.3.6 yallist: 4.0.0 - mixin-deep@1.3.2: + /mixin-deep@1.3.2: + resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} + engines: {node: '>=0.10.0'} dependencies: for-in: 1.0.2 is-extendable: 1.0.1 - mixin-object@2.0.1: + /mixin-object@2.0.1: + resolution: {integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==} + engines: {node: '>=0.10.0'} dependencies: for-in: 0.1.8 is-extendable: 0.1.1 + dev: true - mixme@0.5.10: {} + /mixme@0.5.10: + resolution: {integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==} + engines: {node: '>= 8.0.0'} + dev: true - mkdirp-classic@0.5.3: {} + /mkdirp-classic@0.5.3: + resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} + dev: true - mkdirp-infer-owner@2.0.0: + /mkdirp-infer-owner@2.0.0: + resolution: {integrity: sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==} + engines: {node: '>=10'} dependencies: chownr: 2.0.0 infer-owner: 1.0.4 mkdirp: 1.0.4 + dev: true - mkdirp@0.5.6: + /mkdirp@0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true dependencies: minimist: 1.2.8 - mkdirp@1.0.4: {} + /mkdirp@1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true - mlly@1.7.1: + /mlly@1.7.1: + resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==} dependencies: acorn: 8.12.0 pathe: 1.1.2 pkg-types: 1.1.3 ufo: 1.5.3 + dev: true + + /modify-values@1.0.1: + resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} + engines: {node: '>=0.10.0'} + dev: true - modify-values@1.0.1: {} + /moment@2.30.1: + resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==} - moment@2.30.1: {} + /monaco-editor@0.50.0: + resolution: {integrity: sha512-8CclLCmrRRh+sul7C08BmPBP3P8wVWfBHomsTcndxg5NRCEPfu/mc2AGU8k37ajjDVXcXFc12ORAMUkmk+lkFA==} + dev: false - monaco-editor@0.50.0: {} + /mri@1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + dev: true - mrmime@2.0.0: {} + /mrmime@2.0.0: + resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} + engines: {node: '>=10'} - ms@2.0.0: {} + /ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} - ms@2.1.1: {} + /ms@2.1.1: + resolution: {integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==} + dev: false - ms@2.1.2: {} + /ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} - ms@2.1.3: {} + /ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - msw@0.36.8(encoding@0.1.13): + /msw@0.36.8: + resolution: {integrity: sha512-K7lOQoYqhGhTSChsmHMQbf/SDCsxh/m0uhN6Ipt206lGoe81fpTmaGD0KLh4jUxCONMOUnwCSj0jtX2CM4pEdw==} + hasBin: true + requiresBuild: true dependencies: '@mswjs/cookies': 0.1.7 '@mswjs/interceptors': 0.12.7 @@ -48896,7 +41278,7 @@ snapshots: inquirer: 8.2.6 is-node-process: 1.2.0 js-levenshtein: 1.1.6 - node-fetch: 2.7.0(encoding@0.1.13) + node-fetch: 2.7.0 path-to-regexp: 6.2.2 statuses: 2.0.1 strict-event-emitter: 0.2.8 @@ -48905,42 +41287,66 @@ snapshots: transitivePeerDependencies: - encoding - supports-color + dev: true - multicast-dns-service-types@1.1.0: {} + /multicast-dns-service-types@1.1.0: + resolution: {integrity: sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==} - multicast-dns@6.2.3: + /multicast-dns@6.2.3: + resolution: {integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==} + hasBin: true dependencies: dns-packet: 1.3.4 thunky: 1.1.0 - multicast-dns@7.2.5: + /multicast-dns@7.2.5: + resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} + hasBin: true dependencies: dns-packet: 5.6.1 thunky: 1.1.0 + dev: true - multimatch@5.0.0: + /multimatch@5.0.0: + resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} + engines: {node: '>=10'} dependencies: '@types/minimatch': 3.0.5 array-differ: 3.0.0 array-union: 2.1.0 arrify: 2.0.1 minimatch: 3.1.2 + dev: true - multistream@2.1.1: + /multistream@2.1.1: + resolution: {integrity: sha512-xasv76hl6nr1dEy3lPvy7Ej7K/Lx3O/FCvwge8PeVJpciPPoNCbaANcNiBug3IpdvTveZUcAV0DJzdnUDMesNQ==} dependencies: inherits: 2.0.4 readable-stream: 2.3.8 + dev: true - mustache@4.2.0: {} + /mustache@4.2.0: + resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} + hasBin: true + dev: false - mute-stream@0.0.8: {} + /mute-stream@0.0.8: + resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + dev: true - nan@2.20.0: + /nan@2.20.0: + resolution: {integrity: sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==} + requiresBuild: true optional: true - nanoid@3.3.7: {} + /nanoid@3.3.7: + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true - nanomatch@1.2.13(supports-color@6.1.0): + /nanomatch@1.2.13(supports-color@6.1.0): + resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} + engines: {node: '>=0.10.0'} dependencies: arr-diff: 4.0.0 array-unique: 0.3.2 @@ -48956,61 +41362,107 @@ snapshots: transitivePeerDependencies: - supports-color - native-request@1.1.0: + /native-request@1.1.0: + resolution: {integrity: sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==} + requiresBuild: true + dev: true optional: true - native-url@0.2.6: + /native-url@0.2.6: + resolution: {integrity: sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==} dependencies: querystring: 0.2.1 + dev: true - natural-compare-lite@1.4.0: {} + /natural-compare-lite@1.4.0: + resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} + dev: true - natural-compare@1.4.0: {} + /natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - needle@3.3.1: + /needle@3.3.1: + resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==} + engines: {node: '>= 4.4.x'} + hasBin: true + requiresBuild: true dependencies: iconv-lite: 0.6.3 sax: 1.4.1 + dev: true optional: true - negotiator@0.6.3: {} + /negotiator@0.6.3: + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} - neo-async@2.6.2: {} + /neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - nested-error-stacks@2.1.1: {} + /nested-error-stacks@2.1.1: + resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==} + dev: false - next-tick@1.1.0: {} + /next-tick@1.1.0: + resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} + dev: true - nice-try@1.0.5: {} + /nice-try@1.0.5: + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} - no-case@3.0.4: + /no-case@3.0.4: + resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} dependencies: lower-case: 2.0.2 tslib: 2.6.3 - node-abort-controller@3.1.1: {} + /node-abort-controller@3.1.1: + resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} + dev: true - node-addon-api@3.2.1: {} + /node-addon-api@3.2.1: + resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} + dev: true - node-dir@0.1.17: + /node-dir@0.1.17: + resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} + engines: {node: '>= 0.10.5'} dependencies: minimatch: 3.1.2 - node-fetch-native@1.6.4: {} + /node-fetch-native@1.6.4: + resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==} + dev: true - node-fetch@2.7.0(encoding@0.1.13): + /node-fetch@2.7.0: + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true dependencies: whatwg-url: 5.0.0 - optionalDependencies: - encoding: 0.1.13 - node-forge@0.10.0: {} + /node-forge@0.10.0: + resolution: {integrity: sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==} + engines: {node: '>= 6.0.0'} - node-forge@1.3.1: {} + /node-forge@1.3.1: + resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} + engines: {node: '>= 6.13.0'} + dev: true - node-gyp-build@4.8.1: {} + /node-gyp-build@4.8.1: + resolution: {integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==} + hasBin: true + dev: true - node-gyp@9.4.1: + /node-gyp@9.4.1: + resolution: {integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==} + engines: {node: ^12.13 || ^14.13 || >=16} + hasBin: true dependencies: env-paths: 2.2.1 exponential-backoff: 3.1.1 @@ -49026,12 +41478,18 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - node-int64@0.4.0: {} + /node-int64@0.4.0: + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - node-machine-id@1.1.12: {} + /node-machine-id@1.1.12: + resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} + dev: true - node-notifier@8.0.2: + /node-notifier@8.0.2: + resolution: {integrity: sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==} + requiresBuild: true dependencies: growly: 1.3.0 is-wsl: 2.2.0 @@ -49039,110 +41497,177 @@ snapshots: shellwords: 0.1.1 uuid: 8.3.2 which: 2.0.2 + dev: true optional: true - node-preload@0.2.1: + /node-preload@0.2.1: + resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} + engines: {node: '>=8'} dependencies: process-on-spawn: 1.0.0 + dev: true - node-releases@2.0.14: {} + /node-releases@2.0.14: + resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} - nopt@5.0.0: + /nopt@5.0.0: + resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} + engines: {node: '>=6'} + hasBin: true dependencies: abbrev: 1.1.1 + dev: true - nopt@6.0.0: + /nopt@6.0.0: + resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true dependencies: abbrev: 1.1.1 + dev: true - nopt@7.2.1: + /nopt@7.2.1: + resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true dependencies: abbrev: 2.0.0 + dev: false - normalize-package-data@2.5.0: + /normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: hosted-git-info: 2.8.9 resolve: 1.22.8 semver: 5.7.2 validate-npm-package-license: 3.0.4 - normalize-package-data@3.0.3: + /normalize-package-data@3.0.3: + resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} + engines: {node: '>=10'} dependencies: hosted-git-info: 4.1.0 is-core-module: 2.14.0 semver: 7.6.2 validate-npm-package-license: 3.0.4 + dev: true - normalize-package-data@4.0.1: + /normalize-package-data@4.0.1: + resolution: {integrity: sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: hosted-git-info: 5.2.1 is-core-module: 2.14.0 semver: 7.6.2 validate-npm-package-license: 3.0.4 + dev: true - normalize-path@2.1.1: + /normalize-path@2.1.1: + resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} + engines: {node: '>=0.10.0'} dependencies: remove-trailing-separator: 1.1.0 - normalize-path@3.0.0: {} + /normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} - normalize-range@0.1.2: {} + /normalize-range@0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} - normalize-url@4.5.1: {} + /normalize-url@4.5.1: + resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} + engines: {node: '>=8'} + dev: false - normalize-url@6.1.0: {} + /normalize-url@6.1.0: + resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} + engines: {node: '>=10'} + dev: true - npm-bundled@1.1.2: + /npm-bundled@1.1.2: + resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==} dependencies: npm-normalize-package-bin: 1.0.1 + dev: true - npm-bundled@2.0.1: + /npm-bundled@2.0.1: + resolution: {integrity: sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: npm-normalize-package-bin: 2.0.0 + dev: true - npm-install-checks@5.0.0: + /npm-install-checks@5.0.0: + resolution: {integrity: sha512-65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: semver: 7.6.2 + dev: true - npm-normalize-package-bin@1.0.1: {} + /npm-normalize-package-bin@1.0.1: + resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} + dev: true - npm-normalize-package-bin@2.0.0: {} + /npm-normalize-package-bin@2.0.0: + resolution: {integrity: sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dev: true - npm-package-arg@11.0.1: + /npm-package-arg@11.0.1: + resolution: {integrity: sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==} + engines: {node: ^16.14.0 || >=18.0.0} dependencies: hosted-git-info: 7.0.2 proc-log: 3.0.0 semver: 7.5.3 validate-npm-package-name: 5.0.1 + dev: true - npm-package-arg@8.1.1: + /npm-package-arg@8.1.1: + resolution: {integrity: sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==} + engines: {node: '>=10'} dependencies: hosted-git-info: 3.0.8 semver: 7.6.2 validate-npm-package-name: 3.0.0 + dev: true - npm-package-arg@9.1.2: + /npm-package-arg@9.1.2: + resolution: {integrity: sha512-pzd9rLEx4TfNJkovvlBSLGhq31gGu2QDexFPWT19yCDh0JgnRhlBLNo5759N0AJmBk+kQ9Y/hXoLnlgFD+ukmg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: hosted-git-info: 5.2.1 proc-log: 2.0.1 semver: 7.6.2 validate-npm-package-name: 4.0.0 + dev: true - npm-packlist@5.1.3: + /npm-packlist@5.1.3: + resolution: {integrity: sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true dependencies: glob: 8.1.0 ignore-walk: 5.0.1 npm-bundled: 2.0.1 npm-normalize-package-bin: 2.0.0 + dev: true - npm-pick-manifest@7.0.2: + /npm-pick-manifest@7.0.2: + resolution: {integrity: sha512-gk37SyRmlIjvTfcYl6RzDbSmS9Y4TOBXfsPnoYqTHARNgWbyDiCSMLUpmALDj4jjcTZpURiEfsSHJj9k7EV4Rw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: npm-install-checks: 5.0.0 npm-normalize-package-bin: 2.0.0 npm-package-arg: 9.1.2 semver: 7.6.2 + dev: true - npm-registry-fetch@13.3.1: + /npm-registry-fetch@13.3.1: + resolution: {integrity: sha512-eukJPi++DKRTjSBRcDZSDDsGqRK3ehbxfFUcgaRd0Yp6kRwOwh2WVn0r+8rMB4nnuzvAk6rQVzl6K5CkYOmnvw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: make-fetch-happen: 10.2.1 minipass: 3.3.6 @@ -49154,50 +41679,84 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - npm-run-path@2.0.2: + /npm-run-path@2.0.2: + resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} + engines: {node: '>=4'} dependencies: path-key: 2.0.1 - npm-run-path@4.0.1: + /npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} dependencies: path-key: 3.1.1 - npm-run-path@5.3.0: + /npm-run-path@5.3.0: + resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: path-key: 4.0.0 + dev: true - npmlog@5.0.1: + /npmlog@5.0.1: + resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} + deprecated: This package is no longer supported. dependencies: are-we-there-yet: 2.0.0 console-control-strings: 1.1.0 gauge: 3.0.2 set-blocking: 2.0.0 - npmlog@6.0.2: + /npmlog@6.0.2: + resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. dependencies: are-we-there-yet: 3.0.1 console-control-strings: 1.1.0 gauge: 4.0.4 set-blocking: 2.0.0 + dev: true - nth-check@1.0.2: + /nth-check@1.0.2: + resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} dependencies: boolbase: 1.0.0 + dev: true - nth-check@2.1.1: + /nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} dependencies: boolbase: 1.0.0 - num2fraction@1.2.2: {} + /num2fraction@1.2.2: + resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==} + dev: false - nwsapi@2.2.12: {} + /nwsapi@2.2.12: + resolution: {integrity: sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==} + dev: true - nx@15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)): + /nx@15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99): + resolution: {integrity: sha512-GLwbykfTABc7/UZjQEEnV1bQbTVC53W+Zj4xWY640/45I4iZf/TUqKMBCgtLZ9v89gEsKOM4zsx55CqHT3bekA==} + hasBin: true + requiresBuild: true + peerDependencies: + '@swc-node/register': ^1.4.2 + '@swc/core': ^1.2.173 + peerDependenciesMeta: + '@swc-node/register': + optional: true + '@swc/core': + optional: true dependencies: - '@nrwl/cli': 15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) - '@nrwl/tao': 15.9.3(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) + '@nrwl/cli': 15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) + '@nrwl/tao': 15.9.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) '@parcel/watcher': 2.0.4 + '@swc-node/register': 1.6.8(@swc/core@1.3.99)(@swc/types@0.1.9)(typescript@5.1.6) + '@swc/core': 1.3.99(@swc/helpers@0.5.9) '@yarnpkg/lockfile': 1.1.0 '@yarnpkg/parsers': 3.0.0-rc.46 '@zkochan/js-yaml': 0.0.6 @@ -49240,15 +41799,27 @@ snapshots: '@nrwl/nx-linux-x64-musl': 15.9.3 '@nrwl/nx-win32-arm64-msvc': 15.9.3 '@nrwl/nx-win32-x64-msvc': 15.9.3 - '@swc-node/register': 1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6) - '@swc/core': 1.3.99(@swc/helpers@0.5.9) transitivePeerDependencies: - debug + dev: true - nx@17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)): + /nx@17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99): + resolution: {integrity: sha512-FLRcKQyrwauwyeb/biBctKFAOkjjnfXQ2hE7uNuitDxWEdD7mejrrsZYOr++KUyjkbxmq/t3TtBQiZXHosShaA==} + hasBin: true + requiresBuild: true + peerDependencies: + '@swc-node/register': ^1.6.7 + '@swc/core': ^1.3.85 + peerDependenciesMeta: + '@swc-node/register': + optional: true + '@swc/core': + optional: true dependencies: - '@nrwl/tao': 17.0.0(@swc-node/register@1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6))(@swc/core@1.3.99(@swc/helpers@0.5.9)) + '@nrwl/tao': 17.0.0(@swc-node/register@1.6.8)(@swc/core@1.3.99) '@parcel/watcher': 2.0.4 + '@swc-node/register': 1.6.8(@swc/core@1.3.99)(@swc/types@0.1.9)(typescript@5.1.6) + '@swc/core': 1.3.99(@swc/helpers@0.5.9) '@yarnpkg/lockfile': 1.1.0 '@yarnpkg/parsers': 3.0.0-rc.46 '@zkochan/js-yaml': 0.0.6 @@ -49294,12 +41865,14 @@ snapshots: '@nx/nx-linux-x64-musl': 17.0.0 '@nx/nx-win32-arm64-msvc': 17.0.0 '@nx/nx-win32-x64-msvc': 17.0.0 - '@swc-node/register': 1.6.8(@swc/core@1.3.99(@swc/helpers@0.5.9))(@swc/types@0.1.9)(typescript@5.1.6) - '@swc/core': 1.3.99(@swc/helpers@0.5.9) transitivePeerDependencies: - debug + dev: true - nyc@15.1.0: + /nyc@15.1.0: + resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} + engines: {node: '>=8.9'} + hasBin: true dependencies: '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.3 @@ -49330,8 +41903,12 @@ snapshots: yargs: 15.4.1 transitivePeerDependencies: - supports-color + dev: true - nypm@0.3.9: + /nypm@0.3.9: + resolution: {integrity: sha512-BI2SdqqTHg2d4wJh8P9A1W+bslg33vOE9IZDY6eR2QC+Pu1iNBVZUqczrd43rJb+fMzHU7ltAYKsEFY/kHMFcw==} + engines: {node: ^14.16.0 || >=16.10.0} + hasBin: true dependencies: citty: 0.1.6 consola: 3.2.3 @@ -49339,49 +41916,70 @@ snapshots: pathe: 1.1.2 pkg-types: 1.1.3 ufo: 1.5.3 + dev: true - object-assign@4.1.1: {} + /object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} - object-copy@0.1.0: + /object-copy@0.1.0: + resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} + engines: {node: '>=0.10.0'} dependencies: copy-descriptor: 0.1.1 define-property: 0.2.5 kind-of: 3.2.2 - object-inspect@1.13.2: {} + /object-inspect@1.13.2: + resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} + engines: {node: '>= 0.4'} - object-is@1.1.6: + /object-is@1.1.6: + resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - object-keys@1.1.1: {} + /object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} - object-visit@1.0.1: + /object-visit@1.0.1: + resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} + engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 - object.assign@4.1.5: + /object.assign@4.1.5: + resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 - object.entries@1.1.8: + /object.entries@1.1.8: + resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - object.fromentries@2.0.8: + /object.fromentries@2.0.8: + resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 - object.getownpropertydescriptors@2.1.8: + /object.getownpropertydescriptors@2.1.8: + resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==} + engines: {node: '>= 0.8'} dependencies: array.prototype.reduce: 1.0.7 call-bind: 1.0.7 @@ -49391,70 +41989,105 @@ snapshots: gopd: 1.0.1 safe-array-concat: 1.1.2 - object.groupby@1.0.3: + /object.groupby@1.0.3: + resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 + dev: true - object.hasown@1.1.4: + /object.hasown@1.1.4: + resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} + engines: {node: '>= 0.4'} dependencies: define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 + dev: true - object.pick@1.3.0: + /object.pick@1.3.0: + resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} + engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 - object.values@1.2.0: + /object.values@1.2.0: + resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - objectorarray@1.0.5: {} + /objectorarray@1.0.5: + resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==} - obuf@1.1.2: {} + /obuf@1.1.2: + resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} - ohash@1.1.3: {} + /ohash@1.1.3: + resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} + dev: true - on-finished@2.4.1: + /on-finished@2.4.1: + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + engines: {node: '>= 0.8'} dependencies: ee-first: 1.1.1 - on-headers@1.0.2: {} + /on-headers@1.0.2: + resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} + engines: {node: '>= 0.8'} - once@1.4.0: + /once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: wrappy: 1.0.2 - onetime@5.1.2: + /onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} dependencies: mimic-fn: 2.1.0 - onetime@6.0.0: + /onetime@6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} dependencies: mimic-fn: 4.0.0 + dev: true - open@7.4.2: + /open@7.4.2: + resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} + engines: {node: '>=8'} dependencies: is-docker: 2.2.1 is-wsl: 2.2.0 + dev: false - open@8.4.2: + /open@8.4.2: + resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} + engines: {node: '>=12'} dependencies: define-lazy-prop: 2.0.0 is-docker: 2.2.1 is-wsl: 2.2.0 - opener@1.5.2: {} + /opener@1.5.2: + resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} + hasBin: true - opn@5.5.0: + /opn@5.5.0: + resolution: {integrity: sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==} + engines: {node: '>=4'} dependencies: is-wsl: 1.1.0 - optionator@0.9.4: + /optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} dependencies: deep-is: 0.1.4 fast-levenshtein: 2.0.6 @@ -49463,7 +42096,9 @@ snapshots: type-check: 0.4.0 word-wrap: 1.2.5 - ora@5.3.0: + /ora@5.3.0: + resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==} + engines: {node: '>=10'} dependencies: bl: 4.1.0 chalk: 4.1.2 @@ -49473,8 +42108,11 @@ snapshots: log-symbols: 4.1.0 strip-ansi: 6.0.1 wcwidth: 1.0.1 + dev: true - ora@5.4.1: + /ora@5.4.1: + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} + engines: {node: '>=10'} dependencies: bl: 4.1.0 chalk: 4.1.1 @@ -49485,139 +42123,240 @@ snapshots: log-symbols: 4.1.0 strip-ansi: 6.0.1 wcwidth: 1.0.1 + dev: true - os-filter-obj@2.0.0: + /os-filter-obj@2.0.0: + resolution: {integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==} + engines: {node: '>=4'} dependencies: arch: 2.2.0 + dev: true - os-homedir@1.0.2: - optional: true + /os-homedir@1.0.2: + resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} + engines: {node: '>=0.10.0'} - os-tmpdir@1.0.2: {} + /os-tmpdir@1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} + dev: true - ospath@1.2.2: {} + /ospath@1.2.2: + resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==} + dev: true - outdent@0.5.0: {} + /outdent@0.5.0: + resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} + dev: true - outvariant@1.4.2: {} + /outvariant@1.4.2: + resolution: {integrity: sha512-Ou3dJ6bA/UJ5GVHxah4LnqDwZRwAmWxrG3wtrHrbGnP4RnLCtA64A4F+ae7Y8ww660JaddSoArUR5HjipWSHAQ==} + dev: true - p-all@2.1.0: + /p-all@2.1.0: + resolution: {integrity: sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==} + engines: {node: '>=6'} dependencies: p-map: 2.1.0 + dev: false - p-cancelable@1.1.0: {} + /p-cancelable@1.1.0: + resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} + engines: {node: '>=6'} + dev: false - p-cancelable@2.1.1: {} + /p-cancelable@2.1.1: + resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} + engines: {node: '>=8'} + dev: true - p-defer@1.0.0: {} + /p-defer@1.0.0: + resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} + engines: {node: '>=4'} + dev: false - p-each-series@2.2.0: {} + /p-each-series@2.2.0: + resolution: {integrity: sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==} + engines: {node: '>=8'} + dev: true - p-event@4.2.0: + /p-event@4.2.0: + resolution: {integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==} + engines: {node: '>=8'} dependencies: p-timeout: 3.2.0 + dev: false - p-filter@2.1.0: + /p-filter@2.1.0: + resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} + engines: {node: '>=8'} dependencies: p-map: 2.1.0 - p-finally@1.0.0: {} + /p-finally@1.0.0: + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} - p-limit@1.3.0: + /p-limit@1.3.0: + resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} + engines: {node: '>=4'} dependencies: p-try: 1.0.0 + dev: true - p-limit@2.3.0: + /p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} dependencies: p-try: 2.2.0 - p-limit@3.1.0: + /p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} dependencies: yocto-queue: 0.1.0 - p-limit@4.0.0: + /p-limit@4.0.0: + resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: yocto-queue: 1.1.1 + dev: true - p-locate@2.0.0: + /p-locate@2.0.0: + resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} + engines: {node: '>=4'} dependencies: p-limit: 1.3.0 + dev: true - p-locate@3.0.0: + /p-locate@3.0.0: + resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} + engines: {node: '>=6'} dependencies: p-limit: 2.3.0 - p-locate@4.1.0: + /p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} dependencies: p-limit: 2.3.0 - p-locate@5.0.0: + /p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} dependencies: p-limit: 3.1.0 - p-locate@6.0.0: + /p-locate@6.0.0: + resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: p-limit: 4.0.0 + dev: true - p-map-series@2.1.0: {} + /p-map-series@2.1.0: + resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==} + engines: {node: '>=8'} + dev: true - p-map@2.1.0: {} + /p-map@2.1.0: + resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} + engines: {node: '>=6'} - p-map@3.0.0: + /p-map@3.0.0: + resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} + engines: {node: '>=8'} dependencies: aggregate-error: 3.1.0 - p-map@4.0.0: + /p-map@4.0.0: + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} + engines: {node: '>=10'} dependencies: aggregate-error: 3.1.0 - p-pipe@3.1.0: {} + /p-pipe@3.1.0: + resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==} + engines: {node: '>=8'} + dev: true - p-queue@6.6.2: + /p-queue@6.6.2: + resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} + engines: {node: '>=8'} dependencies: eventemitter3: 4.0.7 p-timeout: 3.2.0 + dev: true - p-reduce@2.1.0: {} + /p-reduce@2.1.0: + resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} + engines: {node: '>=8'} + dev: true - p-retry@3.0.1: + /p-retry@3.0.1: + resolution: {integrity: sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==} + engines: {node: '>=6'} dependencies: retry: 0.12.0 - p-retry@4.6.2: + /p-retry@4.6.2: + resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} + engines: {node: '>=8'} dependencies: '@types/retry': 0.12.0 retry: 0.13.1 + dev: true - p-timeout@3.2.0: + /p-timeout@3.2.0: + resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} + engines: {node: '>=8'} dependencies: p-finally: 1.0.0 - p-try@1.0.0: {} + /p-try@1.0.0: + resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} + engines: {node: '>=4'} + dev: true - p-try@2.2.0: {} + /p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} - p-waterfall@2.1.1: + /p-waterfall@2.1.1: + resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==} + engines: {node: '>=8'} dependencies: p-reduce: 2.1.0 + dev: true - package-hash@4.0.0: + /package-hash@4.0.0: + resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} + engines: {node: '>=8'} dependencies: graceful-fs: 4.2.11 hasha: 5.2.2 lodash.flattendeep: 4.4.0 release-zalgo: 1.0.0 + dev: true - package-json-from-dist@1.0.0: {} + /package-json-from-dist@1.0.0: + resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} - package-json@6.5.0: + /package-json@6.5.0: + resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} + engines: {node: '>=8'} dependencies: got: 9.6.0 registry-auth-token: 4.2.2 registry-url: 5.1.0 semver: 6.3.1 + dev: false - pacote@13.6.2: + /pacote@13.6.2: + resolution: {integrity: sha512-Gu8fU3GsvOPkak2CkbojR7vjs3k3P9cA6uazKTHdsdV0gpCEQq2opelnEv30KRQWgVzP5Vd/5umjcedma3MKtg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true dependencies: '@npmcli/git': 3.0.2 '@npmcli/installed-package-contents': 1.0.7 @@ -49643,25 +42382,35 @@ snapshots: transitivePeerDependencies: - bluebird - supports-color + dev: true - pako@0.2.9: {} + /pako@0.2.9: + resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} + dev: true - param-case@3.0.4: + /param-case@3.0.4: + resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} dependencies: dot-case: 3.0.4 tslib: 2.6.3 - parent-module@1.0.1: + /parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} dependencies: callsites: 3.1.0 - parse-conflict-json@2.0.2: + /parse-conflict-json@2.0.2: + resolution: {integrity: sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: json-parse-even-better-errors: 2.3.1 just-diff: 5.2.0 just-diff-apply: 5.5.0 + dev: true - parse-entities@2.0.0: + /parse-entities@2.0.0: + resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} dependencies: character-entities: 1.2.4 character-entities-legacy: 1.1.4 @@ -49670,7 +42419,8 @@ snapshots: is-decimal: 1.0.4 is-hexadecimal: 1.0.4 - parse-entities@4.0.1: + /parse-entities@4.0.1: + resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} dependencies: '@types/unist': 2.0.10 character-entities: 2.0.2 @@ -49680,190 +42430,302 @@ snapshots: is-alphanumerical: 2.0.1 is-decimal: 2.0.1 is-hexadecimal: 2.0.1 + dev: false - parse-json@2.2.0: + /parse-json@2.2.0: + resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: error-ex: 1.3.2 + dev: false optional: true - parse-json@4.0.0: + /parse-json@4.0.0: + resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} + engines: {node: '>=4'} dependencies: error-ex: 1.3.2 json-parse-better-errors: 1.0.2 - parse-json@5.2.0: + /parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} dependencies: '@babel/code-frame': 7.24.7 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - parse-node-version@1.0.1: {} + /parse-node-version@1.0.1: + resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} + engines: {node: '>= 0.10'} + dev: true - parse-path@7.0.0: + /parse-path@7.0.0: + resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} dependencies: protocols: 2.0.1 + dev: true - parse-url@8.1.0: + /parse-url@8.1.0: + resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} dependencies: parse-path: 7.0.0 + dev: true - parse5@4.0.0: {} + /parse5@4.0.0: + resolution: {integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==} + dev: true - parse5@6.0.1: {} + /parse5@6.0.1: + resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} - parse5@7.1.2: + /parse5@7.1.2: + resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} dependencies: entities: 4.5.0 + dev: true - parseurl@1.3.3: {} + /parseurl@1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} - pascal-case@3.1.2: + /pascal-case@3.1.2: + resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} dependencies: no-case: 3.0.4 tslib: 2.6.3 - pascalcase@0.1.1: {} + /pascalcase@0.1.1: + resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} + engines: {node: '>=0.10.0'} - path-browserify@1.0.1: {} + /path-browserify@1.0.1: + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} - path-dirname@1.0.2: {} + /path-dirname@1.0.2: + resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==} - path-exists@2.1.0: + /path-exists@2.1.0: + resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: pinkie-promise: 2.0.1 + dev: false optional: true - path-exists@3.0.0: {} + /path-exists@3.0.0: + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} - path-exists@4.0.0: {} + /path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} - path-exists@5.0.0: {} + /path-exists@5.0.0: + resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true - path-is-absolute@1.0.1: {} + /path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} - path-is-inside@1.0.2: {} + /path-is-inside@1.0.2: + resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==} - path-key@2.0.1: {} + /path-key@2.0.1: + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} - path-key@3.1.1: {} + /path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} - path-key@4.0.0: {} + /path-key@4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + dev: true - path-parse@1.0.7: {} + /path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - path-scurry@1.11.1: + /path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} dependencies: lru-cache: 10.4.3 minipass: 7.1.2 - path-to-regexp@0.1.7: {} + /path-to-regexp@0.1.7: + resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} - path-to-regexp@1.8.0: + /path-to-regexp@1.8.0: + resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==} dependencies: isarray: 0.0.1 + dev: false - path-to-regexp@6.2.2: {} + /path-to-regexp@6.2.2: + resolution: {integrity: sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==} + dev: true - path-type@1.1.0: + /path-type@1.1.0: + resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: graceful-fs: 4.2.11 pify: 2.3.0 pinkie-promise: 2.0.1 + dev: false optional: true - path-type@3.0.0: + /path-type@3.0.0: + resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} + engines: {node: '>=4'} dependencies: pify: 3.0.0 - path-type@4.0.0: {} + /path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} - path-type@5.0.0: {} + /path-type@5.0.0: + resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} + engines: {node: '>=12'} + dev: true - path@0.12.7: + /path@0.12.7: + resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} dependencies: process: 0.11.10 util: 0.10.4 + dev: true - pathe@1.1.2: {} + /pathe@1.1.2: + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} + dev: true - peek-readable@5.1.1: {} + /peek-readable@5.1.1: + resolution: {integrity: sha512-4hEOSH7KeEaZpMDF/xfm1W9fS5rT7Ett3BkXWHqAEzRLLwLaHkwOL+GvvpIEh9UrvX9BDhzfkvteslgraoH69w==} + engines: {node: '>=14.16'} + dev: true - peek-stream@1.1.3: + /peek-stream@1.1.3: + resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==} dependencies: buffer-from: 1.1.2 duplexify: 3.7.1 through2: 2.0.5 + dev: true - pend@1.2.0: {} + /pend@1.2.0: + resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} - performance-now@2.1.0: {} + /performance-now@2.1.0: + resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} - picocolors@0.2.1: {} + /picocolors@0.2.1: + resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==} - picocolors@1.0.1: {} + /picocolors@1.0.1: + resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} - picomatch@2.3.1: {} + /picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} - pify@2.3.0: {} + /pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} - pify@3.0.0: {} + /pify@3.0.0: + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} - pify@4.0.1: {} + /pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} - pify@5.0.0: {} + /pify@5.0.0: + resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} + engines: {node: '>=10'} + dev: true - pinkie-promise@2.0.1: + /pinkie-promise@2.0.1: + resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==} + engines: {node: '>=0.10.0'} dependencies: pinkie: 2.0.4 - pinkie@2.0.4: {} + /pinkie@2.0.4: + resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==} + engines: {node: '>=0.10.0'} - pirates@4.0.6: {} + /pirates@4.0.6: + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + engines: {node: '>= 6'} - pkg-dir@3.0.0: + /pkg-dir@3.0.0: + resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} + engines: {node: '>=6'} dependencies: find-up: 3.0.0 - pkg-dir@4.2.0: + /pkg-dir@4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} dependencies: find-up: 4.1.0 - pkg-dir@5.0.0: + /pkg-dir@5.0.0: + resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} + engines: {node: '>=10'} dependencies: find-up: 5.0.0 - pkg-dir@7.0.0: + /pkg-dir@7.0.0: + resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==} + engines: {node: '>=14.16'} dependencies: find-up: 6.3.0 + dev: true - pkg-types@1.1.3: + /pkg-types@1.1.3: + resolution: {integrity: sha512-+JrgthZG6m3ckicaOB74TwQ+tBWsFl3qVQg7mN8ulwSOElJ7gBhKzj2VkCPnZ4NlF6kEquYU+RIYNVAvzd54UA==} dependencies: confbox: 0.1.7 mlly: 1.7.1 pathe: 1.1.2 + dev: true - pnp-webpack-plugin@1.6.4(typescript@4.9.5): + /pnp-webpack-plugin@1.6.4(typescript@4.9.5): + resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} + engines: {node: '>=6'} dependencies: ts-pnp: 1.2.0(typescript@4.9.5) transitivePeerDependencies: - typescript + dev: false - polished@4.3.1: + /polished@4.3.1: + resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==} + engines: {node: '>=10'} dependencies: '@babel/runtime': 7.24.7 + dev: true - popper.js@1.16.1: {} - - portfinder@1.0.32: - dependencies: - async: 2.6.4 - debug: 3.2.7(supports-color@8.1.1) - mkdirp: 0.5.6 - transitivePeerDependencies: - - supports-color + /popper.js@1.16.1: + resolution: {integrity: sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==} + deprecated: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1 + dev: false - portfinder@1.0.32(supports-color@6.1.0): + /portfinder@1.0.32(supports-color@6.1.0): + resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} + engines: {node: '>= 0.12.0'} dependencies: async: 2.6.4 debug: 3.2.7(supports-color@6.1.0) @@ -49871,128 +42733,223 @@ snapshots: transitivePeerDependencies: - supports-color - posix-character-classes@0.1.1: {} + /posix-character-classes@0.1.1: + resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} + engines: {node: '>=0.10.0'} - possible-typed-array-names@1.0.0: {} + /possible-typed-array-names@1.0.0: + resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} + engines: {node: '>= 0.4'} - postcss-calc@8.2.4(postcss@8.4.39): + /postcss-calc@8.2.4(postcss@8.4.39): + resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} + peerDependencies: + postcss: ^8.2.2 dependencies: postcss: 8.4.39 postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 + dev: true - postcss-calc@9.0.1(postcss@8.4.39): + /postcss-calc@9.0.1(postcss@8.4.39): + resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.2.2 dependencies: postcss: 8.4.39 postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 + dev: true - postcss-colormin@5.3.1(postcss@8.4.39): + /postcss-colormin@5.3.1(postcss@8.4.39): + resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: browserslist: 4.23.1 caniuse-api: 3.0.0 colord: 2.9.3 postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-colormin@6.1.0(postcss@8.4.39): + /postcss-colormin@6.1.0(postcss@8.4.39): + resolution: {integrity: sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: browserslist: 4.23.1 caniuse-api: 3.0.0 colord: 2.9.3 postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-convert-values@5.1.3(postcss@8.4.39): + /postcss-convert-values@5.1.3(postcss@8.4.39): + resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: browserslist: 4.23.1 postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-convert-values@6.1.0(postcss@8.4.39): + /postcss-convert-values@6.1.0(postcss@8.4.39): + resolution: {integrity: sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: browserslist: 4.23.1 postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-discard-comments@5.1.2(postcss@8.4.39): + /postcss-discard-comments@5.1.2(postcss@8.4.39): + resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: postcss: 8.4.39 + dev: true - postcss-discard-comments@6.0.2(postcss@8.4.39): + /postcss-discard-comments@6.0.2(postcss@8.4.39): + resolution: {integrity: sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 + dev: true - postcss-discard-duplicates@5.1.0(postcss@8.4.39): + /postcss-discard-duplicates@5.1.0(postcss@8.4.39): + resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: postcss: 8.4.39 + dev: true - postcss-discard-duplicates@6.0.3(postcss@8.4.39): + /postcss-discard-duplicates@6.0.3(postcss@8.4.39): + resolution: {integrity: sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 + dev: true - postcss-discard-empty@5.1.1(postcss@8.4.39): + /postcss-discard-empty@5.1.1(postcss@8.4.39): + resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: postcss: 8.4.39 + dev: true - postcss-discard-empty@6.0.3(postcss@8.4.39): + /postcss-discard-empty@6.0.3(postcss@8.4.39): + resolution: {integrity: sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 + dev: true - postcss-discard-overridden@5.1.0(postcss@8.4.39): + /postcss-discard-overridden@5.1.0(postcss@8.4.39): + resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: postcss: 8.4.39 + dev: true - postcss-discard-overridden@6.0.2(postcss@8.4.39): + /postcss-discard-overridden@6.0.2(postcss@8.4.39): + resolution: {integrity: sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 + dev: true - postcss-flexbugs-fixes@4.2.1: + /postcss-flexbugs-fixes@4.2.1: + resolution: {integrity: sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==} dependencies: postcss: 7.0.39 + dev: false - postcss-import-ext-glob@2.1.1(postcss@7.0.39): + /postcss-import-ext-glob@2.1.1(postcss@8.4.39): + resolution: {integrity: sha512-qd4ELOx2G0hyjgtmLnf/fSVJXXPhkcxcxhLT1y1mAnk53JYbMLoGg+AFtnJowOSvnv4CvjPAzpLpAcfWeofP5g==} + peerDependencies: + postcss: ^8.2.0 dependencies: fast-glob: 3.3.2 fast-sort: 3.4.0 - postcss: 7.0.39 - postcss-value-parser: 4.2.0 - - postcss-import@14.1.0(postcss@7.0.39): - dependencies: - postcss: 7.0.39 + postcss: 8.4.39 postcss-value-parser: 4.2.0 - read-cache: 1.0.0 - resolve: 1.22.8 + dev: true - postcss-import@14.1.0(postcss@8.4.39): + /postcss-import@14.1.0(postcss@8.4.39): + resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} + engines: {node: '>=10.0.0'} + peerDependencies: + postcss: ^8.0.0 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 + dev: true - postcss-load-config@2.1.2: + /postcss-load-config@2.1.2: + resolution: {integrity: sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==} + engines: {node: '>= 4'} dependencies: cosmiconfig: 5.2.1 import-cwd: 2.1.0 - postcss-load-config@3.1.4(postcss@8.4.39)(ts-node@8.10.2(typescript@5.1.6)): + /postcss-load-config@3.1.4(postcss@8.4.39): + resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} + engines: {node: '>= 10'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true dependencies: lilconfig: 2.1.0 - yaml: 1.10.2 - optionalDependencies: postcss: 8.4.39 - ts-node: 8.10.2(typescript@5.1.6) + yaml: 1.10.2 + dev: true - postcss-loader@3.0.0: + /postcss-loader@3.0.0: + resolution: {integrity: sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==} + engines: {node: '>= 6'} dependencies: loader-utils: 1.4.2 postcss: 7.0.39 postcss-load-config: 2.1.2 schema-utils: 1.0.0 - postcss-loader@4.3.0(postcss@7.0.39)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /postcss-loader@4.3.0(postcss@7.0.39)(webpack@5.84.1): + resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} + engines: {node: '>= 10.13.0'} + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: 5.84.1 dependencies: cosmiconfig: 7.1.0 klona: 2.0.6 @@ -50000,154 +42957,259 @@ snapshots: postcss: 7.0.39 schema-utils: 3.3.0 semver: 7.6.2 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: false - postcss-loader@6.2.1(postcss@8.4.39)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /postcss-loader@6.2.1(postcss@8.4.39)(webpack@5.84.1): + resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} + engines: {node: '>= 12.13.0'} + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: 5.84.1 dependencies: cosmiconfig: 7.1.0 klona: 2.0.6 postcss: 8.4.39 semver: 7.6.2 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - postcss-merge-longhand@5.1.7(postcss@8.4.39): + /postcss-merge-longhand@5.1.7(postcss@8.4.39): + resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 stylehacks: 5.1.1(postcss@8.4.39) + dev: true - postcss-merge-longhand@6.0.5(postcss@8.4.39): + /postcss-merge-longhand@6.0.5(postcss@8.4.39): + resolution: {integrity: sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 stylehacks: 6.1.1(postcss@8.4.39) + dev: true - postcss-merge-rules@5.1.4(postcss@8.4.39): + /postcss-merge-rules@5.1.4(postcss@8.4.39): + resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: browserslist: 4.23.1 caniuse-api: 3.0.0 cssnano-utils: 3.1.0(postcss@8.4.39) postcss: 8.4.39 postcss-selector-parser: 6.1.0 + dev: true - postcss-merge-rules@6.1.1(postcss@8.4.39): + /postcss-merge-rules@6.1.1(postcss@8.4.39): + resolution: {integrity: sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: browserslist: 4.23.1 caniuse-api: 3.0.0 cssnano-utils: 4.0.2(postcss@8.4.39) postcss: 8.4.39 postcss-selector-parser: 6.1.0 + dev: true - postcss-minify-font-values@5.1.0(postcss@8.4.39): + /postcss-minify-font-values@5.1.0(postcss@8.4.39): + resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-minify-font-values@6.1.0(postcss@8.4.39): + /postcss-minify-font-values@6.1.0(postcss@8.4.39): + resolution: {integrity: sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-minify-gradients@5.1.1(postcss@8.4.39): + /postcss-minify-gradients@5.1.1(postcss@8.4.39): + resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: colord: 2.9.3 cssnano-utils: 3.1.0(postcss@8.4.39) postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-minify-gradients@6.0.3(postcss@8.4.39): + /postcss-minify-gradients@6.0.3(postcss@8.4.39): + resolution: {integrity: sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: colord: 2.9.3 cssnano-utils: 4.0.2(postcss@8.4.39) postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-minify-params@5.1.4(postcss@8.4.39): + /postcss-minify-params@5.1.4(postcss@8.4.39): + resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: browserslist: 4.23.1 cssnano-utils: 3.1.0(postcss@8.4.39) postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-minify-params@6.1.0(postcss@8.4.39): + /postcss-minify-params@6.1.0(postcss@8.4.39): + resolution: {integrity: sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: browserslist: 4.23.1 cssnano-utils: 4.0.2(postcss@8.4.39) postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-minify-selectors@5.2.1(postcss@8.4.39): + /postcss-minify-selectors@5.2.1(postcss@8.4.39): + resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: postcss: 8.4.39 postcss-selector-parser: 6.1.0 + dev: true - postcss-minify-selectors@6.0.4(postcss@8.4.39): + /postcss-minify-selectors@6.0.4(postcss@8.4.39): + resolution: {integrity: sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 postcss-selector-parser: 6.1.0 + dev: true - postcss-modules-extract-imports@1.2.1: + /postcss-modules-extract-imports@1.2.1: + resolution: {integrity: sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==} dependencies: postcss: 6.0.23 + dev: true - postcss-modules-extract-imports@2.0.0: + /postcss-modules-extract-imports@2.0.0: + resolution: {integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==} + engines: {node: '>= 6'} dependencies: postcss: 7.0.39 + dev: false - postcss-modules-extract-imports@3.1.0(postcss@8.4.39): + /postcss-modules-extract-imports@3.1.0(postcss@8.4.39): + resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 dependencies: postcss: 8.4.39 - postcss-modules-local-by-default@1.2.0: + /postcss-modules-local-by-default@1.2.0: + resolution: {integrity: sha512-X4cquUPIaAd86raVrBwO8fwRfkIdbwFu7CTfEOjiZQHVQwlHRSkTgH5NLDmMm5+1hQO8u6dZ+TOOJDbay1hYpA==} dependencies: css-selector-tokenizer: 0.7.3 postcss: 6.0.23 + dev: true - postcss-modules-local-by-default@3.0.3: + /postcss-modules-local-by-default@3.0.3: + resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==} + engines: {node: '>= 6'} dependencies: icss-utils: 4.1.1 postcss: 7.0.39 postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 + dev: false - postcss-modules-local-by-default@4.0.5(postcss@8.4.39): + /postcss-modules-local-by-default@4.0.5(postcss@8.4.39): + resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 dependencies: icss-utils: 5.1.0(postcss@8.4.39) postcss: 8.4.39 postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 - postcss-modules-scope@1.1.0: + /postcss-modules-scope@1.1.0: + resolution: {integrity: sha512-LTYwnA4C1He1BKZXIx1CYiHixdSe9LWYVKadq9lK5aCCMkoOkFyZ7aigt+srfjlRplJY3gIol6KUNefdMQJdlw==} dependencies: css-selector-tokenizer: 0.7.3 postcss: 6.0.23 + dev: true - postcss-modules-scope@2.2.0: + /postcss-modules-scope@2.2.0: + resolution: {integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==} + engines: {node: '>= 6'} dependencies: postcss: 7.0.39 postcss-selector-parser: 6.1.0 + dev: false - postcss-modules-scope@3.2.0(postcss@8.4.39): + /postcss-modules-scope@3.2.0(postcss@8.4.39): + resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 dependencies: postcss: 8.4.39 postcss-selector-parser: 6.1.0 - postcss-modules-values@1.3.0: + /postcss-modules-values@1.3.0: + resolution: {integrity: sha512-i7IFaR9hlQ6/0UgFuqM6YWaCfA1Ej8WMg8A5DggnH1UGKJvTV/ugqq/KaULixzzOi3T/tF6ClBXcHGCzdd5unA==} dependencies: icss-replace-symbols: 1.1.0 postcss: 6.0.23 + dev: true - postcss-modules-values@3.0.0: + /postcss-modules-values@3.0.0: + resolution: {integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==} dependencies: icss-utils: 4.1.1 postcss: 7.0.39 + dev: false - postcss-modules-values@4.0.0(postcss@8.4.39): + /postcss-modules-values@4.0.0(postcss@8.4.39): + resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 dependencies: icss-utils: 5.1.0(postcss@8.4.39) postcss: 8.4.39 - postcss-modules@4.3.1(postcss@8.4.39): + /postcss-modules@4.3.1(postcss@8.4.39): + resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==} + peerDependencies: + postcss: ^8.0.0 dependencies: generic-names: 4.0.0 icss-replace-symbols: 1.1.0 @@ -50158,258 +43220,476 @@ snapshots: postcss-modules-scope: 3.2.0(postcss@8.4.39) postcss-modules-values: 4.0.0(postcss@8.4.39) string-hash: 1.1.3 + dev: true - postcss-normalize-charset@5.1.0(postcss@8.4.39): + /postcss-normalize-charset@5.1.0(postcss@8.4.39): + resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: postcss: 8.4.39 + dev: true - postcss-normalize-charset@6.0.2(postcss@8.4.39): + /postcss-normalize-charset@6.0.2(postcss@8.4.39): + resolution: {integrity: sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 + dev: true - postcss-normalize-display-values@5.1.0(postcss@8.4.39): + /postcss-normalize-display-values@5.1.0(postcss@8.4.39): + resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-normalize-display-values@6.0.2(postcss@8.4.39): + /postcss-normalize-display-values@6.0.2(postcss@8.4.39): + resolution: {integrity: sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-normalize-positions@5.1.1(postcss@8.4.39): + /postcss-normalize-positions@5.1.1(postcss@8.4.39): + resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-normalize-positions@6.0.2(postcss@8.4.39): + /postcss-normalize-positions@6.0.2(postcss@8.4.39): + resolution: {integrity: sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-normalize-repeat-style@5.1.1(postcss@8.4.39): + /postcss-normalize-repeat-style@5.1.1(postcss@8.4.39): + resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-normalize-repeat-style@6.0.2(postcss@8.4.39): + /postcss-normalize-repeat-style@6.0.2(postcss@8.4.39): + resolution: {integrity: sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-normalize-string@5.1.0(postcss@8.4.39): + /postcss-normalize-string@5.1.0(postcss@8.4.39): + resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-normalize-string@6.0.2(postcss@8.4.39): + /postcss-normalize-string@6.0.2(postcss@8.4.39): + resolution: {integrity: sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-normalize-timing-functions@5.1.0(postcss@8.4.39): + /postcss-normalize-timing-functions@5.1.0(postcss@8.4.39): + resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-normalize-timing-functions@6.0.2(postcss@8.4.39): + /postcss-normalize-timing-functions@6.0.2(postcss@8.4.39): + resolution: {integrity: sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-normalize-unicode@5.1.1(postcss@8.4.39): + /postcss-normalize-unicode@5.1.1(postcss@8.4.39): + resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: browserslist: 4.23.1 postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-normalize-unicode@6.1.0(postcss@8.4.39): + /postcss-normalize-unicode@6.1.0(postcss@8.4.39): + resolution: {integrity: sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: browserslist: 4.23.1 postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-normalize-url@5.1.0(postcss@8.4.39): + /postcss-normalize-url@5.1.0(postcss@8.4.39): + resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: normalize-url: 6.1.0 postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-normalize-url@6.0.2(postcss@8.4.39): + /postcss-normalize-url@6.0.2(postcss@8.4.39): + resolution: {integrity: sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-normalize-whitespace@5.1.1(postcss@8.4.39): + /postcss-normalize-whitespace@5.1.1(postcss@8.4.39): + resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-normalize-whitespace@6.0.2(postcss@8.4.39): + /postcss-normalize-whitespace@6.0.2(postcss@8.4.39): + resolution: {integrity: sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-ordered-values@5.1.3(postcss@8.4.39): + /postcss-ordered-values@5.1.3(postcss@8.4.39): + resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: cssnano-utils: 3.1.0(postcss@8.4.39) postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-ordered-values@6.0.2(postcss@8.4.39): + /postcss-ordered-values@6.0.2(postcss@8.4.39): + resolution: {integrity: sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: cssnano-utils: 4.0.2(postcss@8.4.39) postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-reduce-initial@5.1.2(postcss@8.4.39): + /postcss-reduce-initial@5.1.2(postcss@8.4.39): + resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: browserslist: 4.23.1 caniuse-api: 3.0.0 postcss: 8.4.39 + dev: true - postcss-reduce-initial@6.1.0(postcss@8.4.39): + /postcss-reduce-initial@6.1.0(postcss@8.4.39): + resolution: {integrity: sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: browserslist: 4.23.1 caniuse-api: 3.0.0 postcss: 8.4.39 + dev: true - postcss-reduce-transforms@5.1.0(postcss@8.4.39): + /postcss-reduce-transforms@5.1.0(postcss@8.4.39): + resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-reduce-transforms@6.0.2(postcss@8.4.39): + /postcss-reduce-transforms@6.0.2(postcss@8.4.39): + resolution: {integrity: sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 + dev: true - postcss-selector-parser@6.1.0: + /postcss-selector-parser@6.1.0: + resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==} + engines: {node: '>=4'} dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-svgo@5.1.0(postcss@8.4.39): + /postcss-svgo@5.1.0(postcss@8.4.39): + resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 svgo: 2.8.0 + dev: true - postcss-svgo@6.0.3(postcss@8.4.39): + /postcss-svgo@6.0.3(postcss@8.4.39): + resolution: {integrity: sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==} + engines: {node: ^14 || ^16 || >= 18} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 svgo: 3.3.2 + dev: true - postcss-unique-selectors@5.1.1(postcss@8.4.39): + /postcss-unique-selectors@5.1.1(postcss@8.4.39): + resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: postcss: 8.4.39 postcss-selector-parser: 6.1.0 + dev: true - postcss-unique-selectors@6.0.4(postcss@8.4.39): + /postcss-unique-selectors@6.0.4(postcss@8.4.39): + resolution: {integrity: sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: postcss: 8.4.39 postcss-selector-parser: 6.1.0 + dev: true - postcss-value-parser@3.3.1: {} + /postcss-value-parser@3.3.1: + resolution: {integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==} - postcss-value-parser@4.2.0: {} + /postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - postcss@6.0.23: + /postcss@6.0.23: + resolution: {integrity: sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==} + engines: {node: '>=4.0.0'} dependencies: chalk: 2.4.2 source-map: 0.6.1 supports-color: 5.5.0 + dev: true - postcss@7.0.39: + /postcss@7.0.39: + resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==} + engines: {node: '>=6.0.0'} dependencies: picocolors: 0.2.1 source-map: 0.6.1 - postcss@8.4.39: + /postcss@8.4.39: + resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==} + engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.7 picocolors: 1.0.1 source-map-js: 1.2.0 - preferred-pm@3.1.4: + /preferred-pm@3.1.4: + resolution: {integrity: sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==} + engines: {node: '>=10'} dependencies: find-up: 5.0.0 find-yarn-workspace-root2: 1.2.16 path-exists: 4.0.0 which-pm: 2.2.0 + dev: true - prelude-ls@1.2.1: {} + /prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} - prepend-http@2.0.0: {} + /prepend-http@2.0.0: + resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} + engines: {node: '>=4'} + dev: false - prettier@1.19.1: {} + /prettier@1.19.1: + resolution: {integrity: sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==} + engines: {node: '>=4'} + hasBin: true + dev: true - prettier@2.3.0: {} + /prettier@2.3.0: + resolution: {integrity: sha512-kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w==} + engines: {node: '>=10.13.0'} + hasBin: true - prettier@2.8.8: {} + /prettier@2.8.8: + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} + engines: {node: '>=10.13.0'} + hasBin: true + dev: true - pretty-bytes@5.6.0: {} + /pretty-bytes@5.6.0: + resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} + engines: {node: '>=6'} + dev: true - pretty-error@2.1.2: + /pretty-error@2.1.2: + resolution: {integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==} dependencies: lodash: 4.17.21 renderkid: 2.0.7 + dev: false - pretty-error@4.0.0: + /pretty-error@4.0.0: + resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} dependencies: lodash: 4.17.21 renderkid: 3.0.0 - pretty-format@26.6.2: + /pretty-format@26.6.2: + resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} + engines: {node: '>= 10'} dependencies: '@jest/types': 26.6.2 ansi-regex: 5.0.1 ansi-styles: 4.3.0 react-is: 17.0.2 + dev: true - pretty-format@27.5.1: + /pretty-format@27.5.1: + resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: ansi-regex: 5.0.1 ansi-styles: 5.2.0 react-is: 17.0.2 + dev: true - pretty-format@29.7.0: + /pretty-format@29.7.0: + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 react-is: 18.3.1 - pretty-hrtime@1.0.3: {} + /pretty-hrtime@1.0.3: + resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} + engines: {node: '>= 0.8'} - private@0.1.8: {} + /private@0.1.8: + resolution: {integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==} + engines: {node: '>= 0.6'} - proc-log@2.0.1: {} + /proc-log@2.0.1: + resolution: {integrity: sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dev: true - proc-log@3.0.0: {} + /proc-log@3.0.0: + resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dev: true - process-nextick-args@2.0.1: {} + /process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - process-on-spawn@1.0.0: + /process-on-spawn@1.0.0: + resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==} + engines: {node: '>=8'} dependencies: fromentries: 1.3.2 + dev: true - process@0.11.10: {} + /process@0.11.10: + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} + engines: {node: '>= 0.6.0'} - progress@2.0.3: {} + /progress@2.0.3: + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + engines: {node: '>=0.4.0'} - promise-all-reject-late@1.0.1: {} + /promise-all-reject-late@1.0.1: + resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==} + dev: true - promise-call-limit@1.0.2: {} + /promise-call-limit@1.0.2: + resolution: {integrity: sha512-1vTUnfI2hzui8AEIixbdAJlFY4LFDXqQswy/2eOlThAscXCY4It8FdVuI0fMJGAB2aWGbdQf/gv0skKYXmdrHA==} + dev: true - promise-inflight@1.0.1: {} + /promise-inflight@1.0.1: + resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} + peerDependencies: + bluebird: '*' + peerDependenciesMeta: + bluebird: + optional: true - promise-retry@2.0.1: + /promise-retry@2.0.1: + resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} + engines: {node: '>=10'} dependencies: err-code: 2.0.3 retry: 0.12.0 + dev: true - promise.allsettled@1.0.7: + /promise.allsettled@1.0.7: + resolution: {integrity: sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==} + engines: {node: '>= 0.4'} dependencies: array.prototype.map: 1.0.7 call-bind: 1.0.7 @@ -50417,93 +43697,139 @@ snapshots: es-abstract: 1.23.3 get-intrinsic: 1.2.4 iterate-value: 1.0.2 + dev: false - promise.prototype.finally@3.1.8: + /promise.prototype.finally@3.1.8: + resolution: {integrity: sha512-aVDtsXOml9iuMJzUco9J1je/UrIT3oMYfWkCTiUhkt+AvZw72q4dUZnR/R/eB3h5GeAagQVXvM1ApoYniJiwoA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-errors: 1.3.0 set-function-name: 2.0.2 + dev: false - promise.series@0.2.0: {} + /promise.series@0.2.0: + resolution: {integrity: sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==} + engines: {node: '>=0.12'} + dev: true - promise@7.0.4: + /promise@7.0.4: + resolution: {integrity: sha512-8z1gTSL9cMgqCx8zvMYhzT0eQURAQNSQqR8B2hGfCYkAzt1vjReVdKBv4YwGw3OXAPaxfm4aR0gLoBUon4VmmA==} dependencies: asap: 2.0.6 + dev: true - promise@8.3.0: + /promise@8.3.0: + resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} dependencies: asap: 2.0.6 + dev: false - prompts@2.4.2: + /prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} dependencies: kleur: 3.0.3 sisteransi: 1.0.5 - promzard@0.3.0: + /promzard@0.3.0: + resolution: {integrity: sha512-JZeYqd7UAcHCwI+sTOeUDYkvEU+1bQ7iE0UT1MgB/tERkAPkesW46MrpIySzODi+owTjZtiF8Ay5j9m60KmMBw==} dependencies: read: 1.0.7 + dev: true - prop-types@15.8.1: + /prop-types@15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 react-is: 16.13.1 - property-information@5.6.0: + /property-information@5.6.0: + resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} dependencies: xtend: 4.0.2 - property-information@6.5.0: {} + /property-information@6.5.0: + resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} + dev: false - proto-list@1.2.4: {} + /proto-list@1.2.4: + resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} - protocols@2.0.1: {} + /protocols@2.0.1: + resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} + dev: true - proxy-addr@2.0.7: + /proxy-addr@2.0.7: + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + engines: {node: '>= 0.10'} dependencies: forwarded: 0.2.0 ipaddr.js: 1.9.1 - proxy-from-env@1.0.0: {} + /proxy-from-env@1.0.0: + resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==} + dev: true - proxy-from-env@1.1.0: {} + /proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} - prr@1.0.1: {} + /prr@1.0.1: + resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} + requiresBuild: true - pseudomap@1.0.2: {} + /pseudomap@1.0.2: + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} + dev: true - psl@1.9.0: {} + /psl@1.9.0: + resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + dev: true - pump@2.0.1: + /pump@2.0.1: + resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} dependencies: end-of-stream: 1.4.4 once: 1.4.0 + dev: true - pump@3.0.0: + /pump@3.0.0: + resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} dependencies: end-of-stream: 1.4.4 once: 1.4.0 - pumpify@1.5.1: + /pumpify@1.5.1: + resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} dependencies: duplexify: 3.7.1 inherits: 2.0.4 pump: 2.0.1 + dev: true - punycode@1.4.1: {} + /punycode@1.4.1: + resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} - punycode@2.3.1: {} + /punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} - pupa@2.1.1: + /pupa@2.1.1: + resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==} + engines: {node: '>=8'} dependencies: escape-goat: 2.1.1 + dev: false - puppeteer-core@2.1.1: + /puppeteer-core@2.1.1: + resolution: {integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==} + engines: {node: '>=8.16.0'} dependencies: '@types/mime-types': 2.1.4 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) extract-zip: 1.7.0 https-proxy-agent: 4.0.0 mime: 2.6.0 @@ -50517,132 +43843,212 @@ snapshots: - supports-color - utf-8-validate - pure-rand@6.1.0: {} + /pure-rand@6.1.0: + resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} + + /q@1.5.1: + resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} + engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + deprecated: |- + You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. - q@1.5.1: {} + (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) + dev: true - qr.js@0.0.0: {} + /qr.js@0.0.0: + resolution: {integrity: sha512-c4iYnWb+k2E+vYpRimHqSu575b1/wKl4XFeJGpFmrJQz5I88v9aY2czh7s0w36srfCM1sXgC/xpoJz5dJfq+OQ==} + dev: false - qrcode.react@1.0.1(react@18.3.1): + /qrcode.react@1.0.1(react@18.3.1): + resolution: {integrity: sha512-8d3Tackk8IRLXTo67Y+c1rpaiXjoz/Dd2HpcMdW//62/x8J1Nbho14Kh8x974t9prsLHN6XqVgcnRiBGFptQmg==} + peerDependencies: + react: ^15.5.3 || ^16.0.0 || ^17.0.0 dependencies: loose-envify: 1.4.0 prop-types: 15.8.1 qr.js: 0.0.0 react: 18.3.1 + dev: false - qs@6.10.4: + /qs@6.10.4: + resolution: {integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==} + engines: {node: '>=0.6'} dependencies: side-channel: 1.0.6 + dev: true - qs@6.11.0: + /qs@6.11.0: + resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} + engines: {node: '>=0.6'} dependencies: side-channel: 1.0.6 - qs@6.12.3: + /qs@6.12.3: + resolution: {integrity: sha512-AWJm14H1vVaO/iNZ4/hO+HyaTehuy9nRqVdkTqlJt0HWvBiBIEXFmb4C0DGeYo3Xes9rrEW+TxHsaigCbN5ICQ==} + engines: {node: '>=0.6'} dependencies: side-channel: 1.0.6 - query-string@7.1.3: + /query-string@7.1.3: + resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} + engines: {node: '>=6'} dependencies: decode-uri-component: 0.2.2 filter-obj: 1.1.0 split-on-first: 1.1.0 strict-uri-encode: 2.0.0 + dev: true - querystring@0.2.1: {} + /querystring@0.2.1: + resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} + engines: {node: '>=0.4.x'} + deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. + dev: true - querystringify@2.2.0: {} + /querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} - queue-microtask@1.2.3: {} + /queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - quick-lru@4.0.1: {} + /quick-lru@4.0.1: + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} + dev: true - quick-lru@5.1.1: {} + /quick-lru@5.1.1: + resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} + engines: {node: '>=10'} + dev: true - raf@3.4.1: + /raf@3.4.1: + resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} dependencies: performance-now: 2.1.0 + dev: false - ramda@0.28.0: {} + /ramda@0.28.0: + resolution: {integrity: sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA==} - ramda@0.29.0: {} + /ramda@0.29.0: + resolution: {integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==} + dev: true - randomatic@3.1.1: + /randomatic@3.1.1: + resolution: {integrity: sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==} + engines: {node: '>= 0.10.0'} dependencies: is-number: 4.0.0 kind-of: 6.0.3 math-random: 1.0.4 + dev: true - randombytes@2.1.0: + /randombytes@2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} dependencies: safe-buffer: 5.2.1 - range-parser@1.2.1: {} + /range-parser@1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} - raw-body@2.5.2: + /raw-body@2.5.2: + resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} + engines: {node: '>= 0.8'} dependencies: bytes: 3.1.2 http-errors: 2.0.0 iconv-lite: 0.4.24 unpipe: 1.0.0 - raw-loader@4.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /raw-loader@4.0.2(webpack@5.84.1): + resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - rc-motion@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /rc-motion@2.9.2(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-fUAhHKLDdkAXIDLH0GYwof3raS58dtNUmzLF2MeiR8o6n4thNpSDQhOqQzWE4WfFZDCi9VEN8n7tiB7czREcyw==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' dependencies: '@babel/runtime': 7.24.7 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - rc-resize-observer@1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /rc-resize-observer@1.4.0(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-PnMVyRid9JLxFavTjeDXEXo65HCRqbmLBw9xX9gfC4BZiSzbLXKzW3jPz+J0P71pLbD5tBMTT+mkstV5gD0c9Q==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' dependencies: '@babel/runtime': 7.24.7 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) resize-observer-polyfill: 1.5.1 - rc-tree@4.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /rc-tree@4.2.2(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-V1hkJt092VrOVjNyfj5IYbZKRMHxWihZarvA5hPL/eqm7o2+0SNkeidFYm7LVVBrAKBpOpa0l8xt04uiqOd+6w==} + engines: {node: '>=10.x'} + peerDependencies: + react: '*' + react-dom: '*' dependencies: '@babel/runtime': 7.24.7 classnames: 2.5.1 - rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - rc-virtual-list: 3.14.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-virtual-list: 3.14.3(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - rc-util@5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /rc-util@5.43.0(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-AzC7KKOXFqAdIBqdGWepL9Xn7cm3vnAmjlHqUnoQaTMZYhM4VlXGLkkHHxj/BZ7Td0+SOPKB4RGPboBVKT9htw==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' dependencies: '@babel/runtime': 7.24.7 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - rc-virtual-list@3.14.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /rc-virtual-list@3.14.3(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-6+6wiEhdqakNBnbRJymgMlh+90qpkgqherTRo1l1cX7mK6F9hWsazPczmP0lA+64yhC9/t+M9Dh5pjvDWimn8A==} + engines: {node: '>=8.x'} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' dependencies: '@babel/runtime': 7.24.7 classnames: 2.5.1 - rc-resize-observer: 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-resize-observer: 1.4.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - rc@1.2.8: + /rc@1.2.8: + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + hasBin: true dependencies: deep-extend: 0.6.0 ini: 1.3.8 minimist: 1.2.8 strip-json-comments: 2.0.1 + dev: false - react-app-polyfill@1.0.6: + /react-app-polyfill@1.0.6: + resolution: {integrity: sha512-OfBnObtnGgLGfweORmdZbyEz+3dgVePQBb3zipiaDsMHV1NpWm0rDFYIVXFV/AK+x4VIIfWHhrdMIeoTLyRr2g==} + engines: {node: '>=6'} dependencies: core-js: 3.37.1 object-assign: 4.1.1 @@ -50650,13 +44056,22 @@ snapshots: raf: 3.4.1 regenerator-runtime: 0.13.11 whatwg-fetch: 3.6.20 + dev: false - react-codemirror2@6.0.1(codemirror@5.65.16)(react@18.3.1): + /react-codemirror2@6.0.1(codemirror@5.65.16)(react@18.3.1): + resolution: {integrity: sha512-rutEKVgvFhWcy/GeVA1hFbqrO89qLqgqdhUr7YhYgIzdyICdlRQv+ztuNvOFQMXrO0fLt0VkaYOdMdYdQgsSUA==} + peerDependencies: + codemirror: 5.x + react: '>=15.5 <=16.x' dependencies: codemirror: 5.65.16 react: 18.3.1 + dev: false - react-color@2.19.3(react@18.3.1): + /react-color@2.19.3(react@18.3.1): + resolution: {integrity: sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==} + peerDependencies: + react: '*' dependencies: '@icons/material': 0.2.4(react@18.3.1) lodash: 4.17.21 @@ -50666,29 +44081,49 @@ snapshots: react: 18.3.1 reactcss: 1.2.3(react@18.3.1) tinycolor2: 1.6.0 + dev: false - react-docgen-typescript-loader@3.7.2(typescript@4.9.5)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /react-docgen-typescript-loader@3.7.2(typescript@4.9.5)(webpack@5.84.1): + resolution: {integrity: sha512-fNzUayyUGzSyoOl7E89VaPKJk9dpvdSgyXg81cUkwy0u+NBvkzQG3FC5WBIlXda0k/iaxS+PWi+OC+tUiGxzPA==} + peerDependencies: + typescript: '*' dependencies: - '@webpack-contrib/schema-utils': 1.0.0-beta.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + '@webpack-contrib/schema-utils': 1.0.0-beta.0(webpack@5.84.1) loader-utils: 1.4.2 react-docgen-typescript: 1.22.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - webpack + dev: true - react-docgen-typescript@1.22.0(typescript@4.9.5): + /react-docgen-typescript@1.22.0(typescript@4.9.5): + resolution: {integrity: sha512-MPLbF8vzRwAG3GcjdL+OHQlhgtWsLTXs+7uJiHfEeT3Ur7IsZaNYqRTLQ9sj2nB6M6jylcPCeCmH7qbszJmecg==} + peerDependencies: + typescript: '>= 3.x' dependencies: typescript: 4.9.5 + dev: true - react-docgen-typescript@2.2.2(typescript@4.9.5): + /react-docgen-typescript@2.2.2(typescript@4.9.5): + resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} + peerDependencies: + typescript: '>= 4.3.x' dependencies: typescript: 4.9.5 + dev: false - react-docgen-typescript@2.2.2(typescript@5.1.6): + /react-docgen-typescript@2.2.2(typescript@5.1.6): + resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} + peerDependencies: + typescript: '>= 4.3.x' dependencies: typescript: 5.1.6 + dev: true - react-docgen@5.4.3: + /react-docgen@5.4.3: + resolution: {integrity: sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA==} + engines: {node: '>=8.10.0'} + hasBin: true dependencies: '@babel/core': 7.24.7 '@babel/generator': 7.24.7 @@ -50702,8 +44137,11 @@ snapshots: strip-indent: 3.0.0 transitivePeerDependencies: - supports-color + dev: false - react-docgen@7.0.3: + /react-docgen@7.0.3: + resolution: {integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==} + engines: {node: '>=16.14.0'} dependencies: '@babel/core': 7.24.7 '@babel/traverse': 7.24.7 @@ -50717,45 +44155,89 @@ snapshots: strip-indent: 4.0.0 transitivePeerDependencies: - supports-color + dev: true + + /react-dom@16.14.0(react@16.14.0): + resolution: {integrity: sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==} + peerDependencies: + react: ^16.14.0 + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + prop-types: 15.8.1 + react: 16.14.0 + scheduler: 0.19.1 + dev: false - react-dom@18.3.1(react@18.3.1): + /react-dom@18.3.1(react@18.3.1): + resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + peerDependencies: + react: ^18.3.1 dependencies: loose-envify: 1.4.0 react: 18.3.1 scheduler: 0.23.2 - react-draggable@4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-draggable@4.4.6(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-LtY5Xw1zTPqHkVmtM3X8MUOxNDOUhv/khTgBgrUvwaS064bwVvxT+q5El0uUFNx5IEPKXuRejr7UqLwBIg5pdw==} + peerDependencies: + react: '>= 16.3.0' + react-dom: '>= 16.3.0' dependencies: clsx: 1.2.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + dev: false - react-element-to-jsx-string@14.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-element-to-jsx-string@14.3.4(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} + peerDependencies: + react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 + react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 dependencies: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 17.0.2 + dev: false - react-element-to-jsx-string@15.0.0: + /react-element-to-jsx-string@15.0.0: + resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==} + peerDependencies: + react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 + react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 dependencies: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 react-is: 18.1.0 + dev: true - react-fast-compare@2.0.4: {} + /react-fast-compare@2.0.4: + resolution: {integrity: sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==} + dev: false - react-fast-compare@3.2.2: {} + /react-fast-compare@3.2.2: + resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} + dev: false - react-final-form@6.5.9(final-form@4.20.10)(react@18.3.1): + /react-final-form@6.5.9(final-form@4.20.10)(react@18.3.1): + resolution: {integrity: sha512-x3XYvozolECp3nIjly+4QqxdjSSWfcnpGEL5K8OBT6xmGrq5kBqbA6+/tOqoom9NwqIPPbxPNsOViFlbKgowbA==} + peerDependencies: + final-form: ^4.20.4 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@babel/runtime': 7.24.7 final-form: 4.20.10 react: 18.3.1 + dev: false - react-floater@0.7.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-floater@0.7.9(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-NXqyp9o8FAXOATOEo0ZpyaQ2KPb4cmPMXGWkx377QtJkIXHlHRAGer7ai0r0C1kG5gf+KJ6Gy+gdNIiosvSicg==} + peerDependencies: + react: 15 - 18 + react-dom: 15 - 18 dependencies: deepmerge: 4.3.1 is-lite: 0.8.2 @@ -50764,20 +44246,39 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) tree-changes: 0.9.3 + dev: false - react-head@3.4.2: + /react-head@3.4.2: + resolution: {integrity: sha512-mnl6u7E0SSzY9w+mExKGVz8vW/oObUTnj+vpRaZF6jcdjFcCGs0vl8MRwlRws56dye3f1CpzU7C/hz3b3S2BBA==} + peerDependencies: + react: '>=16.3' + react-dom: '>=16.3' dependencies: '@babel/runtime': 7.24.7 + dev: false - react-helmet@5.2.1(react@18.3.1): + /react-helmet@5.2.1(react@18.3.1): + resolution: {integrity: sha512-CnwD822LU8NDBnjCpZ4ySh8L6HYyngViTZLfBBb3NjtrpN8m49clH8hidHouq20I51Y6TpCTISCBbqiY5GamwA==} + peerDependencies: + react: '>=15.0.0' dependencies: object-assign: 4.1.1 prop-types: 15.8.1 react: 18.3.1 react-fast-compare: 2.0.4 react-side-effect: 1.2.0(react@18.3.1) + dev: false - react-hot-loader@4.13.1(@types/react@18.0.18): + /react-hot-loader@4.13.1: + resolution: {integrity: sha512-ZlqCfVRqDJmMXTulUGic4lN7Ic1SXgHAFw7y/Jb7t25GBgTR0fYAJ8uY4mrpxjRyWGWmqw77qJQGnYbzCvBU7g==} + engines: {node: '>= 6'} + peerDependencies: + '@types/react': 18.0.18 + react: ^15.0.0 || ^16.0.0 || ^17.0.0 + react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 + peerDependenciesMeta: + '@types/react': + optional: true dependencies: fast-levenshtein: 2.0.6 global: 4.4.0 @@ -50787,39 +44288,67 @@ snapshots: react-lifecycles-compat: 3.0.4 shallowequal: 1.1.0 source-map: 0.7.4 - optionalDependencies: - '@types/react': 18.0.18 + dev: true - react-i18next@11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-i18next@11.18.6(i18next@21.10.0)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-yHb2F9BiT0lqoQDt8loZ5gWP331GwctHz9tYQ8A2EIEUu+CcEdjBLQWli1USG3RdWQt3W+jqQLg/d4rrQR96LA==} + peerDependencies: + i18next: '>= 19.0.0' + react: '>= 16.8.0' + react-dom: '*' + react-native: '*' + peerDependenciesMeta: + react-dom: + optional: true + react-native: + optional: true dependencies: '@babel/runtime': 7.24.7 html-parse-stringify: 3.0.1 i18next: 21.10.0 react: 18.3.1 - optionalDependencies: react-dom: 18.3.1(react@18.3.1) + dev: false - react-innertext@1.1.5(@types/react@18.0.18)(react@18.3.1): + /react-innertext@1.1.5(@types/react@18.0.18)(react@18.3.1): + resolution: {integrity: sha512-PWAqdqhxhHIv80dT9znP2KvS+hfkbRovFp4zFYHFFlOoQLRiawIic81gKb3U1wEyJZgMwgs3JoLtwryASRWP3Q==} + peerDependencies: + '@types/react': 18.0.18 + react: '>=0.0.0 <=99' dependencies: '@types/react': 18.0.18 react: 18.3.1 + dev: false - react-inspector@5.1.1(react@18.3.1): + /react-inspector@5.1.1(react@18.3.1): + resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==} + peerDependencies: + react: ^16.8.4 || ^17.0.0 dependencies: '@babel/runtime': 7.24.7 is-dom: 1.1.0 prop-types: 15.8.1 react: 18.3.1 + dev: true - react-is@16.13.1: {} + /react-is@16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} - react-is@17.0.2: {} + /react-is@17.0.2: + resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} - react-is@18.1.0: {} + /react-is@18.1.0: + resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==} + dev: true - react-is@18.3.1: {} + /react-is@18.3.1: + resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} - react-joyride@2.8.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-joyride@2.8.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-2QY8HB1G0I2OT0PKMUz7gg2HAjdkG2Bqi13r0Bb1V16PAwfb9khn4wWBTOJsGsjulbAWiQ3/0YrgNUHGFmuifw==} + peerDependencies: + react: 15 - 18 + react-dom: 15 - 18 dependencies: '@gilbarbara/deep-equal': 0.3.1 deep-diff: 1.0.2 @@ -50827,7 +44356,7 @@ snapshots: is-lite: 1.2.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-floater: 0.7.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-floater: 0.7.9(react-dom@18.3.1)(react@18.3.1) react-innertext: 1.1.5(@types/react@18.0.18)(react@18.3.1) react-is: 16.13.1 scroll: 3.0.1 @@ -50836,10 +44365,17 @@ snapshots: type-fest: 4.20.1 transitivePeerDependencies: - '@types/react' + dev: false - react-lifecycles-compat@3.0.4: {} + /react-lifecycles-compat@3.0.4: + resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} + dev: true - react-markdown@9.0.1(@types/react@18.0.18)(react@18.3.1): + /react-markdown@9.0.1(@types/react@18.0.18)(react@18.3.1): + resolution: {integrity: sha512-186Gw/vF1uRkydbsOIkcGXw7aHq0sZOCRFFjGrr7b9+nVZg4UfA4enXCaxm4fUzecU38sWfrNDitGhshuU7rdg==} + peerDependencies: + '@types/react': 18.0.18 + react: '>=18' dependencies: '@types/hast': 3.0.4 '@types/react': 18.0.18 @@ -50855,25 +44391,61 @@ snapshots: vfile: 6.0.1 transitivePeerDependencies: - supports-color + dev: false + + /react-notification-system@0.4.0(react-dom@16.14.0)(react@16.14.0): + resolution: {integrity: sha512-5WhXnjkYC07zqXruCiUXDU9iHjVxZlL1zgHpNgXk91A5ghV1AHrWVrJYo1XM4SnwlKy5NLdftkaTl+pTuVFAqw==} + peerDependencies: + react: "0.14.x || ^15.0.0 ||\_^16.0.0" + react-dom: 0.14.x || ^15.0.0 || ^16.0.0 + dependencies: + object-assign: 4.1.1 + prop-types: 15.8.1 + react: 16.14.0 + react-dom: 16.14.0(react@16.14.0) + dev: false - react-notification-system@0.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-notification-system@0.4.0(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-5WhXnjkYC07zqXruCiUXDU9iHjVxZlL1zgHpNgXk91A5ghV1AHrWVrJYo1XM4SnwlKy5NLdftkaTl+pTuVFAqw==} + peerDependencies: + react: "0.14.x || ^15.0.0 ||\_^16.0.0" + react-dom: 0.14.x || ^15.0.0 || ^16.0.0 dependencies: object-assign: 4.1.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + dev: false - react-popper@2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-popper@2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==} + peerDependencies: + '@popperjs/core': ^2.0.0 + react: ^16.8.0 || ^17 || ^18 + react-dom: ^16.8.0 || ^17 || ^18 dependencies: '@popperjs/core': 2.11.8 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-fast-compare: 3.2.2 warning: 4.0.3 + dev: false - react-property@2.0.0: {} + /react-property@2.0.0: + resolution: {integrity: sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw==} + dev: false - react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-redux@7.2.9(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==} + peerDependencies: + react: ^16.8.3 || ^17 || ^18 + react-dom: '*' + react-native: '*' + peerDependenciesMeta: + react-dom: + optional: true + react-native: + optional: true dependencies: '@babel/runtime': 7.24.7 '@types/react-redux': 7.1.33 @@ -50881,19 +44453,34 @@ snapshots: loose-envify: 1.4.0 prop-types: 15.8.1 react: 18.3.1 - react-is: 17.0.2 - optionalDependencies: react-dom: 18.3.1(react@18.3.1) + react-is: 17.0.2 + dev: false - react-refresh@0.10.0: {} + /react-refresh@0.10.0: + resolution: {integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==} + engines: {node: '>=0.10.0'} + dev: true - react-refresh@0.11.0: {} + /react-refresh@0.11.0: + resolution: {integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==} + engines: {node: '>=0.10.0'} + dev: false - react-refresh@0.14.2: {} + /react-refresh@0.14.2: + resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} + engines: {node: '>=0.10.0'} + dev: true - react-refresh@0.9.0: {} + /react-refresh@0.9.0: + resolution: {integrity: sha512-Gvzk7OZpiqKSkxsQvO/mbTN1poglhmAV7gR/DdIrRrSMXraRQQlfikRJOr3Nb9GTMPC5kof948Zy6jJZIFtDvQ==} + engines: {node: '>=0.10.0'} + dev: true - react-router-dom@4.3.1(react@18.3.1): + /react-router-dom@4.3.1(react@18.3.1): + resolution: {integrity: sha512-c/MlywfxDdCp7EnB7YfPMOfMD3tOtIjrQlj/CKfNMBxdmpJP8xcz5P/UAFn3JbnQCNUxsHyVVqllF9LhgVyFCA==} + peerDependencies: + react: '>=15' dependencies: history: 4.10.1 invariant: 2.2.4 @@ -50902,15 +44489,38 @@ snapshots: react: 18.3.1 react-router: 4.3.1(react@18.3.1) warning: 4.0.3 + dev: false + + /react-router-dom@6.24.1(react-dom@16.14.0)(react@16.14.0): + resolution: {integrity: sha512-U19KtXqooqw967Vw0Qcn5cOvrX5Ejo9ORmOtJMzYWtCT4/WOfFLIZGGsVLxcd9UkBO0mSTZtXqhZBsWlHr7+Sg==} + engines: {node: '>=14.0.0'} + peerDependencies: + react: '>=16.8' + react-dom: '>=16.8' + dependencies: + '@remix-run/router': 1.17.1 + react: 16.14.0 + react-dom: 16.14.0(react@16.14.0) + react-router: 6.24.1(react@16.14.0) + dev: false - react-router-dom@6.24.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-router-dom@6.24.1(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-U19KtXqooqw967Vw0Qcn5cOvrX5Ejo9ORmOtJMzYWtCT4/WOfFLIZGGsVLxcd9UkBO0mSTZtXqhZBsWlHr7+Sg==} + engines: {node: '>=14.0.0'} + peerDependencies: + react: '>=16.8' + react-dom: '>=16.8' dependencies: '@remix-run/router': 1.17.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-router: 6.24.1(react@18.3.1) + dev: true - react-router@4.3.1(react@18.3.1): + /react-router@4.3.1(react@18.3.1): + resolution: {integrity: sha512-yrvL8AogDh2X42Dt9iknk4wF4V8bWREPirFfS9gLU1huk6qK41sg7Z/1S81jjTrGHxa3B8R3J6xIkDAA6CVarg==} + peerDependencies: + react: '>=15' dependencies: history: 4.10.1 hoist-non-react-statics: 2.5.5 @@ -50920,32 +44530,68 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 warning: 4.0.3 + dev: false + + /react-router@6.24.1(react@16.14.0): + resolution: {integrity: sha512-PTXFXGK2pyXpHzVo3rR9H7ip4lSPZZc0bHG5CARmj65fTT6qG7sTngmb6lcYu1gf3y/8KxORoy9yn59pGpCnpg==} + engines: {node: '>=14.0.0'} + peerDependencies: + react: '>=16.8' + dependencies: + '@remix-run/router': 1.17.1 + react: 16.14.0 + dev: false - react-router@6.24.1(react@18.3.1): + /react-router@6.24.1(react@18.3.1): + resolution: {integrity: sha512-PTXFXGK2pyXpHzVo3rR9H7ip4lSPZZc0bHG5CARmj65fTT6qG7sTngmb6lcYu1gf3y/8KxORoy9yn59pGpCnpg==} + engines: {node: '>=14.0.0'} + peerDependencies: + react: '>=16.8' dependencies: '@remix-run/router': 1.17.1 react: 18.3.1 + dev: true - react-side-effect@1.2.0(react@18.3.1): + /react-side-effect@1.2.0(react@18.3.1): + resolution: {integrity: sha512-v1ht1aHg5k/thv56DRcjw+WtojuuDHFUgGfc+bFHOWsF4ZK6C2V57DO0Or0GPsg6+LSTE0M6Ry/gfzhzSwbc5w==} + peerDependencies: + react: ^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0 dependencies: react: 18.3.1 shallowequal: 1.1.0 + dev: false - react-smooth@4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-smooth@4.0.1(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-OE4hm7XqR0jNOq3Qmk9mFLyd6p2+j6bvbPJ7qlB7+oo0eNcL2l7WQzG6MBnT3EXY6xzkLMUBec3AfewJdA0J8w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: fast-equals: 5.0.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-transition-group: 4.4.5(react-dom@18.3.1)(react@18.3.1) + dev: false - react-top-loading-bar@1.2.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-top-loading-bar@1.2.0(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-5oNdy+DfD5JK06bcc/gsnnXHmml+d8eaBe3C8KQ3eLiH/BD8+FcwsgbAwqgOaRjuSeVQXdYN2JC2G1uVFtCLfA==} + engines: {node: '>=8', npm: '>=5'} + peerDependencies: + prop-types: ^15.5.4 + react: ^15.0.0 || ^16.0.0 + react-dom: ^15.0.0 || ^16.0.0 dependencies: prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + dev: false - react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /react-transition-group@4.4.5(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} + peerDependencies: + react: '>=16.6.0' + react-dom: '>=16.6.0' dependencies: '@babel/runtime': 7.24.7 dom-helpers: 5.2.1 @@ -50953,111 +44599,175 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + dev: false - react-world-flags@1.6.0(react@18.3.1): + /react-world-flags@1.6.0(react@18.3.1): + resolution: {integrity: sha512-eutSeAy5YKoVh14js/JUCSlA6EBk1n4k+bDaV+NkNB50VhnG+f4QDTpYycnTUTsZ5cqw/saPmk0Z4Fa0VVZ1Iw==} + peerDependencies: + react: '>=0.14' dependencies: react: 18.3.1 svg-country-flags: 1.2.10 svgo: 3.3.2 world-countries: 5.0.0 + dev: false + + /react@16.14.0: + resolution: {integrity: sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==} + engines: {node: '>=0.10.0'} + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + prop-types: 15.8.1 + dev: false - react@18.3.1: + /react@18.3.1: + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} + engines: {node: '>=0.10.0'} dependencies: loose-envify: 1.4.0 - reactcss@1.2.3(react@18.3.1): + /reactcss@1.2.3(react@18.3.1): + resolution: {integrity: sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==} + peerDependencies: + react: '*' dependencies: lodash: 4.17.21 react: 18.3.1 + dev: false - reactflow@11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /reactflow@11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-HBudD8BwZacOMqX8fbkiXbeBQs3nRezWVLCDurfc+tTeHsA7988uyaIOhrnKgYCcKtlpJaspsnxDZk+5JmmHxA==} + peerDependencies: + react: '>=17' + react-dom: '>=17' dependencies: - '@reactflow/background': 11.2.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@reactflow/controls': 11.1.13(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@reactflow/minimap': 11.5.2(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@reactflow/node-resizer': 2.1.0(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@reactflow/node-toolbar': 1.2.1(@types/react@18.0.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/background': 11.2.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/controls': 11.1.13(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/core': 11.7.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/minimap': 11.5.2(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/node-resizer': 2.1.0(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) + '@reactflow/node-toolbar': 1.2.1(@types/react@18.0.18)(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - immer + dev: false - read-cache@1.0.0: + /read-cache@1.0.0: + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} dependencies: pify: 2.3.0 + dev: true - read-cmd-shim@3.0.1: {} + /read-cmd-shim@3.0.1: + resolution: {integrity: sha512-kEmDUoYf/CDy8yZbLTmhB1X9kkjf9Q80PCNsDMb7ufrGd6zZSQA1+UyjrO+pZm5K/S4OXCWJeiIt1JA8kAsa6g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dev: true - read-package-json-fast@2.0.3: + /read-package-json-fast@2.0.3: + resolution: {integrity: sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==} + engines: {node: '>=10'} dependencies: json-parse-even-better-errors: 2.3.1 npm-normalize-package-bin: 1.0.1 + dev: true - read-package-json@5.0.2: + /read-package-json@5.0.2: + resolution: {integrity: sha512-BSzugrt4kQ/Z0krro8zhTwV1Kd79ue25IhNN/VtHFy1mG/6Tluyi+msc0UpwaoQzxSHa28mntAjIZY6kEgfR9Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. Please use @npmcli/package-json instead. dependencies: glob: 8.1.0 json-parse-even-better-errors: 2.3.1 normalize-package-data: 4.0.1 npm-normalize-package-bin: 2.0.0 + dev: true - read-pkg-up@1.0.1: + /read-pkg-up@1.0.1: + resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: find-up: 1.1.2 read-pkg: 1.1.0 + dev: false optional: true - read-pkg-up@3.0.0: + /read-pkg-up@3.0.0: + resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} + engines: {node: '>=4'} dependencies: find-up: 2.1.0 read-pkg: 3.0.0 + dev: true - read-pkg-up@7.0.1: + /read-pkg-up@7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} dependencies: find-up: 4.1.0 read-pkg: 5.2.0 type-fest: 0.8.1 - read-pkg@1.1.0: + /read-pkg@1.1.0: + resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: load-json-file: 1.1.0 normalize-package-data: 2.5.0 path-type: 1.1.0 + dev: false optional: true - read-pkg@3.0.0: + /read-pkg@3.0.0: + resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} + engines: {node: '>=4'} dependencies: load-json-file: 4.0.0 normalize-package-data: 2.5.0 path-type: 3.0.0 + dev: true - read-pkg@5.2.0: + /read-pkg@5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} dependencies: '@types/normalize-package-data': 2.4.4 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 - read-yaml-file@1.1.0: + /read-yaml-file@1.1.0: + resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} + engines: {node: '>=6'} dependencies: graceful-fs: 4.2.11 js-yaml: 3.13.1 pify: 4.0.1 strip-bom: 3.0.0 + dev: true - read@1.0.7: + /read@1.0.7: + resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} + engines: {node: '>=0.8'} dependencies: mute-stream: 0.0.8 + dev: true - readable-stream@1.1.14: + /readable-stream@1.1.14: + resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==} dependencies: core-util-is: 1.0.3 inherits: 2.0.4 isarray: 0.0.1 string_decoder: 0.10.31 + dev: false - readable-stream@2.3.8: + /readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} dependencies: core-util-is: 1.0.3 inherits: 2.0.4 @@ -51067,24 +44777,34 @@ snapshots: string_decoder: 1.1.1 util-deprecate: 1.0.2 - readable-stream@3.6.2: + /readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} dependencies: inherits: 2.0.4 string_decoder: 1.3.0 util-deprecate: 1.0.2 - readable-web-to-node-stream@3.0.2: + /readable-web-to-node-stream@3.0.2: + resolution: {integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==} + engines: {node: '>=8'} dependencies: readable-stream: 3.6.2 + dev: true - readdir-scoped-modules@1.1.0: + /readdir-scoped-modules@1.1.0: + resolution: {integrity: sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==} + deprecated: This functionality has been moved to @npmcli/fs dependencies: debuglog: 1.0.1 dezalgo: 1.0.4 graceful-fs: 4.2.11 once: 1.4.0 + dev: true - readdirp@2.2.1(supports-color@6.1.0): + /readdirp@2.2.1(supports-color@6.1.0): + resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==} + engines: {node: '>=0.10'} dependencies: graceful-fs: 4.2.11 micromatch: 3.1.10(supports-color@6.1.0) @@ -51092,37 +44812,55 @@ snapshots: transitivePeerDependencies: - supports-color - readdirp@3.6.0: + /readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} dependencies: picomatch: 2.3.1 - recast@0.19.1: + /recast@0.19.1: + resolution: {integrity: sha512-8FCjrBxjeEU2O6I+2hyHyBFH1siJbMBLwIRvVr1T3FD2cL754sOaJDsJ/8h3xYltasbJ8jqWRIhMuDGBSiSbjw==} + engines: {node: '>= 4'} dependencies: ast-types: 0.13.3 esprima: 4.0.1 private: 0.1.8 source-map: 0.6.1 + dev: false - recast@0.20.5: + /recast@0.20.5: + resolution: {integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==} + engines: {node: '>= 4'} dependencies: ast-types: 0.14.2 esprima: 4.0.1 source-map: 0.6.1 tslib: 2.6.3 + dev: false - recast@0.23.9: + /recast@0.23.9: + resolution: {integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==} + engines: {node: '>= 4'} dependencies: ast-types: 0.16.1 esprima: 4.0.1 source-map: 0.6.1 tiny-invariant: 1.3.3 tslib: 2.6.3 + dev: true - recharts-scale@0.4.5: + /recharts-scale@0.4.5: + resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==} dependencies: decimal.js-light: 2.5.1 + dev: false - recharts@2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /recharts@2.12.7(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-hlLJMhPQfv4/3NBSAyq3gzGg4h2v69RJh6KU7b3pXYNNAELs9kEoXOjbkxdXpALqKBoVmVptGfLpxdaVYqjmXQ==} + engines: {node: '>=14'} + peerDependencies: + react: ^16.0.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 dependencies: clsx: 2.1.1 eventemitter3: 4.0.7 @@ -51130,37 +44868,67 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 16.13.1 - react-smooth: 4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-smooth: 4.0.1(react-dom@18.3.1)(react@18.3.1) recharts-scale: 0.4.5 tiny-invariant: 1.3.3 victory-vendor: 36.9.2 + dev: false - rechoir@0.6.2: + /rechoir@0.6.2: + resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} + engines: {node: '>= 0.10'} dependencies: resolve: 1.22.8 + dev: false - rechoir@0.7.1: + /rechoir@0.7.1: + resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==} + engines: {node: '>= 0.10'} dependencies: resolve: 1.22.8 - redent@1.0.0: + /redent@1.0.0: + resolution: {integrity: sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: indent-string: 2.1.0 strip-indent: 1.0.1 + dev: false optional: true - redent@3.0.0: + /redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} dependencies: indent-string: 4.0.0 strip-indent: 3.0.0 + dev: true - reduce-reducers@1.0.4: {} + /reduce-reducers@1.0.4: + resolution: {integrity: sha512-Mb2WZ2bJF597exiqX7owBzrqJ74DHLK3yOQjCyPAaNifRncE8OD0wFIuoMhXxTnHK07+8zZ2SJEKy/qtiyR7vw==} + dev: false - redux-devtools-extension@2.13.9(redux@4.2.1): + /redux-devtools-extension@2.13.9(redux@4.2.1): + resolution: {integrity: sha512-cNJ8Q/EtjhQaZ71c8I9+BPySIBVEKssbPpskBfsXqb8HJ002A3KRVHfeRzwRo6mGPqsm7XuHTqNSNeS1Khig0A==} + deprecated: Package moved to @redux-devtools/extension. + peerDependencies: + redux: ^3.1.0 || ^4.0.0 dependencies: redux: 4.2.1 + dev: true - redux-form@8.3.10(immutable@4.3.6)(react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(redux@4.2.1): + /redux-form@8.3.10(react-redux@7.2.9)(react@18.3.1)(redux@4.2.1): + resolution: {integrity: sha512-Eeog8dJYUxCSZI/oBoy7VkprvMjj1lpUnHa3LwjVNZvYDNeiRZMoZoaAT+6nlK2YQ4aiBopKUMiLe4ihUOHCGg==} + engines: {node: '>=8.10'} + peerDependencies: + immutable: ^3.8.2 || ^4.0.0 + react: ^16.4.2 || ^17.0.0 || ^18.0.0 + react-redux: ^6.0.1 || ^7.0.0 || ^8.0.0 + redux: ^3.7.2 || ^4.0.0 + peerDependenciesMeta: + immutable: + optional: true dependencies: '@babel/runtime': 7.24.7 es6-error: 4.1.1 @@ -51171,24 +44939,31 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 react-is: 16.13.1 - react-redux: 7.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-redux: 7.2.9(react-dom@18.3.1)(react@18.3.1) redux: 4.2.1 - optionalDependencies: - immutable: 4.3.6 + dev: false - redux-mock-store@1.5.4: + /redux-mock-store@1.5.4: + resolution: {integrity: sha512-xmcA0O/tjCLXhh9Fuiq6pMrJCwFRaouA8436zcikdIpYWWCjU76CRk+i2bHx8EeiSiMGnB85/lZdU3wIJVXHTA==} dependencies: lodash.isplainobject: 4.0.6 - redux-thunk@2.4.2(redux@4.2.1): + /redux-thunk@2.4.2(redux@4.2.1): + resolution: {integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==} + peerDependencies: + redux: ^4 dependencies: redux: 4.2.1 + dev: false - redux@4.2.1: + /redux@4.2.1: + resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} dependencies: '@babel/runtime': 7.24.7 - reflect.getprototypeof@1.0.6: + /reflect.getprototypeof@1.0.6: + resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -51197,40 +44972,57 @@ snapshots: get-intrinsic: 1.2.4 globalthis: 1.0.4 which-builtin-type: 1.1.3 + dev: true - regenerate-unicode-properties@10.1.1: + /regenerate-unicode-properties@10.1.1: + resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} + engines: {node: '>=4'} dependencies: regenerate: 1.4.2 - regenerate@1.4.2: {} + /regenerate@1.4.2: + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} - regenerator-runtime@0.10.5: {} + /regenerator-runtime@0.10.5: + resolution: {integrity: sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==} - regenerator-runtime@0.11.1: {} + /regenerator-runtime@0.11.1: + resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} - regenerator-runtime@0.13.11: {} + /regenerator-runtime@0.13.11: + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} - regenerator-runtime@0.14.1: {} + /regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} - regenerator-transform@0.15.2: + /regenerator-transform@0.15.2: + resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} dependencies: '@babel/runtime': 7.24.7 - regex-not@1.0.2: + /regex-not@1.0.2: + resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} + engines: {node: '>=0.10.0'} dependencies: extend-shallow: 3.0.2 safe-regex: 1.1.0 - regexp.prototype.flags@1.5.2: + /regexp.prototype.flags@1.5.2: + resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-errors: 1.3.0 set-function-name: 2.0.2 - regexpp@3.2.0: {} + /regexpp@3.2.0: + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} + engines: {node: '>=8'} - regexpu-core@5.3.2: + /regexpu-core@5.3.2: + resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} + engines: {node: '>=4'} dependencies: '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 @@ -51239,40 +45031,60 @@ snapshots: unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.1.0 - registry-auth-token@4.2.2: + /registry-auth-token@4.2.2: + resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==} + engines: {node: '>=6.0.0'} dependencies: rc: 1.2.8 + dev: false - registry-url@5.1.0: + /registry-url@5.1.0: + resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} + engines: {node: '>=8'} dependencies: rc: 1.2.8 + dev: false - regjsparser@0.9.1: + /regjsparser@0.9.1: + resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} + hasBin: true dependencies: jsesc: 0.5.0 - rehype-attr@3.0.3: + /rehype-attr@3.0.3: + resolution: {integrity: sha512-Up50Xfra8tyxnkJdCzLBIBtxOcB2M1xdeKe1324U06RAvSjYm7ULSeoM+b/nYPQPVd7jsXJ9+39IG1WAJPXONw==} + engines: {node: '>=16'} dependencies: unified: 11.0.5 unist-util-visit: 5.0.0 + dev: false - relateurl@0.2.7: {} + /relateurl@0.2.7: + resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} + engines: {node: '>= 0.10'} - release-zalgo@1.0.0: + /release-zalgo@1.0.0: + resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==} + engines: {node: '>=4'} dependencies: es6-error: 4.1.1 + dev: true - remark-external-links@8.0.0: + /remark-external-links@8.0.0: + resolution: {integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==} dependencies: extend: 3.0.2 is-absolute-url: 3.0.3 mdast-util-definitions: 4.0.0 space-separated-tokens: 1.1.5 unist-util-visit: 2.0.3 + dev: true - remark-footnotes@2.0.0: {} + /remark-footnotes@2.0.0: + resolution: {integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==} - remark-mdx@1.6.22: + /remark-mdx@1.6.22: + resolution: {integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==} dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 @@ -51285,7 +45097,8 @@ snapshots: transitivePeerDependencies: - supports-color - remark-parse@11.0.0: + /remark-parse@11.0.0: + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} dependencies: '@types/mdast': 4.0.4 mdast-util-from-markdown: 2.0.1 @@ -51293,8 +45106,10 @@ snapshots: unified: 11.0.5 transitivePeerDependencies: - supports-color + dev: false - remark-parse@8.0.3: + /remark-parse@8.0.3: + resolution: {integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==} dependencies: ccount: 1.1.0 collapse-white-space: 1.0.6 @@ -51313,40 +45128,53 @@ snapshots: vfile-location: 3.2.0 xtend: 4.0.2 - remark-rehype@11.1.0: + /remark-rehype@11.1.0: + resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==} dependencies: '@types/hast': 3.0.4 '@types/mdast': 4.0.4 mdast-util-to-hast: 13.2.0 unified: 11.0.5 vfile: 6.0.1 + dev: false - remark-slug@6.1.0: + /remark-slug@6.1.0: + resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==} dependencies: github-slugger: 1.5.0 mdast-util-to-string: 1.1.0 unist-util-visit: 2.0.3 + dev: true - remark-squeeze-paragraphs@4.0.0: + /remark-squeeze-paragraphs@4.0.0: + resolution: {integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==} dependencies: mdast-squeeze-paragraphs: 4.0.0 - remarkable@1.7.4: + /remarkable@1.7.4: + resolution: {integrity: sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==} + engines: {node: '>= 0.10.0'} + hasBin: true dependencies: argparse: 1.0.10 autolinker: 0.28.1 + dev: true - remove-trailing-separator@1.1.0: {} + /remove-trailing-separator@1.1.0: + resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} - renderkid@2.0.7: + /renderkid@2.0.7: + resolution: {integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==} dependencies: css-select: 4.3.0 dom-converter: 0.2.0 htmlparser2: 6.1.0 lodash: 4.17.21 strip-ansi: 3.0.1 + dev: false - renderkid@3.0.0: + /renderkid@3.0.0: + resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} dependencies: css-select: 4.3.0 dom-converter: 0.2.0 @@ -51354,157 +45182,255 @@ snapshots: lodash: 4.17.21 strip-ansi: 6.0.1 - repeat-element@1.1.4: {} + /repeat-element@1.1.4: + resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} + engines: {node: '>=0.10.0'} - repeat-string@1.6.1: {} + /repeat-string@1.6.1: + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} - repeating@2.0.1: + /repeating@2.0.1: + resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==} + engines: {node: '>=0.10.0'} dependencies: is-finite: 1.1.0 - optional: true - replace@1.2.2: + /replace@1.2.2: + resolution: {integrity: sha512-C4EDifm22XZM2b2JOYe6Mhn+lBsLBAvLbK8drfUQLTfD1KYl/n3VaW/CDju0Ny4w3xTtegBpg8YNSpFJPUDSjA==} + engines: {node: '>= 6'} + hasBin: true dependencies: chalk: 2.4.2 minimatch: 3.0.5 yargs: 15.4.1 + dev: true - request-progress@3.0.0: + /request-progress@3.0.0: + resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==} dependencies: throttleit: 1.0.1 + dev: true - require-directory@2.1.1: {} + /require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} - require-from-string@2.0.2: {} + /require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} - require-main-filename@2.0.0: {} + /require-main-filename@2.0.0: + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} - requireindex@1.2.0: {} + /requireindex@1.2.0: + resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==} + engines: {node: '>=0.10.5'} + dev: true - requires-port@1.0.0: {} + /requires-port@1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} - reselect@4.1.8: {} + /reselect@4.1.8: + resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==} + dev: false - resize-observer-polyfill@1.5.1: {} + /resize-observer-polyfill@1.5.1: + resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==} - resolve-alpn@1.2.1: {} + /resolve-alpn@1.2.1: + resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} + dev: true - resolve-cwd@2.0.0: + /resolve-cwd@2.0.0: + resolution: {integrity: sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==} + engines: {node: '>=4'} dependencies: resolve-from: 3.0.0 - resolve-cwd@3.0.0: + /resolve-cwd@3.0.0: + resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + engines: {node: '>=8'} dependencies: resolve-from: 5.0.0 - resolve-from@3.0.0: {} + /resolve-from@3.0.0: + resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} + engines: {node: '>=4'} - resolve-from@4.0.0: {} + /resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} - resolve-from@5.0.0: {} + /resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} - resolve-pathname@3.0.0: {} + /resolve-pathname@3.0.0: + resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==} + dev: false - resolve-url@0.2.1: {} + /resolve-url@0.2.1: + resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} + deprecated: https://github.com/lydell/resolve-url#deprecated - resolve.exports@1.1.0: {} + /resolve.exports@1.1.0: + resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} + engines: {node: '>=10'} + dev: true - resolve.exports@2.0.2: {} + /resolve.exports@2.0.2: + resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} + engines: {node: '>=10'} - resolve@1.1.7: {} + /resolve@1.1.7: + resolution: {integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==} + dev: true - resolve@1.19.0: + /resolve@1.19.0: + resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==} dependencies: is-core-module: 2.14.0 path-parse: 1.0.7 + dev: true - resolve@1.22.8: + /resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + hasBin: true dependencies: is-core-module: 2.14.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - resolve@2.0.0-next.5: + /resolve@2.0.0-next.5: + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} + hasBin: true dependencies: is-core-module: 2.14.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 + dev: true - responselike@1.0.2: + /responselike@1.0.2: + resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} dependencies: lowercase-keys: 1.0.1 + dev: false - responselike@2.0.1: + /responselike@2.0.1: + resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} dependencies: lowercase-keys: 2.0.0 + dev: true - restore-cursor@3.1.0: + /restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} dependencies: onetime: 5.1.2 signal-exit: 3.0.7 + dev: true - ret@0.1.15: {} + /ret@0.1.15: + resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} + engines: {node: '>=0.12'} - retry@0.12.0: {} + /retry@0.12.0: + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} + engines: {node: '>= 4'} - retry@0.13.1: {} + /retry@0.13.1: + resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} + engines: {node: '>= 4'} + dev: true - reusify@1.0.4: {} + /reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - rfdc@1.4.1: {} + /rfdc@1.4.1: + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + dev: true - rimraf@2.6.3: + /rimraf@2.6.3: + resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true dependencies: glob: 7.2.3 - rimraf@2.7.1: + /rimraf@2.7.1: + resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true dependencies: glob: 7.2.3 - rimraf@3.0.2: + /rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true dependencies: glob: 7.2.3 - rollup-plugin-copy@3.5.0: + /rollup-plugin-copy@3.5.0: + resolution: {integrity: sha512-wI8D5dvYovRMx/YYKtUNt3Yxaw4ORC9xo6Gt9t22kveWz1enG9QrhVlagzwrxSC455xD1dHMKhIJkbsQ7d48BA==} + engines: {node: '>=8.3'} dependencies: '@types/fs-extra': 8.1.5 colorette: 1.4.0 fs-extra: 8.1.0 globby: 10.0.1 is-plain-object: 3.0.1 + dev: true - rollup-plugin-dts@6.1.1(rollup@4.18.1)(typescript@4.9.5): + /rollup-plugin-dts@6.1.1(rollup@4.18.1)(typescript@4.9.5): + resolution: {integrity: sha512-aSHRcJ6KG2IHIioYlvAOcEq6U99sVtqDDKVhnwt70rW6tsz3tv5OSjEiWcgzfsHdLyGXZ/3b/7b/+Za3Y6r1XA==} + engines: {node: '>=16'} + peerDependencies: + rollup: ^3.29.4 || ^4 + typescript: ^4.5 || ^5.0 dependencies: magic-string: 0.30.10 rollup: 4.18.1 typescript: 4.9.5 optionalDependencies: '@babel/code-frame': 7.24.7 + dev: true - rollup-plugin-dts@6.1.1(rollup@4.18.1)(typescript@5.1.6): - dependencies: - magic-string: 0.30.10 - rollup: 4.18.1 - typescript: 5.1.6 - optionalDependencies: - '@babel/code-frame': 7.24.7 - - rollup-plugin-generate-package-json@3.2.0(rollup@4.18.1): + /rollup-plugin-generate-package-json@3.2.0(rollup@4.18.1): + resolution: {integrity: sha512-+Kq1kFVr+maxW/mZB+E+XuaieCXVZqjl2tNU9k3TtAMs3NOaeREa5sRHy67qKDmcnFtZZukIQ3dFCcnV+r0xyw==} + engines: {node: '>=8.3'} + peerDependencies: + rollup: '>=1.0.0' dependencies: read-pkg: 5.2.0 rollup: 4.18.1 write-pkg: 4.0.0 + dev: true - rollup-plugin-peer-deps-external@2.2.4(rollup@2.79.1): + /rollup-plugin-peer-deps-external@2.2.4(rollup@2.79.1): + resolution: {integrity: sha512-AWdukIM1+k5JDdAqV/Cxd+nejvno2FVLVeZ74NKggm3Q5s9cbbcOgUPGdbxPi4BXu7xGaZ8HG12F+thImYu/0g==} + peerDependencies: + rollup: '*' dependencies: rollup: 2.79.1 + dev: true - rollup-plugin-polyfill-node@0.13.0(rollup@4.18.1): + /rollup-plugin-polyfill-node@0.13.0(rollup@4.18.1): + resolution: {integrity: sha512-FYEvpCaD5jGtyBuBFcQImEGmTxDTPbiHjJdrYIp+mFIwgXiXabxvKUK7ZT9P31ozu2Tqm9llYQMRWsfvTMTAOw==} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 dependencies: '@rollup/plugin-inject': 5.0.5(rollup@4.18.1) rollup: 4.18.1 + dev: true - rollup-plugin-postcss@4.0.2(postcss@8.4.39)(ts-node@8.10.2(typescript@5.1.6)): + /rollup-plugin-postcss@4.0.2(postcss@8.4.39): + resolution: {integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==} + engines: {node: '>=10'} + peerDependencies: + postcss: 8.x dependencies: chalk: 4.1.2 concat-with-sourcemaps: 1.1.0 @@ -51513,7 +45439,7 @@ snapshots: p-queue: 6.6.2 pify: 5.0.0 postcss: 8.4.39 - postcss-load-config: 3.1.4(postcss@8.4.39)(ts-node@8.10.2(typescript@5.1.6)) + postcss-load-config: 3.1.4(postcss@8.4.39) postcss-modules: 4.3.1(postcss@8.4.39) promise.series: 0.2.0 resolve: 1.22.8 @@ -51522,12 +45448,19 @@ snapshots: style-inject: 0.3.0 transitivePeerDependencies: - ts-node + dev: true - rollup-plugin-scss@4.0.0: + /rollup-plugin-scss@4.0.0: + resolution: {integrity: sha512-wxasNXDYC2m+fDxCMgK00WebVWYmeFvShyNABmjvSJZ6D1/SepwqFeaMFMQromveI79gfvb64yJjiZZxSZxEIA==} dependencies: rollup-pluginutils: 2.8.2 + dev: true - rollup-plugin-styles@4.0.0(rollup@4.18.1): + /rollup-plugin-styles@4.0.0(rollup@4.18.1): + resolution: {integrity: sha512-A2K2sao84OsTmDxXG83JTCdXWrmgvQkkI38XDat46rdtpGMRm9tSYqeCdlwwGDJF4kKIafhV1mUidqu8MxUGig==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + peerDependencies: + rollup: ^2.63.0 dependencies: '@rollup/pluginutils': 4.2.1 '@types/cssnano': 5.1.0(postcss@8.4.39) @@ -51548,12 +45481,19 @@ snapshots: rollup: 4.18.1 source-map-js: 1.2.0 tslib: 2.6.3 + dev: true - rollup-plugin-svg@2.0.0: + /rollup-plugin-svg@2.0.0: + resolution: {integrity: sha512-DmE7dSQHo1SC5L2uH2qul3Mjyd5oV6U1aVVkyvTLX/mUsRink7f1b1zaIm+32GEBA6EHu8H/JJi3DdWqM53ySQ==} dependencies: rollup-pluginutils: 1.5.2 + dev: true - rollup-plugin-typescript2@0.34.1(rollup@2.79.1)(typescript@5.1.6): + /rollup-plugin-typescript2@0.34.1(rollup@2.79.1)(typescript@5.1.6): + resolution: {integrity: sha512-P4cHLtGikESmqi1CA+tdMDUv8WbQV48mzPYt77TSTOPJpERyZ9TXdDgjSDix8Fkqce6soYz3+fa4lrC93IEkcw==} + peerDependencies: + rollup: '>=1.26.3' + typescript: '>=2.4.0' dependencies: '@rollup/pluginutils': 4.2.1 find-cache-dir: 3.3.2 @@ -51562,21 +45502,33 @@ snapshots: semver: 7.6.2 tslib: 2.6.3 typescript: 5.1.6 + dev: true - rollup-pluginutils@1.5.2: + /rollup-pluginutils@1.5.2: + resolution: {integrity: sha512-SjdWWWO/CUoMpDy8RUbZ/pSpG68YHmhk5ROKNIoi2En9bJ8bTt3IhYi254RWiTclQmL7Awmrq+rZFOhZkJAHmQ==} dependencies: estree-walker: 0.2.1 minimatch: 3.1.2 + dev: true - rollup-pluginutils@2.8.2: + /rollup-pluginutils@2.8.2: + resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} dependencies: estree-walker: 0.6.1 + dev: true - rollup@2.79.1: + /rollup@2.79.1: + resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} + engines: {node: '>=10.0.0'} + hasBin: true optionalDependencies: fsevents: 2.3.3 + dev: true - rollup@4.18.1: + /rollup@4.18.1: + resolution: {integrity: sha512-Elx2UT8lzxxOXMpy5HWQGZqkrQOtrVDDa/bm9l10+U4rQnVzbL/LgZ4NOM1MPIDyHk69W4InuYDF5dzRh4Kw1A==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true dependencies: '@types/estree': 1.0.5 optionalDependencies: @@ -51597,47 +45549,72 @@ snapshots: '@rollup/rollup-win32-ia32-msvc': 4.18.1 '@rollup/rollup-win32-x64-msvc': 4.18.1 fsevents: 2.3.3 + dev: true - rsvp@4.8.5: {} + /rsvp@4.8.5: + resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==} + engines: {node: 6.* || >= 7.*} - run-async@2.4.1: {} + /run-async@2.4.1: + resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} + engines: {node: '>=0.12.0'} + dev: true - run-parallel@1.2.0: + /run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} dependencies: queue-microtask: 1.2.3 - rxjs@7.8.1: + /rxjs@7.8.1: + resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} dependencies: tslib: 2.6.3 + dev: true - safe-array-concat@1.1.2: + /safe-array-concat@1.1.2: + resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} + engines: {node: '>=0.4'} dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 has-symbols: 1.0.3 isarray: 2.0.5 - safe-buffer@5.1.1: {} + /safe-buffer@5.1.1: + resolution: {integrity: sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==} + dev: false - safe-buffer@5.1.2: {} + /safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} - safe-buffer@5.2.1: {} + /safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - safe-identifier@0.4.2: {} + /safe-identifier@0.4.2: + resolution: {integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==} + dev: true - safe-regex-test@1.0.3: + /safe-regex-test@1.0.3: + resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-regex: 1.1.4 - safe-regex@1.1.0: + /safe-regex@1.1.0: + resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} dependencies: ret: 0.1.15 - safer-buffer@2.1.2: {} + /safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - sane@4.1.0: + /sane@4.1.0: + resolution: {integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==} + engines: {node: 6.* || 8.* || >= 10.*} + deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added + hasBin: true dependencies: '@cnakazawa/watch': 1.0.4 anymatch: 2.0.0(supports-color@6.1.0) @@ -51651,105 +45628,177 @@ snapshots: transitivePeerDependencies: - supports-color - sass-loader@12.6.0(sass@1.77.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /sass-loader@12.6.0(sass@1.77.6)(webpack@5.84.1): + resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} + engines: {node: '>= 12.13.0'} + peerDependencies: + fibers: '>= 3.1.0' + node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 + sass: ^1.3.0 + sass-embedded: '*' + webpack: 5.84.1 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + sass-embedded: + optional: true dependencies: klona: 2.0.6 neo-async: 2.6.2 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: sass: 1.77.6 + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - sass@1.77.6: + /sass@1.77.6: + resolution: {integrity: sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==} + engines: {node: '>=14.0.0'} + hasBin: true dependencies: chokidar: 3.6.0 immutable: 4.3.6 source-map-js: 1.2.0 + dev: true - sax@1.2.4: {} + /sax@1.2.4: + resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} + dev: true - sax@1.4.1: + /sax@1.4.1: + resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} + requiresBuild: true + dev: true optional: true - saxes@5.0.1: + /saxes@5.0.1: + resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} + engines: {node: '>=10'} dependencies: xmlchars: 2.2.0 + dev: true - saxes@6.0.0: + /saxes@6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} dependencies: xmlchars: 2.2.0 + dev: true + + /scheduler@0.19.1: + resolution: {integrity: sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==} + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + dev: false - scheduler@0.23.2: + /scheduler@0.23.2: + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} dependencies: loose-envify: 1.4.0 - schema-utils@0.4.7: + /schema-utils@0.4.7: + resolution: {integrity: sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==} + engines: {node: '>= 4'} dependencies: ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) + dev: true - schema-utils@1.0.0: + /schema-utils@1.0.0: + resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==} + engines: {node: '>= 4'} dependencies: ajv: 6.12.6 ajv-errors: 1.0.1(ajv@6.12.6) ajv-keywords: 3.5.2(ajv@6.12.6) - schema-utils@2.7.0: + /schema-utils@2.7.0: + resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} + engines: {node: '>= 8.9.0'} dependencies: '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - schema-utils@2.7.1: + /schema-utils@2.7.1: + resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} + engines: {node: '>= 8.9.0'} dependencies: '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - schema-utils@3.3.0: + /schema-utils@3.3.0: + resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} + engines: {node: '>= 10.13.0'} dependencies: '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - schema-utils@4.2.0: + /schema-utils@4.2.0: + resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} + engines: {node: '>= 12.13.0'} dependencies: '@types/json-schema': 7.0.15 ajv: 8.16.0 ajv-formats: 2.1.1(ajv@8.16.0) ajv-keywords: 5.1.0(ajv@8.16.0) - scroll@3.0.1: {} + /scroll@3.0.1: + resolution: {integrity: sha512-pz7y517OVls1maEzlirKO5nPYle9AXsFzTMNJrRGmT951mzpIBy7sNHOg5o/0MQd/NqliCiWnAi0kZneMPFLcg==} + dev: false - scrollparent@2.1.0: {} + /scrollparent@2.1.0: + resolution: {integrity: sha512-bnnvJL28/Rtz/kz2+4wpBjHzWoEzXhVg/TE8BeVGJHUqE8THNIRnDxDWMktwM+qahvlRdvlLdsQfYe+cuqfZeA==} + dev: false - secure-compare@3.0.1: {} + /secure-compare@3.0.1: + resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==} + dev: true - select-hose@2.0.0: {} + /select-hose@2.0.0: + resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} - selfsigned@1.10.14: + /selfsigned@1.10.14: + resolution: {integrity: sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==} dependencies: node-forge: 0.10.0 - selfsigned@2.4.1: + /selfsigned@2.4.1: + resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} + engines: {node: '>=10'} dependencies: '@types/node-forge': 1.3.11 node-forge: 1.3.1 + dev: true - semantic-ui-css@2.5.0: + /semantic-ui-css@2.5.0: + resolution: {integrity: sha512-jIWn3WXXE2uSaWCcB+gVJVRG3masIKtTMNEP2X8Aw909H2rHpXGneYOxzO3hT8TpyvB5/dEEo9mBFCitGwoj1A==} dependencies: jquery: 3.7.1 + dev: true - semantic-ui-less@2.5.0: + /semantic-ui-less@2.5.0: + resolution: {integrity: sha512-Nlp8iR0otCQB74Yqob2Dxpsm5H9YAp3NvQ3sWDediwFjrd/l3Leu9md2O82UU5n5hOSqu95xnTok55eIAhlTjg==} dependencies: jquery: 3.7.1 + dev: true - semantic-ui-react@2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /semantic-ui-react@2.1.5(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-nIqmmUNpFHfovEb+RI2w3E2/maZQutd8UIWyRjf1SLse+XF51hI559xbz/sLN3O6RpLjr/echLOOXwKCirPy3Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@babel/runtime': 7.24.7 - '@fluentui/react-component-event-listener': 0.63.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@fluentui/react-component-ref': 0.63.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@fluentui/react-component-event-listener': 0.63.1(react-dom@18.3.1)(react@18.3.1) + '@fluentui/react-component-ref': 0.63.1(react-dom@18.3.1)(react@18.3.1) '@popperjs/core': 2.11.8 - '@semantic-ui-react/event-stack': 3.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@semantic-ui-react/event-stack': 3.1.3(react-dom@18.3.1)(react@18.3.1) clsx: 1.2.1 keyboard-key: 1.1.0 lodash: 4.17.21 @@ -51758,38 +45807,69 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 - react-popper: 2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-popper: 2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1)(react@18.3.1) shallowequal: 1.1.0 + dev: false - semver-diff@3.1.1: + /semver-diff@3.1.1: + resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==} + engines: {node: '>=8'} dependencies: semver: 6.3.1 + dev: false - semver-regex@4.0.5: {} + /semver-regex@4.0.5: + resolution: {integrity: sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==} + engines: {node: '>=12'} + dev: true - semver-truncate@3.0.0: + /semver-truncate@3.0.0: + resolution: {integrity: sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==} + engines: {node: '>=12'} dependencies: semver: 7.6.2 + dev: true - semver@5.7.2: {} + /semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true - semver@6.3.1: {} + /semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true - semver@7.3.4: + /semver@7.3.4: + resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} + engines: {node: '>=10'} + hasBin: true dependencies: lru-cache: 6.0.0 + dev: true - semver@7.5.3: + /semver@7.5.3: + resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} + engines: {node: '>=10'} + hasBin: true dependencies: lru-cache: 6.0.0 + dev: true - semver@7.5.4: + /semver@7.5.4: + resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} + engines: {node: '>=10'} + hasBin: true dependencies: lru-cache: 6.0.0 + dev: true - semver@7.6.2: {} + /semver@7.6.2: + resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} + engines: {node: '>=10'} + hasBin: true - send@0.18.0(supports-color@6.1.0): + /send@0.18.0(supports-color@6.1.0): + resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} + engines: {node: '>= 0.8.0'} dependencies: debug: 2.6.9(supports-color@6.1.0) depd: 2.0.0 @@ -51807,23 +45887,30 @@ snapshots: transitivePeerDependencies: - supports-color - serialize-javascript@5.0.1: + /serialize-javascript@5.0.1: + resolution: {integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==} dependencies: randombytes: 2.1.0 - serialize-javascript@6.0.2: + /serialize-javascript@6.0.2: + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} dependencies: randombytes: 2.1.0 - serve-favicon@2.5.0: + /serve-favicon@2.5.0: + resolution: {integrity: sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==} + engines: {node: '>= 0.8.0'} dependencies: etag: 1.8.1 fresh: 0.5.2 ms: 2.1.1 parseurl: 1.3.3 safe-buffer: 5.1.1 + dev: false - serve-index@1.9.1(supports-color@6.1.0): + /serve-index@1.9.1(supports-color@6.1.0): + resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} + engines: {node: '>= 0.8.0'} dependencies: accepts: 1.3.8 batch: 0.6.1 @@ -51835,7 +45922,9 @@ snapshots: transitivePeerDependencies: - supports-color - serve-static@1.15.0(supports-color@6.1.0): + /serve-static@1.15.0(supports-color@6.1.0): + resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} + engines: {node: '>= 0.8.0'} dependencies: encodeurl: 1.0.2 escape-html: 1.0.3 @@ -51844,11 +45933,16 @@ snapshots: transitivePeerDependencies: - supports-color - set-blocking@2.0.0: {} + /set-blocking@2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} - set-cookie-parser@2.6.0: {} + /set-cookie-parser@2.6.0: + resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==} + dev: true - set-function-length@1.2.2: + /set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} dependencies: define-data-property: 1.1.4 es-errors: 1.3.0 @@ -51857,114 +45951,184 @@ snapshots: gopd: 1.0.1 has-property-descriptors: 1.0.2 - set-function-name@2.0.2: + /set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} dependencies: define-data-property: 1.1.4 es-errors: 1.3.0 functions-have-names: 1.2.3 has-property-descriptors: 1.0.2 - set-getter@0.1.1: + /set-getter@0.1.1: + resolution: {integrity: sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==} + engines: {node: '>=0.10.0'} dependencies: to-object-path: 0.3.0 + dev: true - set-value@2.0.1: + /set-value@2.0.1: + resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} + engines: {node: '>=0.10.0'} dependencies: extend-shallow: 2.0.1 is-extendable: 0.1.1 is-plain-object: 2.0.4 split-string: 3.1.0 - setprototypeof@1.1.0: {} + /setprototypeof@1.1.0: + resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} - setprototypeof@1.2.0: {} + /setprototypeof@1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} - shallow-clone@0.1.2: + /shallow-clone@0.1.2: + resolution: {integrity: sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==} + engines: {node: '>=0.10.0'} dependencies: is-extendable: 0.1.1 kind-of: 2.0.1 lazy-cache: 0.2.7 mixin-object: 2.0.1 + dev: true - shallow-clone@3.0.1: + /shallow-clone@3.0.1: + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} dependencies: kind-of: 6.0.3 - shallowequal@1.1.0: {} + /shallowequal@1.1.0: + resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} - shebang-command@1.2.0: + /shebang-command@1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} dependencies: shebang-regex: 1.0.0 - shebang-command@2.0.0: + /shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} dependencies: shebang-regex: 3.0.0 - shebang-regex@1.0.0: {} + /shebang-regex@1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} - shebang-regex@3.0.0: {} + /shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} - shell-quote@1.8.1: {} + /shell-quote@1.8.1: + resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} + dev: true - shelljs@0.8.5: + /shelljs@0.8.5: + resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} + engines: {node: '>=4'} + hasBin: true dependencies: glob: 7.2.3 interpret: 1.4.0 rechoir: 0.6.2 + dev: false - shellwords@0.1.1: + /shellwords@0.1.1: + resolution: {integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==} + requiresBuild: true + dev: true optional: true - side-channel@1.0.6: + /side-channel@1.0.6: + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 get-intrinsic: 1.2.4 object-inspect: 1.13.2 - signal-exit@3.0.7: {} + /signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - signal-exit@4.1.0: {} + /signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} - simple-git@1.132.0: + /simple-git@1.132.0: + resolution: {integrity: sha512-xauHm1YqCTom1sC9eOjfq3/9RKiUA9iPnxBbrY2DdL8l4ADMu0jjM5l5lphQP5YWNqAL2aXC/OeuQ76vHtW5fg==} dependencies: - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) transitivePeerDependencies: - supports-color + dev: true - sirv@2.0.4: + /sirv@2.0.4: + resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} + engines: {node: '>= 10'} dependencies: '@polka/url': 1.0.0-next.25 mrmime: 2.0.0 totalist: 3.0.1 - sisteransi@1.0.5: {} + /sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + + /slash@1.0.0: + resolution: {integrity: sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==} + engines: {node: '>=0.10.0'} + dev: true - slash@2.0.0: {} + /slash@2.0.0: + resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==} + engines: {node: '>=6'} - slash@3.0.0: {} + /slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} - slash@4.0.0: {} + /slash@4.0.0: + resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} + engines: {node: '>=12'} + dev: true - slash@5.1.0: {} + /slash@5.1.0: + resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} + engines: {node: '>=14.16'} + dev: true - slashes@2.0.2: {} + /slashes@2.0.2: + resolution: {integrity: sha512-68p+QkFAQQRetIUzNXAdktNJr8AYLxJukjBegYQz8F7VATsBJG621UYtY/vS2j9jerxdJ1k6Tc25K4DXEw1d5w==} + dev: false - slice-ansi@3.0.0: + /slice-ansi@3.0.0: + resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} + engines: {node: '>=8'} dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 + dev: true - slice-ansi@4.0.0: + /slice-ansi@4.0.0: + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} + engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - smart-buffer@4.2.0: {} + /smart-buffer@4.2.0: + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + dev: true - smartwrap@2.0.2: + /smartwrap@2.0.2: + resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} + engines: {node: '>=6'} + hasBin: true dependencies: array.prototype.flat: 1.3.2 breakword: 1.0.6 @@ -51972,23 +46136,32 @@ snapshots: strip-ansi: 6.0.1 wcwidth: 1.0.1 yargs: 15.4.1 + dev: true - snake-case@3.0.4: + /snake-case@3.0.4: + resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} dependencies: dot-case: 3.0.4 tslib: 2.6.3 + dev: true - snapdragon-node@2.1.1: + /snapdragon-node@2.1.1: + resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} + engines: {node: '>=0.10.0'} dependencies: define-property: 1.0.0 isobject: 3.0.1 snapdragon-util: 3.0.1 - snapdragon-util@3.0.1: + /snapdragon-util@3.0.1: + resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} + engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 - snapdragon@0.8.2(supports-color@6.1.0): + /snapdragon@0.8.2(supports-color@6.1.0): + resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} + engines: {node: '>=0.10.0'} dependencies: base: 0.11.2 debug: 2.6.9(supports-color@6.1.0) @@ -52001,18 +46174,9 @@ snapshots: transitivePeerDependencies: - supports-color - sockjs-client@1.6.1: - dependencies: - debug: 3.2.7(supports-color@8.1.1) - eventsource: 2.0.2 - faye-websocket: 0.11.4 - inherits: 2.0.4 - url-parse: 1.5.10 - transitivePeerDependencies: - - supports-color - optional: true - - sockjs-client@1.6.1(supports-color@6.1.0): + /sockjs-client@1.6.1(supports-color@6.1.0): + resolution: {integrity: sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==} + engines: {node: '>=12'} dependencies: debug: 3.2.7(supports-color@6.1.0) eventsource: 2.0.2 @@ -52022,58 +46186,90 @@ snapshots: transitivePeerDependencies: - supports-color - sockjs@0.3.24: + /sockjs@0.3.24: + resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} dependencies: faye-websocket: 0.11.4 uuid: 8.3.2 websocket-driver: 0.7.4 - socks-proxy-agent@7.0.0: + /socks-proxy-agent@7.0.0: + resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} + engines: {node: '>= 10'} dependencies: agent-base: 6.0.2 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) socks: 2.8.3 transitivePeerDependencies: - supports-color + dev: true - socks@2.8.3: + /socks@2.8.3: + resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} + engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} dependencies: ip-address: 9.0.5 smart-buffer: 4.2.0 + dev: true - sort-keys-length@1.0.1: + /sort-keys-length@1.0.1: + resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==} + engines: {node: '>=0.10.0'} dependencies: sort-keys: 1.1.2 + dev: true - sort-keys@1.1.2: + /sort-keys@1.1.2: + resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==} + engines: {node: '>=0.10.0'} dependencies: is-plain-obj: 1.1.0 + dev: true - sort-keys@2.0.0: + /sort-keys@2.0.0: + resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} + engines: {node: '>=4'} dependencies: is-plain-obj: 1.1.0 + dev: true - sort-keys@4.2.0: + /sort-keys@4.2.0: + resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==} + engines: {node: '>=8'} dependencies: is-plain-obj: 2.1.0 + dev: true - source-list-map@2.0.1: {} + /source-list-map@2.0.1: + resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==} - source-map-js@1.2.0: {} + /source-map-js@1.2.0: + resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} + engines: {node: '>=0.10.0'} - source-map-loader@0.2.4: + /source-map-loader@0.2.4: + resolution: {integrity: sha512-OU6UJUty+i2JDpTItnizPrlpOIBLmQbWMuBg9q5bVtnHACqw1tn9nNwqJLbv0/00JjnJb/Ee5g5WS5vrRv7zIQ==} + engines: {node: '>= 6'} dependencies: async: 2.6.4 loader-utils: 1.4.2 + dev: true - source-map-loader@3.0.2(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /source-map-loader@3.0.2(webpack@5.84.1): + resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: abab: 2.0.6 iconv-lite: 0.6.3 source-map-js: 1.2.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - source-map-resolve@0.5.3: + /source-map-resolve@0.5.3: + resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} + deprecated: See https://github.com/lydell/source-map-resolve#deprecated dependencies: atob: 2.1.2 decode-uri-component: 0.2.2 @@ -52081,36 +46277,62 @@ snapshots: source-map-url: 0.4.1 urix: 0.1.0 - source-map-support@0.5.13: + /source-map-support@0.4.18: + resolution: {integrity: sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==} + dependencies: + source-map: 0.5.7 + dev: true + + /source-map-support@0.5.13: + resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - source-map-support@0.5.19: + /source-map-support@0.5.19: + resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} dependencies: buffer-from: 1.1.2 source-map: 0.6.1 + dev: true - source-map-support@0.5.21: + /source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - source-map-url@0.4.1: {} + /source-map-url@0.4.1: + resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} + deprecated: See https://github.com/lydell/source-map-url#deprecated - source-map@0.5.7: {} + /source-map@0.5.7: + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} - source-map@0.6.1: {} + /source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} - source-map@0.7.4: {} + /source-map@0.7.4: + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} + engines: {node: '>= 8'} - sourcemap-codec@1.4.8: {} + /sourcemap-codec@1.4.8: + resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} + deprecated: Please use @jridgewell/sourcemap-codec instead + dev: true - space-separated-tokens@1.1.5: {} + /space-separated-tokens@1.1.5: + resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} - space-separated-tokens@2.0.2: {} + /space-separated-tokens@2.0.2: + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} + dev: false - spawn-wrap@2.0.0: + /spawn-wrap@2.0.0: + resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==} + engines: {node: '>=8'} dependencies: foreground-child: 2.0.0 is-windows: 1.0.2 @@ -52118,38 +46340,35 @@ snapshots: rimraf: 3.0.2 signal-exit: 3.0.7 which: 2.0.2 + dev: true - spawndamnit@2.0.0: + /spawndamnit@2.0.0: + resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} dependencies: cross-spawn: 5.1.0 signal-exit: 3.0.7 + dev: true - spdx-correct@3.2.0: + /spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.18 - spdx-exceptions@2.5.0: {} + /spdx-exceptions@2.5.0: + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} - spdx-expression-parse@3.0.1: + /spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} dependencies: spdx-exceptions: 2.5.0 spdx-license-ids: 3.0.18 - spdx-license-ids@3.0.18: {} - - spdy-transport@3.0.0: - dependencies: - debug: 4.3.5(supports-color@8.1.1) - detect-node: 2.1.0 - hpack.js: 2.1.6 - obuf: 1.1.2 - readable-stream: 3.6.2 - wbuf: 1.7.3 - transitivePeerDependencies: - - supports-color + /spdx-license-ids@3.0.18: + resolution: {integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==} - spdy-transport@3.0.0(supports-color@6.1.0): + /spdy-transport@3.0.0(supports-color@6.1.0): + resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} dependencies: debug: 4.3.5(supports-color@6.1.0) detect-node: 2.1.0 @@ -52160,17 +46379,9 @@ snapshots: transitivePeerDependencies: - supports-color - spdy@4.0.2: - dependencies: - debug: 4.3.5(supports-color@8.1.1) - handle-thing: 2.0.1 - http-deceiver: 1.2.7 - select-hose: 2.0.0 - spdy-transport: 3.0.0 - transitivePeerDependencies: - - supports-color - - spdy@4.0.2(supports-color@6.1.0): + /spdy@4.0.2(supports-color@6.1.0): + resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} + engines: {node: '>=6.0.0'} dependencies: debug: 4.3.5(supports-color@6.1.0) handle-thing: 2.0.1 @@ -52180,25 +46391,40 @@ snapshots: transitivePeerDependencies: - supports-color - split-on-first@1.1.0: {} + /split-on-first@1.1.0: + resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} + engines: {node: '>=6'} + dev: true - split-string@3.1.0: + /split-string@3.1.0: + resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} + engines: {node: '>=0.10.0'} dependencies: extend-shallow: 3.0.2 - split2@3.2.2: + /split2@3.2.2: + resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} dependencies: readable-stream: 3.6.2 + dev: true - split@1.0.1: + /split@1.0.1: + resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} dependencies: through: 2.3.8 + dev: true - sprintf-js@1.0.3: {} + /sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - sprintf-js@1.1.3: {} + /sprintf-js@1.1.3: + resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} + dev: true - sshpk@1.18.0: + /sshpk@1.18.0: + resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} + engines: {node: '>=0.10.0'} + hasBin: true dependencies: asn1: 0.2.6 assert-plus: 1.0.0 @@ -52209,45 +46435,71 @@ snapshots: jsbn: 0.1.1 safer-buffer: 2.1.2 tweetnacl: 0.14.5 + dev: true - ssri@8.0.1: + /ssri@8.0.1: + resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} + engines: {node: '>= 8'} dependencies: minipass: 3.3.6 + dev: false - ssri@9.0.1: + /ssri@9.0.1: + resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: minipass: 3.3.6 + dev: true - stable@0.1.8: {} + /stable@0.1.8: + resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} + deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' - stack-utils@2.0.6: + /stack-utils@2.0.6: + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + engines: {node: '>=10'} dependencies: escape-string-regexp: 2.0.0 - stackframe@1.3.4: {} + /stackframe@1.3.4: + resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} - state-local@1.0.7: {} + /state-local@1.0.7: + resolution: {integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==} + dev: false - state-toggle@1.0.3: {} + /state-toggle@1.0.3: + resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==} - static-extend@0.1.2: + /static-extend@0.1.2: + resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} + engines: {node: '>=0.10.0'} dependencies: define-property: 0.2.5 object-copy: 0.1.0 - statuses@1.5.0: {} + /statuses@1.5.0: + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} + engines: {node: '>= 0.6'} - statuses@2.0.1: {} + /statuses@2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} - stop-iteration-iterator@1.0.0: + /stop-iteration-iterator@1.0.0: + resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} + engines: {node: '>= 0.4'} dependencies: internal-slot: 1.0.7 - store2@2.14.3: {} + /store2@2.14.3: + resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==} - storybook@6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)): + /storybook@6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0): + resolution: {integrity: sha512-+Ychak5QtcTx8EuQzu7eilw+65sk6q1LdI68vb1VOIYD29PEEC7MsZGKPi6AKYNbdhGp0cGu0j3Bf1TxGOBFEA==} + hasBin: true dependencies: - '@storybook/cli': 6.5.16(@swc/core@1.3.99(@swc/helpers@0.5.9))(encoding@0.1.13)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + '@storybook/cli': 6.5.16(@swc/core@1.3.99)(esbuild@0.18.20)(eslint@7.32.0)(react-dom@18.3.1)(react@18.3.1)(typescript@4.9.5)(webpack-cli@4.10.0) transitivePeerDependencies: - '@storybook/mdx2-csf' - '@swc/core' @@ -52263,64 +46515,93 @@ snapshots: - utf-8-validate - vue-template-compiler - webpack-cli + dev: false - storybook@7.6.9(encoding@0.1.13): + /storybook@7.6.9: + resolution: {integrity: sha512-zsPLvhbEfheqt9bN7X38vgrhLcxSyn7HdWbjZC+02hgNQ0U1jZ4VfrzNbJSqFxzxU+B5gdDZSFMui7OUx9A9Ew==} + hasBin: true dependencies: - '@storybook/cli': 7.6.9(encoding@0.1.13) + '@storybook/cli': 7.6.9 transitivePeerDependencies: - bufferutil - encoding - supports-color - utf-8-validate + dev: true - stream-shift@1.0.3: {} + /stream-shift@1.0.3: + resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==} + dev: true - stream-transform@2.1.3: + /stream-transform@2.1.3: + resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} dependencies: mixme: 0.5.10 + dev: true - streamroller@1.0.6: + /streamroller@1.0.6: + resolution: {integrity: sha512-3QC47Mhv3/aZNFpDDVO44qQb9gwB9QggMEE0sQmkTAwBVYdBRWISdsywlkfm5II1Q5y/pmrHflti/IgmIzdDBg==} + engines: {node: '>=6.0'} + deprecated: 1.x is no longer supported. Please upgrade to 3.x or higher. dependencies: async: 2.6.4 date-format: 2.1.0 - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7(supports-color@6.1.0) fs-extra: 7.0.1 lodash: 4.17.21 transitivePeerDependencies: - supports-color + dev: true - strict-event-emitter@0.2.8: + /strict-event-emitter@0.2.8: + resolution: {integrity: sha512-KDf/ujU8Zud3YaLtMCcTI4xkZlZVIYxTLr+XIULexP+77EEVWixeXroLUXQXiVtH4XH2W7jr/3PT1v3zBuvc3A==} dependencies: events: 3.3.0 + dev: true - strict-uri-encode@2.0.0: {} + /strict-uri-encode@2.0.0: + resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} + engines: {node: '>=4'} + dev: true - string-hash@1.1.3: {} + /string-hash@1.1.3: + resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} + dev: true - string-length@4.0.2: + /string-length@4.0.2: + resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} + engines: {node: '>=10'} dependencies: char-regex: 1.0.2 strip-ansi: 6.0.1 - string-width@3.1.0: + /string-width@3.1.0: + resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==} + engines: {node: '>=6'} dependencies: emoji-regex: 7.0.3 is-fullwidth-code-point: 2.0.0 strip-ansi: 5.2.0 - string-width@4.2.3: + /string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - string-width@5.1.2: + /string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 strip-ansi: 7.1.0 - string.prototype.matchall@4.0.11: + /string.prototype.matchall@4.0.11: + resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -52335,167 +46616,274 @@ snapshots: set-function-name: 2.0.2 side-channel: 1.0.6 - string.prototype.padend@3.1.6: + /string.prototype.padend@3.1.6: + resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 + dev: false - string.prototype.padstart@3.1.6: + /string.prototype.padstart@3.1.6: + resolution: {integrity: sha512-1y15lz7otgfRTAVK5qbp3eHIga+w8j7+jIH+7HpUrOfnLVl6n0hbspi4EXf4tR+PNOpBjPstltemkx0SvViOCg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 + dev: false - string.prototype.trim@1.2.9: + /string.prototype.trim@1.2.9: + resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 - string.prototype.trimend@1.0.8: + /string.prototype.trimend@1.0.8: + resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - string.prototype.trimstart@1.0.8: + /string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - string_decoder@0.10.31: {} + /string_decoder@0.10.31: + resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} + dev: false - string_decoder@1.1.1: + /string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} dependencies: safe-buffer: 5.1.2 - string_decoder@1.3.0: + /string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} dependencies: safe-buffer: 5.2.1 - stringify-entities@4.0.4: + /stringify-entities@4.0.4: + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} dependencies: character-entities-html4: 2.1.0 character-entities-legacy: 3.0.0 + dev: false - strip-ansi@3.0.1: + /strip-ansi@3.0.1: + resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} + engines: {node: '>=0.10.0'} dependencies: ansi-regex: 2.1.1 - strip-ansi@4.0.0: + /strip-ansi@4.0.0: + resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==} + engines: {node: '>=4'} dependencies: ansi-regex: 3.0.1 + dev: true - strip-ansi@5.2.0: + /strip-ansi@5.2.0: + resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} + engines: {node: '>=6'} dependencies: ansi-regex: 4.1.1 - strip-ansi@6.0.1: + /strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} dependencies: ansi-regex: 5.0.1 - strip-ansi@7.1.0: + /strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} dependencies: ansi-regex: 6.0.1 - strip-bom@2.0.0: + /strip-bom@2.0.0: + resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: is-utf8: 0.2.1 + dev: false optional: true - strip-bom@3.0.0: {} + /strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + dev: true - strip-bom@4.0.0: {} + /strip-bom@4.0.0: + resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + engines: {node: '>=8'} - strip-color@0.1.0: {} + /strip-color@0.1.0: + resolution: {integrity: sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==} + engines: {node: '>=0.10.0'} + dev: true - strip-eof@1.0.0: {} + /strip-eof@1.0.0: + resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} + engines: {node: '>=0.10.0'} - strip-final-newline@2.0.0: {} + /strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} - strip-final-newline@3.0.0: {} + /strip-final-newline@3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + dev: true - strip-indent@1.0.1: + /strip-indent@1.0.1: + resolution: {integrity: sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==} + engines: {node: '>=0.10.0'} + hasBin: true + requiresBuild: true dependencies: get-stdin: 4.0.1 + dev: false optional: true - strip-indent@3.0.0: + /strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} dependencies: min-indent: 1.0.1 - strip-indent@4.0.0: + /strip-indent@4.0.0: + resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==} + engines: {node: '>=12'} dependencies: min-indent: 1.0.1 + dev: true - strip-json-comments@1.0.4: {} + /strip-json-comments@1.0.4: + resolution: {integrity: sha512-AOPG8EBc5wAikaG1/7uFCNFJwnKOuQwFTpYBdTW6OvWHeZBQBrAA/amefHGrEiOnCPcLFZK6FUPtWVKpQVIRgg==} + engines: {node: '>=0.8.0'} + hasBin: true + dev: false - strip-json-comments@2.0.1: {} + /strip-json-comments@2.0.1: + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} + engines: {node: '>=0.10.0'} - strip-json-comments@3.1.1: {} + /strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} - strip-outer@2.0.0: {} + /strip-outer@2.0.0: + resolution: {integrity: sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true - strnum@1.0.5: {} + /strnum@1.0.5: + resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} + dev: true - strong-log-transformer@2.1.0: + /strong-log-transformer@2.1.0: + resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} + engines: {node: '>=4'} + hasBin: true dependencies: duplexer: 0.1.2 minimist: 1.2.8 through: 2.3.8 + dev: true - strtok3@7.1.0: + /strtok3@7.1.0: + resolution: {integrity: sha512-19dQEwG6Jd+VabjPRyBhymIF069vZiqWSZa2jJBoKJTsqGKnTxowGoQaLnz+yLARfDI041IUQekyPUMWElOgsQ==} + engines: {node: '>=14.16'} dependencies: '@tokenizer/token': 0.3.0 peek-readable: 5.1.1 + dev: true - style-inject@0.3.0: {} + /style-inject@0.3.0: + resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==} + dev: true - style-loader@0.23.1: + /style-loader@0.23.1: + resolution: {integrity: sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==} + engines: {node: '>= 0.12.0'} dependencies: loader-utils: 1.4.2 schema-utils: 1.0.0 + dev: true - style-loader@1.3.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /style-loader@1.3.0(webpack@5.84.1): + resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==} + engines: {node: '>= 8.9.0'} + peerDependencies: + webpack: 5.84.1 dependencies: loader-utils: 2.0.4 schema-utils: 2.7.1 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: false - style-loader@2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /style-loader@2.0.0(webpack@5.84.1): + resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: false - style-loader@3.3.4(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /style-loader@3.3.4(webpack@5.84.1): + resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - style-to-js@1.1.1: + /style-to-js@1.1.1: + resolution: {integrity: sha512-RJ18Z9t2B02sYhZtfWKQq5uplVctgvjTfLWT7+Eb1zjUjIrWzX5SdlkwLGQozrqarTmEzJJ/YmdNJCUNI47elg==} dependencies: style-to-object: 0.3.0 + dev: false - style-to-object@0.3.0: + /style-to-object@0.3.0: + resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==} dependencies: inline-style-parser: 0.1.1 - style-to-object@1.0.6: + /style-to-object@1.0.6: + resolution: {integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==} dependencies: inline-style-parser: 0.2.3 + dev: false - styled-components@4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + /styled-components@4.4.1(@babel/core@7.24.7)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-RNqj14kYzw++6Sr38n7197xG33ipEOktGElty4I70IKzQF1jzaD1U4xQ+Ny/i03UUhHlC5NWEO+d8olRCDji6g==} + requiresBuild: true + peerDependencies: + react: '>= 16.3.0' + react-dom: '>= 16.3.0' dependencies: '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0) '@babel/traverse': 7.24.7(supports-color@5.5.0) '@emotion/is-prop-valid': 0.8.8 '@emotion/unitless': 0.7.5 - babel-plugin-styled-components: 2.1.4(@babel/core@7.24.7)(styled-components@4.4.1(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(supports-color@5.5.0) + babel-plugin-styled-components: 2.1.4(@babel/core@7.24.7)(styled-components@4.4.1)(supports-color@5.5.0) css-to-react-native: 2.3.2 memoize-one: 5.2.1 merge-anything: 2.4.4 @@ -52508,74 +46896,125 @@ snapshots: supports-color: 5.5.0 transitivePeerDependencies: - '@babel/core' + dev: false - stylehacks@5.1.1(postcss@8.4.39): + /stylehacks@5.1.1(postcss@8.4.39): + resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 dependencies: browserslist: 4.23.1 postcss: 8.4.39 postcss-selector-parser: 6.1.0 + dev: true - stylehacks@6.1.1(postcss@8.4.39): + /stylehacks@6.1.1(postcss@8.4.39): + resolution: {integrity: sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==} + engines: {node: ^14 || ^16 || >=18.0} + peerDependencies: + postcss: ^8.4.31 dependencies: browserslist: 4.23.1 postcss: 8.4.39 postcss-selector-parser: 6.1.0 + dev: true - stylis-rule-sheet@0.0.10(stylis@3.5.4): + /stylis-rule-sheet@0.0.10(stylis@3.5.4): + resolution: {integrity: sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==} + peerDependencies: + stylis: ^3.5.0 dependencies: stylis: 3.5.4 + dev: false - stylis@3.5.4: {} + /stylis@3.5.4: + resolution: {integrity: sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==} + dev: false - stylis@4.2.0: {} + /stylis@4.2.0: + resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} + dev: false - stylus-loader@7.1.3(stylus@0.59.0)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /stylus-loader@7.1.3(stylus@0.59.0)(webpack@5.84.1): + resolution: {integrity: sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==} + engines: {node: '>= 14.15.0'} + peerDependencies: + stylus: '>=0.52.4' + webpack: 5.84.1 dependencies: fast-glob: 3.3.2 normalize-path: 3.0.0 stylus: 0.59.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - stylus@0.59.0: + /stylus@0.59.0: + resolution: {integrity: sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==} + hasBin: true dependencies: '@adobe/css-tools': 4.4.0 - debug: 4.3.5(supports-color@8.1.1) + debug: 4.3.5(supports-color@6.1.0) glob: 7.2.3 sax: 1.2.4 source-map: 0.7.4 transitivePeerDependencies: - supports-color + dev: true - supports-color@2.0.0: {} + /supports-color@2.0.0: + resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} + engines: {node: '>=0.8.0'} + dev: true - supports-color@5.5.0: + /supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} dependencies: has-flag: 3.0.0 - supports-color@6.1.0: + /supports-color@6.1.0: + resolution: {integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==} + engines: {node: '>=6'} dependencies: has-flag: 3.0.0 - supports-color@7.2.0: + /supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} dependencies: has-flag: 4.0.0 - supports-color@8.1.1: + /supports-color@8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} dependencies: has-flag: 4.0.0 - supports-hyperlinks@2.3.0: + /supports-hyperlinks@2.3.0: + resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} + engines: {node: '>=8'} dependencies: has-flag: 4.0.0 supports-color: 7.2.0 + dev: true - supports-preserve-symlinks-flag@1.0.0: {} + /supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} - svg-country-flags@1.2.10: {} + /svg-country-flags@1.2.10: + resolution: {integrity: sha512-xrqwo0TYf/h2cfPvGpjdSuSguUbri4vNNizBnwzoZnX0xGo3O5nGJMlbYEp7NOYcnPGBm6LE2axqDWSB847bLw==} + dev: false - svg-parser@2.0.4: {} + /svg-parser@2.0.4: + resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} - svgo@1.3.2: + /svgo@1.3.2: + resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} + engines: {node: '>=4.0.0'} + deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. + hasBin: true dependencies: chalk: 2.4.2 coa: 2.0.2 @@ -52590,8 +47029,12 @@ snapshots: stable: 0.1.8 unquote: 1.1.1 util.promisify: 1.0.1 + dev: true - svgo@2.8.0: + /svgo@2.8.0: + resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} + engines: {node: '>=10.13.0'} + hasBin: true dependencies: '@trysound/sax': 0.2.0 commander: 7.2.0 @@ -52601,7 +47044,10 @@ snapshots: picocolors: 1.0.1 stable: 0.1.8 - svgo@3.3.2: + /svgo@3.3.2: + resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} + engines: {node: '>=14.0.0'} + hasBin: true dependencies: '@trysound/sax': 0.2.0 commander: 7.2.0 @@ -52611,35 +47057,55 @@ snapshots: csso: 5.0.5 picocolors: 1.0.1 - swc-loader@0.2.6(@swc/core@1.3.99(@swc/helpers@0.5.9))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /swc-loader@0.2.6(@swc/core@1.3.99)(webpack@5.84.1): + resolution: {integrity: sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg==} + peerDependencies: + '@swc/core': ^1.2.147 + webpack: 5.84.1 dependencies: '@swc/core': 1.3.99(@swc/helpers@0.5.9) '@swc/counter': 0.1.3 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - swr@2.2.5(react@18.3.1): + /swr@2.2.5(react@18.3.1): + resolution: {integrity: sha512-QtxqyclFeAsxEUeZIYmsaQ0UjimSq1RZ9Un7I68/0ClKK/U3LoyQunwkQfJZr2fc22DfIXLNDc2wFyTEikCUpg==} + peerDependencies: + react: ^16.11.0 || ^17.0.0 || ^18.0.0 dependencies: client-only: 0.0.1 react: 18.3.1 use-sync-external-store: 1.2.2(react@18.3.1) + dev: false - symbol-tree@3.2.4: {} + /symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + dev: true - symbol.prototype.description@1.0.6: + /symbol.prototype.description@1.0.6: + resolution: {integrity: sha512-VgVgtEabORsQtmuindtO7v8fF+bsKxUkvEMFj+ecBK6bomrwv5JUSWdMoC3ypa9+Jaqp/wOzkWk4f6I+p5GzyA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 get-symbol-description: 1.0.2 has-symbols: 1.0.3 object.getownpropertydescriptors: 2.1.8 + dev: false - synchronous-promise@2.0.17: {} + /synchronous-promise@2.0.17: + resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==} - synckit@0.6.2: + /synckit@0.6.2: + resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==} + engines: {node: '>=12.20'} dependencies: tslib: 2.6.3 + dev: true - table@6.8.2: + /table@6.8.2: + resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==} + engines: {node: '>=10.0.0'} dependencies: ajv: 8.16.0 lodash.truncate: 4.4.2 @@ -52647,26 +47113,37 @@ snapshots: string-width: 4.2.3 strip-ansi: 6.0.1 - tapable@1.1.3: {} + /tapable@1.1.3: + resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} + engines: {node: '>=6'} - tapable@2.2.1: {} + /tapable@2.2.1: + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} - tar-fs@2.1.1: + /tar-fs@2.1.1: + resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} dependencies: chownr: 1.1.4 mkdirp-classic: 0.5.3 pump: 3.0.0 tar-stream: 2.2.0 + dev: true - tar-stream@2.2.0: + /tar-stream@2.2.0: + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} + engines: {node: '>=6'} dependencies: bl: 4.1.0 end-of-stream: 1.4.4 fs-constants: 1.0.0 inherits: 2.0.4 readable-stream: 3.6.2 + dev: true - tar@6.2.1: + /tar@6.2.1: + resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} + engines: {node: '>=10'} dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 @@ -52675,7 +47152,8 @@ snapshots: mkdirp: 1.0.4 yallist: 4.0.0 - telejson@6.0.8: + /telejson@6.0.8: + resolution: {integrity: sha512-nerNXi+j8NK1QEfBHtZUN/aLdDcyupA//9kAboYLrtzZlPLpUfqbVGWb9zz91f/mIjRbAYhbgtnJHY8I1b5MBg==} dependencies: '@types/is-function': 1.0.3 global: 4.4.0 @@ -52686,34 +47164,57 @@ snapshots: lodash: 4.17.21 memoizerific: 1.11.3 - telejson@7.2.0: + /telejson@7.2.0: + resolution: {integrity: sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==} dependencies: memoizerific: 1.11.3 + dev: true - temp-dir@1.0.0: {} + /temp-dir@1.0.0: + resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==} + engines: {node: '>=4'} + dev: true - temp-dir@2.0.0: {} + /temp-dir@2.0.0: + resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} + engines: {node: '>=8'} + dev: true - temp@0.8.4: + /temp@0.8.4: + resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} + engines: {node: '>=6.0.0'} dependencies: rimraf: 2.6.3 - tempy@1.0.1: + /tempy@1.0.1: + resolution: {integrity: sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==} + engines: {node: '>=10'} dependencies: del: 6.1.1 is-stream: 2.0.1 temp-dir: 2.0.0 type-fest: 0.16.0 unique-string: 2.0.0 + dev: true - term-size@2.2.1: {} + /term-size@2.2.1: + resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} + engines: {node: '>=8'} + dev: true - terminal-link@2.1.1: + /terminal-link@2.1.1: + resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} + engines: {node: '>=8'} dependencies: ansi-escapes: 4.3.2 supports-hyperlinks: 2.3.0 + dev: true - terser-webpack-plugin@4.2.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /terser-webpack-plugin@4.2.3(webpack@5.84.1): + resolution: {integrity: sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: cacache: 15.3.0 find-cache-dir: 3.3.2 @@ -52723,180 +47224,311 @@ snapshots: serialize-javascript: 5.0.1 source-map: 0.6.1 terser: 5.31.1 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-sources: 1.4.3 transitivePeerDependencies: - bluebird + dev: false - terser-webpack-plugin@5.3.10(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /terser-webpack-plugin@5.3.10(@swc/core@1.3.99)(esbuild@0.18.20)(webpack@5.84.1): + resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: 5.84.1 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true dependencies: '@jridgewell/trace-mapping': 0.3.25 + '@swc/core': 1.3.99(@swc/helpers@0.5.9) + esbuild: 0.18.20 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.31.1 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: - '@swc/core': 1.3.99(@swc/helpers@0.5.9) - esbuild: 0.18.20 + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) - terser@4.8.1: + /terser@4.8.1: + resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} + engines: {node: '>=6.0.0'} + hasBin: true dependencies: acorn: 8.12.0 commander: 2.20.3 source-map: 0.6.1 source-map-support: 0.5.21 + dev: false - terser@5.31.1: + /terser@5.31.1: + resolution: {integrity: sha512-37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==} + engines: {node: '>=10'} + hasBin: true dependencies: '@jridgewell/source-map': 0.3.6 acorn: 8.12.0 commander: 2.20.3 source-map-support: 0.5.21 - test-exclude@6.0.0: + /test-exclude@6.0.0: + resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} + engines: {node: '>=8'} dependencies: '@istanbuljs/schema': 0.1.3 glob: 7.2.3 minimatch: 3.1.2 - text-extensions@1.9.0: {} + /text-extensions@1.9.0: + resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} + engines: {node: '>=0.10'} + dev: true - text-table@0.2.0: {} + /text-table@0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - thread-loader@2.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /thread-loader@2.1.3(webpack@5.84.1): + resolution: {integrity: sha512-wNrVKH2Lcf8ZrWxDF/khdlLlsTMczdcwPA9VEK4c2exlEPynYWxi9op3nPTo5lAnDIkE0rQEB3VBP+4Zncc9Hg==} + engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 dependencies: loader-runner: 2.4.0 loader-utils: 1.4.2 neo-async: 2.6.2 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - throat@5.0.0: {} + /throat@5.0.0: + resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} + dev: true - throttleit@1.0.1: {} + /throttleit@1.0.1: + resolution: {integrity: sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==} + dev: true - through2@2.0.5: + /through2@2.0.5: + resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} dependencies: readable-stream: 2.3.8 xtend: 4.0.2 + dev: true - through2@4.0.2: + /through2@4.0.2: + resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} dependencies: readable-stream: 3.6.2 + dev: true - through@2.3.8: {} + /through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + dev: true - thunky@1.1.0: {} + /thunky@1.1.0: + resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} - tiny-invariant@1.3.3: {} + /tiny-invariant@1.3.3: + resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} - tiny-warning@1.0.3: {} + /tiny-warning@1.0.3: + resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} + dev: false - tinycolor2@1.6.0: {} + /tinycolor2@1.6.0: + resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} + dev: false - tinycolor@0.0.1: {} + /tinycolor@0.0.1: + resolution: {integrity: sha512-+CorETse1kl98xg0WAzii8DTT4ABF4R3nquhrkIbVGcw1T8JYs5Gfx9xEfGINPUZGDj9C4BmOtuKeaTtuuRolg==} + engines: {node: '>=0.4.0'} + dev: false - tmp@0.0.33: + /tmp@0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} dependencies: os-tmpdir: 1.0.2 + dev: true - tmp@0.2.3: {} + /tmp@0.2.3: + resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} + engines: {node: '>=14.14'} + dev: true - tmpl@1.0.5: {} + /tmpl@1.0.5: + resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} - to-fast-properties@1.0.3: {} + /to-fast-properties@1.0.3: + resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==} + engines: {node: '>=0.10.0'} + dev: true - to-fast-properties@2.0.0: {} + /to-fast-properties@2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} - to-object-path@0.3.0: + /to-object-path@0.3.0: + resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} + engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 - to-readable-stream@1.0.0: {} + /to-readable-stream@1.0.0: + resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} + engines: {node: '>=6'} + dev: false - to-regex-range@2.1.1: + /to-regex-range@2.1.1: + resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} + engines: {node: '>=0.10.0'} dependencies: is-number: 3.0.0 repeat-string: 1.6.1 - to-regex-range@5.0.1: + /to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} dependencies: is-number: 7.0.0 - to-regex@3.0.2: + /to-regex@3.0.2: + resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} + engines: {node: '>=0.10.0'} dependencies: define-property: 2.0.2 extend-shallow: 3.0.2 regex-not: 1.0.2 safe-regex: 1.1.0 - toidentifier@1.0.1: {} + /toidentifier@1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} - token-types@5.0.1: + /token-types@5.0.1: + resolution: {integrity: sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==} + engines: {node: '>=14.16'} dependencies: '@tokenizer/token': 0.3.0 ieee754: 1.2.1 + dev: true - toml@2.3.6: {} + /toml@2.3.6: + resolution: {integrity: sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==} + dev: true - totalist@3.0.1: {} + /totalist@3.0.1: + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} - tough-cookie@4.1.4: + /tough-cookie@4.1.4: + resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} + engines: {node: '>=6'} dependencies: psl: 1.9.0 punycode: 2.3.1 universalify: 0.2.0 url-parse: 1.5.10 + dev: true - tr46@0.0.3: {} + /tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - tr46@2.1.0: + /tr46@2.1.0: + resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} + engines: {node: '>=8'} dependencies: punycode: 2.3.1 + dev: true - tr46@3.0.0: + /tr46@3.0.0: + resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} + engines: {node: '>=12'} dependencies: punycode: 2.3.1 + dev: true - tree-changes@0.11.2: + /tree-changes@0.11.2: + resolution: {integrity: sha512-4gXlUthrl+RabZw6lLvcCDl6KfJOCmrC16BC5CRdut1EAH509Omgg0BfKLY+ViRlzrvYOTWR0FMS2SQTwzumrw==} dependencies: '@gilbarbara/deep-equal': 0.3.1 is-lite: 1.2.1 + dev: false - tree-changes@0.9.3: + /tree-changes@0.9.3: + resolution: {integrity: sha512-vvvS+O6kEeGRzMglTKbc19ltLWNtmNt1cpBoSYLj/iEcPVvpJasemKOlxBrmZaCtDJoF+4bwv3m01UKYi8mukQ==} dependencies: '@gilbarbara/deep-equal': 0.1.2 is-lite: 0.8.2 + dev: false - treeverse@2.0.0: {} + /treeverse@2.0.0: + resolution: {integrity: sha512-N5gJCkLu1aXccpOTtqV6ddSEi6ZmGkh3hjmbu1IjcavJK4qyOVQmi0myQKM7z5jVGmD68SJoliaVrMmVObhj6A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + dev: true - trim-lines@3.0.1: {} + /trim-lines@3.0.1: + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} + dev: false - trim-newlines@1.0.0: + /trim-newlines@1.0.0: + resolution: {integrity: sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==} + engines: {node: '>=0.10.0'} + requiresBuild: true + dev: false optional: true - trim-newlines@3.0.1: {} + /trim-newlines@3.0.1: + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} + dev: true - trim-repeated@2.0.0: + /trim-repeated@2.0.0: + resolution: {integrity: sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==} + engines: {node: '>=12'} dependencies: escape-string-regexp: 5.0.0 + dev: true + + /trim-right@1.0.1: + resolution: {integrity: sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==} + engines: {node: '>=0.10.0'} + dev: true - trim-trailing-lines@1.1.4: {} + /trim-trailing-lines@1.1.4: + resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==} - trim@0.0.1: {} + /trim@0.0.1: + resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==} + deprecated: Use String.prototype.trim() instead - trough@1.0.5: {} + /trough@1.0.5: + resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} - trough@2.2.0: {} + /trough@2.2.0: + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + dev: false - ts-dedent@2.2.0: {} + /ts-dedent@2.2.0: + resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} + engines: {node: '>=6.10'} - ts-jest@26.5.6(jest@26.6.3(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5): + /ts-jest@26.5.6(jest@26.6.3)(typescript@4.9.5): + resolution: {integrity: sha512-rua+rCP8DxpA8b4DQD/6X2HQS8Zy/xzViVYfEs2OQu68tkCuKLV0Md8pmX55+W24uRIyAsf/BajRfxOs+R2MKA==} + engines: {node: '>= 10'} + hasBin: true + peerDependencies: + jest: '>=26 <27' + typescript: '>=3.8 <5.0' dependencies: bs-logger: 0.2.6 buffer-from: 1.1.2 fast-json-stable-stringify: 2.1.0 - jest: 26.6.3(ts-node@8.10.2(typescript@4.9.5)) + jest: 26.6.3 jest-util: 26.6.2 json5: 2.2.3 lodash: 4.17.21 @@ -52905,12 +47537,38 @@ snapshots: semver: 7.6.2 typescript: 4.9.5 yargs-parser: 20.2.9 + dev: true - ts-jest@29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.4.3(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)))(typescript@5.1.6): + /ts-jest@29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.4.3)(typescript@5.1.6): + resolution: {integrity: sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg==} + engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@babel/core': '>=7.0.0-beta.0 <8' + '@jest/transform': ^29.0.0 + '@jest/types': ^29.0.0 + babel-jest: ^29.0.0 + esbuild: '*' + jest: ^29.0.0 + typescript: '>=4.3 <6' + peerDependenciesMeta: + '@babel/core': + optional: true + '@jest/transform': + optional: true + '@jest/types': + optional: true + babel-jest: + optional: true + esbuild: + optional: true dependencies: + '@babel/core': 7.24.7 + babel-jest: 26.6.3(@babel/core@7.24.7) bs-logger: 0.2.6 + esbuild: 0.18.20 fast-json-stable-stringify: 2.1.0 - jest: 29.4.3(@types/node@18.11.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) + jest: 29.4.3(@types/node@18.11.9) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -52918,52 +47576,51 @@ snapshots: semver: 7.6.2 typescript: 5.1.6 yargs-parser: 21.1.1 - optionalDependencies: - '@babel/core': 7.24.7 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - babel-jest: 26.6.3(@babel/core@7.24.7) - esbuild: 0.18.20 + dev: true - ts-jest@29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)))(typescript@4.9.5): + /ts-jest@29.1.5(@babel/core@7.24.7)(babel-jest@26.6.3)(esbuild@0.18.20)(jest@29.7.0)(typescript@4.9.5): + resolution: {integrity: sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg==} + engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@babel/core': '>=7.0.0-beta.0 <8' + '@jest/transform': ^29.0.0 + '@jest/types': ^29.0.0 + babel-jest: ^29.0.0 + esbuild: '*' + jest: ^29.0.0 + typescript: '>=4.3 <6' + peerDependenciesMeta: + '@babel/core': + optional: true + '@jest/transform': + optional: true + '@jest/types': + optional: true + babel-jest: + optional: true + esbuild: + optional: true dependencies: - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@4.9.5)) - jest-util: 29.7.0 - json5: 2.2.3 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.6.2 - typescript: 4.9.5 - yargs-parser: 21.1.1 - optionalDependencies: '@babel/core': 7.24.7 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 babel-jest: 26.6.3(@babel/core@7.24.7) - esbuild: 0.18.20 - - ts-jest@29.1.5(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@26.6.3(@babel/core@7.24.7))(esbuild@0.18.20)(jest@29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)))(typescript@5.1.6): - dependencies: bs-logger: 0.2.6 + esbuild: 0.18.20 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@13.13.52)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@8.10.2(typescript@5.1.6)) + jest: 29.7.0(@types/node@13.13.52)(ts-node@8.10.2) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.6.2 - typescript: 5.1.6 + typescript: 4.9.5 yargs-parser: 21.1.1 - optionalDependencies: - '@babel/core': 7.24.7 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - babel-jest: 26.6.3(@babel/core@7.24.7) - esbuild: 0.18.20 - ts-loader@6.2.2(typescript@5.1.6): + /ts-loader@6.2.2(typescript@5.1.6): + resolution: {integrity: sha512-HDo5kXZCBml3EUPcc7RlZOV/JGlLHwppTLEHb3SHnr5V7NXD4klMEkrhJe5wgRbaWsSXi+Y1SIBN/K9B6zWGWQ==} + engines: {node: '>=8.6'} + peerDependencies: + typescript: '*' dependencies: chalk: 2.4.2 enhanced-resolve: 4.5.0 @@ -52971,8 +47628,14 @@ snapshots: micromatch: 4.0.7 semver: 6.3.1 typescript: 5.1.6 + dev: true - ts-loader@9.5.1(typescript@5.1.6)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /ts-loader@9.5.1(typescript@5.1.6)(webpack@5.84.1): + resolution: {integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==} + engines: {node: '>=12.0.0'} + peerDependencies: + typescript: '*' + webpack: 5.84.1 dependencies: chalk: 4.1.2 enhanced-resolve: 5.17.0 @@ -52980,11 +47643,25 @@ snapshots: semver: 7.6.2 source-map: 0.7.4 typescript: 5.1.6 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - ts-node@10.9.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(@types/node@18.11.9)(typescript@5.1.6): + /ts-node@10.9.1(@swc/core@1.3.99)(@types/node@18.11.9)(typescript@5.1.6): + resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true dependencies: '@cspotcode/source-map-support': 0.8.1 + '@swc/core': 1.3.99(@swc/helpers@0.5.9) '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 @@ -52999,10 +47676,14 @@ snapshots: typescript: 5.1.6 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - optionalDependencies: - '@swc/core': 1.3.99(@swc/helpers@0.5.9) + dev: true - ts-node@8.10.2(typescript@4.9.5): + /ts-node@8.10.2(typescript@4.9.5): + resolution: {integrity: sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA==} + engines: {node: '>=6.0.0'} + hasBin: true + peerDependencies: + typescript: '>=2.7' dependencies: arg: 4.1.3 diff: 4.0.2 @@ -53011,60 +47692,84 @@ snapshots: typescript: 4.9.5 yn: 3.1.1 - ts-node@8.10.2(typescript@5.1.6): + /ts-pnp@1.2.0(typescript@4.9.5): + resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} + engines: {node: '>=6'} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true dependencies: - arg: 4.1.3 - diff: 4.0.2 - make-error: 1.3.6 - source-map-support: 0.5.21 - typescript: 5.1.6 - yn: 3.1.1 - optional: true - - ts-pnp@1.2.0(typescript@4.9.5): - optionalDependencies: typescript: 4.9.5 + dev: false - tsconfig-paths-webpack-plugin@3.5.2: + /tsconfig-paths-webpack-plugin@3.5.2: + resolution: {integrity: sha512-EhnfjHbzm5IYI9YPNVIxx1moxMI4bpHD2e0zTXeDNQcwjjRaGepP7IhTHJkyDBG0CAOoxRfe7jCG630Ou+C6Pw==} dependencies: chalk: 4.1.2 enhanced-resolve: 5.17.0 tsconfig-paths: 3.15.0 + dev: true - tsconfig-paths-webpack-plugin@4.0.0: + /tsconfig-paths-webpack-plugin@4.0.0: + resolution: {integrity: sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==} + engines: {node: '>=10.13.0'} dependencies: chalk: 4.1.2 enhanced-resolve: 5.17.0 tsconfig-paths: 4.2.0 + dev: true - tsconfig-paths@3.15.0: + /tsconfig-paths@3.15.0: + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} dependencies: '@types/json5': 0.0.29 json5: 1.0.2 minimist: 1.2.8 strip-bom: 3.0.0 + dev: true - tsconfig-paths@4.2.0: + /tsconfig-paths@4.2.0: + resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} + engines: {node: '>=6'} dependencies: json5: 2.2.3 minimist: 1.2.8 strip-bom: 3.0.0 + dev: true - tslib@1.14.1: {} + /tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + dev: true - tslib@2.6.3: {} + /tslib@2.6.3: + resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} - tsutils@3.21.0(typescript@4.9.5): + /tsutils@3.21.0(typescript@4.9.5): + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} + peerDependencies: + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 typescript: 4.9.5 + dev: true - tsutils@3.21.0(typescript@5.1.6): + /tsutils@3.21.0(typescript@5.1.6): + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} + peerDependencies: + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 typescript: 5.1.6 + dev: true - tty-table@4.2.3: + /tty-table@4.2.3: + resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==} + engines: {node: '>=8.0.0'} + hasBin: true dependencies: chalk: 4.1.2 csv: 5.5.3 @@ -53073,55 +47778,101 @@ snapshots: strip-ansi: 6.0.1 wcwidth: 1.0.1 yargs: 17.7.2 + dev: true - tunnel-agent@0.6.0: + /tunnel-agent@0.6.0: + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} dependencies: safe-buffer: 5.2.1 + dev: true - tweetnacl@0.14.5: {} + /tweetnacl@0.14.5: + resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + dev: true - type-check@0.4.0: + /type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 - type-detect@4.0.8: {} + /type-detect@4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} - type-fest@0.13.1: {} + /type-fest@0.13.1: + resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} + engines: {node: '>=10'} + dev: true - type-fest@0.16.0: {} + /type-fest@0.16.0: + resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} + engines: {node: '>=10'} + dev: true - type-fest@0.18.1: {} + /type-fest@0.18.1: + resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} + engines: {node: '>=10'} + dev: true - type-fest@0.20.2: {} + /type-fest@0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} - type-fest@0.21.3: {} + /type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} - type-fest@0.4.1: {} + /type-fest@0.4.1: + resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==} + engines: {node: '>=6'} + dev: true - type-fest@0.6.0: {} + /type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} - type-fest@0.8.1: {} + /type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} - type-fest@1.4.0: {} + /type-fest@1.4.0: + resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} + engines: {node: '>=10'} + dev: true - type-fest@2.19.0: {} + /type-fest@2.19.0: + resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} + engines: {node: '>=12.20'} + dev: true - type-fest@4.20.1: {} + /type-fest@4.20.1: + resolution: {integrity: sha512-R6wDsVsoS9xYOpy8vgeBlqpdOyzJ12HNfQhC/aAKWM3YoCV9TtunJzh/QpkMgeDhkoynDcw5f1y+qF9yc/HHyg==} + engines: {node: '>=16'} + dev: false - type-is@1.6.18: + /type-is@1.6.18: + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + engines: {node: '>= 0.6'} dependencies: media-typer: 0.3.0 mime-types: 2.1.35 - type@2.7.3: {} + /type@2.7.3: + resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==} + dev: true - typed-array-buffer@1.0.2: + /typed-array-buffer@1.0.2: + resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-typed-array: 1.1.13 - typed-array-byte-length@1.0.1: + /typed-array-byte-length@1.0.1: + resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 for-each: 0.3.3 @@ -53129,7 +47880,9 @@ snapshots: has-proto: 1.0.3 is-typed-array: 1.1.13 - typed-array-byte-offset@1.0.2: + /typed-array-byte-offset@1.0.2: + resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} + engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.7 call-bind: 1.0.7 @@ -53138,7 +47891,9 @@ snapshots: has-proto: 1.0.3 is-typed-array: 1.1.13 - typed-array-length@1.0.6: + /typed-array-length@1.0.6: + resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 for-each: 0.3.3 @@ -53147,59 +47902,100 @@ snapshots: is-typed-array: 1.1.13 possible-typed-array-names: 1.0.0 - typed-assert@1.0.9: {} + /typed-assert@1.0.9: + resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==} + dev: true - typedarray-to-buffer@3.1.5: + /typedarray-to-buffer@3.1.5: + resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} dependencies: is-typedarray: 1.0.0 - typedarray@0.0.6: {} + /typedarray@0.0.6: + resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - typescript@4.9.5: {} + /typescript@4.9.5: + resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} + engines: {node: '>=4.2.0'} + hasBin: true - typescript@5.1.6: {} + /typescript@5.1.6: + resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==} + engines: {node: '>=14.17'} + hasBin: true + dev: true - ua-parser-js@0.7.28: {} + /ua-parser-js@0.7.28: + resolution: {integrity: sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g==} + dev: false - ufo@1.5.3: {} + /ufo@1.5.3: + resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==} + dev: true - uglify-js@3.18.0: + /uglify-js@3.18.0: + resolution: {integrity: sha512-SyVVbcNBCk0dzr9XL/R/ySrmYf0s372K6/hFklzgcp2lBFyXtw4I7BOdDjlLhE1aVqaI/SHWXWmYdlZxuyF38A==} + engines: {node: '>=0.8.0'} + hasBin: true + requiresBuild: true optional: true - unbox-primitive@1.0.2: + /unbox-primitive@1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: call-bind: 1.0.7 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 - underscore.deep@0.5.3(underscore@1.7.0): + /underscore.deep@0.5.3(underscore@1.7.0): + resolution: {integrity: sha512-4OuSOlFNkiVFVc3khkeG112Pdu1gbitMj7t9B9ENb61uFmN70Jq7Iluhi3oflcSgexkKfDdJ5XAJET2gEq6ikA==} + engines: {node: '>=0.10.x'} + peerDependencies: + underscore: 1.x dependencies: underscore: 1.7.0 + dev: false - underscore@1.7.0: {} + /underscore@1.7.0: + resolution: {integrity: sha512-cp0oQQyZhUM1kpJDLdGO1jPZHgS/MpzoWYfe9+CM2h/QGDZlqwT2T3YGukuBdaNJ/CAPoeyAZRRHz8JFo176vA==} + dev: false - unfetch@4.2.0: {} + /unfetch@4.2.0: + resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==} - unherit@1.1.3: + /unherit@1.1.3: + resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==} dependencies: inherits: 2.0.4 xtend: 4.0.2 - unicode-canonical-property-names-ecmascript@2.0.0: {} + /unicode-canonical-property-names-ecmascript@2.0.0: + resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} + engines: {node: '>=4'} - unicode-match-property-ecmascript@2.0.0: + /unicode-match-property-ecmascript@2.0.0: + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} dependencies: unicode-canonical-property-names-ecmascript: 2.0.0 unicode-property-aliases-ecmascript: 2.1.0 - unicode-match-property-value-ecmascript@2.1.0: {} + /unicode-match-property-value-ecmascript@2.1.0: + resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} + engines: {node: '>=4'} - unicode-property-aliases-ecmascript@2.1.0: {} + /unicode-property-aliases-ecmascript@2.1.0: + resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} + engines: {node: '>=4'} - unicorn-magic@0.1.0: {} + /unicorn-magic@0.1.0: + resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} + engines: {node: '>=18'} + dev: true - unified@11.0.5: + /unified@11.0.5: + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} dependencies: '@types/unist': 3.0.2 bail: 2.0.2 @@ -53208,8 +48004,10 @@ snapshots: is-plain-obj: 4.1.0 trough: 2.2.0 vfile: 6.0.1 + dev: false - unified@9.2.0: + /unified@9.2.0: + resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==} dependencies: '@types/unist': 2.0.10 bail: 1.0.5 @@ -53219,131 +48017,203 @@ snapshots: trough: 1.0.5 vfile: 4.2.1 - union-value@1.0.1: + /union-value@1.0.1: + resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} + engines: {node: '>=0.10.0'} dependencies: arr-union: 3.1.0 get-value: 2.0.6 is-extendable: 0.1.1 set-value: 2.0.1 - union@0.5.0: + /union@0.5.0: + resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} + engines: {node: '>= 0.8.0'} dependencies: qs: 6.12.3 + dev: true - unique-filename@1.1.1: + /unique-filename@1.1.1: + resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} dependencies: unique-slug: 2.0.2 + dev: false - unique-filename@2.0.1: + /unique-filename@2.0.1: + resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: unique-slug: 3.0.0 + dev: true - unique-slug@2.0.2: + /unique-slug@2.0.2: + resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} dependencies: imurmurhash: 0.1.4 + dev: false - unique-slug@3.0.0: + /unique-slug@3.0.0: + resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: imurmurhash: 0.1.4 + dev: true - unique-string@2.0.0: + /unique-string@2.0.0: + resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} + engines: {node: '>=8'} dependencies: crypto-random-string: 2.0.0 - unist-builder@2.0.3: {} + /unist-builder@2.0.3: + resolution: {integrity: sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==} - unist-util-generated@1.1.6: {} + /unist-util-generated@1.1.6: + resolution: {integrity: sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==} - unist-util-is@4.1.0: {} + /unist-util-is@4.1.0: + resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} - unist-util-is@6.0.0: + /unist-util-is@6.0.0: + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} dependencies: '@types/unist': 3.0.2 + dev: false - unist-util-position@3.1.0: {} + /unist-util-position@3.1.0: + resolution: {integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==} - unist-util-position@5.0.0: + /unist-util-position@5.0.0: + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} dependencies: '@types/unist': 3.0.2 + dev: false - unist-util-remove-position@2.0.1: + /unist-util-remove-position@2.0.1: + resolution: {integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==} dependencies: unist-util-visit: 2.0.3 - unist-util-remove-position@5.0.0: + /unist-util-remove-position@5.0.0: + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} dependencies: '@types/unist': 3.0.2 unist-util-visit: 5.0.0 + dev: false - unist-util-remove@2.1.0: + /unist-util-remove@2.1.0: + resolution: {integrity: sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==} dependencies: unist-util-is: 4.1.0 - unist-util-stringify-position@2.0.3: + /unist-util-stringify-position@2.0.3: + resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} dependencies: '@types/unist': 2.0.10 - unist-util-stringify-position@4.0.0: + /unist-util-stringify-position@4.0.0: + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} dependencies: '@types/unist': 3.0.2 + dev: false - unist-util-visit-parents@3.1.1: + /unist-util-visit-parents@3.1.1: + resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} dependencies: '@types/unist': 2.0.10 unist-util-is: 4.1.0 - unist-util-visit-parents@6.0.1: + /unist-util-visit-parents@6.0.1: + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} dependencies: '@types/unist': 3.0.2 unist-util-is: 6.0.0 + dev: false - unist-util-visit@2.0.3: + /unist-util-visit@2.0.3: + resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} dependencies: '@types/unist': 2.0.10 unist-util-is: 4.1.0 unist-util-visit-parents: 3.1.1 - unist-util-visit@5.0.0: + /unist-util-visit@5.0.0: + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} dependencies: '@types/unist': 3.0.2 unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 + dev: false - universal-user-agent@6.0.1: {} + /universal-user-agent@6.0.1: + resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} + dev: true - universalify@0.1.2: {} + /universalify@0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} + dev: true - universalify@0.2.0: {} + /universalify@0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + dev: true - universalify@2.0.1: {} + /universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} - unpipe@1.0.0: {} + /unpipe@1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} - unquote@1.1.1: {} + /unquote@1.1.1: + resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} + dev: true - unset-value@1.0.0: + /unset-value@1.0.0: + resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} + engines: {node: '>=0.10.0'} dependencies: has-value: 0.3.1 isobject: 3.0.1 - untildify@2.1.0: + /untildify@2.1.0: + resolution: {integrity: sha512-sJjbDp2GodvkB0FZZcn7k6afVisqX5BZD7Yq3xp4nN2O15BBK0cLm3Vwn2vQaF7UDS0UUsrQMkkplmDI5fskig==} + engines: {node: '>=0.10.0'} + requiresBuild: true dependencies: os-homedir: 1.0.2 + dev: false optional: true - untildify@4.0.0: {} + /untildify@4.0.0: + resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} + engines: {node: '>=8'} + dev: true - upath@1.2.0: {} + /upath@1.2.0: + resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} + engines: {node: '>=4'} - upath@2.0.1: {} + /upath@2.0.1: + resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} + engines: {node: '>=4'} + dev: true - update-browserslist-db@1.0.16(browserslist@4.23.1): + /update-browserslist-db@1.0.16(browserslist@4.23.1): + resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' dependencies: browserslist: 4.23.1 escalade: 3.1.2 picocolors: 1.0.1 - update-notifier@5.1.0: + /update-notifier@5.1.0: + resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==} + engines: {node: '>=10'} dependencies: boxen: 5.1.2 chalk: 4.1.2 @@ -53359,162 +48229,253 @@ snapshots: semver: 7.6.2 semver-diff: 3.1.1 xdg-basedir: 4.0.0 + dev: false - uri-js@4.4.1: + /uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: punycode: 2.3.1 - urix@0.1.0: {} + /urix@0.1.0: + resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} + deprecated: Please see https://github.com/lydell/urix#deprecated - url-join@4.0.1: {} + /url-join@4.0.1: + resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} + dev: true - url-loader@4.1.1(file-loader@2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /url-loader@4.1.1(file-loader@2.0.0)(webpack@5.84.1): + resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + file-loader: '*' + webpack: 5.84.1 + peerDependenciesMeta: + file-loader: + optional: true dependencies: + file-loader: 2.0.0(webpack@5.84.1) loader-utils: 2.0.4 mime-types: 2.1.35 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: - file-loader: 2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - url-loader@4.1.1(file-loader@6.2.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /url-loader@4.1.1(file-loader@6.2.0)(webpack@5.84.1): + resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + file-loader: '*' + webpack: 5.84.1 + peerDependenciesMeta: + file-loader: + optional: true dependencies: + file-loader: 6.2.0(webpack@5.84.1) loader-utils: 2.0.4 mime-types: 2.1.35 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: - file-loader: 6.2.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: false - url-parse-lax@3.0.0: + /url-parse-lax@3.0.0: + resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} + engines: {node: '>=4'} dependencies: prepend-http: 2.0.0 + dev: false - url-parse@1.5.10: + /url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} dependencies: querystringify: 2.2.0 requires-port: 1.0.0 - url@0.11.3: + /url@0.11.3: + resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==} dependencies: punycode: 1.4.1 qs: 6.12.3 - use-sync-external-store@1.2.0(react@18.3.1): + /use-sync-external-store@1.2.0(react@18.3.1): + resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: react: 18.3.1 + dev: false - use-sync-external-store@1.2.2(react@18.3.1): + /use-sync-external-store@1.2.2(react@18.3.1): + resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: react: 18.3.1 + dev: false - use@3.1.1: {} + /use@3.1.1: + resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} + engines: {node: '>=0.10.0'} - util-deprecate@1.0.2: {} + /util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - util.promisify@1.0.0: + /util.promisify@1.0.0: + resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==} dependencies: define-properties: 1.2.1 object.getownpropertydescriptors: 2.1.8 + dev: false - util.promisify@1.0.1: + /util.promisify@1.0.1: + resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} dependencies: define-properties: 1.2.1 es-abstract: 1.23.3 has-symbols: 1.0.3 object.getownpropertydescriptors: 2.1.8 + dev: true - util@0.10.4: + /util@0.10.4: + resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} dependencies: inherits: 2.0.3 + dev: true - util@0.12.5: + /util@0.12.5: + resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} dependencies: inherits: 2.0.4 is-arguments: 1.1.1 is-generator-function: 1.0.10 is-typed-array: 1.1.13 which-typed-array: 1.1.15 + dev: true - utila@0.4.0: {} + /utila@0.4.0: + resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} - utils-merge@1.0.1: {} + /utils-merge@1.0.1: + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} - uuid-browser@3.1.0: {} + /uuid-browser@3.1.0: + resolution: {integrity: sha512-dsNgbLaTrd6l3MMxTtouOCFw4CBFc/3a+GgYA2YyrJvyQ1u6q4pcu3ktLoUZ/VN/Aw9WsauazbgsgdfVWgAKQg==} + deprecated: Package no longer supported and required. Use the uuid package or crypto.randomUUID instead + dev: true - uuid@3.4.0: {} + /uuid@3.4.0: + resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} + deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. + hasBin: true - uuid@8.3.2: {} + /uuid@8.3.2: + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + hasBin: true - v8-compile-cache-lib@3.0.1: {} + /v8-compile-cache-lib@3.0.1: + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + dev: true - v8-compile-cache@2.3.0: {} + /v8-compile-cache@2.3.0: + resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} + dev: true - v8-compile-cache@2.4.0: {} + /v8-compile-cache@2.4.0: + resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} - v8-to-istanbul@7.1.2: + /v8-to-istanbul@7.1.2: + resolution: {integrity: sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==} + engines: {node: '>=10.10.0'} dependencies: '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 1.9.0 source-map: 0.7.4 + dev: true - v8-to-istanbul@9.3.0: + /v8-to-istanbul@9.3.0: + resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} + engines: {node: '>=10.12.0'} dependencies: '@jridgewell/trace-mapping': 0.3.25 '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 2.0.0 - validate-npm-package-license@3.0.4: + /validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} dependencies: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 - validate-npm-package-name@3.0.0: + /validate-npm-package-name@3.0.0: + resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==} dependencies: builtins: 1.0.3 + dev: true - validate-npm-package-name@4.0.0: + /validate-npm-package-name@4.0.0: + resolution: {integrity: sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: builtins: 5.1.0 + dev: true - validate-npm-package-name@5.0.1: {} + /validate-npm-package-name@5.0.1: + resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dev: true - value-equal@1.0.1: {} + /value-equal@1.0.1: + resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==} + dev: false - vary@1.1.2: {} + /vary@1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} - verror@1.10.0: + /verror@1.10.0: + resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} + engines: {'0': node >=0.6.0} dependencies: assert-plus: 1.0.0 core-util-is: 1.0.2 extsprintf: 1.3.0 + dev: true - vfile-location@3.2.0: {} + /vfile-location@3.2.0: + resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==} - vfile-message@2.0.4: + /vfile-message@2.0.4: + resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==} dependencies: '@types/unist': 2.0.10 unist-util-stringify-position: 2.0.3 - vfile-message@4.0.2: + /vfile-message@4.0.2: + resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} dependencies: '@types/unist': 3.0.2 unist-util-stringify-position: 4.0.0 + dev: false - vfile@4.2.1: + /vfile@4.2.1: + resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==} dependencies: '@types/unist': 2.0.10 is-buffer: 2.0.5 unist-util-stringify-position: 2.0.3 vfile-message: 2.0.4 - vfile@6.0.1: + /vfile@6.0.1: + resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==} dependencies: '@types/unist': 3.0.2 unist-util-stringify-position: 4.0.0 vfile-message: 4.0.2 + dev: false - victory-vendor@36.9.2: + /victory-vendor@36.9.2: + resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==} dependencies: '@types/d3-array': 3.2.1 '@types/d3-ease': 3.0.2 @@ -53530,60 +48491,101 @@ snapshots: d3-shape: 3.2.0 d3-time: 3.1.0 d3-timer: 3.0.1 + dev: false - void-elements@3.1.0: {} + /void-elements@3.1.0: + resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} + engines: {node: '>=0.10.0'} + dev: false - w3c-hr-time@1.0.2: + /w3c-hr-time@1.0.2: + resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} + deprecated: Use your platform's native performance.now() and performance.timeOrigin. dependencies: browser-process-hrtime: 1.0.0 + dev: true - w3c-xmlserializer@2.0.0: + /w3c-xmlserializer@2.0.0: + resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} + engines: {node: '>=10'} dependencies: xml-name-validator: 3.0.0 + dev: true - w3c-xmlserializer@4.0.0: + /w3c-xmlserializer@4.0.0: + resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} + engines: {node: '>=14'} dependencies: xml-name-validator: 4.0.0 + dev: true - walk-up-path@1.0.0: {} + /walk-up-path@1.0.0: + resolution: {integrity: sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg==} + dev: true - walker@1.0.8: + /walker@1.0.8: + resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} dependencies: makeerror: 1.0.12 - warning@4.0.3: + /warning@4.0.3: + resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==} dependencies: loose-envify: 1.4.0 + dev: false - watch@1.0.2: + /watch@1.0.2: + resolution: {integrity: sha512-1u+Z5n9Jc1E2c7qDO8SinPoZuHj7FgbgU1olSFoyaklduDvvtX7GMMtlE6OC9FTXq4KvNAOfj6Zu4vI1e9bAKA==} + engines: {node: '>=0.1.95'} + hasBin: true dependencies: exec-sh: 0.2.2 minimist: 1.2.8 + dev: true - watchpack@2.4.1: + /watchpack@2.4.1: + resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==} + engines: {node: '>=10.13.0'} dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 - wbuf@1.7.3: + /wbuf@1.7.3: + resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} dependencies: minimalistic-assert: 1.0.1 - wcwidth@1.0.1: + /wcwidth@1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} dependencies: defaults: 1.0.4 + dev: true - web-namespaces@1.1.4: {} + /web-namespaces@1.1.4: + resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==} - webidl-conversions@3.0.1: {} + /webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} - webidl-conversions@5.0.0: {} + /webidl-conversions@5.0.0: + resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} + engines: {node: '>=8'} + dev: true - webidl-conversions@6.1.0: {} + /webidl-conversions@6.1.0: + resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} + engines: {node: '>=10.4'} + dev: true - webidl-conversions@7.0.0: {} + /webidl-conversions@7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} + dev: true - webpack-bundle-analyzer@4.10.2: + /webpack-bundle-analyzer@4.10.2: + resolution: {integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==} + engines: {node: '>= 10.13.0'} + hasBin: true dependencies: '@discoveryjs/json-ext': 0.5.7 acorn: 8.12.0 @@ -53601,12 +48603,30 @@ snapshots: - bufferutil - utf-8-validate - webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1): + /webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1): + resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + '@webpack-cli/generators': '*' + '@webpack-cli/migrate': '*' + webpack: 5.84.1 + webpack-bundle-analyzer: '*' + webpack-dev-server: '*' + peerDependenciesMeta: + '@webpack-cli/generators': + optional: true + '@webpack-cli/migrate': + optional: true + webpack-bundle-analyzer: + optional: true + webpack-dev-server: + optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - '@webpack-cli/info': 1.5.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - '@webpack-cli/serve': 1.7.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1)) + '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0)(webpack@5.84.1) + '@webpack-cli/info': 1.5.0(webpack-cli@4.10.0) + '@webpack-cli/serve': 1.7.0(webpack-cli@4.10.0)(webpack-dev-server@3.11.3) colorette: 2.0.20 commander: 7.2.0 cross-spawn: 7.0.3 @@ -53614,22 +48634,29 @@ snapshots: import-local: 3.1.0 interpret: 2.2.0 rechoir: 0.7.1 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - webpack-merge: 5.10.0 - optionalDependencies: + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-bundle-analyzer: 4.10.2 - webpack-dev-server: 3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack-dev-server: 3.11.3(webpack-cli@4.10.0)(webpack@5.84.1) + webpack-merge: 5.10.0 - webpack-dev-middleware@3.7.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /webpack-dev-middleware@3.7.3(webpack@5.84.1): + resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==} + engines: {node: '>= 6'} + peerDependencies: + webpack: 5.84.1 dependencies: memory-fs: 0.4.1 mime: 2.6.0 mkdirp: 0.5.6 range-parser: 1.2.1 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-log: 2.0.0 - webpack-dev-middleware@4.3.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /webpack-dev-middleware@4.3.0(webpack@5.84.1): + resolution: {integrity: sha512-PjwyVY95/bhBh6VUqt6z4THplYcsvQ8YNNBTBM873xLVmw8FLeALn0qurHbs9EmcfhzQis/eoqypSnZeuUz26w==} + engines: {node: '>= v10.23.3'} + peerDependencies: + webpack: 5.84.1 dependencies: colorette: 1.4.0 mem: 8.1.1 @@ -53637,28 +48664,50 @@ snapshots: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 3.3.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: false - webpack-dev-middleware@5.3.4(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /webpack-dev-middleware@5.3.4(webpack@5.84.1): + resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: 5.84.1 dependencies: colorette: 2.0.20 memfs: 3.5.3 mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.2.0 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - webpack-dev-middleware@6.1.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /webpack-dev-middleware@6.1.3(webpack@5.84.1): + resolution: {integrity: sha512-A4ChP0Qj8oGociTs6UdlRUGANIGrCDL3y+pmQMc+dSsraXHCatFpmMey4mYELA+juqwUqwQsUgJJISXl1KWmiw==} + engines: {node: '>= 14.15.0'} + peerDependencies: + webpack: 5.84.1 + peerDependenciesMeta: + webpack: + optional: true dependencies: colorette: 2.0.20 memfs: 3.5.3 mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.2.0 - optionalDependencies: - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - webpack-dev-server@3.11.3(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /webpack-dev-server@3.11.3(webpack-cli@4.10.0)(webpack@5.84.1): + resolution: {integrity: sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==} + engines: {node: '>= 6.11.5'} + hasBin: true + peerDependencies: + webpack: 5.84.1 + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true dependencies: ansi-html-community: 0.0.8 bonjour: 3.5.0 @@ -53669,7 +48718,7 @@ snapshots: del: 4.1.1 express: 4.19.2(supports-color@6.1.0) html-entities: 1.4.0 - http-proxy-middleware: 0.19.1(debug@4.3.5(supports-color@6.1.0))(supports-color@6.1.0) + http-proxy-middleware: 0.19.1(debug@4.3.5)(supports-color@6.1.0) import-local: 2.0.0 internal-ip: 4.3.0 ip: 1.1.9 @@ -53689,18 +48738,28 @@ snapshots: strip-ansi: 3.0.1 supports-color: 6.1.0 url: 0.11.3 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - webpack-dev-middleware: 3.7.3(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) + webpack-dev-middleware: 3.7.3(webpack@5.84.1) webpack-log: 2.0.0 ws: 6.2.3 yargs: 13.3.2 - optionalDependencies: - webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) transitivePeerDependencies: - bufferutil - utf-8-validate - webpack-dev-server@4.15.2(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.84.1): + resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==} + engines: {node: '>= 12.13.0'} + hasBin: true + peerDependencies: + webpack: 5.84.1 + webpack-cli: '*' + peerDependenciesMeta: + webpack: + optional: true + webpack-cli: + optional: true dependencies: '@types/bonjour': 3.5.13 '@types/connect-history-api-fallback': 1.5.4 @@ -53729,73 +48788,114 @@ snapshots: selfsigned: 2.4.1 serve-index: 1.9.1(supports-color@6.1.0) sockjs: 0.3.24 - spdy: 4.0.2 - webpack-dev-middleware: 5.3.4(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) - ws: 8.17.1 - optionalDependencies: - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + spdy: 4.0.2(supports-color@6.1.0) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) + webpack-dev-middleware: 5.3.4(webpack@5.84.1) + ws: 8.17.1 transitivePeerDependencies: - bufferutil - debug - supports-color - utf-8-validate + dev: true - webpack-filter-warnings-plugin@1.2.1(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /webpack-filter-warnings-plugin@1.2.1(webpack@5.84.1): + resolution: {integrity: sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==} + engines: {node: '>= 4.3 < 5.0.0 || >= 5.10'} + peerDependencies: + webpack: 5.84.1 dependencies: - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: false - webpack-hot-middleware@2.26.1: + /webpack-hot-middleware@2.26.1: + resolution: {integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==} dependencies: ansi-html-community: 0.0.8 html-entities: 2.5.2 strip-ansi: 6.0.1 - webpack-log@1.2.0: + /webpack-log@1.2.0: + resolution: {integrity: sha512-U9AnICnu50HXtiqiDxuli5gLB5PGBo7VvcHx36jRZHwK4vzOYLbImqT4lwWwoMHdQWwEKw736fCHEekokTEKHA==} + engines: {node: '>=6'} dependencies: chalk: 2.4.2 log-symbols: 2.2.0 loglevelnext: 1.0.5 uuid: 3.4.0 + dev: true - webpack-log@2.0.0: + /webpack-log@2.0.0: + resolution: {integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==} + engines: {node: '>= 6'} dependencies: ansi-colors: 3.2.4 uuid: 3.4.0 - webpack-merge@5.10.0: + /webpack-merge@5.10.0: + resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} + engines: {node: '>=10.0.0'} dependencies: clone-deep: 4.0.1 flat: 5.0.2 wildcard: 2.0.1 - webpack-node-externals@3.0.0: {} + /webpack-node-externals@3.0.0: + resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==} + engines: {node: '>=6'} + dev: true - webpack-sources@1.4.3: + /webpack-sources@1.4.3: + resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==} dependencies: source-list-map: 2.0.1 source-map: 0.6.1 - webpack-sources@3.2.3: {} + /webpack-sources@3.2.3: + resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} + engines: {node: '>=10.13.0'} - webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))))(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.0)(webpack@5.84.1): + resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==} + engines: {node: '>= 12'} + peerDependencies: + html-webpack-plugin: '>= 5.0.0-beta.1 < 6' + webpack: 5.84.1 + peerDependenciesMeta: + html-webpack-plugin: + optional: true dependencies: + html-webpack-plugin: 5.6.0(webpack@5.84.1) typed-assert: 1.0.9 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) - optionalDependencies: - html-webpack-plugin: 5.6.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - webpack-virtual-modules@0.2.2: + /webpack-virtual-modules@0.2.2: + resolution: {integrity: sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==} dependencies: - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7(supports-color@6.1.0) transitivePeerDependencies: - supports-color + dev: false - webpack-virtual-modules@0.4.6: {} + /webpack-virtual-modules@0.4.6: + resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==} + dev: false - webpack-virtual-modules@0.5.0: {} + /webpack-virtual-modules@0.5.0: + resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==} + dev: true - webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)): + /webpack@5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0): + resolution: {integrity: sha512-ZP4qaZ7vVn/K8WN/p990SGATmrL1qg4heP/MrVneczYtpDGJWlrgZv55vxaV2ul885Kz+25MP2kSXkPe3LZfmg==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.5 @@ -53818,55 +48918,78 @@ snapshots: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))) + terser-webpack-plugin: 5.3.10(@swc/core@1.3.99)(esbuild@0.18.20)(webpack@5.84.1) watchpack: 2.4.1 - webpack-sources: 3.2.3 - optionalDependencies: webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1) + webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' - esbuild - uglify-js - websocket-driver@0.7.4: + /websocket-driver@0.7.4: + resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} + engines: {node: '>=0.8.0'} dependencies: http-parser-js: 0.5.8 safe-buffer: 5.2.1 websocket-extensions: 0.1.4 - websocket-extensions@0.1.4: {} + /websocket-extensions@0.1.4: + resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} + engines: {node: '>=0.8.0'} - whatwg-encoding@1.0.5: + /whatwg-encoding@1.0.5: + resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} dependencies: iconv-lite: 0.4.24 + dev: true - whatwg-encoding@2.0.0: + /whatwg-encoding@2.0.0: + resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + engines: {node: '>=12'} dependencies: iconv-lite: 0.6.3 + dev: true - whatwg-fetch@3.6.20: {} + /whatwg-fetch@3.6.20: + resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} + dev: false - whatwg-mimetype@2.3.0: {} + /whatwg-mimetype@2.3.0: + resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} + dev: true - whatwg-mimetype@3.0.0: {} + /whatwg-mimetype@3.0.0: + resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} + engines: {node: '>=12'} + dev: true - whatwg-url@11.0.0: + /whatwg-url@11.0.0: + resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} + engines: {node: '>=12'} dependencies: tr46: 3.0.0 webidl-conversions: 7.0.0 + dev: true - whatwg-url@5.0.0: + /whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 - whatwg-url@8.7.0: + /whatwg-url@8.7.0: + resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} + engines: {node: '>=10'} dependencies: lodash: 4.17.21 tr46: 2.1.0 webidl-conversions: 6.1.0 + dev: true - which-boxed-primitive@1.0.2: + /which-boxed-primitive@1.0.2: + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} dependencies: is-bigint: 1.0.4 is-boolean-object: 1.1.2 @@ -53874,7 +48997,9 @@ snapshots: is-string: 1.0.7 is-symbol: 1.0.4 - which-builtin-type@1.1.3: + /which-builtin-type@1.1.3: + resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} + engines: {node: '>= 0.4'} dependencies: function.prototype.name: 1.1.6 has-tostringtag: 1.0.2 @@ -53888,22 +49013,31 @@ snapshots: which-boxed-primitive: 1.0.2 which-collection: 1.0.2 which-typed-array: 1.1.15 + dev: true - which-collection@1.0.2: + /which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} dependencies: is-map: 2.0.3 is-set: 2.0.3 is-weakmap: 2.0.2 is-weakset: 2.0.3 - which-module@2.0.1: {} + /which-module@2.0.1: + resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} - which-pm@2.2.0: + /which-pm@2.2.0: + resolution: {integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==} + engines: {node: '>=8.15'} dependencies: load-yaml-file: 0.2.0 path-exists: 4.0.0 + dev: true - which-typed-array@1.1.15: + /which-typed-array@1.1.15: + resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} + engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.7 call-bind: 1.0.7 @@ -53911,88 +49045,126 @@ snapshots: gopd: 1.0.1 has-tostringtag: 1.0.2 - which@1.3.1: + /which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true dependencies: isexe: 2.0.0 - which@2.0.2: + /which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true dependencies: isexe: 2.0.0 - wide-align@1.1.5: + /wide-align@1.1.5: + resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} dependencies: string-width: 4.2.3 - widest-line@3.1.0: + /widest-line@3.1.0: + resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} + engines: {node: '>=8'} dependencies: string-width: 4.2.3 + dev: false - wildcard@2.0.1: {} + /wildcard@2.0.1: + resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} - word-wrap@1.2.5: {} + /word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} - wordwrap@1.0.0: {} + /wordwrap@1.0.0: + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} - worker-loader@2.0.0(webpack@5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1))): + /worker-loader@2.0.0(webpack@5.84.1): + resolution: {integrity: sha512-tnvNp4K3KQOpfRnD20m8xltE3eWh89Ye+5oj7wXEEHKac1P4oZ6p9oTj8/8ExqoSBnk9nu5Pr4nKfQ1hn2APJw==} + engines: {node: '>= 6.9.0 || >= 8.9.0'} + peerDependencies: + webpack: 5.84.1 dependencies: loader-utils: 1.4.2 schema-utils: 0.4.7 - webpack: 5.84.1(@swc/core@1.3.99(@swc/helpers@0.5.9))(esbuild@0.18.20)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@3.11.3)(webpack@5.84.1)) + webpack: 5.84.1(@swc/core@1.3.99)(esbuild@0.18.20)(webpack-cli@4.10.0) + dev: true - worker-rpc@0.1.1: + /worker-rpc@0.1.1: + resolution: {integrity: sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==} dependencies: microevent.ts: 0.1.1 + dev: false - world-countries@5.0.0: {} + /world-countries@5.0.0: + resolution: {integrity: sha512-wAfOT9Y5i/xnxNOdKJKXdOCw9Q3yQLahBUeuRol+s+o20F6h2a4tLEbJ1lBCYwEQ30Sf9Meqeipk1gib3YwF5w==} + dev: false - wrap-ansi@5.1.0: + /wrap-ansi@5.1.0: + resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==} + engines: {node: '>=6'} dependencies: ansi-styles: 3.2.1 string-width: 3.1.0 strip-ansi: 5.2.0 - wrap-ansi@6.2.0: + /wrap-ansi@6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 + dev: true - wrap-ansi@7.0.0: + /wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - wrap-ansi@8.1.0: + /wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} dependencies: ansi-styles: 6.2.1 string-width: 5.1.2 strip-ansi: 7.1.0 - wrappy@1.0.2: {} + /wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - write-file-atomic@2.4.3: + /write-file-atomic@2.4.3: + resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} dependencies: graceful-fs: 4.2.11 imurmurhash: 0.1.4 signal-exit: 3.0.7 - write-file-atomic@3.0.3: + /write-file-atomic@3.0.3: + resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} dependencies: imurmurhash: 0.1.4 is-typedarray: 1.0.0 signal-exit: 3.0.7 typedarray-to-buffer: 3.1.5 - write-file-atomic@4.0.2: + /write-file-atomic@4.0.2: + resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: imurmurhash: 0.1.4 signal-exit: 3.0.7 - write-file-webpack-plugin@4.5.1: + /write-file-webpack-plugin@4.5.1: + resolution: {integrity: sha512-AZ7qJUvhTCBiOtG21aFJUcNuLVo2FFM6JMGKvaUGAH+QDqQAp2iG0nq3GcuXmJOFQR2JjpjhyYkyPrbFKhdjNQ==} + engines: {node: '>=4'} dependencies: chalk: 2.4.2 - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7(supports-color@6.1.0) filesize: 3.6.1 lodash: 4.17.21 mkdirp: 0.5.6 @@ -54000,8 +49172,11 @@ snapshots: write-file-atomic: 2.4.3 transitivePeerDependencies: - supports-color + dev: true - write-json-file@3.2.0: + /write-json-file@3.2.0: + resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==} + engines: {node: '>=6'} dependencies: detect-indent: 5.0.0 graceful-fs: 4.2.11 @@ -54009,8 +49184,11 @@ snapshots: pify: 4.0.1 sort-keys: 2.0.0 write-file-atomic: 2.4.3 + dev: true - write-json-file@4.3.0: + /write-json-file@4.3.0: + resolution: {integrity: sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ==} + engines: {node: '>=8.3'} dependencies: detect-indent: 6.1.0 graceful-fs: 4.2.11 @@ -54018,64 +49196,133 @@ snapshots: make-dir: 3.1.0 sort-keys: 4.2.0 write-file-atomic: 3.0.3 + dev: true - write-pkg@4.0.0: + /write-pkg@4.0.0: + resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==} + engines: {node: '>=8'} dependencies: sort-keys: 2.0.0 type-fest: 0.4.1 write-json-file: 3.2.0 + dev: true - ws@6.2.3: + /ws@6.2.3: + resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true dependencies: async-limiter: 1.0.1 - ws@7.5.10: {} + /ws@7.5.10: + resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} + engines: {node: '>=8.3.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true - ws@8.17.1: {} + /ws@8.17.1: + resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true - x-default-browser@0.4.0: + /x-default-browser@0.4.0: + resolution: {integrity: sha512-7LKo7RtWfoFN/rHx1UELv/2zHGMx8MkZKDq1xENmOCTkfIqZJ0zZ26NEJX8czhnPXVcqS0ARjjfJB+eJ0/5Cvw==} + hasBin: true optionalDependencies: default-browser-id: 1.0.4 + dev: false - xdg-basedir@4.0.0: {} + /xdg-basedir@4.0.0: + resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} + engines: {node: '>=8'} + dev: false - xml-name-validator@3.0.0: {} + /xml-name-validator@3.0.0: + resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} + dev: true - xml-name-validator@4.0.0: {} + /xml-name-validator@4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} + dev: true - xmlchars@2.2.0: {} + /xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + dev: true - xtend@4.0.2: {} + /xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} - y18n@4.0.3: {} + /y18n@4.0.3: + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} - y18n@5.0.8: {} + /y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} - yallist@2.1.2: {} + /yallist@2.1.2: + resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} + dev: true - yallist@3.1.1: {} + /yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - yallist@4.0.0: {} + /yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - yaml@1.10.2: {} + /yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} - yargs-parser@13.1.2: + /yargs-parser@13.1.2: + resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==} dependencies: camelcase: 5.3.1 decamelize: 1.2.0 - yargs-parser@18.1.3: + /yargs-parser@18.1.3: + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} dependencies: camelcase: 5.3.1 decamelize: 1.2.0 + dev: true - yargs-parser@20.2.4: {} + /yargs-parser@20.2.4: + resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} + engines: {node: '>=10'} + dev: true - yargs-parser@20.2.9: {} + /yargs-parser@20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} - yargs-parser@21.1.1: {} + /yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} - yargs@13.3.2: + /yargs@13.3.2: + resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==} dependencies: cliui: 5.0.0 find-up: 3.0.0 @@ -54088,7 +49335,9 @@ snapshots: y18n: 4.0.3 yargs-parser: 13.1.2 - yargs@15.4.1: + /yargs@15.4.1: + resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} + engines: {node: '>=8'} dependencies: cliui: 6.0.0 decamelize: 1.2.0 @@ -54101,8 +49350,11 @@ snapshots: which-module: 2.0.1 y18n: 4.0.3 yargs-parser: 18.1.3 + dev: true - yargs@16.2.0: + /yargs@16.2.0: + resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} + engines: {node: '>=10'} dependencies: cliui: 7.0.4 escalade: 3.1.2 @@ -54112,7 +49364,9 @@ snapshots: y18n: 5.0.8 yargs-parser: 20.2.9 - yargs@17.7.2: + /yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} dependencies: cliui: 8.0.1 escalade: 3.1.2 @@ -54122,24 +49376,59 @@ snapshots: y18n: 5.0.8 yargs-parser: 21.1.1 - yauzl@2.10.0: + /yauzl@2.10.0: + resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} dependencies: buffer-crc32: 0.2.13 fd-slicer: 1.1.0 - yn@3.1.1: {} + /yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} - yocto-queue@0.1.0: {} + /yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} - yocto-queue@1.1.1: {} + /yocto-queue@1.1.1: + resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} + engines: {node: '>=12.20'} + dev: true - zustand@4.5.4(@types/react@18.0.18)(react@18.3.1): + /zustand@4.5.4(@types/react@18.0.18)(react@18.3.1): + resolution: {integrity: sha512-/BPMyLKJPtFEvVL0E9E9BTUM63MNyhPGlvxk1XjrfWTUlV+BR8jufjsovHzrtR6YNcBEcL7cMHovL1n9xHawEg==} + engines: {node: '>=12.7.0'} + peerDependencies: + '@types/react': 18.0.18 + immer: '>=9.0.6' + react: '>=16.8' + peerDependenciesMeta: + '@types/react': + optional: true + immer: + optional: true + react: + optional: true dependencies: - use-sync-external-store: 1.2.0(react@18.3.1) - optionalDependencies: '@types/react': 18.0.18 react: 18.3.1 + use-sync-external-store: 1.2.0(react@18.3.1) + dev: false + + /zwitch@1.0.5: + resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==} - zwitch@1.0.5: {} + /zwitch@2.0.4: + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + dev: false - zwitch@2.0.4: {} + github.com/jeradrutnam/eslint-plugin-header/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3(eslint@7.32.0): + resolution: {tarball: https://codeload.github.com/jeradrutnam/eslint-plugin-header/tar.gz/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3} + id: github.com/jeradrutnam/eslint-plugin-header/f5f6e64ffd8b1050400b1a45b7ec2eef9684bee3 + name: eslint-plugin-header + version: 3.2.0 + peerDependencies: + eslint: '>=7.7.0' + dependencies: + eslint: 7.32.0 + dev: true From 41f83931ed7baa2b2d079014862a6339cfdb40a4 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Mon, 15 Jul 2024 14:53:07 +0530 Subject: [PATCH 073/114] remove unnecessary resources --- .../assets/images/illustrations/dropbox.png | Bin 3352 -> 0 bytes .../images/illustrations/google-workspace.png | Bin 16590 -> 0 bytes .../images/illustrations/microsoft365.svg | 44 ------------------ .../assets/images/illustrations/slack.png | Bin 10916 -> 0 bytes .../assets/images/illustrations/zoom.png | Bin 3947 -> 0 bytes 5 files changed, 44 deletions(-) delete mode 100644 apps/console/src/public/resources/applications/assets/images/illustrations/dropbox.png delete mode 100644 apps/console/src/public/resources/applications/assets/images/illustrations/google-workspace.png delete mode 100644 apps/console/src/public/resources/applications/assets/images/illustrations/microsoft365.svg delete mode 100644 apps/console/src/public/resources/applications/assets/images/illustrations/slack.png delete mode 100644 apps/console/src/public/resources/applications/assets/images/illustrations/zoom.png diff --git a/apps/console/src/public/resources/applications/assets/images/illustrations/dropbox.png b/apps/console/src/public/resources/applications/assets/images/illustrations/dropbox.png deleted file mode 100644 index 6358aeac3654801377e5973f554c370e33d12a2f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3352 zcmbVPYgiL!8Vw36Iv|3VQNT#+wN;Z?Me#ObpnzK)6s;i80I3UFxfKM(nvqfysmP>S zOR01t6~q-+v|bPth7d?pS`w=?Dnh^;C`yt7W=JM8`wi;z?C!5^e|&l8oV@Ru^Gz}* zncUEIK`x`GjOK7SE+N4I8#tU{;BXjc)NoK#C#PQr#WCK0tv`oz9v?%+IsxpEwjpRW z=WMgrGXR`Zf+Ny6oG~8ka^U<>1Oswi=tmm^8HOSB%&G&-zH`j9os8RO%(Qfd6U!KS z7~=pFQ^era40etY6*0#fn3R)@LdEbUjJ%qu_?1aM$y78m+D?X#F`ei3P2d=;I^E)?|WXG(2#xMyXM|@*E&oouNsL@9m_kO>A=kh%N zq$z4xoG18`FULN#9<|&x61R9)Qx{+BwFMJTpXpr){Vm>=S4}4771F)gW?*_uNwRMw z^C&3(cD;NT!=sAOk-~>|%#>D}FA-2tML9_KB$amXCvk8MUV0l~@ z=${r$%5?(BP>-eqWKg3!0Me?^D7I+Oj{wP2q5%N$8qtL;(x7tzs!*X`Y|)?)Ad{7- zBS6WGcqWT9crrj`N?gPi6^;V3tN{;Vks4pjA`Q+1s7r}+*`mV70SU#1+@T<+Eff zzJUL@M|d9TEaQH0_JjyR{P>TniK8mfb})y$%IQl~$#)SbRl*h#Ricz<5%E+>9YC4X zjz)PFBSsus7XWoloi>XtO6^iG8dR^H0#J}jyJ1L3Xxf|aW2V0+3vp1ckcBdz0s1;w zm;+EZS+yS^jl`{W519F^qe~1*Pe<2M=^fiqQ<{tLxji$dzqiG9%v}CCbGxLSXP;u~ zd3i32>B&DlXixn~MDEqKa&yZqM6dq~uNTHCRs-ffbANGJuA~zco@L_lvIt1p{!k{V zF&rRY6o^}FPW<#-uJtItf8i}2wdYnJ9k8wjnJZnX8f!NTE-Lp&<9S0e zv!S_Z9b(#RdyZp5?3Ls;d=oT9 z$8;|Vu~-_diE*<(khEKv(zawb;h5#rtav-nb(H3N*gyPuxbUc1h($v!nz8mpg7ojZ7gv4`FUa9q%fX3m zC8y8ee+nV}1*luqOh1SEY;GM@`%F)@l2Sohs&|%2*f3V>K^2cy&RSnT2 zTiydg@NN85riIopcg7aRdxD_cZF6StSMI zSN*eo%)&m9Z0f}(x7b9Y;Zti*JvFvUX@xNx|G|!W*qNHK?$?|%v@UimW7aEFXIRuv zFw;L8E#$pxpLAQP!^mRh#qe?Cpc)Vy@m1Khu zWu-K!Lq^|)s}FIl?~1#(mSE zy8bFNqp|Nxdt8FSw|~sa_YnsWF?exwt4@*B&cEo5^zTvYl1h+4Dkfp27%YLgHvX`-AAyHixAu~=Q?~&pSKF**p^=KA3*6b@TgzYp!dKG!|R)3i9C zuA?^b^e>~Ompiq{h%pbf??`3`z;Z9fv|64a~ zzTir-r$_nz;)`UTO!+l=VPElMGEJ(CZVlhE4ce+yybJxV5k*5=>lL2R4|Spy(AEaU z7^t^Z{di66Y##kWtaGEc$IM)ffWY2ks;eU0c7Xj8pnGE`kBS_#do z6ZI+@H!8u#qUN`>oH|HY;qpk&b^LEssY>oc zZDNO3?|9jAen0UCoSsLFhZo3*dN8!MWL~2@gqqNB9HYSR?|N#2DrOY*FO58wnlLn! z)Z6m&A%cRTuZTskHOU(*6kPf2*!8RXeI}7j2b8|O zue+`L`Cz>$3mTy|ctKSvQ5+;m_ALETe0>J(8)Ld#-f2vO{2E0Ipfw#vG32KfxkJrH zJlEeqM&e5IC$5;D|9C3qDVQxK#z28}hKW%7qF)f&*K63^5%m1_7Ch?WS9{XQ8NJ>G z^CnNo%+b8WQl1?yqN9-|ZP|JU0hR5)`_0<h1#Z7Y2#~YS#A%r zy^h!<;%u2uSF8xGb@i&UGhV|)Pv$fEnH=M*GdoB1FQ2$-N=^sLF3&ghKac+;$9q|1 zcNj|kztx?yE^8}e*er_c`Z%&RtGV%uV%K7 zr-gs52M_H6AOuhs&shb(Sejx8ozy!Z{|#EkPYJwWD$rGvKKi-&i^OMIHe+ZX;m9e z$hp$ic-;w!;5%9-mn!R)j{n6M+H#eMM9Jz`zZ2+d1-U=z0TBEo{(W|8M|yAEIk_+Y zMg$85$C_BWCQ0C$X%_H97o$iu$MZoL!g&rbru)@kKAkCUqY# zbDU;C0*9!7Pqs&}tSSEev{Z+l;VqJdGqgxDHo3a86HYKUe+dyEYi~|ag%gzAGd+C8 zaV zQC7+6jW(hO7#7%%JBrRg-P9ruKWgOu^63kQTG43<36Gltp35|&eAM4A0r2}5=ih65 z%-cQK+JI)0RmSQG5-X~1;&{|sMW*);0O;)!|E{!|bzr*~=eqs%2oCYr8&!vDP|E1h zYJ6Bp7n%ToDTLKhG)rjiD9R_LhD$4fA@~MyMfBht@c`nK_VHprI}ob*_oTinJ1B#H zJt4_T-zT5ixbS_Z=+rGiF6Mzx^hhLl5IcqQp*|(s0rgF7 z4i&nYCKF<#2)|Tu%FTytY3Y&nhP!%-nIVr^BWGauiT|DiXN9FiJi~LU_$8kq(akbP z=Zra!^w8Adx&WgKXW=KBB{gS^niveBPvb!GW4-0#=<~;J2=YHRJP9x>5QjNzZ`I1C z(>l-jTkq0264%@BC~uw4ioJIVV0?aY-mSJF-$Jb<4(Xbm{9ybna>bxQBBN(xaNsl@ z5^Ni4bL8AE+M4mP{D+h|+ejaNdM*Sne5sfN5V)bNs+5pIxOoOimpVn`?xofzf`CrUpDJjS1u< zC<&D9V3e*V&*jB^C9()Sxt>_W-a_mO-vOgyRC`;u$UU6g*?0PA@vx9!zs$wIS5Y_|mC!03?J8hiBj`4adhU8HBpSoqFemk`npo!K(ev z#mN`lTLCDB>omSsQm3XpYFSv1u{P-|80cD-3*Z zXmjWcT-?P51~i`m!OZE^G$LU#&}Pu?9CxU}v(Mt+C(@7R1={NX&t6OHG$#~fqI*=x zfgYSlHv7<*;(zAaK8SCBYJ;!UL9x?%bRwE`A4!u5ujU0TgEjMP$L6`a*GzW{sU(jeur& zIYT*^9-NoXd7McTK9gMYe8CHmdwbVw8nXarLf>=Z1T{Db#i>hL=SLO2n?43U&$2cu zW7;1gqkzzDC=Ci5E+R3HwgsmfMV0C6vkJF#keEcs3LDrKp*ahRm>ucW7qvN{P5)se z3j=yY$ZenN7Tp`QfW#-})~^B88t4B+$GUMEoJ%$PU@NNiiNr>5WmRd-g#Bm!;fc6K zE0ha;9M|(Xpalv@*y{e#Wd=?BWW#42dVo9)_3hNRG(8HtWao)^KE&HIn=KRNIEnUaUGGJX&c>I}6j+fmTv6&hZ@fn5^B zHh13Qo$P#=K%V2XQ)He6q~s$&_zeX*i5(YRqD+`RYhtMZGwkoR^O}~>x%loNNMW0b zzL?Xb1rsWKsIFeWpN3dHxz|Mga(jb{^!PazJK!l}^eB}Lf$4+vT#OADofCohU@VQt zNn6m9a)?X6&H>UX7<^P9&yIIeASx>rvFjRmU!V_2oX`;QJx$icz=}E=@O$cxE7h)@ z&tnT=u!_i>>O$_tuQcY4&`}n&{He-Ao$HcZXHkv$cqntI$%-h&nv`2#0Q- z{Vy1h`vAh;hLy(#(l41Hb?=_tPGv{{h9WtS1;yrMv4t`JXc4*Fu<2uvOHKJ~68??{ zxu5>`Zz^Ya?4Yz-d9+2tgr`26fxgh;POHqyr!0+h)WKsI7!DC&;qQhd|DS`B3{k zvn~RPI}$h^;Z2ee0Fu#dGp=a}o+1bUisMK7b+ z491<;D*^DtwCOlprB;m%6`mHEyFwcQcsOavKp1>|JhdDYjlZDv9AKWF-KIN=z>NOF zPXCgi0iN+~I)tlKRgsW5-{5CBA!Ns3ixUXUbEwzaxWlV|*+6C|Nf6mI7#6Uq5`EYM zXJ4hqe0cI(C~)9DIItp~FcSq17y9J3AL*Abun5ilz)mkyy1sKjBFmQ_VKuEpKsh@N z8gS|C;Hxw(nf;zJfKN0G&{r*nEEyh{<=~%VuXwG_SLg7Z!d~(5AH|6dkM*4j{OF6t zmoIuW92fw8Z#d+ypQoVeyjeGQl%jRczi0lwCZZ)ZCyHWP@;Latb4Pj9w#2rFlFN8G zMPvu2DEdW@%4{mNuW@rw!>?z5GV5w{v>FnNG`TRXXRzyuczqEqi7x36X!(quGh2HP zC$f}7pv#88aMD@sKxMXckOc4b(g5gycThoRy%=&7q7SC90yWWx7of6GU)6iE8}BCK z)A03SJ%M3iST?zB4MMTt8)#l{@evbqD1wW zY>OGiObyq12Pos=KLpF*8wf z^$XZTmqFv1BQRwkj&wlX_SAm(;U(vA1Z~1Jc<`Jfx;6T|ASE-W-Rt#;fM4*=UORk> z9f!QmI9{*0*teT0dXR(1i3~UT&giWQa$bbgtrywK86U@lAShwAXNy7Xf*VQ)x9*q9 zy}F|ZGd_k`(^UTyI~~kGdRwa+M412WvAkpR05X%Hw~cl6FSdeyS5Ct)os6ET3ru^s zFzVnW{Fd+c-yRS~nHmICmQPJ__|`uwB&Sn$YPdczA^kfWYhxzK7{$G2kk}^pjTN*= z&RLkznAhtV?Pg5Xb}}AMTed~{FeKkICYU;lG zZYFWvnKm4bst_Ig7C(5tpNIL7$NCQK=TPCB9%iN!eU=QKX~+xb>7*$aZ1VlG}~TtQg!VVmHOV_%PhkoTkc&+scBw$pB~|Aqmz$W0|VE{kP5 z7QglU-N5nv%ZWmL;KmnH!qYVAa6!41k39RAy#tj==TYKDk~Z=Zv=K+86BR(<-<}*z zF5j_cY%i3j@1GsU5GK(IB9O1{iZ&gkjW9MKxd6|PtsYujzQa}cJ`|cNT4!Gv>ND9t zO3TKfo;no*!N4?00fJnGUx2+0#BJJ8Y)-M(nM=e_ z)S%XLUz0}s)|*PfbCAb-ybCgWDv}v)F6)S9eIO;=q8~qnDdpMEQW2TUpG{V#ji9Dv zh7JOjsNDf-88xY52t>z`wBr<1C&UgMf3-IL!EtWp$-a#W%$fY;MNrNjU3b7aKzn!A~?caRsiS!03YG=eFQ>m(UL=9 zak0)#yKKe>Q@p710ncX-%;?`jF?$4LUwkELL*3jvmxdrswT9f3TZ!k{|AuTVAz$R9 ze%vPb>-z#_Mu*2xb!bU;mjnYet_M%6dJ0ZSuQ%0j_gJ*f=e9b8ZiK$mMoDFF*e!ge zdu`DXN9QZsIq$Vy!D%fW9c1uca-D3B-IP_V;`r)Gg@gM@m=h&GlHD5K3R28Se`0Ut zGu(WkU7L#cI?uprhEUFp_%qvi`08tOY~a_A(aRe>SXRXxD-+v-E?4dHj~CEd_7BXr zEAUJZGxjM4N*h4J@g3%s1nQcIYnFeKD7CiM_`Y+CdPE5;0|ED!1j*?u#}J!AiUP88 ztY#0DYHoXMOumVZNx^Zcl3I@T%xW*APXXP6?Yp!jMzbzj_gecr30IxU7`20Jb!u8D zuT@&53)t1*wU?a}%#Jnr6XKv!-ea5+L*@7CB%YG67t~MztCSfRpgk)w79VpVXK+X% zwFJ#*OGEX2Z&Nw~=sw(;E%%Gi&qr;q-99<0IH_gr;WLGz>KjGRllWSb*S)XoQDJnp z-DpYe4{1e)lVtR!)yzyD;j{*eym9LSFfmwVv+oA$L5ki|b9yL~?9X?3U)13m$W_lT z?Ox?3ac&u^KbxEdB-!wEM12)cbn9h}kjTR9M)S85)iMOSStGO*oXNIX$BY<6Uis?} z`~2+B3R?ExN?M<$9Pa$=I^*RT%j2|bl>RMc) za&Nrfj2t?;ZuC`3ZFx1!`oU2KD^%bT-mbtEOs_~tB$X5jm}m!NXH0*!TMqH>D#vR7 zplF5N%9A#?HUF*$N|xJWgB;APU6+pzuX`Iay0anoK^JXIiJ^oHOs@SY0$^ zKD@N#9jCa_L{pO0)qoMc=3KXTcAH99*XpP7)Zw#B3TwXk_;Ri1&KAS{rMqD^s4$#T zePRHD)Bh4=HrL!008UsIAIGQ|jt^R1cd>p;<*pvyBJ5*VP@-PTc3kbog*7=0fN-$7WyhEdI??+D|TN}s=N~AL2ioM z6{y^rD%j~aMA1R2~8yIpl2nIH__VC8(vc8 ziO-hK`7IjO{~V_IRgzoG1hwoVf~6Tvmy!m57ta}(R=@2|{?rIJWKxT00sCp^FH{a& zhhzhyqFF(Xb;7H_5yN4<1;tg*e8sDOIg_R4GVUk`MK{*5fp3?4k7G`WE-gy1JRToo zQrvj)u;i(FqYO#n-#(RYaIyjjPAw8~D5<-iC$SQKorP}w;e4h;{4`(BESlZ%ox?jvO|lcv*)}MNYspDN_?lLXhfY))gLt4x?2Tb1G*bdBnLS`)Gz8 z@<3!CfmxN*2dm0vD1+hN>t)5iWz3hl&C8hT;f8|N5|r@4dDQRHJq_N{CE+*xn$J%v z%U>;;ZVa?up)xtw-1QLaLfHy6V*x@(4YjCz>pkEo)*88mKW3%=Z9Xq4VftAdl}a(r z`seDv*JU?CF~IL;_(l?;HWDqenv1tb!)fMO%mdO=_K{92pK1%s-f&Zvy-m7bA7x=8 z8Tq0XfOxyE5ehN%Cau>Oy>~pwsvh!ly~z7-=}Ox(sIR7?qkvt#;03~gynSijsn28n z+I?%YjbB&JtyPfa%_M+Ovf**?;-^HUd*Jnw;@?fL8m4FuMtEA`9tIl)<~%Dbptv9w zpRdIgtT+5qDYj`%!bJVE3e!?gBe|3UV!z}tvu<_z-_7Lj5yqPY741@qqBAxDmK}l& zX+h+&Q2-t#O9Isa%c#r4E#7&B+12I&8dp3^h2TnxaISz61Rv_KS`XSt-Wv&3I`P%^ z2{}863`n^z=>XJWh{1S|Wn@q3!YCe>edXs*8SCMc0KUUiO;I?qR0p%}d&{V^r4wWt z6E$cewK88$MYdk7e)s4<$)xmvZ+sE;4+~Da3W=5bH#e&345xfY(S~pnRS2vWmwbGi z5ju~{NdA*lV)V~|q~k(Muw(?j=Py%X4xfG05?%UPtlP%>EclA$^jqWMq?bNiP0wCH z;VN$Rfz{tS%?^UFZ&3<_{AOvCzd77xeaf* z6D8IZcOEEN^rQ(eNMrpoDFeK?MGN$U4b6{jJkqQzCa2o;)SOv9vVB)ElW(0OoMkda z*#jpILK2IR&Xx*J#n7`}&ToD7+$7|LP(YI$Va6Qa=hG}WU0Q;g$_O3TG*NGGts!sb z!F`+ulriwPXuzZUhUUkI+uc=nubFt+70wrq-e&tbr2|Nfp27vuuwfMadO(cC~*?)4`q*FBY+WTdnpt-z6)+0tOMpv9|y zvX1eBMaVURWv_hZ!k%OU;CfV3fEzv}!H1frvH)Wlc*lD|=8m-Ne{A?uT;C6JbMH`zzHMqL2x2i|2EC57gu6_3J^=VyU84fW5W8%Y$rNk;m(!NxC9)Z< z#*t_MURc#?0uHEt2aaaw02wzwnQ$M0zCV*gnU;#lnV%I*3?KtqL$vcc5~#XeKdEA8 z0OY!$Y*+Q5Y`D+LROaURNG#=WPQ_ZOE+8Q!OdtWgkETpTY55xFJQ8z>GJp~spjXle z5M%({e*N#I%I}BNKq>o()r~MCA05hj-Yw+8c}qmQeFMyreXkz``(y*56EQa^Gr4gs z5K%?X4nRaP|H?2sctDi^=kN97W^Ugpj4zKr1N~P4uH3m2>7#+ zoJ;)JyvqsLC7rKP=~7y>R?!kJ2UMs4;1K#>V+kR|e~pC}Ua)PzM6!OG7GPe(udn`q z3N$X_hP#>_!h}^J_;t|JkieEi;E)AXBKPzr)b;;<@PBmV(9OsIM$m>NI%+u9*&iIb z!JZ3fDgZt{vjgAG4sJjM9zET=x_urAdb78Rj#C6t^_=W{pP&Jt0rB5HMo10(Z%&SO zKbkinD6(sC62Y*$Wl19e;PkMF`uRtSHF!+gt~0TK6v!=Zwoq^^Gd-C6z>N8^`QPW4 zox7+{Bf$(hi{e|)B)=%@zNYW5qu7p#^8`)RC#XsibmICV6*i)Mf$cx* z`VqcW$v_QYKD-+Jj$#2tWe5V2qEC02152YJuUd=%2h_x!BVc>&RM(dZ;MU39%AUEEJ1>?fng3&JMX*g_$$!ewBF>kR%9=Xp zfxy3Hg4wjG570eb-isHOVrqU3i5TW7B=JX3tG&7Ukcb(x4{ef=7_tHHdh&bO5|OO) zu>Bt^Ws1oxrLLzHAzS2LN*=u4!r zSuaczfbJ_zrKHT_jpU;-0YFEYj3wpcT;6}o zm}uz9|1c9GX^v`1L)6b$M#a8kpQMAA1penPK(kLobDhV`Ml>1iN<0O`NbJ0QL1Kzj z=4F83Nwc_?{IYEKQii|RR#HPri0j7F;D$|>*Z%ih(bT$;tS`TXI$MizU6W5@`WJuX zVHFdii_ZL9Tue|uUE{MMlQ3JadEt^Y8X$-02HRgA6q2n!90xycnlXI--V)jDzg!Z% z{>R}*%3F2FaZh+0&sO!DB4*A2miam&(X%ftM! z_I>FD3s#WX-WWl?@Bh-qs>}|2)X@?>oo?MeI6M-TxO_ZKahm)+47&`o2tr|VI8NzR zG6NmZ%S2F!{u&W!MiaaIH*(5-2m>`}|+dlf%}IP-=(C zUlQjoPZ2|MWfsTv<6@Yyo6d$%&HRv{!CY3X3&`xyyX(Uuc}EXopgKT?v?nz3)YxJo zBR{~T&$L4|_}j~?>epavP}%M!e|Ed`K@nLGurtdt_YCQkCJYJg6&+hZn-tas1sfs= zadU7scpe+8A&?7Wg7yN4m6~X+?6q&snPpKrx|h>3WQhbf8O#_Y%TLd3#c5FqxgcVl zeDSE6d9@qGO4UOOwP(VA1O!WGX%c73K`s_5zs`jYBO7q+$4j_qyVKPl*x=v8v8%VD zT+pKGf`Dg^nTCp{xxURV3RlmLS03fh+(>rl7Fe9I{2jz!)*D%PPjP(0Y3^q>Od^Aa zZQbZ*?yKTrk2;I--w0;*8T%Nu%Y`qckSi9au_KZ|$+)Qx#Az4I=%E1X{ zH!i=(3@~zCueeH%C@u^<{3+2U7QkjUTGTL|>r*jtu03=2B~dNz8UXph`S_P!TIUCj z{@Q6ZlcFRbc^{0w+8O!}Xo^5cP3Vi~I9xZ~4_2*uDZ^#e! zdo8~wcG7P4@079)gi+z5{0A!&3UEablm|EcZ0pnnf9j&gQ{_8aURltAE!6czi2y>+ z0xMC^F2v*V&YNAX!GPEP#8f6OkUS)+Sn0!c@FELKO99ViWN#}wmVM!PdP(WXiSo*_ zth|>Z9u@IZC|2tFf_LQ_l5igVuiv(ukRrag&%Ct33b<(c9LBtP^ zVFPmqLQ6$D7gIex?7l4$p-y4;Dq<^FJKs7#r5;~bH@$Uh?sjhNS-{gcTkEZ`6hUJ$ zYkLrxg{V4|bSo}WB&hGXE=*QLZ}jV0rg?iPh8Q%sC*K3#d<#WJ_O?g0U{ESLYGac^ z@z~MZa=TB9gfW+_3UVqnE(+dUQ!l5VJ=S_YR5iu)V^q)>P%e5`-k1?YZn1e&v->Ob z&ViH}icltyU12rKx4!gNgIcuI{&kukGMvXqJnKm?(62E>^Jgu21SQXZ|9l*zU0}ZX zFPZj(Wpwp=OT~qNQC*Q&b#j;K40bP8`5*{r=xt&%5qvD)J>ukxKbaw_nOFUnnonXp<4g2@Xw{0Jtqm-s6D_RQbz9bY!+A#Z+CIs*o=afy1SU$R(j%z2r z_J8A2V+alhCr1vhpo;pHB3J3mP)XMFUKN!BRGRWtk9zIH9xn?zculA_UnaUz1$1EY zp*-RfLFCoe8<69#&X<;1fmIdMnpOeV>O=tD9JZqQ?bocb@Qy$|$hz7$>Zl(OT}778 zkJ7&H`BncZmKrFF6Y8|MoQD+Tt#j=BYAS3sE<`_XN+gxa@9^K66M6Rmk>l>YFl|rN z|C2-5_EM9n!AebqOS)wh)i7uCjbG!g(7qA0ZdU#wLh#ar!7l#}0+1=*Fp=(Eb6=Ab z!RBI-w7VEKhnlI{Tsm=Usw>Ype`3uMbPlRsA zOgYSGre){M&Ga~aJ*pjaZQL4dkM;~ZL*-}w-B!bP!iVV~3#sj5bD$&bX0|IK*S#Jw z)@%E>-S!(+hBnl}VN=R>A0EjUj>|A=_9yMp?9X4PB@-kTBJYPo?^nk(75PU|e5WFA zfmku>wnP8U{j+B*UZ;bIsy%_=>Yp6(66mzkouK<%G36dx64)^o?#D97>TQyFr3bZJ`J~(=xXkh{BK(%>HTWD(^?j@=l!~tT3b!kh`UVN zip=vkc-}m4@9R?JhN6}^dh;Fm40fA_M^hzbFE)&W!ZR`okG=#;ew-VD?(=P44ege8 zCS3a#k%kBE3ahrqT^$Yg*{p~T+NvPfPTbFll^%-yM&8IkI zc^8Uwae!n~h^lj-luT5S7A`jVAo<2jdQ~<(ShJWSrC>4vH<_t( z*&$h(1oj+#v`;-D2-ym2I2CFCyHBU}o1pQPR(lG6{u#G5icuSozbGS44?a@nPqj4!*td+E5xvVS2ReE$+cU)cUW*aUY%q03yQF5Yh z0jGu~%xK;(s-l7@S>+#RlC|;PBVr$%<-FlcTBXWBP;D*w9I+W5gN?OemtnXH8T{gF z2Ltnc=}kUba=*kpL;XX>^T)Exf(_XN8z+QFs%YMdH{yHgVTUWEOd%`zbgQ3dbtV&6 zs4%@Ffw<$VtZ=|y5w&+(DW*3K%-WS8x)T#+uc+I;DO4nH6&y|0Z0JVTcWLhJn@VTx zt9LTAbHOInOZj~l{;c=!B;0rUk($YP5%iCZA0~#e(yF9;MMc0o>hi9j#s=kShCdw=ME~Oz0jF&xg3@`%sI4 zKb~GWHgh#kUezBD%p}pxF+R}qvkjumwJT=l0!l=ip|aB1A}L&F%C5hccu<44&bFxk zuphO5T{=rKovLVHjs6X^etyv@iMb={@KfSZB=OS4T+}tZa43~!cm_<0P27O`MSKpTUqyW$X$4J*v zf`6?5Ig@4Elw#3+lQEf#=z;{4wav(SuUlGjtGRV_Jel?HMq|W7((&Z`&uZar@xG5T zY5J=AeYvH`d$9#Lv8O(!L~eXiOy0-NVXZX_8=aEuk1IlM z3o1~p@}r7-M>b<~+Mce$Pc22lE)gFsA%~w@mEP?*USfa$22c3Gt-wlp-1-frd!q25qIXHipyjG*qOT0rh>o3RNA}>_B(OZX{k;oxU$4Ir2?w z!|sgx)sd2tr0Zt<$X^VoJy(mQHlZ8-udd{MZCVYgZlI<4^SY6?<-8DP-~+L1F7R&7 zHT@&Ue;JA4Ya`5*&V;v?(5kYi5~i_m2bk&euSedw5GS$0kw=xQ2)fQjQ z!4-HR|MrY{ar~E!(xEE(;utP*h4kYmTx{bc-RSk~ybZiccl73Mm$$9)j(5r3Kl-Tt) z#Y57**ms>`mw_t+X-J}xWVzPK8yloe_v@ig+;>&~5IY-0df@KIPOe>W8Wm7*-m1bk zYd$A@=&nnk3nz|^w?x%4S6o$BvnB3er_V^tck-RppyEw!whgfJSs!ZS)`lQeu-&qG zfR3Fs{WaD8ZsK&(O;l^jdNVY|5VxNWFw~d?qRE=5$m7-?jWfB0qU55IB(xd7Hjl;(7rk;Eo4Eh}+VNSdfo8}y--Tu#C`|l>nxdJ#R$hcW%~tI}3P-`a zSr>?>7DdwPud2J%&hbkZ>tWTLMm-UMVmaO>D=itx5jiEaMfc~;Eh4+NTGdRKaBzJ$ zoAvd-n_%fdto+J6e<1bRpBMDJ28q-s==ayiY3AK0RmMx)CGK~mOnO`GhZk;gck|H; z`2G8_pipc;q6!{GV#>Wz20w&Ly>DvjJwV9(#W4ol-j0mLmL;a|V0r=a2XV zX_XAue`g-9)O@z@THt&nnm-w(C&1L+qq>!KtD1VcBU)j5QW!-}T<_nt`RdAWYYwkw zMAltn3XC2Vh`-}xGwPSdo0?r(k|*yX6ZqvfgreyEy-w3Z2N*I-MIIJ%ev8*r<_W$? z#3`Q~z-5&$eTgQ5%`#TMXNR7dc#jnpZFQ~Z_R>mJ3PUy9R3*zf9MAavC3JeWkXx!I z6H5`8YpS<5y<6HW8L0atQUA{^KWG@!N65zMbuVUzn)ny>*Tx65y(c%MQNl=FIra>Yg%8h0x=hpHCWZHNp`=PRI-6jv$b4fc&dJWxmO zi7z0)1M7g9g_~od=1K(46y!ti`H1FN{(w0;CLi?oo#REzPFDg17Vc>P`pTqnuKApM z3GREY#b^f&G&=(QGV}!{Ma9=>-iX1ix<~?4%m55%}>mWl~4U$;H{X;v#smK|2=#&BYRJn zo~j%!*6Xws@5B}z0q5~(-#wdJ#*y`<^L5X9r5|ev;bNQQ+`SA`b*QRtLL=}7t1oFt2JbEY@{l%AvDeg`jR^m_0h=NgpJtX0d38oV!czZ#7b9P*tq9IlwM zv1X=QIMBq!-uNZKa?%AfwTR5wz)dImyhw?N!G?4jkNRh8uSB$*rw>95FT^T=dI#?0G8Iy6Cznq>k;5!(~?LCU$ZSJ?62Pt9RZSOO)({z3eg&i|ccV4q+ z04FV)O%E)WuMGQMR0?Z+^wzb<@oFa=x+9yHjvd5P+6UkHSiF~3i_Tw>JqBW3E=J=7 z27E8veCzQ$X36Rtj%IV+Sn^&@(MJwy;G_tjRz_Mr>Nq~%?9+$ zr&Mfl-1cQ9ZRJrzFN{3jjpw4=&Q8O$p~%GX^qgVy z_PB75kAg<`z6a0zy+xaA0Cnt$JrwRr|2YP#UY8`PE6Hf+2iWP~pO+-{VJTtS;I}p- z5+f`O>!xgm%hfJDHR`h(HV7-Yjvu`31MLakl?$dp=q5ou5K7(mf-HZ0-zr5rG~TQG zq#$Nv1h)s~i`(EqM>04EKvM}i_ziFBjaTE@2VaJTnHDw3u9`~0EJ)0elW+jC+l>w7 zVc7_e;?Zo`>W~A$wIM<@yx|U|gbM^t%oViR*hS97Y{w* z{w#Z5%rDnh;Tx|z?l3BB=e&TSFPqo%7(zGwYc*B3L{x~{-F8q#voWP#;y5=}!s|V` z&+VPjwGwe8I>M12d_J9Gn$av5A)lk}HwdbZL+Tx_**;>uwNgJP%R7a^TS9&*&mXxJ z2irl%~D=Bs~^}k>rs9|4@F-2PDFtZ-dfpW1Nq0@(<<9gYgToE zttRD6e^UGn#kk(JTSnh?qRo8|QPdZ;yI>FXR1#C@M#RQhR|l@J*nWUkt&NMFG*jTB zi+;ui^EOM-snf+>u)qRiV_od{OJlg|`^B{#`OKfcFY^|`l9*6oIA?u?%Q>SlvmO9i zOBU4DpA>eiMA(XPrR$4xaU(DZu$w87DKR%eSi}KDv`){Nz-VQ3C;q$CTro3G4kZog z=15Vtfv0udcypbYwpM@Gabfk_DQSN-J>pwR6^CoO7tv=9#_RSv-MLkILMNQU7`Da3 zl;{u3QdED$VJl!X7tH%&6bH*s;LHD8exih%T6qZv;rlcDPYBRsAZ0(r+Z#!K9=HZb z3Z){=khrvrI+NKv05TV*CGXT0t`k%LD`{Dazqa2^vJdYD)bS>~>zpVY<#D9zGXtGw z*izK)8s(L-t4E{S1(G=`fl^n3T!I!Rziq>+01#Y8;wIyyN+b0dO3BUXFsuv|vNg%O zR2qrFz%;WQ+am5(@?WV=c53n>^wh+P5=|tA9ddVwfnlZ@Ww;h+`4`z8$*mDpv_jM{ z74MN8&;KMqPk0m~8fHlBVm>^CwG^Kq$S@N&uo!|Pnct0DY&>MP`=-+k9#Eu9cbTvu z`cOLK3TVVr@$4VKIuv#&fUCi7A-?l=k$PI2j%pgh*8mcd32{r5|2M36In7($ zzcL9?pKv2OoCLm*tu!aRk57(6@#Idz3zX+V9F8Mn0O2y^It|pQk$OAjjrV;NcOYE* zKPzOCL4r=`#+;&IHpB{O0+_Qq#rTB8A@OZ^?Ia5L)vQ`$wMB|!jv?e?e|O)ymA&zZ z4gn6OQcQc_iZhGd;Q}Lxb_)K^Fz#OG71g8%Bn~5SGX<2U$kJjlH3_@7G|-&TzwqsX z00@RFjnuJiI!$Q^g3DNbOeOArO61IW-o!=ebO^Vuo&tn4 zh`5tz*x2pemmL`M-NvawvQNV(3#`?vhI@(5YqX&^iPG0u=^yT3Wgu#;510L!5a8pP z6w?u-hKm-lo>96E+?7cCcp*vnQQuoi>&Ik5Ae&Kbn z%#Y%;&#*G7>)J>Jp)O`|fRwWYbzz_q34k74z6Z&dKI-Xmz|P;fM&Q0Aa&U<#4tE@X z4~kxe_X+giX-rU(KTRYszq~+qNLkPc7D-i|g=LN1w2=fg?7W*>t~Af~Sut2Bsn&Rj zAbqq6-YUF);`9>)sx{G{g-YjR6ada}oT9JmF9lN+aVd1MFZGFR#vgm3lDXY1;<*su zbMGw2o#*Rhk)8rNOqBHNiJg`~xVVWI`w+|la&LLMv_Wke5dVhiAf0YmY}}Ncvw=)- zV&q}eUncGr3Kb`>hoe@K6tiw3ZaQ5hdbyBRJiYpeil=EQ)uZrqS7gqZkNJe|3gPbk zy-+fp=8XPpc=TNdu~`tclb++p^8S%f{VB8NX-_-@yQcEjG=%uHxb~e;ZJ*_QJm5rM zOoI&c=ZrP&(N4R5&k3^`pPe!^&979zn-y z=298q$!*??nE0;}hdD;>P&Rv$-+4#q0edi9$K2))&BOq zHQMQ0_SHKw1XZoubYW`^sm;6e!tkvubPcTk3;Z$E{}eKl9FHv>SX+E#-lg!dragk1 z83C#yq4j!MvRAUvcN?GM^!j-M7d85GvUSjN3|eu{3OZT{UM#`%K!$pX{f>S1rt*}C zSM^+LB#__xms1tDwR~1q{%;!%%mGxto{HZZ7ZOs9Rich`nx4`Tl5n-(s`h1*5e7i) z)2x8%RpL1;Ym$F13*+`qNfYA*Ly(TO!yWZ!i`>&)3o|-R>V!r^HvTpH`E8>iMH3j7+1m_krJrHDBoB^O}!MP=Ae@ jWXk_U@c;dT89?ol<6kG*Wt*l;Q(B<(OfOcPcZm95Qv_Qy diff --git a/apps/console/src/public/resources/applications/assets/images/illustrations/microsoft365.svg b/apps/console/src/public/resources/applications/assets/images/illustrations/microsoft365.svg deleted file mode 100644 index c626ac0da9f..00000000000 --- a/apps/console/src/public/resources/applications/assets/images/illustrations/microsoft365.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/apps/console/src/public/resources/applications/assets/images/illustrations/slack.png b/apps/console/src/public/resources/applications/assets/images/illustrations/slack.png deleted file mode 100644 index 06fb5baa0db11438be97015055d765cc7a22987e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10916 zcmch7cT|&2x9=n&A<~hm5kb0iMM0?nQ3;?RAfU7;3Wz8mMo`*=h=??$+b9Am(v@CA zS42QmKq4FJRd$w1H2_v!SY?zR4RYcumM zmM$nfKP~JV2s;@stMW{)>s@wix)s?EB}dA_+BgJH8f0I>8ga53#dCb*+-2ANx{{tZ zG6YUMilwtkqN)d}D;8OAoLgG`W4;>bZr;Fb93f)<3|-VF*^?e-md!Y>ux)j!k|b7W z%B1YfPn!-0^X|r?T+d2_e@erfm$xJZD?@2&@ZXEP5BSw)%S=s@ka|0TRx;lNUZuAW1&$dQ=~;8 z{Mck~!BrmzNbil=H?<4wex0SU*853ENRCq+eay|rSNqabK`Jj85h?pVYrK}`KiuOZ zL2{f~c^*vJb7I13Jpikw*0L^yq3I(@crbVO3EecoapXw6k%kODzVpOJeGKPq;I9vm z!#=NOGZxtW`7*`v@eLxsFAwyI;i;@FAo-f#MykLuO`p@@nWh6L%XgQx4o?=N<8Nl{&}UAYTyMYb z??rm*fFc3X)UFmVo_sHQ^JHQpP+8-xQiJ-{g1RLqr|KXtXM2|KApkiG6<|LuMDHu- z7v+!=c`NmRHjtvC7DzDCa5e^%zBfwX;{?~*CXWz3{0K?cPS)+9PghLQe1CeTs1iRa z;W-8|s@UA>?4kI|#VzLNO`rz?b)B3_O}aHZuxUmtz|wg|smi>Z`)aoFiw#fmd3(cW zQ1X#csZ?nqQne#7V5UCPxgc1O}uMUAEH`vW{0vG8oZfIB4aMcV}{b{efw_Qc8trv>w=^3HmIbKl6 z>oXbCNcwt+Vk@tAEo@7e@XwI?{SXEzDVlYRuUWbijy7+5X!Ur+@9GVTB)UIVZzetJ1fw06j0j+8r^ix_I}#0 z=kFTrXT#}~;h-1ENe_ecp7q&|>JK{E$?jhYK1^WABD>H{Mu+GwP%AGBSkZ_78OgAs zi`X=PjX+rRAA^OenvTB0AM1Tc*d$0(v0^yPyOO@#GT3R zeSazLR0|fsKX!6!C6|Usc1qj&EY!K!vr67nQyWo7gZpb_dyvvp<@3l?Uc2S4?il2O91lTl`pzVa)GO@m0)TrJ1CN~&Uc^Mh%TISh(C4m*OMbc?YaBZHoPZq?f7=BUYyIFW(bCi}wCc{BY=9f`b}?7>t_Wjv9b2^R96LJL7$p4PgoeG9 zK;hz&>Unp1Oe(LSI3Pc)%Vnotn>q6McS|20S$`l+mPP}?b68$nL@J+?1joix6(JOe z@SMjtGK8z8;S)h8Ot2Ur^K#t`tv|ot+5Jv%+T98~NPh3?xPz8W+3)OlSeE5r`%wTI zTIIO^s;Ds+`0F`J)r#ayLqWo@o^wREEfdgkj7T>D?MDE39DMrluXFCqtpQLpfFEh0 zc=%Zi&jJw0CIDUfEb#N}J%HTYPJ?7$_x$I>_PDb`0KDQt0oB3TquCTrfc)kGh40=~ z0zfU-9t?Vio%aD!0nMDr9ROS<(I9d4DwEJ3 z5~>z6C+on;mBSIo#%>US>n^CzG_lXFO2xt`m}4@%xk-+tI9w0clpyTT~54bVzRQo#BV1JYXa=TN5j-heQKlc@Kbs zf!U)|mOOOH4k%zL=#OG)c)LnfbR6rpPXYjm-GDzs@(v#wS$xWOMM*P$(W*N=voBu` z;0Y+8S1}xMH}-C<4s9|erF%N?82QlVtk3M5l=ae=%Z5NWy@T#%%!VBrT2P*#mbc6pN5HpID$b3~kXF3B2Rm$Yk zk1`*w2VSoex|rAu3O`k7PgQt0DW;kpYby}>=F2!={Bz}&{5=3M14W7=wK*O*ZFJux zLSF*PA~s$&D1>3Yo9%W$2*x+x+iyE;i856Nh-*L1u$`a*Tk=;rx`56l&q z0EOYn)qEl5*3v+d&aBf)a*26*n{Zsq>{|uyD zfEuffUQynjam!&JH^{GH=;bc*M(1bBldP+Jz7e~7q3ZVK;i;MMjk#msN4WLlwP*ct zmfhB*q@I2jXB1UrMDwfV2Nt}Uqj}JZl5sq1aPXyrMD_}dKSMT1cTLGkXXV+AtERZv z4#;8l(LE)sKsxY%rK!0GyhI6$Q-R70*E+dfV>_lv*4-|lnyHHkK3Lp-Jh}u6dVh1T zvSRspjn{r@peNip!MJzcmPKgMnDX-iE&S7*mb~CLQI=vTHOQ?CiE;nE==7(!MJMRx z|8SL~W%VYOe`YMKW_s8e37nML>=hyB+GU}rCF_iY#iF)el-Ba8?jWDp{WI<;wJxYu z$miDSA=1@ruc9Rbpp*9ZE>p33@dk`oZR$4hts(HLQUwN~Ik3pt%BLtE)Ua$GM7lB5 z8GFImp^Ld|!M$s3W!Uf6c`-db724rY+{5t&YyGa>oUeW|g0fNM*W;a7uH?KNEtbVR zc9j3GlXQmsZVs7oZoaj$KZ?QKXrwA_)9mevGqT^HO;p?T6ji%n@d^DLib5}im>Pl+f%6N>y>0A^r!~NE(~%uWr3qTS z>(I=nQmuWZ{+p*~IAr<3KziNKV=T(X)CXRYw@PT)IKMX0&gkrp33yHHeyS^Rf_%=K zmFM(8k9S)bYx>@S-3Mj1a!%7{%MDpajQ)HEiRI+ydrvl7T@$%ABM~ojRu~LS8`i|K zp$m7HqItB=GDKLe7zbOI&ZID!74{_P6OQM9NPtG+r?GbAf zHBV*jYY&Ee;yQ|Fr+!Y&Bi)cQB1m8f1@!R2EM|rcuqnMpRy&9=-2(YU5Op zFB_O4pDOru9^}gWQbmtcG>+F{5BdqVz0d?3g-BsnQAiT=mw#UK+wsAvR*WetP?9Fv z;HT%l4)Jt!%_;`athgF$<)ZL|jy+hwg%aB} zsOUw;;6?WAt|cqnl}K6gqJoBo*X*@v1c7K@-Rc&0o>owL0kG*`0k84Lzc)0f_YO$Br>aj~rrt&-;{^>DY4`^cm*y zE%-8S!^il`$uj-hxAEc!89S?;&(A%!dDh%V1Tg5^<^qs8DO|yOiUdbE1vS@g7+X5C zB0ltv*rzbm=q_?Mn5OCc9)qlhHRW>wf-uBlf_@7o3R?s(2aNYdY#=L=dN&lq|1AwbhrV85aQihJkOivN*<9n5+Phu z=9C#W2@)il2Z;c+2g1_~-J06b%T7giHiO#d`3K6JH;sXwNY#arLS1$+a}_Kvg1W2~zlWys9@4vlsw>}N zI&xN~K5!vTDZ58B3#13;w~mU>;O9cEoiIc1B<*WAk_ymN80_<;^5E%izX;zjCR)q> zB7{Qqzjp6(xe&=`)^;4olK=eAxnb2Gn-Re_hiujxMs?fwd7n((0U$nfSO^GRd0&YL z{ta-ac4YZEx61$30Nd>WReeGye@kXy^lejRbfSjKQp}G1ipd`)aG)1!*jB(w-PsKt z;~jzB>|twJaA}?v-0w0^Th~*p#OGP8^s&B5M0`L5WpZqZ?Yw*1jg0xN=5No33snGw zSQ7KjxLnRbRSkVFrQPxlN$KqNRAXbIxepq^e9QTyx)PSEu^(I7;H}u2=ElVz)R{c- z#!$s>C$xzfD;F(U$QNe=bm;0anmmUJ^D{<=yyv)8BQ56?PCn$KUXVu`wTU%Kn9G}W zizKbH)pDU$zOK(qy1hP;ZDfIA_ol;jX`NN}S05$=mD$#KX1-W~oG;g+;CxB(8J`oRtTLu~lYX+;V2oPAl~3 zV-hU6O?28+Y#nlz-!Rb26$TT3U<|S{);8F7D7Frburd!>2QN&xnS$NRM*ArYD zoVo1TggxZ!_rY~A?J{?AZ(N6`YV}G*$BWx~L4* z`C9Zm6U$-&Q)lpoZELE*cXyK3-iE*2v>vxAzs?gxAg#rH-bx<*tWmb6xN!VYP+!xG z{SE1<;`_P;{J_OYQ+kg6#Ij`K;tBKKa(?5abluScZ@&db?q%0BlU2nu(zhT_DHJgl zrjAk|*z!7EfMSuf2#g6jZ-1{7+G-cK;j#2L?EZszkVS9{by+WXU95;C4TR1_Wqx?= zfWbGJ-Ta_iq}1dCZ=dRTZ&Yb9HLT5cD;%D%O_JYgEj%WH0$x;HrMi?<)r2jRzRrcM zTfV1YbPVrD8fWXj#_0@%aS`|8+E&)(b%iX9K{8BpthI#@`G&iw2GUb7?el!SWRH*9 zh^6^(X>9j}*p9)BhlDUt_|Rar&+zxH`m-2B5(3V!D+*e^YSUO!Wd#s5Jn`@Qtc0(fStC{8rh{LzB; zmNNYIrIgMHY9`WGCjl4AI_90=c)&pS{?)s7+ikFZW`z|Uv4``3y%YA1! zfc=gG7P+Lvu_#$Xsk_FCQivSr^&xGGs~sK?tWOVgRDZ4Ivgqz!OzBQN27F@;*Y;kT z{A(dn!wKG&_iw9;-D=(38BRv7WzJldoC->)3qEc_Kj$5sMyuWGp1s^6S1fg+bSzpPiqy;mcKZNR!yFE0t6Aq~%XW$?-*N5?<9#J z*C%9Suggy5t(WA*Z5mI^H!eM*@Fv;`KaGrXIHCMxFE@5L!RK7}V+SF5-|8uwNKSIf z!v$JP=XA(?S9#*2>TSRxZfkhPy1J(gjGSE)jgN`wD^4CT>=q&&DdljlNUVi2O}DKq6v-zN7(L!FNmqA8~ku7WfFPKS88&5to- zo2{q=YJf#+zAoNq4GPq+VnRq9diJdVB`rL|BF_xYx zkJe-@eZA3WU&V0TxB4UW`oyHkYM<*Gb}J*3@j~6QG3w7e zuCC|oho+(XSw`piF=g915hO8pZDNP4t|(ERjI-LL$|u~w7|nuA&EsB`-c7GX3(9M@ zMBQewwaQar?0U&#%WM5wP@~d=NayK|(JUO2ov7<^UMp^9m;GMH!IDiCYwMf%Nn4?@ zh}I`uP8gd%KOhUkZ^~GV*nvfk=1`Mw?98sCQyrhU$8#Kiij%CTI!@(OU4Xnz&cA5v z1NWzl)_SibBs`CYZf3opjsCW4*9_MK(XpP+n>tk;hP3ho4!G)n z=`)d>a{J6vcmt53-^ib4oOp^obNa^-`FE9C?TCW`^{wfY0zMmJ-7q6N5MO_Kw z8j>J1nR6Y~hHq+C6RltEkE4nxlqtXO1HV5zj&~sXFz{ZZ<(=Vq9Cf_h>LpF*;66*3 z4h&2c_0aHoI9z@Jl&k%mx{FN@9{AZ*pYQhUE`3yQMj{|2hv14BVpH2~Gcm;bt@2mR z#f5t$UfE*oX{kl1zA5+ObxTU%j`KD*b2d9yTT~<`b!h5M9#Vm#K3kgr z+zwv#50&|N{pO4w=v=*guoqg)ME#HaxO~4Z zyb}iBIJ&5-1;gcsvtR8v8b+Eggt(kH)scW(-TCotol=SMlqIXR+)eeL?Axb?cwT=g z%B>{={L7P}wi9;P_69#Pk#Y2SeW)}SMQuyTC)jp>#yI%9$~5Rgo&^ZHe9V<5X5XvF zaRHAD?SFe<8u`NN&_#DJI(4G<5eqy>@=F(cAo#|Ab{Qgh>SO5`TnY>L&hV8QJpB7i zFOqdjP`PrFuLbxP$iNJyO($GIV8=7eTa&cpf`(kKpWR-^f8!yu_{QDFfTFZ;a#^Phnid*F*5^wm!xKC}fA$X8X-{tIPLN z17n2|a`RgqF5w5R^LI06zWUnzrJ-aUtEEo3R9Xe6xH6&5+d=xf*ZKr4Wl zccJj?y7F{HjO~s`vD8!&ML4m8yLUgU(`{LvT6be}H+w7_31${wNW#TzhL`IP zjdBnV(GS?EjlOTP6p0|sm)NO>XMS>?En%E%2Kfj53F#4kM3vv<514(rls%fLX z8F9n&nN2S+aTkp|K90y4i=%0YJC1O1giHHDghhhGL9$O<=IxA5aZ$37ml&;Wr-3xxiwE3f@xqQ zH>e}5%l@Ymri}=QwsugL!%@7=A+Y7Qq!aKB^&t7W|HBsU-eT*~8t9*3@C5u5NtOPq z%8tx!Zi(sK>|mXM49LUuJN@z@np3q41xQMZUe0DePvj}(Zow3J0{?^m87?JDAbSi_ z;i=}@{wq|9dmv!Nz{hHydur2*8X>*Fdan+E5$W{Ija!9HFuhL2G1;N-zdRds{-5B; zx@?c=dc=bYO|-)^HJn-1r{#LO`zH?@n4VFcys6qN!57T_(GvznTsF2EsR}e;xccPq zU^%~ncZUU|izR>jos}SYqMPzV@GOjoTv)1=GsN2uMvCT76{qbR2&TfEJdr)>-@~D= ztpM7JV@@6%`e&R0Y|CM8yPk;bxv2;K6Iv0UhCj>V#@H zR`RvoBQVGRM7W8&_s@F9K`6nbF*7l<(1$%*$4mcLxRWb$Zs9ngLZFRW$(5#eEOtmh zdvT@vEaYi`kCyz->WHU)4lf$%c0aIcOn?!{)L(QTm#nkc$qmdMK=%Ik07sAjcWO1+ zB1ZFo+`Rbrj&gf|VJ8>vnsNW-i9f5Df(jn0A4c|SVSq}YMaxg+1b&d|vPWz$t&_v< z#fA<;m8K6ID{NV&#LyoC&Q4g>9feNXeCsK^9c#~g-RBHf0~ypx9;(mG5#ynIT;eLm zFRI5K*Cv|dcLM2w*DKGyukO8_)Fu<8WW-maH z;Od1sisg2Y`LZ$CBi{7hl?QUEbX~7LZktZ1f0OGN#H4#2!n*Z0%j+)L3c%3R7M=QK z19N*KcBs4yL&m_hKUu0HDp937WF42Rw?_REa7Z}(HH3@i55KyZDxng;=(6D%(DGVT zw%1afOt#%-7GbdJ5HuR|chFK1MQ#weziu%qvu<#+iV*;R-aC8I2NE?2p1B*9`&5)z zU+F*h9}BYn>cG${!GWnuwj(C1gf*LUBK*5#J(lV+2D!h4i6JAFY(?XHtoQxBdVx*gDbMU)3;mi#ri zMvg@Q2zuqvzm#(T)V50{xcI!~egG?M+W%wz?f+}RC!GPaUSbLmXsVK4_E0PpD2{Qn zjF`-anJ~n8nrz7u9|y)?-AcXQLkyLK_h$5-ZGcwe+U5 z5AddvQ%@+o%+ere_yPsN?04{lLJ+fi>5e7aGf4U^_ei;xo+hkM4n(fIf*P zUt~UYY=4U?l!J^MXw0TS?+;gc9IOPa;DM1}bl5b|pvN3d>I_}4g!^;AIj(}0K=uyg z>f<$6_?`&gJBJ_QxF-&U(xnw-E5xk2g0!13Z%qwi(x=?(WTozBj-*Rb%t}9a96o^} zGpmjVEFhSnN5RE7n-2qpe|Ci}1K!L9D#V%TUnWs6>>l{nNJs=QYxKykF%Ixc98UYE z!tPoKqo96}3~eF!*rEoU|LYC2_Wth>=wD^donp+;{4$aXeMdNjbB+&|`XLrV%7h8b zYPO20vpuM8?gKj!Shz2L7bcOtx+F{(g+VYKA7GKk3ki;(?XN4JA@SR zf{x2%URbY(p+41|^ua->Sqe(eg9Wq;z;wa+tO?CHtBvLQ|p*)VM+`4ow8q{kh^B2|IKPf{R8AA~%B+jsU7Y4EW8oRzF(5kguK&+2_>gn7dWP z58F6A_sxIyp`n}l<`VwZ#gTRo!laRec8UwL-6O7IhJ(3}aYg52(a`GBr?%T$)KIVrUv-@81@on9U$;N=nPyeWV-JBRT!THRDkH`Vg$;Piv_tWlUE; zb+zxmNwz!IfAg>!^B!0=A8m;)$YE@2xhrDDu-SnE@?Q2pX;H0u%g@Ii6kK*!*%~U^ zj|M$ndv~L3%YrAEw8u7a@a$Z0`mY)Mq0;<}qx(szxe>ArgS^zfSEedXm@U|Ipg6Oy zSnF!>?pCGi*m~`|iAASkoP;Wo1ju8!)2Erd?_F^&TLt%FGti#SjaF&c;XtrOC9p5g zCgmY*^D7ZikdU`bWBgR%S6@+c8bhi~LEPTb;=EH+jSSn6%pp<< zAz7)%E-L*z67->*huUW|XxOdEwVCeD?DK-2$FZB)p5?mnQ+FDg3n8ZrS?M6lyRdP> zQ#$Q|)rl>>r`u%jycbP4&khnsO{nHaN<0^m4)K{$%}lml35x(rB^Y7H7c7?xZItP4 zcn+?~R6ye_Oeo-lJm!fKUhRf79eJL^q@BV^V<9H1Ve6j3y`LpQb`UCB70Lej`xJp--&R!FZFraN)Q!cHoa3?k}8Uh=l z;%)-u0=A$fLs{t-1F9v=%gNVutz41c zYcD-z3~`OKz2PgSf8VL42AOq%b{=Mi=kzPRzgPqo&3>~ozi&*MxKdqHzy{qw%1$-4 z@)~X(F+i0^u?Cy0*7U>V8pX}dSOU9?C8ebW21W<-vA(deFloSoMfV+J*+XtBC)3z! zW69H$m&47ya4akauK(EYURU}8d#x#V#16x?-MV(%Fc&Mo!n4Pt6|Rw7geu^LT`xZ5 zIkWEJ*L9p)mws%;AGlC5E967&iYTgg6HONbVm33?MAL5Dae3-~4=Bk3$Jp&N!`u;? z%3T(mP9f_nywJq&Y`h|LU8;G;xJ?E*x_?~g+TOZXE(33ewXRl?e-zbgue-)FxC1)3 V?eh%LWg1XGI(pI|U!Q#YKLES=2v-0A diff --git a/apps/console/src/public/resources/applications/assets/images/illustrations/zoom.png b/apps/console/src/public/resources/applications/assets/images/illustrations/zoom.png deleted file mode 100644 index 2a02d7773ad4c078cf078649be3b7ff41900c36e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3947 zcmdT{_dna;_kSg#h*6_P@h)1mYSY@IwYBzaY0+U-l-e`2M%8SUP$O1tVvnXFZ=*}? zRZ@bYHBxHC2wtCf{}10EzV~tNInQ$*&wK7VkNbGs1angZW;ib#003qqLtRS%fKnk8 zpr@gl?o#2;R0DInZgL#}>QfnyTxh92#Lv>;22eY|ze05wd<<{<0RSV%X@>xBb9t!2 zc=KDYQJ_>7D2X~1DiHfmOHkuzQ1U;5bT&v8+0;{45DiLaff5;@ zWHu<34PNJ>{Hc$UFto)a03`KosT+ba;> z+LC~KuoP(b;_S$~;i;w7mD0y^SzSL(r+r#-D4~ zyhabI_Y~rv+`$-mp+z~FLOdAm{OIjzmNVV}4yj?b`gs&&8h7CPm!cUXXZkqWh&oVQ z$M;jC-C>`aK{opn8JMO*Zije);Bog0a%37`>N5Ge_hf(;Qffg;4qX#J|W~ zlDCRu&Qb*HcSShed3m}l9qovku*V-%-AqCWq1!7;951TomQ6N%#Lal1E$~$=0}~W0 zspn-n>3;mkGh-!xLr|z7NTTgP-KT0^%E{krW9?s65~%!yZ!(9Z@&yZlZPv@cs+tRr zN3~~|9yqktpZt8$2Sa2-M4%cfbH;L8`w|7Vj?nfg=9YmpwN@BR zwo5%RR$7~3Zu$P+QG)-WmP#y?gWy$7{Ha~gv#5O{sUfsxACrKo^(KeAF{iis5*YX{jT03R}fSi+slE^mA1MMa5HfH zJ301XDERiuDl+;o(h9<(=4W^Ikyr{JWnts_`pMElk)(|D#9o)hT0Zkjgq;?m^(o
    Tnkm5WB$;;usVaREM%0QX7mh$_qKVLqD z5*~+XMlh^47*`hmT(qc;nCYDDPgMy0VgJ{`-gjRM+$*y}QEv8eHT=l%SdVpPdqikY zT$9!YC?AMflddzBU?qwDyZ9l|;&$gQlC)ppC;iK(yI;KxsC)195KHFNwuzaRH>-bl zoVO}`(uz@QyF2H7dtE0;JJE|UGZGAUMkt6Q25ivKClkhfU~@cJ!{D6P$Fyu>?jB}d zkJ~hcMqk?72nZdX_;*d+zs)@suygK@?d;e5ikLmH{i#)#R~CFn_$AP+>q>)xJbK?gbP%Y#(MP@~9cAhKwcXrliLLnEc|5pLwWX^6WkJ3j`SP*K zu*6;?BC$W#8VGy!PGT0!lr%5d1L<509lk|KIed`aW-ObWZ4s?$VoBn>o9|JL%&x_m z`~mkW#`ys*p^yF2q_DIbqhQNOWg3IF>V9cQjVN0CDaRVv-#iHmVB=&-4cTgwW3&Ms zQYK%(WI6a6G9U|MHYHym`6n3M8hMUMg_{l_9&H5P5@L(`QF)o+TalmbLzd0$PTwII z1t0Eb>>=F$48b=(Ne`2?`f}~UFYoUZq`(q57T{F`@!1oE}Yc@L1XVyb|+lL-h@jQu*<{2l(Ki<=0}oQ;fK$sA%5F>hw;=8P?xh zps#m`DQk>W_hzvmMHds-G{9eA8G2PBNP4syiaNm-zZHhyd7!-4&%F2(!~4;7i4|{` zQ9EkDeBQ?62%V_rI}E{>R0nNG-6}k{T~YHG3xxO0R+J1dGui1J5Sw_=pVSI{ST-(B zdH#NP1uRdRxp6ttWE@rp-|Q5EUtzjoMelxh$sl8Z{7pLQY{zl!Z1InLW8nIU(hkXv z*EBeg6M{KBrlZVN$FXWhT!biJ1KiNz_m>>I8BnzuwURbuxyrh3w$K-wNRS5+@7rb7bvQc4q;3G|*>@_t#PvHyqGG?)b|d!{P;`W@@^7TUNY(7W z1YZD-eA?U)Q~`N7HGapG{zFqEn|3ZJ+A8iAonjH3Z5s}V<#Ls14`*YD*glxc zcm3={Mw|j`)Ju?~^_i0gttbax-koNMEyHgukSRH!V&&>oiuT^HfedgN+#`xKFF8{J zi}gmRM)lWs+PP2+b{~P!wK~)foES$WK`naD7QeNrOdi`zghO>tU5C*20#o+xSX6uqW7#CVa) zwF53Ng(ws0bUbZ9zDm5vjG(_JZ>c<8NPzl=>^+Ds0$|UXEbo0Tz#?V&2(2`zmShV^ zgJGRh!<$}NT|ejJ;=#NK!{p5eb$O}xfYlSF4#6T*Mfypo7H5JN(d?r%fC4cz-kI~9 zaunU?K9@ghnOr20s2kfseqNW_c+I3U+V^X=#^QYbd~(FK;hotk!YfAn?%h_r5>_O{ zBzMJevZ#=ED!%-OouWRZ?HUl@;W(H^tRw0$1 z@#8W3f)kyWWWrWp54D_~Tp&2on-4xq;JjgUev=6wLgr z;h6E!KHL2Q@iUSTs!_u$&;fIUugW$2+ zTy0i}O4ca($t$KMkIw|=+rWnIq{y4ID0`!N%Ax}{)8PjfBUV=^D3D>#yJSn#*o947 zE)591@HvGMdV9H*?GVDzUAv3<9dUxfg zSTd+d`&;00Etg&t}FX!koy4$+@Sz5fe>_3^ai z*Pe>>15;re8SM(HKf4GV1x;NWuD{jQ&{`>YmHCbliF*3rYi!oH8Qb}vv2Kos zn(g>n(rp Date: Tue, 16 Jul 2024 12:06:50 +0530 Subject: [PATCH 074/114] convert markdown to have similar behaviour as in standard markdown --- .../markdown/components/blockquote.scss | 22 +++ .../markdown/components/blockquote.tsx | 18 ++- .../renderer/markdown/components/divider.scss | 2 +- .../renderer/markdown/components/heading.scss | 137 ++++++++++++++++++ .../renderer/markdown/components/heading1.tsx | 10 +- .../renderer/markdown/components/heading2.tsx | 10 +- .../renderer/markdown/components/heading3.tsx | 10 +- .../renderer/markdown/components/heading4.tsx | 10 +- .../markdown/components/markdown-link.tsx | 56 +++++-- .../renderer/markdown/components/pre.tsx | 13 +- 10 files changed, 247 insertions(+), 41 deletions(-) create mode 100644 modules/react-components/src/components/renderer/markdown/components/blockquote.scss diff --git a/modules/react-components/src/components/renderer/markdown/components/blockquote.scss b/modules/react-components/src/components/renderer/markdown/components/blockquote.scss new file mode 100644 index 00000000000..2066900f3bf --- /dev/null +++ b/modules/react-components/src/components/renderer/markdown/components/blockquote.scss @@ -0,0 +1,22 @@ +/** + * Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +.markdown-blockquote-alert { + background-color: var(--oxygen-palette-grey-200); + color: var(--oxygen-palette-grey-600); +} diff --git a/modules/react-components/src/components/renderer/markdown/components/blockquote.tsx b/modules/react-components/src/components/renderer/markdown/components/blockquote.tsx index c4992cf1c3d..9b1c77ffeae 100644 --- a/modules/react-components/src/components/renderer/markdown/components/blockquote.tsx +++ b/modules/react-components/src/components/renderer/markdown/components/blockquote.tsx @@ -19,8 +19,10 @@ import Alert, { AlertProps } from "@oxygen-ui/react/Alert"; import AlertTitle from "@oxygen-ui/react/AlertTitle"; import { MarkdownCustomComponentPropsInterface } from "@wso2is/react-components"; +import classNames from "classnames"; import React, { FunctionComponent, ReactElement } from "react"; import { childRenderer } from "./utils"; +import "./blockquote.scss"; /** * Custom blockquote component types. @@ -78,12 +80,14 @@ const Blockquote: FunctionComponent = (props: BlockquoteProps): return null; } + const classes: string = classNames({ "markdown-blockquote-alert": !dataConfig?.type }); + return ( - dataConfig?.type === CustomBlockquoteTypes.WRAPPER || !dataConfig?.type + dataConfig?.type === CustomBlockquoteTypes.WRAPPER ? (
    { childRenderer(props) } @@ -91,13 +95,11 @@ const Blockquote: FunctionComponent = (props: BlockquoteProps): ) : ( { dataConfig?.title ? ( diff --git a/modules/react-components/src/components/renderer/markdown/components/divider.scss b/modules/react-components/src/components/renderer/markdown/components/divider.scss index e7769d9627c..f40041d2e04 100644 --- a/modules/react-components/src/components/renderer/markdown/components/divider.scss +++ b/modules/react-components/src/components/renderer/markdown/components/divider.scss @@ -16,7 +16,7 @@ * under the License. */ - .markdown-divider { +.markdown-divider { padding-top: 0.25rem; padding-bottom: 0.25rem; } diff --git a/modules/react-components/src/components/renderer/markdown/components/heading.scss b/modules/react-components/src/components/renderer/markdown/components/heading.scss index a5197cadc89..3a241061d0b 100644 --- a/modules/react-components/src/components/renderer/markdown/components/heading.scss +++ b/modules/react-components/src/components/renderer/markdown/components/heading.scss @@ -53,4 +53,141 @@ font-size: 12.5px; } } + + &.markdown-heading4-children-indent ~ p, + &.markdown-heading4-children-indent ~ div, + &.markdown-heading4-children-indent ~ ol, + &.markdown-heading4-children-indent ~ ul, + &.markdown-heading4-children-indent ~ h5, + &.markdown-heading4-children-indent ~ h6 { + margin-left: 40px; + } + + &.markdown-heading3-children-indent ~ p, + &.markdown-heading3-children-indent ~ div, + &.markdown-heading3-children-indent ~ ol, + &.markdown-heading3-children-indent ~ ul, + &.markdown-heading3-children-indent ~ h4, + &.markdown-heading3-children-indent ~ h5, + &.markdown-heading3-children-indent ~ h6 { + margin-left: 45px; + } + + &.markdown-heading2-children-indent ~ p, + &.markdown-heading2-children-indent ~ div, + &.markdown-heading2-children-indent ~ ol, + &.markdown-heading2-children-indent ~ ul, + &.markdown-heading2-children-indent ~ h3, + &.markdown-heading2-children-indent ~ h4, + &.markdown-heading2-children-indent ~ h5, + &.markdown-heading2-children-indent ~ h6 { + margin-left: 50px; + } + + &.markdown-heading1-children-indent ~ p, + &.markdown-heading1-children-indent ~ div, + &.markdown-heading1-children-indent ~ ol, + &.markdown-heading1-children-indent ~ ul, + &.markdown-heading1-children-indent ~ h2, + &.markdown-heading1-children-indent ~ h3, + &.markdown-heading1-children-indent ~ h4, + &.markdown-heading1-children-indent ~ h5, + &.markdown-heading1-children-indent ~ h6 { + margin-left: 55px; + } + + &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ p, + &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ div, + &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ ol, + &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ ul, + &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ h5, + &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ h6 { + margin-left: 85px; + } + + &.markdown-heading2-children-indent ~ &.markdown-heading4-children-indent ~ p, + &.markdown-heading2-children-indent ~ &.markdown-heading4-children-indent ~ div, + &.markdown-heading2-children-indent ~ &.markdown-heading4-children-indent ~ ol, + &.markdown-heading2-children-indent ~ &.markdown-heading4-children-indent ~ ul, + &.markdown-heading2-children-indent ~ &.markdown-heading4-children-indent ~ h5, + &.markdown-heading2-children-indent ~ &.markdown-heading4-children-indent ~ h6 { + margin-left: 90px; + } + + &.markdown-heading1-children-indent ~ &.markdown-heading4-children-indent ~ p, + &.markdown-heading1-children-indent ~ &.markdown-heading4-children-indent ~ div, + &.markdown-heading1-children-indent ~ &.markdown-heading4-children-indent ~ ol, + &.markdown-heading1-children-indent ~ &.markdown-heading4-children-indent ~ ul, + &.markdown-heading1-children-indent ~ &.markdown-heading4-children-indent ~ h5, + &.markdown-heading1-children-indent ~ &.markdown-heading4-children-indent ~ h6 { + margin-left: 95px; + } + + &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ p, + &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ div, + &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ ol, + &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ ul, + &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ h4, + &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ h5, + &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ h6 { + margin-left: 95px; + } + + &.markdown-heading1-children-indent ~ &.markdown-heading3-children-indent ~ p, + &.markdown-heading1-children-indent ~ &.markdown-heading3-children-indent ~ div, + &.markdown-heading1-children-indent ~ &.markdown-heading3-children-indent ~ ol, + &.markdown-heading1-children-indent ~ &.markdown-heading3-children-indent ~ ul, + &.markdown-heading1-children-indent ~ &.markdown-heading3-children-indent ~ h4, + &.markdown-heading1-children-indent ~ &.markdown-heading3-children-indent ~ h5, + &.markdown-heading1-children-indent ~ &.markdown-heading3-children-indent ~ h6 { + margin-left: 100px; + } + + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ p, + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ div, + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ ol, + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ ul, + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ h3, + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ h4, + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ h5, + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ h6 { + margin-left: 105px; + } + + &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ p, + &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ div, + &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ ol, + &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ ul, + &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ h5, + &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ h6 { + margin-left: 135px; + } + + &.markdown-heading1-children-indent ~ &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ p, + &.markdown-heading1-children-indent ~ &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ div, + &.markdown-heading1-children-indent ~ &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ ol, + &.markdown-heading1-children-indent ~ &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ ul, + &.markdown-heading1-children-indent ~ &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ h5, + &.markdown-heading1-children-indent ~ &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ h6 { + margin-left: 140px; + } + + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ p, + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ div, + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ ol, + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ ul, + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ h4, + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ h5, + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ h6 { + margin-left: 150px; + } + + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ p, + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ div, + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ ol, + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ ul, + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ h5, + &.markdown-heading1-children-indent ~ &.markdown-heading2-children-indent ~ &.markdown-heading3-children-indent ~ &.markdown-heading4-children-indent ~ h6 { + margin-left: 190px; + } } diff --git a/modules/react-components/src/components/renderer/markdown/components/heading1.tsx b/modules/react-components/src/components/renderer/markdown/components/heading1.tsx index 12deb2d16c6..756c869d218 100644 --- a/modules/react-components/src/components/renderer/markdown/components/heading1.tsx +++ b/modules/react-components/src/components/renderer/markdown/components/heading1.tsx @@ -39,6 +39,11 @@ interface Heading1Props extends MarkdownCustomComponentPropsInterface<"h1"> { * Content of the number element. */ content?: string; + /** + * Enable indentation for child elements. + * By default indentation is enabled. + */ + indent?: boolean; }; } @@ -95,7 +100,10 @@ const Heading1: FunctionComponent = (props: Heading1Props): React } }; - const classes: string = classNames({ "markdown-heading-container": dataConfig?.numbered }); + const classes: string = classNames({ + "markdown-heading-container": dataConfig?.numbered, + "markdown-heading1-children-indent": dataConfig?.indent === false ? false : true + }); return ( diff --git a/modules/react-components/src/components/renderer/markdown/components/heading2.tsx b/modules/react-components/src/components/renderer/markdown/components/heading2.tsx index ea2e520ee3d..2504a668689 100644 --- a/modules/react-components/src/components/renderer/markdown/components/heading2.tsx +++ b/modules/react-components/src/components/renderer/markdown/components/heading2.tsx @@ -39,6 +39,11 @@ interface Heading2Props extends MarkdownCustomComponentPropsInterface<"h2"> { * Content of the number element. */ content?: string; + /** + * Enable indentation for child elements. + * By default indentation is enabled. + */ + indent?: boolean; }; } @@ -95,7 +100,10 @@ const Heading2: FunctionComponent = (props: Heading2Props): React } }; - const classes: string = classNames({ "markdown-heading-container": dataConfig?.numbered }); + const classes: string = classNames({ + "markdown-heading-container": dataConfig?.numbered, + "markdown-heading2-children-indent": dataConfig?.indent === false ? false : true + }); return ( diff --git a/modules/react-components/src/components/renderer/markdown/components/heading3.tsx b/modules/react-components/src/components/renderer/markdown/components/heading3.tsx index 5565d832b33..ca7b4179ff2 100644 --- a/modules/react-components/src/components/renderer/markdown/components/heading3.tsx +++ b/modules/react-components/src/components/renderer/markdown/components/heading3.tsx @@ -39,6 +39,11 @@ interface Heading3Props extends MarkdownCustomComponentPropsInterface<"h3"> { * Content of the number element. */ content?: string; + /** + * Enable indentation for child elements. + * By default indentation is enabled. + */ + indent?: boolean; }; } @@ -95,7 +100,10 @@ const Heading3: FunctionComponent = (props: Heading3Props): React } }; - const classes: string = classNames({ "markdown-heading-container": dataConfig?.numbered }); + const classes: string = classNames({ + "markdown-heading-container": dataConfig?.numbered, + "markdown-heading3-children-indent": dataConfig?.indent === false ? false : true + }); return ( diff --git a/modules/react-components/src/components/renderer/markdown/components/heading4.tsx b/modules/react-components/src/components/renderer/markdown/components/heading4.tsx index d16849d025e..00d8f5b578b 100644 --- a/modules/react-components/src/components/renderer/markdown/components/heading4.tsx +++ b/modules/react-components/src/components/renderer/markdown/components/heading4.tsx @@ -39,6 +39,11 @@ interface Heading4Props extends MarkdownCustomComponentPropsInterface<"h4"> { * Content of the number element. */ content?: string; + /** + * Enable indentation for child elements. + * By default indentation is enabled. + */ + indent?: boolean; }; } @@ -95,7 +100,10 @@ const Heading4: FunctionComponent = (props: Heading4Props): React } }; - const classes: string = classNames({ "markdown-heading-container": dataConfig?.numbered }); + const classes: string = classNames({ + "markdown-heading-container": dataConfig?.numbered, + "markdown-heading4-children-indent": dataConfig?.indent === false ? false : true + }); return ( diff --git a/modules/react-components/src/components/renderer/markdown/components/markdown-link.tsx b/modules/react-components/src/components/renderer/markdown/components/markdown-link.tsx index 24f478303a6..f05e297e9d8 100644 --- a/modules/react-components/src/components/renderer/markdown/components/markdown-link.tsx +++ b/modules/react-components/src/components/renderer/markdown/components/markdown-link.tsx @@ -19,7 +19,8 @@ import { URLUtils } from "@wso2is/core/utils"; import { Link, - MarkdownCustomComponentPropsInterface + MarkdownCustomComponentPropsInterface, + PrimaryButton } from "@wso2is/react-components"; import { saveAs } from "file-saver"; import React, { FunctionComponent, ReactElement, useMemo } from "react"; @@ -27,6 +28,14 @@ import useGlobalMarkdown from "../../../../hooks/use-global-markdown"; const DEFAULT_DOWNLOAD_FILE_NAME: string = "download"; +/** + * Component types for rendering the link. + */ +enum ComponentTypes { + LINK = "link", + BUTTON = "button" +} + /** * Props interface for the `MarkdownLink` component. */ @@ -57,6 +66,10 @@ interface MarkdownLinkProps extends MarkdownCustomComponentPropsInterface<"a"> { * The type that should be assigned to the above content file. */ type?: string; + /** + * Component type of the link element. + */ + as?: ComponentTypes; }; } @@ -127,21 +140,32 @@ const MarkdownLink: FunctionComponent = (props: MarkdownLinkP } return ( - onHandleInternalUrl(href) - : dataConfig?.download && initDownload - } - external={ !(dataConfig?.external === false) } - target={ (dataConfig?.external === false) ? "_self" : "_blank" } - data-componentid={ componentId } - title={ title } - icon={ dataConfig?.download ? "arrow alternate circle down outline" : undefined } - > - { children } - + dataConfig?.as === ComponentTypes.BUTTON && dataConfig?.download + ? ( + + ) + : ( + onHandleInternalUrl(href) + : dataConfig?.download && initDownload + } + external={ !(dataConfig?.external === false) } + target={ (dataConfig?.external === false) ? "_self" : "_blank" } + data-componentid={ componentId } + title={ title } + icon={ dataConfig?.download ? "arrow alternate circle down outline" : undefined } + > + { children } + + ) ); }; diff --git a/modules/react-components/src/components/renderer/markdown/components/pre.tsx b/modules/react-components/src/components/renderer/markdown/components/pre.tsx index db74b922781..52a4a0a6381 100644 --- a/modules/react-components/src/components/renderer/markdown/components/pre.tsx +++ b/modules/react-components/src/components/renderer/markdown/components/pre.tsx @@ -31,11 +31,6 @@ interface MarkdownPreProps extends MarkdownCustomComponentPropsInterface<"pre"> * Flag to determine whether the content is multiline. */ multiline?: boolean; - /** - * If the component type is wrapper how much indentation is needed. - * 1 Indent = 5px - */ - indent?: number; }; } @@ -63,13 +58,7 @@ const MarkdownPre: FunctionComponent = (props: MarkdownPreProp } return ( -
    +
    Date: Tue, 16 Jul 2024 14:24:27 +0530 Subject: [PATCH 075/114] add feature status label to the application template card --- .../components/application-template-card.scss | 11 ++++- .../components/application-template-card.tsx | 42 ++++++++++++++----- .../constants/templates.ts | 2 +- .../models/templates.ts | 8 ++++ 4 files changed, 50 insertions(+), 13 deletions(-) diff --git a/features/admin.application-templates.v1/components/application-template-card.scss b/features/admin.application-templates.v1/components/application-template-card.scss index a6ccc990d46..4b2744d2af3 100644 --- a/features/admin.application-templates.v1/components/application-template-card.scss +++ b/features/admin.application-templates.v1/components/application-template-card.scss @@ -36,7 +36,7 @@ } } - .application-template-coming-soon-ribbon { + .application-template-ribbon { position: absolute; right: 0; top: 13px; @@ -45,7 +45,6 @@ color: #fff; height: 24px; width: 100px; - background: linear-gradient(270deg,#ff9d4d 0,#ff7300 100%); display: flex; flex-direction: row; align-content: center; @@ -53,6 +52,14 @@ justify-content: space-around; clip-path: polygon(4% 0,0 100%,100% 100%,100% 0,100% 0); -webkit-clip-path: polygon(4% 0,0 100%,100% 100%,100% 0,100% 0); + + &.coming-soon { + background: linear-gradient(270deg,#ff9d4d 0,#ff7300 100%); + } + + &.new { + background: #3fb81f; + } } .application-template-header { diff --git a/features/admin.application-templates.v1/components/application-template-card.tsx b/features/admin.application-templates.v1/components/application-template-card.tsx index e4071293548..ace864e8f0a 100644 --- a/features/admin.application-templates.v1/components/application-template-card.tsx +++ b/features/admin.application-templates.v1/components/application-template-card.tsx @@ -34,7 +34,7 @@ import React, { FunctionComponent, MouseEvent, ReactElement, useMemo } from "rea import { useTranslation } from "react-i18next"; import { ApplicationTemplateConstants } from "../constants/templates"; import "./application-template-card.scss"; -import { SupportedTechnologyMetadataInterface } from "../models/templates"; +import { ApplicationTemplateFeatureStatus, SupportedTechnologyMetadataInterface } from "../models/templates"; /** * Props for the application template card component. @@ -94,9 +94,9 @@ const ApplicationTemplateCard: FunctionComponent { + const featureStatus: ApplicationTemplateFeatureStatus = useMemo(() => { if (!template?.customAttributes || !Array.isArray(template?.customAttributes) || template?.customAttributes?.length <= 0) { @@ -106,19 +106,36 @@ const ApplicationTemplateCard: FunctionComponent - property?.key === ApplicationTemplateConstants.COMING_SOON_ATTRIBUTE_KEY + property?.key === ApplicationTemplateConstants.FEATURE_STATUS_ATTRIBUTE_KEY ); - return property?.value === "true"; + return property?.value; }, [ template ]); + /** + * Resolve the corresponding label for the current feature label. + * + * @param featureStatus - Feature status from the template. + * @returns The feature status label. + */ + const resolveRibbonLabel = (featureStatus: ApplicationTemplateFeatureStatus): string => { + switch (featureStatus) { + case ApplicationTemplateFeatureStatus.COMING_SOON: + return t("common:comingSoon"); + case ApplicationTemplateFeatureStatus.NEW: + return t("common:new"); + } + }; + return ( ) => { - if (!comingSoon) { + if (featureStatus !== ApplicationTemplateFeatureStatus.COMING_SOON) { onClick(e); } } @@ -126,10 +143,15 @@ const ApplicationTemplateCard: FunctionComponent { - comingSoon + featureStatus ? ( -
    - { t("common:comingSoon") } +
    + { resolveRibbonLabel(featureStatus) }
    ) : null diff --git a/features/admin.application-templates.v1/constants/templates.ts b/features/admin.application-templates.v1/constants/templates.ts index 6b017947d5a..a69a7088080 100644 --- a/features/admin.application-templates.v1/constants/templates.ts +++ b/features/admin.application-templates.v1/constants/templates.ts @@ -37,7 +37,7 @@ export class ApplicationTemplateConstants { } ]; - public static readonly COMING_SOON_ATTRIBUTE_KEY: string = "comingSoon"; + public static readonly FEATURE_STATUS_ATTRIBUTE_KEY: string = "featureStatus"; public static readonly SUPPORTED_TECHNOLOGIES_ATTRIBUTE_KEY: string = "supportedTechnologies"; diff --git a/features/admin.application-templates.v1/models/templates.ts b/features/admin.application-templates.v1/models/templates.ts index 2e274fcc126..6cb6379f23d 100644 --- a/features/admin.application-templates.v1/models/templates.ts +++ b/features/admin.application-templates.v1/models/templates.ts @@ -132,3 +132,11 @@ export enum ApplicationTemplateCategories { */ SSO_INTEGRATION = "SSO-INTEGRATION", } + +/** + * Supported application feature status list. + */ +export enum ApplicationTemplateFeatureStatus { + NEW = "new", + COMING_SOON = "comingSoon" +} From 76f3f34df2d4ae3623cad84542e1cd34ff020515 Mon Sep 17 00:00:00 2001 From: DilshanSenarath <74205483+DilshanSenarath@users.noreply.github.com> Date: Tue, 16 Jul 2024 23:43:26 +0530 Subject: [PATCH 076/114] refactor the application edit tab forms --- .../components/forms/general-details-form.tsx | 463 ++++++------ .../components/forms/inbound-saml-form.tsx | 115 +-- .../advance-attribute-settings.tsx | 685 ++++++++++-------- 3 files changed, 708 insertions(+), 555 deletions(-) diff --git a/features/admin.applications.v1/components/forms/general-details-form.tsx b/features/admin.applications.v1/components/forms/general-details-form.tsx index 4e7c097ec08..3f1ab3531a5 100644 --- a/features/admin.applications.v1/components/forms/general-details-form.tsx +++ b/features/admin.applications.v1/components/forms/general-details-form.tsx @@ -18,8 +18,10 @@ import Link from "@oxygen-ui/react/Link"; import { PaletteIcon } from "@oxygen-ui/react-icons"; +import { ApplicationTabComponentsFilter } from + "@wso2is/admin.application-templates.v1/components/application-tab-components-filter"; import { AppConstants, AppState, UIConfigInterface, history } from "@wso2is/admin.core.v1"; -import { applicationConfig } from "@wso2is/admin.extensions.v1"; +import { ApplicationTabIDs, applicationConfig } from "@wso2is/admin.extensions.v1"; import { OrganizationType } from "@wso2is/admin.organizations.v1/constants"; import { TestableComponentInterface } from "@wso2is/core/models"; import { URLUtils } from "@wso2is/core/utils"; @@ -37,7 +39,7 @@ import { FormValidation } from "@wso2is/validation"; import React, { FunctionComponent, ReactElement, useEffect, useMemo, useState } from "react"; import { Trans, useTranslation } from "react-i18next"; import { useSelector } from "react-redux"; -import { Divider } from "semantic-ui-react"; +import { Divider, Grid } from "semantic-ui-react"; import { useMyAccountStatus } from "../../api"; import { ApplicationManagementConstants } from "../../constants"; import { ApplicationInterface } from "../../models"; @@ -342,7 +344,7 @@ export const GeneralDetailsForm: FunctionComponent { updateConfigurations(values); } } @@ -353,219 +355,262 @@ export const GeneralDetailsForm: FunctionComponent - { getLink("develop.connections.newConnection.enterprise.saml.learnMore") === undefined - ? null - :